        /* ============================================
   REQUIRED VARIABLES & FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Colors */
    --gold: #C9A050;
    --gold-gradient: linear-gradient(135deg, #C9A050, #E8D5A3, #C9A050);
    --black: #0A0A0A;
    --white: #FFFFFF;
    --white-50: rgba(255, 255, 255, 0.5);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-10: rgba(255, 255, 255, 0.1);
    --gold-20: rgba(201, 160, 80, 0.2);
    --dark-2: #1A1A1A;
}
        /* ============================================
           CSS VARIABLES & RESET
        ============================================ */
        :root {
            --gold: #C9A84C;
            --gold-light: #E8C97A;
            --gold-dark: #A07830;
            --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #A07830 100%);
            --black: #0A0A0A;
            --dark: #111111;
            --dark-2: #1A1A1A;
            --dark-3: #222222;
            --dark-4: #2A2A2A;
            --white: #FFFFFF;
            --white-90: rgba(255,255,255,0.9);
            --white-70: rgba(255,255,255,0.7);
            --white-50: rgba(255,255,255,0.5);
            --white-20: rgba(255,255,255,0.2);
            --white-10: rgba(255,255,255,0.1);
            --gold-20: rgba(201,168,76,0.2);
            --gold-10: rgba(201,168,76,0.1);
            --font-heading: 'Playfair Display', serif;
            --font-elegant: 'Cormorant Garamond', serif;
            --font-body: 'Poppins', sans-serif;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-gold: 0 0 30px rgba(201,168,76,0.3);
            --shadow-dark: 0 20px 60px rgba(0,0,0,0.8);
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }


        

        /* ============================================
           SCROLLBAR
        ============================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }

        /* ============================================
           PRELOADER
        ============================================ */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--black);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
        }

        .preloader-logo {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--gold);
            letter-spacing: 6px;
            text-transform: uppercase;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        .preloader-line {
            width: 200px;
            height: 1px;
            background: var(--dark-3);
            position: relative;
            overflow: hidden;
        }

        .preloader-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold-gradient);
            animation: preloaderLine 1.5s ease-in-out infinite;
        }

        @keyframes preloaderPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes preloaderLine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* ============================================
           CURSOR
        ============================================ */
        .cursor {
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: transform 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99997;
            transition: all 0.15s ease;
            opacity: 0.6;
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        #navbar.scrolled {
            background: rgba(10,10,10,0.97);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid var(--gold-20);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            flex-direction: column;
            text-decoration: none;
        }

        .logo-main {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1;
        }

        .logo-sub {
            font-family: var(--font-elegant);
            font-size: 0.65rem;
            color: var(--gold);
            letter-spacing: 8px;
            text-transform: uppercase;
            opacity: 0.8;
            margin-top: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--white-70);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold-gradient);
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--gold);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: transparent !important;
            border: 1px solid var(--gold) !important;
            color: var(--gold) !important;
            padding: 10px 24px;
            border-radius: 30px;
            transition: var(--transition) !important;
        }

        .nav-cta:hover {
            background: var(--gold-gradient) !important;
            color: var(--black) !important;
            box-shadow: var(--shadow-gold) !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        #hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
                linear-gradient(135deg, #0A0A0A 0%, #1A1411 50%, #0A0A0A 100%);
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 60px,
                    rgba(201,168,76,0.02) 60px,
                    rgba(201,168,76,0.02) 61px
                );
        }

        .hero-side-lines {
            position: absolute;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hero-side-line {
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
            opacity: 0.4;
        }

        .hero-year {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-family: var(--font-elegant);
            font-size: 0.75rem;
            letter-spacing: 5px;
            color: var(--gold);
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gold-10);
            border: 1px solid var(--gold-20);
            padding: 8px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
        }

        .hero-badge span {
            font-family: var(--font-elegant);
            font-size: 0.85rem;
            color: var(--gold);
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .hero-badge-dot {
            width: 5px;
            height: 5px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 10px;
        }

        .hero-title-gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: italic;
        }

        .hero-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .hero-divider-line {
            width: 80px;
            height: 1px;
            background: var(--gold-gradient);
            opacity: 0.6;
        }

        .hero-divider-diamond {
            width: 8px;
            height: 8px;
            background: var(--gold);
            transform: rotate(45deg);
        }

        .hero-subtitle {
            font-family: var(--font-elegant);
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--white-70);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 50px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold-gradient);
            color: var(--black);
            padding: 16px 40px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            box-shadow: 0 10px 40px rgba(201,168,76,0.5);
            transform: translateY(-3px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--gold);
            padding: 16px 40px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid var(--gold);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: var(--gold-20);
            box-shadow: 0 10px 40px rgba(201,168,76,0.2);
            transform: translateY(-3px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .hero-scroll span {
            font-family: var(--font-elegant);
            font-size: 0.7rem;
            color: var(--gold);
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.7;
        }

        .scroll-mouse {
            width: 24px;
            height: 38px;
            border: 1px solid var(--gold);
            border-radius: 12px;
            position: relative;
            opacity: 0.6;
        }

        .scroll-wheel {
            width: 3px;
            height: 8px;
            background: var(--gold);
            border-radius: 3px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s infinite;
        }

        @keyframes scrollWheel {
            0% { opacity: 1; top: 6px; }
            100% { opacity: 0; top: 20px; }
        }

        /* Floating elements */
        .hero-float-1,
        .hero-float-2,
        .hero-float-3 {
            position: absolute;
            border: 1px solid var(--gold-20);
            border-radius: 50%;
            animation: floatAnim 6s ease-in-out infinite;
        }

        .hero-float-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .hero-float-2 {
            width: 200px;
            height: 200px;
            bottom: 50px;
            left: -50px;
            animation-delay: 2s;
        }

        .hero-float-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 10%;
            animation-delay: 4s;
        }

        @keyframes floatAnim {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
        }

         /* ========== MARQUEE ========== */
        .marquee-section{
            padding:20px 0;
            background:linear-gradient(135deg,var(--gold-dark),var(--gold),var(--gold-light),var(--gold));
            background-size:300% 300%;
            animation:shimmer 8s ease infinite;
            overflow:hidden;position:relative;
        }
        .marquee-section::before,.marquee-section::after{
            content:'';position:absolute;top:0;width:100px;height:100%;z-index:2;
        }
        .marquee-section::before{left:0;background:linear-gradient(90deg,var(--gold),transparent);}
        .marquee-section::after{right:0;background:linear-gradient(90deg,transparent,var(--gold));}

        .marquee-track{display:flex;animation:marquee 30s linear infinite;white-space:nowrap;}
        .marquee-item{
            font-family:'Playfair Display',serif;font-size:1.2rem;
            color:var(--black);padding:0 20px;font-weight:700;
            letter-spacing:4px;display:flex;align-items:center;gap:20px;flex-shrink:0;
        }
        .marquee-item i{font-size:0.5rem;}
        @keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

       /* ============================================
   WHY CHOOSE US - PICTURE BASED LUXURY
============================================ */

#why {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* ---- Background ---- */
#why .why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

#why .why-bg::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(201,168,76,0.07) 0%,
        transparent 60%
    );
    animation: whyBgAnim 12s ease-in-out infinite alternate;
}

#why .why-bg::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(201,168,76,0.05) 0%,
        transparent 60%
    );
    animation: whyBgAnim 16s ease-in-out infinite alternate-reverse;
}

@keyframes whyBgAnim {
    from { transform: scale(1); opacity: 0.5; }
    to   { transform: scale(1.3); opacity: 1; }
}

/* Watermark */
.why-bg-text {
    position: absolute;
    bottom: -50px;
    right: -30px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(120px, 20vw, 300px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -5px;
}

/* Pattern */
.why-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(201,168,76,0.01) 80px,
        rgba(201,168,76,0.01) 81px
    );
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   HERO BANNER - TOP FULL WIDTH
============================================ */
.why-hero-banner {
    position: relative;
    height: 55vh;
    min-height: 420px;
    overflow: hidden;
    z-index: 1;
}

.why-hero-banner-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.why-hero-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: brightness(0.45) contrast(1.15) saturate(0.8);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.why-hero-banner:hover .why-hero-banner-img img {
    transform: scale(1);
}


/* Gold scan line on banner */
.why-hero-scanline {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201,168,76,0.6) 30%,
        var(--gold) 50%,
        rgba(201,168,76,0.6) 70%,
        transparent
    );
    animation: heroBannerScan 5s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes heroBannerScan {
    0%   { top: -5px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 105%; opacity: 0; }
}

/* Banner content */
.why-hero-banner-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
}

.why-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.why-banner-eyebrow-line {
    width: 50px;
    height: 1px;
    background: rgba(201,168,76,0.6);
}

.why-banner-eyebrow span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.why-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 5px 40px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.why-banner-title em {
    font-style: italic;
    background: linear-gradient(135deg,
        #E8C97A 0%,
        #C9A84C 45%,
        #F5E098 75%,
        #A07830 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-banner-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    font-style: italic;
}

/* Corner accents on banner */
.why-banner-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 4;
}

.why-banner-corner.tl {
    top: 25px;
    left: 25px;
    border-top: 1px solid rgba(201,168,76,0.4);
    border-left: 1px solid rgba(201,168,76,0.4);
}

