/* ============================================
   DJ BIG MO - Premium Professional DJ Website
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #060608;
    --bg-secondary: #0c0c10;
    --bg-tertiary: #101015;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-solid: #131318;
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --text-primary: #f5f5f7;
    --text-secondary: #94949e;
    --text-muted: #5a5a66;
    --accent: #c9a84c;
    --accent-light: #dfc476;
    --accent-dark: #a88a2e;
    --accent-alt: #e07830;
    --accent-glow: rgba(201, 168, 76, 0.35);
    --gradient-accent: linear-gradient(135deg, #c9a84c 0%, #e07830 100%);
    --gradient-accent-subtle: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(224,120,48,0.08));
    --gradient-dark: linear-gradient(180deg, #060608 0%, #0c0c10 100%);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(201, 168, 76, 0.25);
    --shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(201, 168, 76, 0.12);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    line-height: 1.2;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 12px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
}

.loader-bar {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: loaderFill 1.5s ease-out forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    background: rgba(6, 6, 8, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 4px;
}

.logo-dj {
    color: var(--text-muted);
    font-size: 0.85em;
}

.logo-big {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-mo {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-accent);
    color: var(--bg-primary) !important;
    padding: 10px 26px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    -webkit-text-fill-color: var(--bg-primary);
    letter-spacing: 0.3px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    color: var(--bg-primary) !important;
}

/* --- Language Switcher --- */
.nav-lang-item {
    position: relative;
    margin-left: 4px;
}

.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 7px 14px;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: rgba(255,255,255,0.15);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.lang-toggle.open {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-globe {
    opacity: 0.6;
    flex-shrink: 0;
}

.lang-current {
    min-width: 18px;
    text-align: center;
}

.lang-arrow {
    opacity: 0.5;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.lang-toggle.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(20, 20, 28, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    z-index: 100;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: left;
}

.lang-option:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
}

.lang-option.active {
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: inherit;
}

.lang-option.active .lang-flag {
    background: rgba(201, 168, 76, 0.2);
}

/* --- Nav Toggle (Mobile) --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
    color: var(--bg-primary);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-accent);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
}

.btn-glow:hover::before {
    opacity: 0.5;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    background: rgba(201, 168, 76, 0.06);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === HERO SECTION === */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-primary);
}

.hero-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.18;
    filter: grayscale(40%) contrast(1.1);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(201, 168, 76, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 30%, rgba(224, 120, 48, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(6,6,8,0.6) 0%, rgba(6,6,8,0.2) 40%, rgba(6,6,8,0.2) 60%, rgba(6,6,8,0.95) 100%);
}

/* Vinyl Record Decoration */
.vinyl-decor {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.06;
    pointer-events: none;
}

.vinyl-record {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a1a 30%, #0a0a0a 31%, #1a1a1a 32%, #0a0a0a 50%, #151515 51%, #0a0a0a 70%, #151515 71%, #0a0a0a 90%);
    position: relative;
    animation: vinylSpin 12s linear infinite;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.vinyl-grooves {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow:
        inset 0 0 0 15px rgba(255,255,255,0.01),
        inset 0 0 0 30px rgba(255,255,255,0.02),
        inset 0 0 0 50px rgba(255,255,255,0.01),
        inset 0 0 0 70px rgba(255,255,255,0.02),
        inset 0 0 0 90px rgba(255,255,255,0.01),
        inset 0 0 0 110px rgba(255,255,255,0.02);
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label span {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--bg-primary);
    animation: vinylSpinReverse 12s linear infinite;
}

@keyframes vinylSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes vinylSpinReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    15% { opacity: 0.5; }
    85% { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 24px 100px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 36px;
    background: rgba(201, 168, 76, 0.06);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 28px;
}

.hero-line {
    display: block;
}

.hero-line-1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 20px;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-line-2 {
    font-size: clamp(4.5rem, 13vw, 11rem);
    letter-spacing: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.92;
    filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.15));
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 44px;
    font-style: italic;
    line-height: 1.9;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.3s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.5s forwards;
    padding: 28px 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 80px;
    backdrop-filter: blur(10px);
    display: inline-flex;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.stat-plus, .stat-percent {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.7s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2.5s infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Hero Equalizer */
.hero-equalizer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 3px;
    padding: 0 25%;
    opacity: 0.05;
    height: 60px;
    align-items: flex-end;
}

.eq-bar {
    flex: 1;
    max-width: 6px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    animation: eqBounce 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { animation-delay: 0s; }
.eq-bar:nth-child(2) { animation-delay: 0.1s; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; }
.eq-bar:nth-child(4) { animation-delay: 0.3s; }
.eq-bar:nth-child(5) { animation-delay: 0.15s; }
.eq-bar:nth-child(6) { animation-delay: 0.25s; }
.eq-bar:nth-child(7) { animation-delay: 0.05s; }
.eq-bar:nth-child(8) { animation-delay: 0.35s; }
.eq-bar:nth-child(9) { animation-delay: 0.1s; }
.eq-bar:nth-child(10) { animation-delay: 0.2s; }
.eq-bar:nth-child(11) { animation-delay: 0.3s; }
.eq-bar:nth-child(12) { animation-delay: 0.0s; }

@keyframes eqBounce {
    0%, 100% { height: 8px; }
    50% { height: 50px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SECTION STYLES === */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 72px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    padding: 7px 18px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    background: rgba(201, 168, 76, 0.06);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    letter-spacing: 3px;
    line-height: 1.05;
}

.section-title em {
    font-family: var(--font-accent);
    font-style: italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    margin-top: 18px;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Section divider line */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.15;
}

#hero::before {
    display: none;
}

/* === ABOUT SECTION === */
#about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame:hover .about-image {
    transform: scale(1.04);
}

