/* ============================================
   RESET & VARIABILE - MIDNIGHT ORIENTAL LUXURY
   ============================================ */
:root {
    --primary-color: #170707;
    --accent-red: #e63946;
    --accent-gold: #e63946;
    --accent-gold-glow: #ff6b81;
    --accent-green: #ffffff;
    --bg-dark: #0c0607;
    --text-light: #fff7f7;
    --text-gray: #e3dede;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --snow-white: rgba(255, 255, 255, 0.7);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #2a0f12 0%, #3b1216 35%, #1a0a0d 100%);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    perspective: 2000px;
    perspective-origin: 50% 50%;
    height: 100%;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
}

/* Snow overlay */
.snow-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 10% 20%, var(--snow-white), transparent),
        radial-gradient(2px 2px at 30% 40%, var(--snow-white), transparent),
        radial-gradient(2px 2px at 70% 10%, var(--snow-white), transparent),
        radial-gradient(3px 3px at 90% 30%, var(--snow-white), transparent),
        radial-gradient(2px 2px at 50% 80%, var(--snow-white), transparent),
        radial-gradient(2px 2px at 20% 70%, var(--snow-white), transparent),
        radial-gradient(1.5px 1.5px at 80% 60%, var(--snow-white), transparent);
    background-size: 200px 200px;
    z-index: 2;
    animation: snowFall 18s linear infinite;
    opacity: 0.8;
}

#snow-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    mix-blend-mode: normal;
}

.snow-front {
    z-index: 3;
    animation-duration: 12s;
    background-size: 160px 160px;
    filter: blur(0.3px);
    opacity: 0.9;
}

.snow-back {
    z-index: 1;
    animation-duration: 26s;
    opacity: 0.45;
    filter: blur(0.8px);
}

@keyframes snowFall {
    from {
        transform: translateY(-10px);
    }

    to {
        transform: translateY(60px);
    }
}

/* Animated Stars Background */
.stars-container {
    display: none;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

/* Small stars - lots of them, subtle */
.stars-small {
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 60px 70px, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(2px 2px at 50px 50px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 80px 10px, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(2px 2px at 150px 120px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 100px 150px, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(2px 2px at 170px 40px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 30px 100px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 110px 60px, rgba(212, 175, 55, 0.6), transparent);
    background-size: 200px 200px;
    animation: twinkle 3s ease-in-out infinite, drift 120s linear infinite;
}

/* Medium stars - fewer, more visible */
.stars-medium {
    background-image:
        radial-gradient(3.5px 3.5px at 40px 60px, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3.5px 3.5px at 120px 120px, rgba(212, 175, 55, 0.9), transparent),
        radial-gradient(3px 3px at 90px 40px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3.5px 3.5px at 160px 90px, rgba(249, 217, 118, 0.8), transparent),
        radial-gradient(3px 3px at 200px 150px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3.5px 3.5px at 70px 180px, rgba(212, 175, 55, 0.9), transparent),
        radial-gradient(3px 3px at 250px 50px, rgba(255, 255, 255, 1), transparent),
        radial-gradient(3.5px 3.5px at 30px 220px, rgba(249, 217, 118, 0.8), transparent);
    background-size: 300px 300px;
    animation: twinkle 4s ease-in-out infinite 1s, drift 150s linear infinite reverse;
}

/* Large stars - very few, accent points */
.stars-large {
    background-image:
        radial-gradient(5px 5px at 100px 100px, rgba(255, 255, 255, 1), transparent),
        radial-gradient(4.5px 4.5px at 250px 200px, rgba(212, 175, 55, 1), transparent),
        radial-gradient(5px 5px at 180px 50px, rgba(249, 217, 118, 0.9), transparent),
        radial-gradient(4.5px 4.5px at 320px 280px, rgba(255, 255, 255, 1), transparent),
        radial-gradient(5px 5px at 50px 350px, rgba(212, 175, 55, 1), transparent),
        radial-gradient(4.5px 4.5px at 380px 120px, rgba(249, 217, 118, 0.9), transparent);
    background-size: 400px 400px;
    animation: twinkle 5s ease-in-out infinite 2s, drift 180s linear infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, -100px);
    }
}

/* 3D Ambient Lighting System */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.6;
    mix-blend-mode: screen;
    animation: float3D 25s infinite ease-in-out;
    transform-style: preserve-3d;
}

.orb-1 {
    top: -15%;
    left: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle at 30% 30%,
            rgba(212, 175, 55, 0.5) 0%,
            rgba(212, 175, 55, 0.3) 30%,
            rgba(255, 215, 0, 0.2) 50%,
            transparent 70%);
    animation-duration: 12s;
    animation-delay: 0s;
}