.why-banner-corner.tr {
    top: 25px;
    right: 25px;
    border-top: 1px solid rgba(201,168,76,0.4);
    border-right: 1px solid rgba(201,168,76,0.4);
}

.why-banner-corner.bl {
    bottom: 25px;
    left: 25px;
    border-bottom: 1px solid rgba(201,168,76,0.4);
    border-left: 1px solid rgba(201,168,76,0.4);
}

.why-banner-corner.br {
    bottom: 25px;
    right: 25px;
    border-bottom: 1px solid rgba(201,168,76,0.4);
    border-right: 1px solid rgba(201,168,76,0.4);
}

/* ============================================
   MAIN CONTENT AREA
============================================ */
.why-main-content {
    position: relative;
    z-index: 2;
    padding: 0 0 100px;
}

/* ============================================
   SECTION 1: BENTO GRID WITH PICTURES
============================================ */
.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 320px 320px;
    gap: 3px;
    margin-bottom: 3px;
}

/* Grid item base */
.why-bento-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Grid positions */
.why-bento-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}
.why-bento-item:nth-child(2) {
    grid-column: 5 / 8;
    grid-row: 1 / 2;
}
.why-bento-item:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}
.why-bento-item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}
.why-bento-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

/* Bento item image */
.why-bento-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.why-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.55) contrast(1.1) saturate(0.85);
    transform: scale(1.08);
    transition:
        transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94),
        filter 1.2s ease;
}

.why-bento-item:hover .why-bento-img img {
    transform: scale(1);
    filter: brightness(0.45) contrast(1.1) saturate(0.9);
}

/* Placeholder for bento */
.why-bento-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f, #1a1408);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: transform 1.2s ease;
    position: relative;
}

.why-bento-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(201,168,76,0.06),
        transparent 70%
    );
}

.why-bento-item:hover .why-bento-placeholder {
    transform: scale(1.04);
}

.bento-placeholder-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.12;
    position: relative;
    z-index: 1;
}

.bento-placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 5px;
    opacity: 0.25;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}



/* Gold shimmer on hover */
.why-bento-shimmer {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(201,168,76,0.05) 50%,
        transparent 60%
    );
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-bento-item:hover .why-bento-shimmer {
    opacity: 1;
    animation: bentoShimmer 1.5s ease forwards;
}

@keyframes bentoShimmer {
    from { background-position: 200% 200%; }
    to   { background-position: -200% -200%; }
}

/* Top accent line */
.why-bento-top-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--gold),
        rgba(201,168,76,0.2)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 3;
}

.why-bento-item:hover .why-bento-top-accent {
    transform: scaleX(1);
}

/* Number badge top right */
.why-bento-num {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.why-bento-item:hover .why-bento-num {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.4);
    transform: scale(1.1);
}

/* Content info at bottom */
.why-bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px;
    z-index: 4;
    transform: translateY(5px);
    transition: transform 0.5s ease;
}

.why-bento-item:hover .why-bento-info {
    transform: translateY(0);
}

.why-bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
}

.why-bento-tag::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--gold);
}

.why-bento-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

/* Large item bigger title */
.why-bento-item:nth-child(1) .why-bento-title {
    font-size: 1.7rem;
}

.why-bento-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
    max-width: 400px;
}

.why-bento-item:hover .why-bento-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Detail row */
.why-bento-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.15s;
}

.why-bento-item:hover .why-bento-detail {
    opacity: 1;
    transform: translateY(0);
}

.why-bento-icon-small {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    transition: all 0.4s ease;
}

.why-bento-item:hover .why-bento-icon-small {
    background: var(--gold);
    border-color: var(--gold);
}

.why-bento-icon-small i {
    color: var(--gold);
    font-size: 0.75rem;
    transition: color 0.4s ease;
}

.why-bento-item:hover .why-bento-icon-small i {
    color: #000;
}

.why-bento-learn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-bento-learn i {
    font-size: 0.6rem;
    transition: transform 0.4s ease;
}

.why-bento-learn:hover {
    color: var(--gold);
}

.why-bento-learn:hover i {
    transform: translateX(4px);
}

/* ============================================
   SECTION 2: SPLIT FEATURE ROW
============================================ */
.why-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 3px;
}

.why-split-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    cursor: pointer;
}

/* Split card images */
.why-split-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.why-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.4) contrast(1.2) saturate(0.7);
    transform: scale(1.06);
    transition: all 1s ease;
}

.why-split-card:hover .why-split-img img {
    transform: scale(1);
    filter: brightness(0.35) contrast(1.2) saturate(0.8);
}

/* Split placeholder */
.why-split-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #181818, #0f0f0f, #181308);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    transition: transform 1s ease;
    position: relative;
}

.why-split-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 80%,
        rgba(201,168,76,0.06),
        transparent 60%
    );
}

.why-split-card:hover .why-split-placeholder {
    transform: scale(1.03);
}



/* Split card content */
.why-split-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 55px;
}

.why-split-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.12);
    line-height: 0.8;
    margin-bottom: 20px;
    display: block;
    transition: all 0.5s ease;
    user-select: none;
}

.why-split-card:hover .why-split-number {
    -webkit-text-stroke: 1px rgba(201,168,76,0.3);
    transform: translateX(-5px);
}

.why-split-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.5s ease;
    position: relative;
}

.why-split-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(201,168,76,0.12);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.why-split-card:hover .why-split-icon {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,168,76,0.2);
}

.why-split-card:hover .why-split-icon::before {
    border-color: rgba(201,168,76,0.3);
    animation: splitIconSpin 6s linear infinite;
}

@keyframes splitIconSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.why-split-icon i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform 0.5s ease;
}

.why-split-card:hover .why-split-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}

.why-split-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.why-split-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.why-split-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    display: block;
    transition: color 0.4s ease;
}

.why-split-card:hover .why-split-title {
    color: rgba(255,255,255,0.95);
}

.why-split-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 28px;
    transition: color 0.4s ease;
}

.why-split-card:hover .why-split-desc {
    color: rgba(255,255,255,0.65);
}

/* Split card CTA */
.why-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s ease;
}

.why-split-card:hover .why-split-cta {
    opacity: 1;
    transform: translateY(0);
}

.why-split-cta span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.why-split-cta-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-split-card:hover .why-split-cta-arrow {
    background: var(--gold);
    border-color: var(--gold);
}

.why-split-cta-arrow i {
    color: var(--gold);
    font-size: 0.65rem;
    transition: all 0.4s ease;
}

.why-split-card:hover .why-split-cta-arrow i {
    color: #000;
    transform: translateX(2px);
}

/* Top accent */
.why-split-top-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 3;
}

.why-split-card:hover .why-split-top-accent {
    transform: scaleX(1);
}

/* ============================================
   SECTION 3: STATS + GUARANTEE ROW
============================================ */
.why-bottom-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3px;
    margin-bottom: 3px;
}

/* Left: Large stat image card */
.why-stat-image-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.why-stat-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.35) contrast(1.2) saturate(0.7);
    transform: scale(1.05);
    transition: all 1s ease;
    position: absolute;
    inset: 0;
}

.why-stat-image-card:hover img {
    transform: scale(1);
    filter: brightness(0.3) contrast(1.2) saturate(0.8);
}

/* Stat image placeholder */
.why-stat-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #181818, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-stat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 1;
}

.why-stat-image-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.why-stat-big-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg,
        #E8C97A 0%,
        #C9A84C 50%,
        #A07830 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    letter-spacing: -3px;
}

.why-stat-big-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
}

.why-stat-big-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.35);
    margin-top: 6px;
    font-style: italic;
}

/* Right: Guarantee grid */
.why-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.why-guarantee-item {
    background: #111111;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s ease;
    border: 1px solid rgba(201,168,76,0.04);
}

.why-guarantee-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-guarantee-item:hover::before {
    transform: scaleX(1);
}

.why-guarantee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(201,168,76,0.04),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-guarantee-item:hover::after {
    opacity: 1;
}

.why-guarantee-item:hover {
    background: #141414;
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-4px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 30px rgba(201,168,76,0.06);
}

.why-guarantee-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    background: rgba(201,168,76,0.04);
}

.why-guarantee-item:hover .why-guarantee-icon {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.why-guarantee-icon i {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.why-guarantee-item:hover .why-guarantee-icon i {
    transform: scale(1.2) rotate(-5deg);
}

.why-guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    display: block;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.why-guarantee-item:hover .why-guarantee-title {
    color: var(--gold);
}

.why-guarantee-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.why-guarantee-item:hover .why-guarantee-desc {
    color: rgba(255,255,255,0.58);
}

/* Big ghost number inside guarantee item */
.why-guarantee-ghost {
    position: absolute;
    bottom: 10px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: all 0.5s ease;
}

.why-guarantee-item:hover .why-guarantee-ghost {
    -webkit-text-stroke: 1px rgba(201,168,76,0.1);
    transform: scale(1.1);
}


























/* ============================================

   CTA STRIP - ULTRA PREMIUM REDESIGN
============================================ */

.why-cta-strip {
    position: relative;
    overflow: hidden;
    z-index: 2;
    min-height: 500px;
}

/* ---- Multi-layer image system ---- */
.why-cta-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-cta-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    filter: brightness(0.22) contrast(1.3) saturate(0.5);
    transform: scale(1.08);
    transition: transform 10s ease, filter 1s ease;
}

.why-cta-strip:hover .why-cta-img-wrap img {
    transform: scale(1);
    filter: brightness(0.18) contrast(1.3) saturate(0.5);
}

/* Gradient overlays - multiple layers */
.why-cta-grad-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.97) 0%,
        rgba(10,8,2,0.85) 35%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.why-cta-grad-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