.about-image-accent {
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    transform: translate(14px, 14px);
    z-index: -1;
    opacity: 0.25;
}

.about-experience-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 2px;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.about-content {
    font-size: 0.95rem;
}

.about-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.about-intro {
    margin-bottom: 8px;
}

.about-philosophy {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: var(--gradient-accent-subtle);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    margin: 28px 0;
}

.about-philosophy svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.about-philosophy p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}

/* === SERVICES SECTION === */
#services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 40%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 40px rgba(201,168,76,0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.1);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* === EVENTS SECTION === */
#events {
    background: var(--bg-secondary);
    padding-bottom: 120px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.event-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
}

.event-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-bg {
    transform: scale(1.08);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.3) 50%, rgba(6,6,8,0.15) 100%);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
}

.event-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.event-card-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* === SOCIAL MEDIA SECTION === */
#social {
    background: var(--bg-primary);
}

.social-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card-instagram::before {
    background: linear-gradient(135deg, rgba(131,58,180,0.08), rgba(253,29,29,0.06), rgba(252,176,69,0.06));
}

.social-card-facebook::before {
    background: linear-gradient(135deg, rgba(24,119,242,0.08), rgba(66,103,178,0.06));
}

.social-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-card-instagram .social-card-icon {
    background: linear-gradient(135deg, rgba(131,58,180,0.15), rgba(253,29,29,0.12), rgba(252,176,69,0.12));
    color: #e1306c;
}

.social-card-facebook .social-card-icon {
    background: rgba(24,119,242,0.12);
    color: #1877f2;
}

.social-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-card-content h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.social-handle {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 4px;
}

.social-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-card-arrow {
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.social-card:hover .social-card-arrow {
    color: var(--accent);
    transform: translate(3px, -3px);
}

@media (max-width: 640px) {
    .social-cards {
        grid-template-columns: 1fr;
    }
}

/* === GALLERY SECTION === */
#gallery {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
}

.gallery-item-large {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 8, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: var(--radius-md);
}

.gallery-placeholder span {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* === PRICING SECTION === */
#pricing {
    background: var(--bg-secondary);
}

.pricing-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
}

.pricing-card-header {
    padding: 44px 40px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.pricing-card-header:hover {
    background: rgba(255,255,255,0.02);
}

.pricing-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    margin-bottom: 22px;
}

.pricing-icon-wrap svg {
    color: var(--accent);
}

.pricing-card-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.pricing-teaser {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.pricing-toggle-icon {
    margin-top: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
}

.pricing-toggle-icon.rotated {
    transform: rotate(180deg);
}

.pricing-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-body.open {
    max-height: 1200px;
}

.pricing-content {
    padding: 0 40px 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.pricing-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.pricing-content p {
    margin-bottom: 16px;
    font-size: 0.93rem;
    line-height: 1.8;
}

.pricing-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: 28px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.93rem;
    color: var(--text-secondary);
}

.pricing-includes li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-highlight {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: rgba(201, 168, 76, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 168, 76, 0.12);
    margin-bottom: 28px;
}

.pricing-highlight svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-highlight p {
    margin: 0;
    font-size: 0.9rem;
}

/* === BOOKING SECTION === */
#booking {
    background: var(--bg-primary);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.booking-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-card);
}

.booking-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.booking-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 0.93rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.booking-contact-quick {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.booking-contact-quick h4 {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.quick-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.quick-contact:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 168, 76, 0.06);
}

/* === FORM STYLES === */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
    background: rgba(201, 168, 76, 0.03);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a5a66' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5;
    cursor: pointer;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 64px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.93rem;
    margin-bottom: 8px;
}

.success-note {
    color: var(--accent);
    font-style: italic;
    margin-top: 16px;
}

/* === QUOTE SECTION === */
#quote-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.quote-block {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    color: var(--accent);
    opacity: 0.15;
    margin-bottom: 28px;
}

.quote-block blockquote {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.quote-block cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

/* === FOOTER === */
#footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 44px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
    color: var(--text-secondary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20,20,28,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* === SCROLL ANIMATIONS === */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* === FLOATING SOCIAL SIDEBAR === */
.social-sidebar {
    position: fixed;
    left: 24px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 100;
}

.social-sidebar-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(20, 20, 28, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition);
}

.social-sidebar-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.social-sidebar-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    opacity: 0.3;
}

/* === FOOTER SOCIAL === */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

/* === DJ VIBE NEON GLOW EFFECTS === */

/* Neon accent line under hero */
#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
    z-index: 3;
}

/* Pulsing glow on hero title */
.hero-line-2 {
    animation: fadeInUp 0.8s 0.9s forwards, titlePulse 4s 2.5s ease-in-out infinite !important;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.1)); }
    50% { filter: drop-shadow(0 0 80px rgba(201, 168, 76, 0.25)); }
}

/* Glow on service cards on hover */
.service-card:hover .service-icon {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.15);
}

/* Neon border glow on pricing card when open */
.pricing-card:has(.pricing-card-body.open) {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.06), var(--shadow-card);
}

/* Booking form glow submit button */
.booking-form .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info-card {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .social-sidebar {
        display: none;
    }

    .vinyl-decor {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(12, 12, 16, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 36px 40px;
        gap: 20px;
        transition: var(--transition-slow);
        border-left: 1px solid var(--border-color);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-lang-item {
        margin-left: 0;
        margin-top: 12px;
    }

    .nav-cta {
        margin-top: 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 32px;
        border-radius: var(--radius-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-card-header,
    .pricing-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-equalizer {
        padding: 0 10%;
    }
}

@media (max-width: 480px) {
    .hero-line-2 {
        letter-spacing: 3px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 16px;
    }

    .badge-number {
        font-size: 2.2rem;
    }
}