.orb-2 {
    bottom: -20%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle at 60% 60%,
            rgba(139, 69, 19, 0.4) 0%,
            rgba(160, 82, 45, 0.3) 30%,
            rgba(205, 133, 63, 0.2) 50%,
            transparent 70%);
    animation-duration: 15s;
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle at 50% 50%,
            rgba(25, 25, 112, 0.4) 0%,
            rgba(65, 105, 225, 0.3) 30%,
            rgba(100, 149, 237, 0.2) 50%,
            transparent 70%);
    animation-duration: 18s;
    animation-delay: -8s;
    transform: translateX(-50%);
}

@keyframes float3D {
    0% {
        transform: translate3d(0, 0, 0) rotateZ(0deg) scale(1);
    }

    25% {
        transform: translate3d(50px, -50px, 100px) rotateZ(5deg) scale(1.05);
    }

    50% {
        transform: translate3d(-30px, 30px, -50px) rotateZ(-3deg) scale(0.95);
    }

    75% {
        transform: translate3d(40px, 20px, 80px) rotateZ(4deg) scale(1.02);
    }

    100% {
        transform: translate3d(0, 0, 0) rotateZ(0deg) scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

/* ============================================
   NAVBAR (logo centrat)
   ============================================ */
/* ============================================
   NAVBAR (Floating Glass)
   ============================================ */
.navbar {
    position: sticky;
    top: 30px;
    z-index: 1000;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(120deg, rgba(230, 57, 70, 0.18), rgba(255, 255, 255, 0.18)) border-box,
        rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
    transition: all 0.4s ease;
    max-width: 95vw;
    margin: 0 auto;
    width: fit-content;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.logo {
    height: 40px;
    width: auto;
    filter: invert(1) brightness(2);
    /* Make logo white */
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-red);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav behaviour */
@media (max-width: 768px) {
    .navbar {
        width: 90vw;
        padding: 10px 20px;
    }

    .nav-center {
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .hamburger {
        display: flex !important;
        order: -1;
        transition: transform 0.2s ease, background 0.2s ease;
        position: relative;
        z-index: 10002 !important;
        /* Ensure it's above everything */
        pointer-events: auto !important;
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(10px);
        /* Ensure visibility against dark bg */
        visibility: visible !important;
        /* Force visibility */
        opacity: 1 !important;
        /* Force opacity */
    }

    .hamburger:active {
        transform: scale(0.95);
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .hamburger:focus {
        outline: 2px solid rgba(212, 175, 55, 0.5);
        outline-offset: 2px;
    }

    .hamburger:hover {
        background: rgba(0, 0, 0, 0.5) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    /* center the logo perfectly */
    .logo {
        height: 40px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .nav-menu {
        position: fixed !important;
        top: 85px !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px);
        width: calc(100% - 40px) !important;
        max-width: 520px !important;
        background: rgba(10, 10, 10, 0.98) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
        border-radius: 16px !important;
        padding: 12px 0 !important;
        flex-direction: column !important;
        gap: 4px !important;
        z-index: 10000 !important;
        margin: 0 !important;

        /* Hidden by default */
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, display 0s 0.3s !important;
    }

    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 24px;
        text-align: center;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(212, 175, 55, 0.1);
        color: var(--accent-gold);
    }

    /* increase hero top padding so navbar won't cover the title */
    .hero {
        padding-top: 180px;
    }

    /* CRITICAL: Ensure ALL content is visible on mobile */
    .section-title,
    .section-subtitle,
    .collection-card,
    .step-card,
    .social-media-card,
    .collection,
    .steps,
    .contact,
    section {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: none !important;
        position: relative !important;
    }

    .collection-grid,
    .steps-grid,
    .social-media-grid {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Force sections to render */
    body {
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* Liquid glass edges */
.glass-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glass-effect-backdrop {
    position: absolute;
    inset: 0;
    border-radius: 16px;
}

.glass-effect {
    position: absolute;
    border-radius: 9999px;
    left: 0;
    right: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.5;
}

.glass-effect.top {
    top: 0;
}

.glass-effect.bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.glass-effect.left {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
}

.glass-effect.right {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(230, 57, 70, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 50% 70%, rgba(230, 57, 70, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8vw;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.reveal-text {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 600px;
    font-weight: 300;
}

.holiday-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.2), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    border: 2px solid rgba(230, 57, 70, 0.7);
    color: var(--text-light);
}

.btn-primary:hover {
    background: rgba(230, 57, 70, 0.15);
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #e63946 0%, #ff8fa3 60%, #ffffff 100%);
    color: #1a0a0d;
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.35);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #ff6b81 0%, #ffc2d0 60%, #ffffff 100%);
    box-shadow: 0 0 45px rgba(230, 57, 70, 0.45);
    transform: scale(1.05);
}

/* Hero Side (Dreapta - Carusel) */
.hero-side {
    width: 100%;
    perspective: 1000px;
}

/* ============================================
   CARUSEL CUSTOM STYLES
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease;
    will-change: transform, opacity;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Butoane Navigare */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1;
    padding: 0;
    outline: none;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
    left: 25px;
}

.carousel-nav.next {
    right: 25px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 35px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollAnimation {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ============================================
   COLLECTION SECTION
   ============================================ */
/* ============================================
   COLLECTION SECTION
   ============================================ */
.collection {
    padding: 120px 40px;
    background: linear-gradient(180deg, #05090f 0%, #0b1320 60%, #05090f 100%);
    position: relative;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.collection-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    margin-bottom: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(229, 69, 69, 0.1);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
    transform-origin: center;
    transition: transform 0.5s ease;
}

.collection-card:hover .card-image-wrapper {
    transform: scale(0.98);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-caption {
    padding: 20px 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-caption {
    opacity: 1;
}

.collection-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.collection-caption p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Asymmetric layout shifts */
.collection-card:nth-child(2) {
    margin-top: 80px;
}

.collection-card:nth-child(5) {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .collection-card:nth-child(2),
    .collection-card:nth-child(5) {
        margin-top: 0;
    }

    .card-image-wrapper {
        height: 350px;
        /* Better height for mobile */
    }

    /* Steps Mobile Layout */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
        margin-bottom: 20px;
    }

    .step-content {
        padding: 25px 20px;
    }

    .step-card h3 {
        font-size: 1.4rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }
}

/* ============================================
   STEPS SECTION - HORIZONTAL ROADMAP
   ============================================ */
.steps {
    padding: 120px 40px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -2px;
    width: calc(100% - 40px);
    height: 2px;
    background: repeating-linear-gradient(to right,
            rgba(212, 175, 55, 0.4) 0px,
            rgba(212, 175, 55, 0.4) 10px,
            transparent 10px,
            transparent 20px);
    z-index: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.step-card:hover .step-number {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    width: 100%;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 40px;
    background: var(--bg-dark);
    position: relative;
}

.contact .section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.social-media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    gap: 20px;
}

.social-media-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.social-media-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    /* Removed filter to show colored icons */
}

.social-media-card:hover .social-media-icon {
    transform: scale(1.2) rotate(5deg);
}

.social-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.social-media-card:hover .social-name {
    color: var(--accent-gold);
}

/* Navbar always visible - scroll behavior removed */

/* ============================================
   ROADMAP STEPS SECTION - DIAGONAL ZIGZAG
   ============================================ */
.steps {
    padding: 120px 40px;
    background: var(--bg-dark);
    position: relative;
}

.roadmap-container {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
}

/* Center vertical line */
.roadmap-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            var(--accent-gold) 0%,
            rgba(212, 175, 55, 0.5) 50%,
            rgba(212, 175, 55, 0.2) 100%);
    transform: translateX(-50%);
}

.roadmap-step {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

/* Left-aligned steps */
.roadmap-left {
    grid-template-areas: "content marker empty";
}

.roadmap-left .roadmap-content {
    grid-area: content;
    text-align: right;
    margin-right: 40px;
}

.roadmap-left .roadmap-marker {
    grid-area: marker;
}

/* Right-aligned steps */
.roadmap-right {
    grid-template-areas: "empty marker content";
}

.roadmap-right .roadmap-content {
    grid-area: content;
    text-align: left;
    margin-left: 40px;
}

.roadmap-right .roadmap-marker {
    grid-area: marker;
}

.roadmap-marker {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-glow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.roadmap-number::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.2) 0%,
            rgba(249, 217, 118, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-step:hover .roadmap-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3);
}

.roadmap-step:hover .roadmap-number::before {
    opacity: 1;
}

.roadmap-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 35px;
    position: relative;
    transition: all 0.4s ease;
}

/* Arrow pointers */
.roadmap-left .roadmap-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--glass-border);
}

.roadmap-right .roadmap-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--glass-border);
}

.roadmap-step:hover .roadmap-content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.roadmap-left:hover .roadmap-content {
    transform: translateX(-10px);
}

.roadmap-right:hover .roadmap-content {
    transform: translateX(10px);
}

.roadmap-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.roadmap-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Responsive Roadmap */
@media (max-width: 968px) {
    .roadmap-container::before {
        left: 50px;
    }

    .roadmap-step,
    .roadmap-left,
    .roadmap-right {
        grid-template-columns: 100px 1fr;
        grid-template-areas: "marker content";
        gap: 30px;
        margin-bottom: 60px;
    }

    .roadmap-left .roadmap-content,
    .roadmap-right .roadmap-content {
        text-align: left;
        margin: 0;
    }

    .roadmap-number {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }

    .roadmap-content {
        padding: 25px 25px;
    }

    .roadmap-left .roadmap-content::after,
    .roadmap-right .roadmap-content::after {
        display: none;
    }

    .roadmap-content h3 {
        font-size: 1.3rem;
    }

    .roadmap-content p {
        font-size: 0.9rem;
    }

    .roadmap-left:hover .roadmap-content,
    .roadmap-right:hover .roadmap-content {
        transform: translateX(5px);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.logo-footer {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-carousel {
        height: 480px;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 60px 30px 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-carousel {
        height: 400px;
        border-radius: 16px;
    }

    .carousel-nav {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }

    .carousel-nav.prev {
        left: 20px;
    }

    .carousel-nav.next {
        right: 20px;
    }

    .carousel-dots {
        bottom: 25px;
        gap: 12px;
        padding: 10px 20px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
    }

    .slide-counter {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .collection {
        padding: 60px 30px;
    }

    .steps {
        padding: 60px 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }

    .step-card {
        padding: 35px 25px;
    }

    .step-number {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }

    .step-card h3 {
        font-size: 1.35rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .step-card p {
        font-size: 0.95rem;
    }

    .contact {
        padding: 60px 30px;
    }

    .contact-info h3 {
        font-size: 1.75rem;
    }

    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-media-card {
        padding: 35px 25px;
    }

    .social-media-icon {
        width: 70px;
        height: 70px;
    }

    .social-name {
        font-size: 1.35rem;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 50px 20px 30px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-carousel {
        height: 320px;
        border-radius: 12px;
    }

    .carousel-nav {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 10px;
        padding: 8px 16px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .slide-counter {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-card img {
        height: 300px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 35px 25px;
    }

    .step-number {
        font-size: 3.5rem;
    }

    .step-card h3 {
        font-size: 1.35rem;
    }

    .contact {
        padding: 50px 20px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .social-media-card {
        padding: 30px 20px;
    }

    .social-media-icon {
        width: 60px;
        height: 60px;
    }

    .social-name {
        font-size: 1.25rem;
    }
}

/* ============================================
   POPUP MODAL - GLOBES OFFER
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.popup-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    background: #000;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.popup-text {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.popup-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.popup-features li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 0;
    margin-bottom: 12px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 0.95rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        grid-template-columns: 1fr;
        max-width: 95%;
        max-height: 85vh;
    }

    .popup-image {
        border-radius: 24px 24px 0 0;
        height: 250px;
    }

    .popup-text {
        padding: 30px 25px;
    }

    .popup-text h2 {
        font-size: 1.5rem;
    }

    .popup-text h3 {
        font-size: 1.4rem;
    }

    .popup-text p {
        font-size: 0.95rem;
    }

    .popup-features li {
        font-size: 0.9rem;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* Scrollbar for popup */
.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #000000 100%);
    padding: 80px 40px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-top: 20px;
}

.footer-description strong {
    color: var(--text-light);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

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

.footer-contact {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-developer {
    font-size: 0.85rem !important;
    color: var(--text-gray) !important;
    margin-bottom: 10px !important;
}

.footer-developer a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-developer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-gdpr {
    font-size: 0.8rem !important;
    color: rgba(160, 160, 160, 0.7) !important;
    line-height: 1.6;
}

.footer-gdpr a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-gdpr a:hover {
    opacity: 0.8;
}

.logo-footer {
    filter: invert(1) brightness(2);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: invert(1) brightness(2);
}

.social-icon:hover {
    transform: scale(1.1);
    filter: invert(1) brightness(2) drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Mobile Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 30px 25px;
    }

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

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 25px;
    }

    .footer-gdpr {
        font-size: 0.75rem !important;
    }
}

/* ============================================
   GALLERY 3D
   ============================================ */
.gallery3d {
    position: relative;
    min-height: 560px;
    padding: 80px 20px;
    background: #0d0a10;
    overflow: hidden;
}

.gallery3d-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.gallery3d-left {
    position: relative;
    flex: 0 0 52%;
    min-height: 600px;
}

.gallery3d-right {
    flex: 1;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery3d-desc {
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 520px;
    font-size: 1rem;
}

.gallery3d-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.gallery3d-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.gallery3d-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.gallery3d-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

.gallery3d-counter {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    font-weight: 600;
}

#gallery-3d-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    background: transparent;
    border: none;
    z-index: 1;
    touch-action: pan-y pinch-zoom;
}

@media (max-width: 768px) {
    .gallery3d {
        min-height: 520px;
        padding: 60px 16px;
    }

    .gallery3d-inner {
        flex-direction: column;
        gap: 24px;
    }

    .gallery3d-left {
        width: 100%;
        min-height: 480px;
    }

    .gallery3d-right {
        width: 100%;
        align-items: flex-start;
    }
}