/* Gold radial glow left */
.why-cta-glow-left {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(201,168,76,0.12) 0%,
        transparent 65%
    );
    z-index: 1;
    animation: ctaGlowPulse 5s ease-in-out infinite alternate;
    pointer-events: none;
}

.why-cta-glow-right {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(201,168,76,0.07) 0%,
        transparent 65%
    );
    z-index: 1;
    animation: ctaGlowPulse 7s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes ctaGlowPulse {
    from { opacity: 0.6; transform: translateY(-50%) scale(1); }
    to   { opacity: 1;   transform: translateY(-50%) scale(1.2); }
}

/* Diagonal gold lines pattern */
.why-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(201,168,76,0.015) 60px,
        rgba(201,168,76,0.015) 61px
    );
    z-index: 1;
    pointer-events: none;
}

/* Top & bottom gold accent lines */
.why-cta-line-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201,168,76,0.3) 20%,
        var(--gold) 50%,
        rgba(201,168,76,0.3) 80%,
        transparent
    );
    z-index: 3;
}

.why-cta-line-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201,168,76,0.2) 30%,
        rgba(201,168,76,0.4) 50%,
        rgba(201,168,76,0.2) 70%,
        transparent
    );
    z-index: 3;
}

/* Animated horizontal scan line */
.why-cta-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201,168,76,0.5) 30%,
        rgba(201,168,76,0.9) 50%,
        rgba(201,168,76,0.5) 70%,
        transparent
    );
    z-index: 4;
    animation: ctaScanMove 6s ease-in-out infinite;
    pointer-events: none;
    filter: blur(0.5px);
}

@keyframes ctaScanMove {
    0%   { top: -5px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 105%; opacity: 0; }
}

/* Four corner gold brackets */
.why-cta-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 4;
    transition: all 0.5s ease;
}

.why-cta-corner.tl {
    top: 22px; left: 22px;
    border-top: 2px solid rgba(201,168,76,0.5);
    border-left: 2px solid rgba(201,168,76,0.5);
}

.why-cta-corner.tr {
    top: 22px; right: 22px;
    border-top: 2px solid rgba(201,168,76,0.5);
    border-right: 2px solid rgba(201,168,76,0.5);
}

.why-cta-corner.bl {
    bottom: 22px; left: 22px;
    border-bottom: 2px solid rgba(201,168,76,0.5);
    border-left: 2px solid rgba(201,168,76,0.5);
}

.why-cta-corner.br {
    bottom: 22px; right: 22px;
    border-bottom: 2px solid rgba(201,168,76,0.5);
    border-right: 2px solid rgba(201,168,76,0.5);
}

.why-cta-strip:hover .why-cta-corner {
    width: 70px;
    height: 70px;
    border-color: var(--gold);
}

/* ============================================
   CTA INNER LAYOUT
============================================ */
.why-cta-inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    min-height: 500px;
}

/* ---- LEFT PANEL ---- */
.why-cta-panel-left {
    padding: 70px 60px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow */
.why-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.why-cta-eyebrow-gem {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(201,168,76,0.7);
    animation: gemGlow 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes gemGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(201,168,76,0.5); }
    50%       { box-shadow: 0 0 20px rgba(201,168,76,0.9); }
}

.why-cta-eyebrow span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 7px;
    text-transform: uppercase;
    font-weight: 500;
}

.why-cta-eyebrow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(201,168,76,0.5),
        transparent
    );
    max-width: 60px;
}

/* Main title */
.why-cta-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    display: block;
}

.why-cta-main-title em {
    font-style: italic;
    background: linear-gradient(135deg,
        #E8C97A 0%,
        #C9A84C 40%,
        #F5E098 70%,
        #A07830 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Subtitle */
.why-cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 35px;
    font-style: italic;
    max-width: 420px;
}

/* Mini features list */
.why-cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 38px;
}

.why-cta-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.why-cta-feature-item:hover {
    transform: translateX(5px);
}

.why-cta-feature-check {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    transition: all 0.3s ease;
}

.why-cta-feature-item:hover .why-cta-feature-check {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201,168,76,0.3);
}

.why-cta-feature-check i {
    color: var(--gold);
    font-size: 0.6rem;
}

.why-cta-feature-item span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.why-cta-feature-item:hover span {
    color: rgba(255,255,255,0.85);
}

/* CTA buttons row */
.why-cta-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Phone link */
.why-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.why-cta-phone-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.06);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.why-cta-phone:hover .why-cta-phone-icon {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(201,168,76,0.4);
}

.why-cta-phone-icon i {
    color: var(--gold);
    font-size: 0.9rem;
    transition: color 0.4s ease;
}

.why-cta-phone:hover .why-cta-phone-icon i {
    color: #000;
}

.why-cta-phone-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.why-cta-phone-text span {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.why-cta-phone:hover .why-cta-phone-text strong {
    color: var(--gold);
}

/* ---- CENTER DIVIDER ---- */
.why-cta-center-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 20px;
    height: 100%;
    min-height: 500px;
    justify-content: center;
    position: relative;
}

/* Vertical golden line */
.why-cta-vline {
    width: 1px;
    flex: 1;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(201,168,76,0.2) 20%,
        rgba(201,168,76,0.4) 50%,
        rgba(201,168,76,0.2) 80%,
        transparent
    );
}

/* Center diamond */
.why-cta-center-diamond {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201,168,76,0.3);
    transform: rotate(45deg);
    background: rgba(201,168,76,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.5s ease;
}

.why-cta-strip:hover .why-cta-center-diamond {
    border-color: var(--gold);
    background: rgba(201,168,76,0.12);
    box-shadow: 0 0 30px rgba(201,168,76,0.2);
}

.why-cta-center-diamond::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(201,168,76,0.2);
}

.why-cta-center-diamond i {
    color: var(--gold);
    font-size: 0.9rem;
    transform: rotate(-45deg);
    transition: all 0.5s ease;
}

.why-cta-strip:hover .why-cta-center-diamond i {
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.8));
}

/* ---- RIGHT PANEL ---- */
.why-cta-panel-right {
    padding: 70px 80px 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Big price display */
.why-cta-price-display {
    width: 100%;
    margin-bottom: 35px;
}

.why-cta-price-label-top {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 7px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.why-cta-price-main {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
}

.why-cta-price-currency {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 12px;
    font-weight: 400;
}

.why-cta-price-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg,
        #E8C97A 0%,
        #C9A84C 35%,
        #F5E098 65%,
        #A07830 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -3px;
}

.why-cta-price-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
    align-self: flex-end;
    margin-bottom: 8px;
}

.why-cta-price-sublabel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    display: block;
    margin-bottom: 5px;
}

/* Gold progress-style bar under price */
.why-cta-price-bar {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.why-cta-price-bar::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 75%;
    background: linear-gradient(
        to right,
        #A07830,
        #C9A84C,
        #E8C97A
    );
    border-radius: 1px;
}

/* Package options */
.why-cta-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 32px;
}

.why-cta-pkg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 1px solid rgba(201,168,76,0.08);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-cta-pkg::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.why-cta-pkg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(201,168,76,0.05),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-cta-pkg:hover::before { transform: scaleY(1); }
.why-cta-pkg:hover::after  { opacity: 1; }

.why-cta-pkg:hover {
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.04);
    transform: translateX(5px);
}

.why-cta-pkg.featured-pkg {
    border-color: rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.06);
}

.why-cta-pkg.featured-pkg::before {
    transform: scaleY(1);
}

.why-cta-pkg-left {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.why-cta-pkg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
    border: 1px solid rgba(201,168,76,0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-cta-pkg.featured-pkg .why-cta-pkg-dot,
.why-cta-pkg:hover .why-cta-pkg-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

.why-cta-pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s ease;
}

.why-cta-pkg:hover .why-cta-pkg-name,
.why-cta-pkg.featured-pkg .why-cta-pkg-name {
    color: var(--gold);
}

.why-cta-pkg-price {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Main CTA button group */
.why-cta-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.why-cta-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg,
        #E8C97A 0%,
        #C9A84C 45%,
        #A07830 100%
    );
    color: #000;
    border: none;
    padding: 18px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.why-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: 0.5s;
}

.why-cta-btn-primary:hover::before {
    left: 100%;
}

.why-cta-btn-primary:hover {
    box-shadow: 0 15px 50px rgba(201,168,76,0.5);
    transform: translateY(-3px);
}

.why-cta-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 15px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    width: 100%;
}

.why-cta-btn-secondary:hover {
    border-color: rgba(201,168,76,0.4);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
}

/* Trust badges row */
.why-cta-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
}

.why-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.why-cta-trust-item:hover {
    color: rgba(255,255,255,0.6);
}

.why-cta-trust-item i {
    color: var(--gold);
    font-size: 0.65rem;
    opacity: 0.7;
}

.why-cta-trust-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
    flex-shrink: 0;
}














/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
    .why-cta-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .why-cta-center-div {
        display: none;
    }
    .why-cta-panel-left {
        padding: 60px 40px 60px 60px;
    }
    .why-cta-panel-right {
        padding: 60px 60px 60px 40px;
    }
}

@media (max-width: 768px) {
    .why-cta-strip {
        min-height: auto;
    }
    .why-cta-inner {
        grid-template-columns: 1fr;
    }
    .why-cta-panel-left {
        padding: 60px 30px 30px;
    }
    .why-cta-panel-right {
        padding: 30px 30px 60px;
    }
    .why-cta-corner {
        width: 35px;
        height: 35px;
    }
    .why-cta-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
    .why-cta-packages {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .why-cta-panel-left,
    .why-cta-panel-right {
        padding: 40px 20px;
    }
    .why-cta-price-number {
        font-size: 3.5rem;
    }
    .why-cta-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
    .why-bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 280px 280px 280px;
    }
    .why-bento-item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    .why-bento-item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }
    .why-bento-item:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
    }
    .why-bento-item:nth-child(4) {
        grid-column: 1 / 4;
        grid-row: 3 / 4;
    }
    .why-bento-item:nth-child(5) {
        grid-column: 4 / 7;
        grid-row: 3 / 4;
    }
    .why-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-cta-content {
        padding: 50px 50px;
    }
}

@media (max-width: 992px) {
    .why-split-row {
        grid-template-columns: 1fr;
    }
    .why-bottom-row {
        grid-template-columns: 1fr;
    }
    .why-stat-image-card {
        min-height: 200px;
    }
    .why-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    .why-cta-right {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-hero-banner {
        height: 45vh;
        min-height: 300px;
    }
    .why-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    .why-bento-item:nth-child(n) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .why-split-content {
        padding: 35px 30px;
    }
    .why-split-number {
        font-size: 4rem;
    }
    .why-guarantee-grid {
        grid-template-columns: 1fr;
    }
    .why-cta-right {
        flex-wrap: wrap;
        gap: 15px;
    }
    .why-cta-divider {
        display: none;
    }
    .why-cta-content {
        padding: 40px 24px;
    }
    .why-banner-corner {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .why-bento-item:nth-child(1) .why-bento-title {
        font-size: 1.3rem;
    }
    .why-split-content {
        padding: 28px 24px;
    }
}
      
       /* ============================================
   LOOKBOOK SECTION - LUXURY STYLE DNA
============================================ */

.lookbook-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

/* ---- Background Effects ---- */
.lookbook-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.lookbook-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 50%,
            rgba(201,168,76,0.06) 0%,
            transparent 55%),
        radial-gradient(ellipse at 85% 20%,
            rgba(201,168,76,0.04) 0%,
            transparent 50%);
    animation: lookbookBg 12s ease-in-out infinite alternate;
}

@keyframes lookbookBg {
    from { opacity: 0.6; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.1); }
}

/* Diagonal lines pattern */
.lookbook-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(201,168,76,0.015) 80px,
            rgba(201,168,76,0.015) 81px
        );
    pointer-events: none;
}

/* Giant number watermark */
.lookbook-watermark {
    position: absolute;
    bottom: -80px;
    left: -20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(150px, 25vw, 350px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,168,76,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -10px;
}

/* Top accent line */
.lookbook-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201,168,76,0.4) 25%,
        var(--gold) 50%,
        rgba(201,168,76,0.4) 75%,
        transparent
    );
    z-index: 1;
}

/* ============================================
   HEADER
============================================ */
.lookbook-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.lookbook-header-left {}

.lookbook-season-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.lookbook-season-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: seasonPulse 2s ease-in-out infinite;
}

@keyframes seasonPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50%       { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}

.lookbook-season-tag span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.lookbook-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
}

.lookbook-title em {
    font-style: italic;
    background: linear-gradient(135deg,
        #E8C97A 0%,
        #C9A84C 45%,
        #F5E098 75%,
        #A07830 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Right side now below, centered ── */
.lookbook-header-right {
    text-align: center;
    padding-bottom: 0;
}

.lookbook-header-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 16px;
}

.lookbook-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.lookbook-view-all-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.lookbook-view-all-arrow i {
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.lookbook-view-all:hover .lookbook-view-all-arrow {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.4);
}

.lookbook-view-all:hover .lookbook-view-all-arrow i {
    color: #000;
    transform: translateX(3px);
}
/* ============================================
   MAIN LOOKBOOK GRID - MAGAZINE LAYOUT
============================================ */
.lookbook-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    position: relative;
    z-index: 2;
}

/* ---- LOOK CARD BASE ---- */
.look-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

/* Card sizes */
.look-card.large {
    grid-row: 1 / 3;
    min-height: 680px;
}

.look-card.medium {
    min-height: 330px;
}

/* Card image */
.look-card-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.look-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.7) contrast(1.1) saturate(0.85);
    transform: scale(1.08);
    transition:
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 1.2s ease;
}

/* Placeholder when no image */
.look-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #111, #1a1408);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: transform 1.2s ease;
}

.look-card:hover .look-card-placeholder {
    transform: scale(1.04);
}

.placeholder-suit-icon {
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.15;
}

.placeholder-suit-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 5px;
    opacity: 0.3;
    text-transform: uppercase;
}

/* Hover image zoom */
.look-card:hover .look-card-image img {
    transform: scale(1);
    filter: brightness(0.82) contrast(1.1) saturate(1);
}


/* Top tags on cards */
.look-card-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.look-card-tag {
    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(201,168,76,0.25);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.look-card-new {
    background: var(--gold);
    padding: 6px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Bottom info */
.look-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.5s ease;
}

.look-card:hover .look-card-info {
    transform: translateY(0);
}

.look-card-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
}

.look-card-category::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.look-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    line-height: 1.3;
}

.look-card.large .look-card-name {
    font-size: 1.9rem;
}

.look-card-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.look-card:hover .look-card-detail {
    opacity: 1;
    transform: translateY(0);
}

.look-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

.look-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 500;
}

.look-card-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Gold shimmer overlay on hover */
.look-card-shimmer {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(201,168,76,0.04) 50%,
        transparent 60%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.look-card:hover .look-card-shimmer {
    opacity: 1;
    animation: cardShimmer 1.5s ease forwards;
}

@keyframes cardShimmer {
    0%   { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

/* ============================================
   STYLE FILTER BAR
============================================ */
.lookbook-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding-bottom: 4px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.15);
    color: rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
    border-radius: 30px;
    font-weight: 400;
}

.filter-pill i {
    font-size: 0.6rem;
    color: inherit;
}

.filter-pill:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.filter-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.filter-pill.active i {
    color: #000;
}

/* ── Lookbook items hidden state ── */
.lookbook-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lookbook-item.hidden {
    display: none;
}
/* ============================================
   FEATURE STRIP - HORIZONTAL SCROLL CARDS
============================================ */
.lookbook-scroll-strip {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    overflow: hidden;
}

.lookbook-scroll-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.lookbook-scroll-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

.lookbook-scroll-title em {
    font-style: italic;
    color: var(--gold);
}

.lookbook-scroll-nav {
    display: flex;
    gap: 8px;
}

.scroll-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.2);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--gold);
    font-size: 0.75rem;
}

.scroll-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.lookbook-scroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.lookbook-scroll-track::-webkit-scrollbar {
    display: none;
}

/* Mini style cards in scroll strip */
.style-mini-card {
    flex-shrink: 0;
    width: 200px;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(201,168,76,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.style-mini-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5),
                0 0 30px rgba(201,168,76,0.1);
}

.style-mini-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.85);
    transition: all 0.6s ease;
}

.style-mini-card:hover .style-mini-img {
    filter: brightness(0.9) saturate(1);
    transform: scale(1.04);
}

/* Mini card placeholder */
.style-mini-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, #1a1a1a, #111);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.6s ease;
}

.style-mini-card:hover .style-mini-placeholder {
    transform: scale(1.04);
}

.style-mini-placeholder i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.15;
}

.style-mini-body {
    padding: 16px;
    position: relative;
}

.style-mini-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: rgba(201,168,76,0.15);
}

.style-mini-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.style-mini-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    display: block;
    margin-bottom: 8px;
    line-height: 1.3;
}

.style-mini-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    display: block;
}

/* ============================================
   STYLE DNA BAR - UNIQUE ELEMENT
============================================ */
.style-dna-bar {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    border: 1px solid rgba(201,168,76,0.12);
    background: linear-gradient(
        135deg,
        rgba(201,168,76,0.03),
        rgba(201,168,76,0.01)
    );
    overflow: hidden;
}

.style-dna-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--gold),
        rgba(201,168,76,0.2),
        transparent
    );
}

.style-dna-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 0;
}

.style-dna-left {
    padding: 40px 40px;
    border-right: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.02);
}

.style-dna-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
}

.style-dna-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    display: block;
    line-height: 1.3;
}

.style-dna-title em {
    color: var(--gold);
    font-style: italic;
}

.style-dna-right {
    padding: 35px 40px;
    display: flex;
    gap: 0;
}

/* DNA trait items */
.dna-trait {
    flex: 1;
    padding: 0 28px;
    border-right: 1px solid rgba(201,168,76,0.1);
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.dna-trait:first-child { padding-left: 0; }
.dna-trait:last-child  {
    border-right: none;
    padding-right: 0;
}

.dna-trait:hover {
    background: rgba(201,168,76,0.03);
}

.dna-trait-circle {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.4s ease;
    position: relative;
}

.dna-trait-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(201,168,76,0.1);
    animation: dnaRotate 12s linear infinite;
}

@keyframes dnaRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.dna-trait:hover .dna-trait-circle {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.dna-trait-circle i {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.dna-trait:hover .dna-trait-circle i {
    opacity: 1;
}

.dna-trait-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 4px;
}

.dna-trait-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    display: block;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
    }
    .look-card.large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 450px;
    }
    .style-dna-inner {
        grid-template-columns: 1fr;
    }
    .style-dna-left {
        border-right: none;
        border-bottom: 1px solid rgba(201,168,76,0.1);
        padding: 30px 30px;
    }
    .style-dna-right {
        padding: 30px;
        flex-wrap: wrap;
        gap: 20px;
    }
    .dna-trait {
        flex: none;
        width: calc(33% - 14px);
        border-right: none;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .lookbook-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lookbook-header-right {
        text-align: left;
    }
    .lookbook-header-desc {
        margin-left: 0;
    }
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
    .look-card.large {
        min-height: 400px;
    }
    .look-card.medium {
        min-height: 280px;
    }
    .style-mini-card {
        width: 170px;
    }
    .dna-trait {
        width: calc(50% - 10px);
    }
    .style-dna-right {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .lookbook-section {
        padding: 80px 0;
    }
    .dna-trait {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(201,168,76,0.08);
        border-right: none;
    }
}
        /* ============================================
           WHY CHOOSE US
        ============================================ */
        #why {
            background: var(--black);
            position: relative;
        }

        .why-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .why-card {
            background: var(--dark-2);
            padding: 50px 40px;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
            border: 1px solid transparent;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .why-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, var(--gold-10), transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-card:hover::after {
            opacity: 1;
        }

        .why-card:hover {
            background: var(--dark-3);
            transform: translateY(-8px);
            border-color: var(--gold-20);
            box-shadow: var(--shadow-gold);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            background: var(--gold-10);
            border: 1px solid var(--gold-20);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .why-card:hover .why-icon {
            background: var(--gold-gradient);
            border-color: var(--gold);
        }

        .why-icon i {
            font-size: 1.5rem;
            color: var(--gold);
            transition: var(--transition);
        }

        .why-card:hover .why-icon i {
            color: var(--black);
        }

        .why-card h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .why-card p {
            font-family: var(--font-elegant);
            font-size: 1rem;
            color: var(--white-60);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .why-card-number {
            position: absolute;
            bottom: 20px;
            right: 25px;
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 800;
            color: var(--white-10);
            line-height: 1;
            z-index: 0;
        }











/* ============================================
   COLLECTIONS HEADER - PREMIUM TYPOGRAPHY
   ============================================ */

/* Section Label - "Our Offerings" */
.section-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.section-label span {
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: labelGlow 3s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.section-label-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    position: relative;
    overflow: hidden;
}

.section-label-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lineSweep 3s ease-in-out infinite;
}

@keyframes lineSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Section Title - "Our Signature Collections" */
.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 10px;
}

.section-title span {
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleShimmer 4s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes titleShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add decorative dots around the gold word */
.section-title span::before,
.section-title span::after {
    content: '◆';
    font-size: 0.5rem;
    position: relative;
    top: -8px;
    margin: 0 8px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Gold Divider Line */
.gold-line {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.gold-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(201, 160, 80, 0.5);
    animation: goldLineDot 3s ease-in-out infinite;
}

@keyframes goldLineDot {
    0%, 100% { left: 0%; }
    50% { left: 100%; }
}

/* Section Subtitle - "Designed to make every moment unforgettable" */
.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    line-height: 1.8;
    max-width: 550px;
    position: relative;
    padding: 0 30px;
}

/* Decorative quotes around subtitle */
.section-subtitle::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
}

.section-subtitle::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
}

/* ============================================
   COLLECTIONS HEADER WRAPPER
   ============================================ */
.collections-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

/* Background decorative text */
.collections-header::before {
    content: 'COLLECTION';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(201, 160, 80, 0.02);
    letter-spacing: 20px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

/* Make inner content above the watermark */
.collections-header > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }

    .collections-header::before {
        font-size: 8rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .section-label span {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .collections-header::before {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .section-title span::before,
    .section-title span::after {
        display: none;
    }

    .section-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        padding: 0 20px;
    }

    .section-subtitle::before {
        font-size: 2rem;
        top: -5px;
    }

    .section-subtitle::after {
        font-size: 2rem;
        bottom: -15px;
    }

    .section-label span {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .section-label-line {
        width: 40px;
    }

    .collections-header::before {
        font-size: 4rem;
        letter-spacing: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .collections-header::before {
        font-size: 3rem;
    }
}
/* ============================================
   COLLECTIONS SECTION - ULTRA PREMIUM
   ============================================ */
#collections {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.collections-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 160, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 160, 80, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.collections-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
}

.glow-left {
    left: -200px;
    top: 20%;
    background: var(--gold);
}

.glow-right {
    right: -200px;
    bottom: 20%;
    background: var(--gold);
}

.floating-diamond {
    position: absolute;
    color: var(--gold);
    opacity: 0.05;
    animation: floatDiamond 20s ease-in-out infinite;
}

.diamond-1 {
    font-size: 3rem;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.diamond-2 {
    font-size: 2rem;
    top: 50%;
    right: 8%;
    animation-delay: -7s;
}

.diamond-3 {
    font-size: 1.5rem;
    bottom: 15%;
    left: 15%;
    animation-delay: -14s;
}

@keyframes floatDiamond {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
    75% { transform: translateY(-40px) rotate(270deg); }
}

/* Container */
#collections .container {
    position: relative;
    z-index: 1;
}

/* ---- TABS ---- */
.collections-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 60px;
}

.collections-tabs {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 80, 0.15);
    border-radius: 60px;
    padding: 6px;
    position: relative;
    backdrop-filter: blur(10px);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.tab-btn i {
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
    color: var(--black);
    background: var(--gold-gradient);
    box-shadow: 0 4px 20px rgba(201, 160, 80, 0.4);
}

.tab-btn.active i {
    animation: tabIconPulse 2s ease-in-out infinite;
}

@keyframes tabIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ---- COLLECTION GRID ---- */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ---- COLLECTION CARD ---- */
.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(201, 160, 80, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.collection-card:hover {
    transform: translateY(-12px);
    border-color: rgba(201, 160, 80, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 160, 80, 0.1);
}

.collection-card:hover::before {
    transform: scaleX(1);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(201, 160, 80, 0.05) 45%,
        rgba(201, 160, 80, 0.1) 50%,
        rgba(201, 160, 80, 0.05) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: cardShine 3s ease-in-out infinite;
}

.collection-card:hover .card-shine {
    opacity: 1;
}

@keyframes cardShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Card Border Glow */
.card-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--card-accent, var(--gold)),
        transparent,
        transparent,
        var(--card-accent, var(--gold)),
        transparent
    );
    animation: borderRotate 4s linear infinite;
}

.collection-card:hover .card-border-glow {
    opacity: 0.5;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badge */
.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 160, 80, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(201, 160, 80, 0); }
}

/* Card Image */
.card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(145deg, rgba(20, 18, 12, 0.95), rgba(10, 10, 10, 0.98));
    position: relative;
    z-index: 1;
}

.placeholder-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(201, 160, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 8s linear infinite;
    position: relative;
}

.placeholder-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    animation: ringRotate 3s linear infinite;
}

.placeholder-ring-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 160, 80, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.placeholder-icon {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.6;
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.placeholder-hint {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.12);
    font-family: var(--font-body);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px 25px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.collection-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 160, 80, 0.4);
}

.overlay-category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.overlay-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.overlay-desc {
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 12px;
}

.overlay-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.overlay-actions {
    display: flex;
    gap: 10px;
}

.overlay-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overlay-btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
    flex: 1;
    justify-content: center;
}

.overlay-btn-primary:hover {
    box-shadow: 0 4px 20px rgba(201, 160, 80, 0.5);
    transform: translateY(-2px);
}

.overlay-btn-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-btn-icon:hover {
    background: rgba(220, 50, 50, 0.2);
    border-color: rgba(220, 50, 50, 0.5);
    color: #ff6b6b;
}

/* Card Info */
.card-info {
    padding: 22px 25px 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(165deg, rgba(30, 30, 30, 0.5), rgba(15, 15, 15, 0.5));
}

.card-info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.collection-card:hover .card-title {
    color: var(--gold);
}

.card-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    margin-left: 10px;
}

.card-rating i {
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.7;
}

.card-info-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.card-price-wrapper {
    display: flex;
    flex-direction: column;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.card-price-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}

.card-info-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    padding: 4px 10px;
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: 4px;
}

.card-info-tag i {
    font-size: 0.55rem;
}

/* Card Book Button */
.card-action-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 15px;
}

.card-book-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: 8px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.card-book-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-book-btn:hover {
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 25px rgba(201, 160, 80, 0.3);
}

.card-book-btn:hover::before {
    opacity: 1;
}

.card-book-btn span,
.card-book-btn i {
    position: relative;
    z-index: 1;
}

.card-book-btn i {
    transition: transform 0.3s ease;
}

.card-book-btn:hover i {
    transform: translateX(5px);
}

/* ---- FOOTER ---- */
.collections-footer {
    text-align: center;
    margin-top: 70px;
}

.btn-view-all {
    display: inline-flex;
    position: relative;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(201, 160, 80, 0.3);
    transition: all 0.4s ease;
}

.btn-view-all-bg {
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn-view-all:hover .btn-view-all-bg {
    opacity: 1;
}

.btn-view-all-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.4s ease;
}

.btn-view-all:hover .btn-view-all-content {
    color: var(--black);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-view-all:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-view-all:hover {
    box-shadow: 0 8px 40px rgba(201, 160, 80, 0.4);
    transform: translateY(-3px);
}

.collections-footer-text {
    margin-top: 25px;
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.collections-footer-text i {
    color: var(--gold);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .collections-tabs {
        flex-wrap: wrap;
        border-radius: 16px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    #collections {
        padding: 80px 0;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .card-image {
        height: 280px;
    }
    
    .collections-tabs {
        gap: 3px;
        padding: 4px;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-btn {
        padding: 10px 16px;
    }
    
    .tab-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .card-image {
        height: 250px;
    }
    
    .card-info {
        padding: 18px 20px 22px;
    }
}
/* ============================================
   CARD IMAGE STYLES
   ============================================ */

.card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

/* ---- Real Image ---- */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(0.85) contrast(1.05);
}

/* Zoom + Darken on hover */
.collection-card:hover .card-img {
    transform: scale(1.12);
    filter: brightness(0.45) contrast(1.1);
}

/* Smooth fade-in when image loads */
.card-img {
    animation: imgReveal 0.8s ease forwards;
}

@keyframes imgReveal {
    from {
        opacity: 0;
        transform: scale(1.08);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bottom gradient on image for readability */
.card-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.collection-card:hover .card-image::before {
    opacity: 0;
}

/* ---- Placeholder (shown when no image) ---- */
.card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(145deg, rgba(20, 18, 12, 0.95), rgba(10, 10, 10, 0.98));
}
/* ============================================
   CTA STYLE 1 - SPLIT SCREEN
   ============================================ */
#cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    position: relative;
}

/* LEFT SIDE */
.cta-split-left {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.split-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.split-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0f0d08, #1a1408);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.split-img-placeholder i {
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.06;
}

.split-left-content {
    position: relative;
    z-index: 2;
}

.split-left-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border: 1px solid rgba(201, 160, 80, 0.4);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.split-left-badge i {
    font-size: 0.7rem;
}

.split-left-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.split-left-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-stats-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.split-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.split-stat strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.split-stat span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.split-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 160, 80, 0.2);
}

/* RIGHT SIDE */
.cta-split-right {
    background: linear-gradient(145deg, #0a0a0a, #0f0d08);
    display: flex;
    align-items: center;
    padding: 80px 70px;
    position: relative;
    overflow: hidden;
}

.cta-split-right::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 160, 80, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.split-right-content {
    width: 100%;
    max-width: 480px;
}

.split-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.split-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: splitDotPulse 2s ease-in-out infinite;
}

@keyframes splitDotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 160, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(201, 160, 80, 0);
    }
}

.split-right-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.split-right-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-right-desc {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 30px;
}

.split-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.split-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.split-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201, 160, 80, 0.1);
    border: 1px solid rgba(201, 160, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.split-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.split-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: var(--gold-gradient);
    color: var(--black);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.split-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 160, 80, 0.4);
}

.split-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    border: 1px solid rgba(201, 160, 80, 0.25);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.split-btn-secondary i {
    color: var(--gold);
}

.split-btn-secondary:hover {
    border-color: rgba(201, 160, 80, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.split-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.split-trust i {
    color: var(--gold);
    opacity: 0.5;
}

@media (max-width: 992px) {
    #cta-split {
        grid-template-columns: 1fr;
    }

    .cta-split-left {
        min-height: 400px;
        padding: 40px;
    }

    .cta-split-right {
        padding: 60px 40px;
    }

    .split-left-title {
        font-size: 2.5rem;
    }

    .split-right-title {
        font-size: 2.2rem;
    }
}
/* ============================================
   TESTIMONIALS — PREMIUM REDESIGN
============================================ */
#testimonials {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* ── Background Pattern ── */
.testimonials-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(212,175,55,0.03) 60px,
            rgba(212,175,55,0.03) 61px
        );
    pointer-events: none;
}

/* ── Ambient Glows ── */
.testimonials-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.testimonials-glow-left {
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    top: -100px;
    left: -150px;
}
.testimonials-glow-right {
    background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
    bottom: -100px;
    right: -150px;
}

/* ── Header ── */
.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: var(--white-70);
    font-style: italic;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

/* ── Big Quote Decoration ── */
.big-quote-decoration {
    text-align: center;
    font-family: "Georgia", serif;
    font-size: 20rem;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.04;
    user-select: none;
    pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -40px;
    z-index: 0;
    letter-spacing: -20px;
}

/* ──────────────────────────────────────────
   SLIDER WRAPPER
────────────────────────────────────────── */
.testimonials-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding: 20px 80px;
}

.testimonials-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 420px;
    position: relative;
}

/* ── Slide States ── */
.t-slide {
    position: absolute;
    width: 580px;
    max-width: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

/* Active — center, full size */
.t-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: translateX(0) scale(1);
    z-index: 3;
}

/* Prev — left ghost */
.t-slide.prev {
    opacity: 0.35;
    pointer-events: none;
    transform: translateX(-55%) scale(0.82);
    z-index: 1;
    filter: blur(1.5px);
}

/* Next — right ghost */
.t-slide.next {
    opacity: 0.35;
    pointer-events: none;
    transform: translateX(55%) scale(0.82);
    z-index: 1;
    filter: blur(1.5px);
}

/* ──────────────────────────────────────────
   CARD
────────────────────────────────────────── */
.t-card {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.02) 100%
    );
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 2px;
    padding: 50px 45px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transition: all 0.5s ease;
}

.t-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient, linear-gradient(90deg, #b8952a, #d4af37, #f0d060, #d4af37, #b8952a));
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.t-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

/* Card inner glow on hover */
.t-card-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(212,175,55,0.10) 0%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.t-card:hover .t-card-glow { opacity: 1; }

/* ── Card Top Row ── */
.t-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

/* Stars */
.t-stars {
    display: flex;
    gap: 5px;
}
.t-star {
    display: inline-flex;
    animation: starPop 0.3s ease backwards;
}
.t-star:nth-child(1) { animation-delay: 0.0s; }
.t-star:nth-child(2) { animation-delay: 0.1s; }
.t-star:nth-child(3) { animation-delay: 0.2s; }
.t-star:nth-child(4) { animation-delay: 0.3s; }
.t-star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPop {
    from { transform: scale(0) rotate(-20deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg);  opacity: 1; }
}

.t-star i {
    color: var(--gold, #d4af37);
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.6));
}

/* Tag */
.t-tag {
    font-size: 0.65rem;
    font-family: var(--font-heading, sans-serif);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold, #d4af37);
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 5px 12px;
    border-radius: 20px;
}

/* ── Quote Icon ── */
.t-quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.t-quote-icon i {
    color: var(--gold, #d4af37);
    font-size: 1.1rem;
}

/* ── Text ── */
.t-text {
    font-family: var(--font-elegant, Georgia, serif);
    font-size: 1.08rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

/* ── Divider ── */
.t-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.t-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}
.t-divider-diamond {
    font-size: 0.5rem;
    color: var(--gold, #d4af37);
    opacity: 0.6;
}

/* ── Author ── */
.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar with spinning ring */
.t-avatar-wrap {
    position: relative;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}
.t-avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--gold, #d4af37), transparent, var(--gold, #d4af37)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: ringRotate 4s linear infinite;
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}
.t-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gold-gradient, linear-gradient(135deg, #b8952a, #d4af37, #f0d060));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading, sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    position: relative;
    z-index: 1;
}

.t-author-info {
    flex: 1;
}
.t-name {
    font-family: var(--font-heading, sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
    letter-spacing: 0.5px;
}
.t-event {
    font-size: 0.72rem;
    color: var(--gold, #d4af37);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

/* Verified Badge */
.t-verified {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-left: auto;
}
.t-verified i {
    color: var(--gold, #d4af37);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.5));
}
.t-verified span {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ──────────────────────────────────────────
   NAV ARROWS
────────────────────────────────────────── */
.t-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.35);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    color: var(--gold, #d4af37);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.t-nav:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--gold, #d4af37);
    box-shadow: 0 0 20px rgba(212,175,55,0.25);
    transform: translateY(-50%) scale(1.08);
}
.t-nav-prev { left: 0; }
.t-nav-next { right: 0; }

/* ──────────────────────────────────────────
   DOTS
────────────────────────────────────────── */
.t-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.t-dot.active {
    width: 30px;
    border-radius: 4px;
    background: var(--gold, #d4af37);
    border-color: var(--gold, #d4af37);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
.t-dot:hover:not(.active) {
    background: rgba(212,175,55,0.3);
}

/* ──────────────────────────────────────────
   STATS ROW
────────────────────────────────────────── */
.t-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding: 40px 50px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 2px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(6px);
}
.t-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,175,55,0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.t-stat {
    text-align: center;
}
.t-stat-number {
    font-family: var(--font-heading, sans-serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold, #d4af37);
    display: block;
    line-height: 1;
    letter-spacing: -1px;
}
.t-stat-plus {
    font-size: 1.8rem;
    vertical-align: super;
}
.t-stat-label {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 8px;
    display: block;
}
.t-stat-divider {
    font-size: 0.5rem;
    color: rgba(212,175,55,0.35);
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
    .testimonials-wrapper { padding: 20px 60px; }
    .t-slide { width: 100%; max-width: 500px; }
    .t-slide.prev,
    .t-slide.next { display: none; }
    .t-stats { gap: 30px; padding: 30px 25px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .testimonials-wrapper { padding: 20px 50px; }
    .t-card { padding: 35px 25px 30px; }
    .t-stat-number { font-size: 2rem; }
    .t-stats { gap: 20px; }
    .t-nav { width: 42px; height: 42px; font-size: 0.85rem; }
}
/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
    .testimonials-wrapper { padding: 20px 60px; }
    .t-slide { width: 100%; max-width: 500px; }
    .t-slide.prev,
    .t-slide.next { display: none; }
    .t-stats { gap: 30px; padding: 30px 25px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .testimonials-wrapper { padding: 20px 50px; }
    .t-card { padding: 35px 25px 30px; }
    .t-stat-number { font-size: 2rem; }
    .t-stats { gap: 20px; }
    .t-nav { width: 42px; height: 42px; font-size: 0.85rem; }
}












/* ============================================
   BOOKING SECTION — UPDATED
============================================ */
#booking {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}

/* ── Background Grid ── */
.booking-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ── Ambient Orbs ── */
.booking-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.booking-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
    top: -150px; left: -150px;
}
.booking-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
    bottom: -100px; right: -100px;
}
.booking-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* ── Section Header ── */
.booking-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}
.booking-header-sub {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-top: 16px;
}

/* ── Main Grid ── */
.booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ==============================================
   LEFT PANEL
============================================== */
.booking-info-panel {
    position: relative;
    height: 100%;
}

.bip-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 2;
}
.bip-corner-tl {
    top: -1px; left: -1px;
    border-top: 2px solid var(--gold, #d4af37);
    border-left: 2px solid var(--gold, #d4af37);
}
.bip-corner-br {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--gold, #d4af37);
    border-right: 2px solid var(--gold, #d4af37);
}

.bip-inner {
    padding: 45px 40px 40px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.01) 100%
    );
    border: 1px solid rgba(212,175,55,0.18);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.bip-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold, #d4af37) 50%,
        transparent 100%
    );
}

.bip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 30px;
    padding: 7px 18px;
    margin-bottom: 25px;
}
.bip-badge i {
    color: var(--gold, #d4af37);
    font-size: 0.75rem;
    animation: crownFloat 2s ease-in-out infinite;
}
@keyframes crownFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}
.bip-badge span {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold, #d4af37);
    font-family: var(--font-body);
    font-weight: 600;
}

.bip-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #fff;
    line-height: 1.3;
    margin-bottom: 18px;
}
.bip-heading em {
    font-style: italic;
    background: linear-gradient(135deg, #b8952a, #d4af37, #f0d060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bip-desc {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 35px;
    font-style: italic;
}

/* ── Contact Cards ── */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(212,175,55,0.12);
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold, #d4af37);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}
.contact-card:hover {
    background: rgba(212,175,55,0.07);
    border-color: rgba(212,175,55,0.35);
    transform: translateX(6px);
}
.contact-card:hover::before { transform: scaleY(1); }

.cc-icon-wrap {
    width: 46px; height: 46px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.25);
    transition: all 0.3s ease;
}
.contact-card:hover .cc-icon-bg {
    background: rgba(212,175,55,0.2);
}
.cc-icon-wrap i {
    color: var(--gold, #d4af37);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}
.cc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cc-label {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold, #d4af37);
    font-family: var(--font-body);
    font-weight: 600;
}
.cc-value {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-weight: 500;
}
.cc-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
}
.cc-arrow {
    color: rgba(212,175,55,0.3);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    transform: translateX(-5px);
    opacity: 0;
}
.contact-card:hover .cc-arrow {
    color: var(--gold, #d4af37);
    transform: translateX(0);
    opacity: 1;
}

/* ── Promise Strip ── */
.bip-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.15);
    flex-wrap: wrap;
}
.promise-item {
    display: flex;
    align-items: center;
    gap: 7px;
}
.promise-item i {
    color: var(--gold, #d4af37);
    font-size: 0.7rem;
}
.promise-item span {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-weight: 500;
}
.promise-divider {
    font-size: 0.4rem;
    color: rgba(212,175,55,0.3);
}

/* ==============================================
   RIGHT PANEL — FORM
============================================== */
.booking-form-panel {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.02) 100%
    );
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Shimmer bar */
.bfp-shimmer-bar {
    height: 3px;
    background: linear-gradient(
        90deg,
        #b8952a 0%, #d4af37 25%,
        #f0d060 50%, #d4af37 75%,
        #b8952a 100%
    );
    background-size: 200% 100%;
    animation: bfpShimmer 2.5s linear infinite;
}
@keyframes bfpShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Form Header */
.bfp-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 35px 45px 28px;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}
.bfp-step-badge {
    display: inline-flex;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 10px;
}
.bfp-step-badge span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold, #d4af37);
    font-family: var(--font-body);
}
.bfp-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 6px;
}
.bfp-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}
.bfp-header-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bfp-header-icon i {
    color: var(--gold, #d4af37);
    font-size: 1.2rem;
}

/* ── Alerts ── */
.b-alert {
    display: none;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    margin: 20px 45px 0;
}
.b-alert.show { display: flex; }
.b-alert-success {
    background: rgba(40,167,69,0.1);
    border: 1px solid rgba(40,167,69,0.3);
}
.b-alert-error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.3);
}
.b-alert-icon i { font-size: 1.2rem; }
.b-alert-success .b-alert-icon i { color: #6fcf97; }
.b-alert-error   .b-alert-icon i { color: #eb5757; }
.b-alert-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.b-alert-content strong {
    font-size: 0.85rem;
    font-family: var(--font-body);
}
.b-alert-success .b-alert-content strong { color: #6fcf97; }
.b-alert-error   .b-alert-content strong { color: #eb5757; }
.b-alert-content span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

/* ── Form Body ── */
.bfp-form {
    padding: 30px 45px 40px;
}

.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bf-group {
    margin-bottom: 22px;
}

/* Label */
.bf-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.bf-label i {
    color: var(--gold, #d4af37);
    font-size: 0.7rem;
}
.bf-required {
    color: var(--gold, #d4af37);
}
.bf-group:focus-within .bf-label {
    color: rgba(212,175,55,0.8);
}

/* Input Wrap */
.bf-input-wrap { position: relative; }

/* Controls */
.bf-control {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.18);
    border-bottom: 2px solid rgba(212,175,55,0.2);
    color: #fff;
    padding: 14px 18px;
    font-family: var(--font-elegant);
    font-size: 0.98rem;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}
.bf-control::placeholder {
    color: rgba(255,255,255,0.2);
    font-style: italic;
}
.bf-control:focus {
    background: rgba(212,175,55,0.05);
    border-color: rgba(212,175,55,0.3);
    border-bottom-color: var(--gold, #d4af37);
    box-shadow: 0 4px 20px rgba(212,175,55,0.08);
}

/* Animated focus underline */
.bf-focus-line {
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gold, #d4af37);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(212,175,55,0.5);
}
.bf-group:focus-within .bf-focus-line { width: 100%; }

/* Select */
.bf-select-wrap { position: relative; }
.bf-select-wrap .bf-control {
    padding-right: 44px;
    cursor: pointer;
}
.bf-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(212,175,55,0.5);
    font-size: 0.7rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
.bf-select-wrap:focus-within .bf-select-arrow {
    color: var(--gold, #d4af37);
    transform: translateY(-50%) rotate(180deg);
}
select.bf-control option {
    background: #1a1a1a;
    color: #fff;
}

/* Date picker icon tint */
input[type="date"].bf-control::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
    cursor: pointer;
    opacity: 0.6;
}
input[type="date"].bf-control::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Textarea */
textarea.bf-control {
    resize: none;
    min-height: 100px;
}

/* ── Submit Button ── */
.bf-submit {
    width: 100%;
    position: relative;
    border: none;
    padding: 20px;
    cursor: pointer;
    overflow: hidden;
    margin-top: 8px;
    border-radius: 0;
    transition: all 0.3s ease;
}
.bf-submit-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #b8952a 0%, #d4af37 40%,
        #f0d060 60%, #d4af37 80%,
        #b8952a 100%
    );
    background-size: 200% 100%;
    transition: background-position 0.5s ease;
}
.bf-submit:hover .bf-submit-bg {
    background-position: 100% center;
}
.bf-submit-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.bf-submit:hover .bf-submit-shine { left: 150%; }
.bf-submit-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #000;
}
.bf-submit-arrow { transition: transform 0.3s ease; }
.bf-submit:hover .bf-submit-arrow { transform: translateX(5px); }
.bf-submit:hover {
    box-shadow: 0 15px 40px rgba(212,175,55,0.35);
    transform: translateY(-2px);
}
.bf-submit:active { transform: translateY(0); }

/* ── Security Note ── */
.bf-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.bf-security i {
    color: var(--gold, #d4af37);
    font-size: 0.7rem;
}
.bf-security > span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-body);
}
.bf-security-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}
.bf-security-dots span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(212,175,55,0.4);
    animation: secDotPulse 1.5s ease-in-out infinite;
}
.bf-security-dots span:nth-child(2) { animation-delay: 0.2s; }
.bf-security-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes secDotPulse {
    0%,100% { opacity: 0.4; transform: scale(1);   }
    50%      { opacity: 1;   transform: scale(1.3); }
}

/* ==============================================
   RESPONSIVE
============================================== */
@media (max-width: 1024px) {
    .booking-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bfp-header { padding: 30px 35px 25px; }
    .bfp-form   { padding: 25px 35px 35px; }
}

@media (max-width: 768px) {
    .bf-row     { grid-template-columns: 1fr; gap: 0; }
    .bfp-header { padding: 25px 25px 20px; }
    .bfp-form   { padding: 20px 25px 30px; }
    .bip-inner  { padding: 30px 25px; }
    .bfp-title  { font-size: 1.3rem; }
    .b-alert    { margin: 15px 25px 0; }
}

@media (max-width: 480px) {
    .bip-promise { gap: 10px; }
    .bfp-header-icon { display: none; }
}
        /* ============================================
           NEWSLETTER SECTION
        ============================================ */
        #newsletter {
            background: var(--dark);
            text-align: center;
            padding: 80px 0;
        }

        .newsletter-wrap {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-wrap p {
            font-family: var(--font-elegant);
            font-size: 1.1rem;
            color: var(--white-60);
            margin-bottom: 35px;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            background: var(--dark-2);
            border: 1px solid var(--gold-20);
            border-right: none;
            color: var(--white);
            padding: 16px 22px;
            font-family: var(--font-elegant);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }

        .newsletter-input::placeholder {
            color: var(--white-40);
        }

        .newsletter-input:focus {
            border-color: var(--gold);
        }

        .newsletter-btn {
            background: var(--gold-gradient);
            color: var(--black);
            border: none;
            padding: 16px 30px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            box-shadow: var(--shadow-gold);
        }

        /* ============================================
           FOOTER
        ============================================ */
        #footer {
            background: var(--dark-2);
            border-top: 1px solid var(--gold-20);
        }

        .footer-top {
            padding: 80px 0 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
        }

        .footer-brand .logo-main {
            font-size: 1.5rem;
        }

        .footer-tagline {
            font-family: var(--font-elegant);
            font-size: 0.85rem;
            color: var(--gold);
            letter-spacing: 5px;
            text-transform: uppercase;
            margin: 12px 0 20px;
            opacity: 0.7;
        }

        .footer-desc {
            font-family: var(--font-elegant);
            font-size: 1rem;
            color: var(--white-50);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border: 1px solid var(--gold-20);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-60);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--gold-gradient);
            border-color: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
        }

        .footer-heading {
            font-family: var(--font-heading);
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 25px;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 1px;
            background: var(--gold-gradient);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links li a {
            text-decoration: none;
            color: var(--white-50);
            font-family: var(--font-elegant);
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links li a::before {
            content: '→';
            color: var(--gold);
            font-size: 0.7rem;
            opacity: 0;
            transition: var(--transition);
        }

        .footer-links li a:hover {
            color: var(--gold);
            padding-left: 10px;
        }

        .footer-links li a:hover::before {
            opacity: 1;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-contact-item i {
            color: var(--gold);
            font-size: 0.9rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .footer-contact-item span {
            font-family: var(--font-elegant);
            font-size: 0.95rem;
            color: var(--white-50);
            line-height: 1.6;
        }

        .footer-divider {
            height: 1px;
            background: var(--gold-20);
            margin: 0 40px;
        }

        .footer-bottom {
            padding: 25px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-copyright {
            font-family: var(--font-elegant);
            font-size: 0.85rem;
            color: var(--white-40);
        }

        .footer-copyright span {
            color: var(--gold);
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            font-family: var(--font-body);
            font-size: 0.7rem;
            color: var(--white-40);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

        /* ============================================
           MODAL
        ============================================ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-box {
            background: var(--dark-2);
            border: 1px solid var(--gold);
            max-width: 500px;
            width: 90%;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transform: translateY(-30px) scale(0.95);
            transition: var(--transition);
        }

        .modal-overlay.open .modal-box {
            transform: translateY(0) scale(1);
        }

        .modal-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .modal-icon.success {
            background: rgba(40,167,69,0.2);
            border: 2px solid #6fcf97;
            color: #6fcf97;
        }

        .modal-icon.error {
            background: rgba(220,53,69,0.2);
            border: 2px solid #eb5757;
            color: #eb5757;
        }

        .modal-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 12px;
        }

        .modal-text {
            font-family: var(--font-elegant);
            font-size: 1rem;
            color: var(--white-60);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .modal-close {
            background: var(--gold-gradient);
            color: var(--black);
            border: none;
            padding: 14px 40px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-close:hover {
            box-shadow: var(--shadow-gold);
        }

        /* ============================================
           BACK TO TOP
        ============================================ */
        #backTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            border: none;
            border-radius: 50%;
            color: var(--black);
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-gold);
        }

        #backTop.visible {
            opacity: 1;
            visibility: visible;
        }

        #backTop:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201,168,76,0.5);
        }

        /* ============================================
           WHATSAPP FLOAT
        ============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 90px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            z-index: 999;
            box-shadow: 0 5px 25px rgba(37,211,102,0.4);
            transition: var(--transition);
            animation: whatsappPulse 2s ease-in-out infinite;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 5px 40px rgba(37,211,102,0.7); }
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-3px);
        }

        /* ============================================
           MOBILE MENU
        ============================================ */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: var(--dark-2);
            border-left: 1px solid var(--gold-20);
            z-index: 9999;
            padding: 80px 40px 40px;
            transition: var(--transition);
            flex-direction: column;
            gap: 0;
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 9998;
        }

        .mobile-menu-overlay.open {
            display: block;
        }

        .mobile-menu a {
            display: block;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--white-70);
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid var(--white-10);
            letter-spacing: 2px;
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--gold);
            padding-left: 10px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: 1px solid var(--gold-20);
            color: var(--gold);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1200px) {
            .collection-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .pricing-grid { gap: 20px; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            section { padding: 80px 0; }
            .nav-menu { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: flex; }
            .about-grid { grid-template-columns: 1fr; gap: 50px; }
            .about-content { padding-right: 0; }
            .about-badge { right: 0; }
            .booking-wrap { grid-template-columns: 1fr; gap: 50px; }
            .process-grid { grid-template-columns: repeat(3, 1fr); }
            .testimonials-slider { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
            .pricing-card.featured { transform: scale(1); }
            .about-stats { gap: 20px; }
        }

        @media (max-width: 768px) {
            html { font-size: 15px; }
            .container { padding: 0 20px; }
            .nav-container { padding: 0 20px; }
            .hero-side-lines, .hero-year { display: none; }
            .why-grid { grid-template-columns: 1fr; }
            .collection-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
            .footer-bottom-links { gap: 20px; }
            .form-row { grid-template-columns: 1fr; }
            .form-group.full { grid-column: 1; }
            .booking-form-wrap { padding: 30px 25px; }
            .newsletter-form { flex-direction: column; }
            .newsletter-btn { border-left: 1px solid var(--gold-20); }
            .collections-tabs { flex-wrap: wrap; border-radius: 20px; }
            .gallery-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .hero-buttons { flex-direction: column; align-items: center; }
            .about-stats { flex-direction: column; }
            .hero-badge span { font-size: 0.7rem; letter-spacing: 2px; }
            .process-grid { grid-template-columns: 1fr; }
        }

        /* ============================================
           UTILITIES
        ============================================ */
        .text-gold {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-center { text-align: center; }
        
        .white-50 { color: var(--white-50); }

        /* Loading state for button */
        .form-submit.loading {
            pointer-events: none;
            opacity: 0.7;
        }

        .form-submit.loading::after {
            content: '';
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid transparent;
            border-top-color: var(--black);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-left: 10px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Sticky gold bar */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10,10,10,0.97);
            border-top: 1px solid var(--gold-20);
            padding: 12px 20px;
            z-index: 998;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .sticky-cta {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 15px;
            }

            .sticky-cta-text {
                font-family: var(--font-elegant);
                font-size: 0.85rem;
                color: var(--white-70);
            }

            .sticky-cta-text strong {
                color: var(--gold);
                display: block;
                font-family: var(--font-heading);
            }

            .sticky-cta-btn {
                background: var(--gold-gradient);
                color: var(--black);
                border: none;
                padding: 10px 20px;
                font-size: 0.7rem;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                cursor: pointer;
                white-space: nowrap;
                text-decoration: none;
                border-radius: 30px;
            }
        }