 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #030303;
            overflow-x: hidden;
        }

        /* Hero Container */
        .hero-nexus {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Video Background with cinematic zoom / parallax */
        .bg-video-nexus {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transform: scale(1.02);
            animation: cinematicZoomAlt 20s infinite alternate ease-in-out;
            filter: brightness(0.6) contrast(1.1) saturate(1.15);
        }

        @keyframes cinematicZoomAlt {
            0% { transform: scale(1.02); }
            100% { transform: scale(1.12); }
        }

        /* Overlay + gradient moving light */
        .overlay-deep {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.85) 100%);
            z-index: 1;
        }

        .moving-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 50%, rgba(212,175,55,0.08) 100%);
            background-size: 200% 200%;
            animation: lightWave 12s ease infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes lightWave {
            0% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }

        /* floating particles (cinematic dust) */
        .particles-nexus {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
            pointer-events: none;
        }

        .dust {
            position: absolute;
            background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(255,215,0,0) 75%);
            border-radius: 50%;
            filter: blur(12px);
            animation: dustFloat 14s infinite alternate;
        }

        @keyframes dustFloat {
            0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.2; }
            100% { transform: translateY(-70px) translateX(50px) scale(1.4); opacity: 0.5; }
        }

        /* ========== GLASS NAVBAR (modern, elegant) ========== */
        .navbar {
            position: relative;
            z-index: 30;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 3rem;
            margin: 1.5rem 2rem 0 2rem;
            background: rgba(10, 10, 12, 0.45);
            backdrop-filter: blur(14px);
            border-radius: 90px;
            border: 1px solid rgba(212, 175, 55, 0.35);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .logo {
            font-family: 'Marcellus', serif;
            font-size: 1.7rem;
            font-weight: 500;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #FFFFFF, #E3CD81);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(245, 240, 225, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.25s;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: #D4AF37;
            transform: translateY(-2px);
        }

        .social-icons-nav {
            display: flex;
            gap: 1.2rem;
            margin-left: 1rem;
        }

        .social-icons-nav a {
            color: #CFC493;
            font-size: 1.1rem;
            transition: 0.2s;
        }

        .social-icons-nav a:hover {
            color: #D4AF37;
            transform: translateY(-3px);
        }

        /* Mobile Nav Toggle (hidden on desktop) */
        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            color: #D4AF37;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* ========== HERO CONTENT (centered glass) ========== */
        .hero-main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 15;
            padding: 1rem;
        }

        .glass-center {
            max-width: 1000px;
            width: 90%;
            text-align: center;
            padding: 2.5rem 2rem;
            background: rgba(5, 5, 8, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 48px;
            border: 1px solid rgba(212, 175, 55, 0.5);
            box-shadow: 0 25px 45px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,240,0.05);
            transition: transform 0.3s ease;
            animation: floatGlass 4s infinite alternate ease-in-out;
        }

        @keyframes floatGlass {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-8px); }
        }

        .hero-title {
            font-family: 'Marcellus', serif;
            font-size: 4.2rem;
            font-weight: 500;
            background: linear-gradient(120deg, #FFF9E6, #EACE7B, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .hero-desc {
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255,250,230,0.9);
            max-width: 620px;
            margin: 0 auto 1.8rem auto;
            line-height: 1.6;
        }

        /* Buttons premium */
        .btn-duo {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .btn-neon {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.9rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.2);
            text-decoration: none;
            font-size: 0.95rem;
        }

        .btn-primary-gold {
            background: linear-gradient(95deg, #D4AF37, #B38F2A);
            color: #0A0A0A;
            box-shadow: 0 6px 18px rgba(212,175,55,0.4);
            border: none;
        }

        .btn-primary-gold:hover {
            transform: translateY(-5px);
            background: linear-gradient(95deg, #E2BD48, #C6A12D);
            box-shadow: 0 14px 28px rgba(212,175,55,0.6);
            gap: 1rem;
        }

        .btn-outline-light {
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(8px);
            border: 1.5px solid rgba(212, 175, 55, 0.75);
            color: #F5E7B2;
        }

        .btn-outline-light:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #EACE7B;
            transform: translateY(-5px);
            color: white;
            gap: 1rem;
        }

        /* stats minimal */
        .metrics {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .metric-item {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            padding: 0.5rem 1.4rem;
            border-radius: 40px;
            border-left: 3px solid #D4AF37;
        }

        .metric-number {
            font-size: 1.9rem;
            font-weight: 700;
            font-family: 'Marcellus', serif;
            color: #F3DE8A;
            line-height: 1.2;
        }

        .metric-label {
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            font-weight: 500;
            text-transform: uppercase;
            color: #e9e0c7;
        }

        /* Scroll Down Indicator */
        .scroll-indicator-new {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .mouse-new {
            width: 28px;
            height: 45px;
            border: 2px solid rgba(212, 175, 55, 0.8);
            border-radius: 20px;
            background: rgba(0,0,0,0.2);
            backdrop-filter: blur(4px);
            margin: 0 auto;
            position: relative;
        }

        .wheel-new {
            width: 4px;
            height: 12px;
            background: #D4AF37;
            border-radius: 2px;
            position: absolute;
            top: 9px;
            left: 50%;
            transform: translateX(-50%);
            animation: wheelScroll 1.8s infinite;
        }

        @keyframes wheelScroll {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            80% { opacity: 0.2; transform: translateX(-50%) translateY(16px); }
            100% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .arrow-animate {
            text-align: center;
            margin-top: 8px;
            color: #D4AF37;
            font-size: 13px;
            animation: bounceArrowNew 1.5s infinite;
        }

        @keyframes bounceArrowNew {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(6px); }
        }

        /* Responsive navbar + hero */
        @media (max-width: 880px) {
            .navbar {
                padding: 0.9rem 1.8rem;
                margin: 1rem 1.2rem 0 1.2rem;
            }
            .nav-links {
                gap: 1.5rem;
            }
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 720px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.85);
                backdrop-filter: blur(20px);
                width: 70%;
                height: auto;
                padding: 2rem;
                border-radius: 28px;
                gap: 1.8rem;
                transition: 0.4s ease;
                z-index: 40;
                border: 1px solid rgba(212,175,55,0.4);
            }
            .nav-links.active {
                left: 5%;
            }
            .social-icons-nav {
                margin-top: 0.5rem;
                margin-left: 0;
                justify-content: center;
            }
            .navbar {
                justify-content: space-between;
            }
            .hero-title {
                font-size: 2.3rem;
            }
            .hero-desc {
                font-size: 0.9rem;
            }
            .btn-neon {
                padding: 0.65rem 1.3rem;
                font-size: 0.85rem;
            }
            .metric-number {
                font-size: 1.4rem;
            }
            .glass-center {
                padding: 1.5rem;
            }
        }

        @media (max-width: 550px) {
            .hero-title {
                font-size: 1.9rem;
            }
            .btn-duo {
                flex-direction: column;
                align-items: center;
                gap: 0.9rem;
            }
            .btn-neon {
                width: 80%;
                justify-content: center;
            }
            .metrics {
                gap: 1rem;
            }
            .navbar {
                margin: 0.8rem 1rem;
                padding: 0.7rem 1.2rem;
            }
            .logo {
                font-size: 1.4rem;
            }
        }

        /* fade animation for content */
        .fade-up-item {
            opacity: 0;
            animation: fadeUp 0.8s forwards;
        }
        .title-fade { animation-delay: 0.1s; }
        .desc-fade { animation-delay: 0.25s; }
        .btn-fade { animation-delay: 0.4s; }
        .stats-fade { animation-delay: 0.6s; }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
/* .....................about.................................................................................................... */

 /* Premium About Section */
        .about-premium {
            position: relative;
            padding: 7rem 2rem;
            background: #0a0a0c;
            isolation: isolate;
            overflow: hidden;
        }

        /* Cinematic background texture */
        .about-premium::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.03) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
            z-index: 0;
        }

        .container-lux {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #D4AF37;
            font-weight: 400;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            width: 40px;
            height: 1px;
            background: #D4AF37;
            position: absolute;
            top: 50%;
            opacity: 0.5;
        }
        .section-subtitle::before { left: -55px; }
        .section-subtitle::after { right: -55px; }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.2rem;
            font-weight: 600;
            color: #F5EFE0;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .section-title span { color: #D4AF37; }

        /* Two-Column Layout (Refined) */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* LEFT: Image Showcase (cinematic collage with modern glass) */
        .image-showcase {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .primary-image {
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 30px 40px -20px rgba(0,0,0,0.7);
            transition: all 0.5s;
            border: 1px solid rgba(212,175,55,0.3);
        }

        .primary-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .primary-image:hover img {
            transform: scale(1.03);
        }

        .image-row {
            display: flex;
            gap: 1.2rem;
        }

        .image-row .img-card {
            flex: 1;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.25);
            transition: all 0.4s;
            background: rgba(0,0,0,0.3);
        }
        .image-row .img-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s;
        }
        .image-row .img-card:hover {
            border-color: #D4AF37;
            transform: translateY(-6px);
        }
        .image-row .img-card:hover img {
            transform: scale(1.05);
        }

        /* Signature outline badge */
        .studio-badge {
            position: absolute;
            bottom: -20px;
            right: -15px;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(12px);
            padding: 0.7rem 1.5rem;
            border-radius: 60px;
            border: 1px solid #D4AF37;
            font-size: 0.8rem;
            font-weight: 500;
            color: #EBD896;
            z-index: 3;
        }

        /* RIGHT: Content */
        .about-text {
            padding-right: 1rem;
        }

        .lead-text {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(245, 240, 225, 0.9);
            margin-bottom: 1.8rem;
            font-weight: 400;
            border-left: 3px solid #D4AF37;
            padding-left: 1.5rem;
        }

        .description {
            color: #b9b5a8;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* Stats Premium Row */
        .stats-premium {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            background: rgba(20, 18, 24, 0.6);
            backdrop-filter: blur(8px);
            border-radius: 80px;
            padding: 0.8rem 1.8rem;
            border: 1px solid rgba(212,175,55,0.25);
        }
        .stat-item-premium {
            text-align: center;
            flex: 1;
        }
        .stat-number-premium {
            font-size: 2.2rem;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
            color: #E8D18C;
            line-height: 1;
        }
        .stat-label-premium {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            color: #bcb59b;
        }

        /* Mission / Vision Cards (modern glass) */
        .mvp-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .mvp-card {
            background: rgba(12, 12, 18, 0.65);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 1.2rem;
            border: 1px solid rgba(212,175,55,0.2);
            transition: 0.3s;
        }
        .mvp-card:hover {
            border-color: #D4AF37;
            transform: translateY(-4px);
            background: rgba(25, 22, 30, 0.8);
        }
        .mvp-card i {
            font-size: 1.6rem;
            color: #D4AF37;
            margin-bottom: 0.6rem;
        }
        .mvp-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #F0E7D6;
        }
        .mvp-card p {
            font-size: 0.8rem;
            color: #b3ad95;
            line-height: 1.4;
        }

        /* Team Section Elevated */
        .team-elevated {
            margin-top: 2.2rem;
        }
        .team-head {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 1.2rem;
            border-bottom: 1px dashed rgba(212,175,55,0.4);
            padding-bottom: 0.5rem;
        }
        .team-head h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            font-weight: 600;
            color: #EEDBA7;
        }
        .team-grid {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .member-card {
            background: rgba(18, 18, 24, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 1.2rem;
            text-align: center;
            flex: 1;
            min-width: 140px;
            transition: 0.3s;
            border: 1px solid rgba(212,175,55,0.2);
        }
        .member-card:hover {
            transform: translateY(-8px);
            border-color: #D4AF37;
            box-shadow: 0 20px 30px -15px black;
        }
        .member-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 0.8rem;
            border: 2px solid #D4AF37;
        }
        .member-card h4 {
            font-size: 1rem;
            font-weight: 600;
        }
        .member-role {
            font-size: 0.7rem;
            color: #D4AF37;
            margin: 0.2rem 0;
        }
        .member-social a {
            color: #baab7a;
            margin: 0 6px;
            font-size: 0.8rem;
            transition: 0.2s;
        }
        .member-social a:hover { color: #FFE4A3; transform: translateY(-2px); display: inline-block; }

        /* Owner spotlight - premium */
        .owner-spot {
            margin-top: 1.5rem;
            background: linear-gradient(115deg, rgba(0,0,0,0.65), rgba(30,25,20,0.5));
            backdrop-filter: blur(12px);
            border-radius: 40px;
            padding: 1.2rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            border: 1px solid rgba(212,175,55,0.4);
        }
        .owner-spot img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #D4AF37;
        }
        .owner-details h4 {
            font-size: 1.2rem;
            font-weight: 700;
        }
        .owner-details p {
            font-size: 0.8rem;
            color: #EBD896;
        }
        .owner-quote {
            font-style: italic;
            font-size: 0.85rem;
            color: #cfc7ae;
            max-width: 300px;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .about-grid { gap: 2.5rem; }
            .section-title { font-size: 3.2rem; }
        }
        @media (max-width: 860px) {
            .about-grid { grid-template-columns: 1fr; gap: 2rem; }
            .image-showcase { max-width: 550px; margin: 0 auto; }
            .about-text { padding-right: 0; }
            .stats-premium { justify-content: space-between; }
        }
        @media (max-width: 640px) {
            .about-premium { padding: 4rem 1.2rem; }
            .section-title { font-size: 2.3rem; }
            .lead-text { font-size: 1rem; }
            .mvp-grid { grid-template-columns: 1fr; }
            .stats-premium { flex-direction: column; gap: 0.8rem; border-radius: 40px; align-items: center; }
            .team-grid { flex-direction: column; align-items: center; }
            .member-card { width: 100%; max-width: 240px; }
            .owner-spot { flex-direction: column; text-align: center; }
            .owner-quote { max-width: 100%; }
        }

        /* Scroll reveal animations */
        .reveal-item {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal-item.active {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

/* .............service........................................................................ */
  /* main services section */
        .services-cinema {
            position: relative;
            padding: 6rem 2rem;
            background: radial-gradient(circle at 20% 30%, #0b0b10 0%, #020202 100%);
            isolation: isolate;
            overflow: hidden;
        }

        /* animated gradient background (cinematic sweep) */
        .moving-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212,175,55,0.02) 0%, rgba(0,0,0,0) 40%, rgba(212,175,55,0.03) 80%);
            background-size: 200% 200%;
            animation: floatGradient 16s ease infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes floatGradient {
            0% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }

        /* floating particles (cinematic dust) */
        .particles-srv {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        .particle-srv {
            position: absolute;
            background: radial-gradient(circle, #D4AF37 0%, rgba(212,175,55,0) 80%);
            border-radius: 50%;
            filter: blur(8px);
            opacity: 0.35;
            animation: floatParticle 12s infinite alternate;
        }
        @keyframes floatParticle {
            0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.2; }
            100% { transform: translateY(-50px) translateX(30px) scale(1.2); opacity: 0.55; }
        }

        .container-lux {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        /* section header */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .subtitle-gold {
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #D4AF37;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: inline-block;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            padding: 0.2rem 1rem;
            border-radius: 40px;
        }
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            font-weight: 600;
            color: #F5EFE0;
            letter-spacing: -0.01em;
        }
        .section-title span {
            color: #D4AF37;
        }
        .desc-lead {
            color: #b9b2a1;
            max-width: 650px;
            margin: 0.8rem auto 0;
            font-size: 1rem;
        }

        /* stats row (animated counters) */
        .stats-row-services {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(12px);
            padding: 1rem 2rem;
            border-radius: 80px;
            border: 1px solid rgba(212,175,55,0.3);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        .stat-service {
            text-align: center;
        }
        .stat-number-srv {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
            color: #E8D18C;
        }
        .stat-label-srv {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #cfc8b2;
        }

        /* filter buttons (optional category filter) */
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 3rem;
        }
        .filter-btn {
            background: rgba(15, 15, 18, 0.7);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(212,175,55,0.4);
            padding: 0.5rem 1.3rem;
            border-radius: 50px;
            color: #e5dcc5;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: #D4AF37;
            color: #0a0a0a;
            border-color: #D4AF37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212,175,55,0.3);
        }

        /* services grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3.5rem;
        }

        /* glassmorphic cards */
        .service-card {
            background: rgba(12, 12, 18, 0.6);
            backdrop-filter: blur(12px);
            border-radius: 36px;
            padding: 2rem 1.5rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid rgba(212,175,55,0.25);
            box-shadow: 0 15px 35px -12px rgba(0,0,0,0.6);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 36px;
            padding: 1px;
            background: linear-gradient(125deg, rgba(212,175,55,0.3), rgba(212,175,55,0), rgba(212,175,55,0.3));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212,175,55,0.6);
            box-shadow: 0 28px 45px -12px rgba(212,175,55,0.25);
            background: rgba(20, 18, 28, 0.7);
        }
        .service-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, #EBD68C, #C9A94C);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }
        .service-card h3 {
            font-size: 1.55rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 0.7rem;
            color: #F5EDDA;
        }
        .service-desc {
            font-size: 0.85rem;
            color: #ccc6b5;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        .learn-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #D4AF37;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(212,175,55,0.4);
            padding-bottom: 4px;
            transition: 0.25s;
        }
        .learn-link i {
            transition: transform 0.3s;
        }
        .learn-link:hover {
            color: #FFE29A;
            gap: 12px;
        }
        .learn-link:hover i {
            transform: translateX(5px);
        }

        /* bottom CTA */
        .cta-service-bottom {
            text-align: center;
            margin-top: 1rem;
        }
        .btn-cta-gold {
            background: transparent;
            border: 1.5px solid #D4AF37;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            color: #F5E7B2;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            backdrop-filter: blur(4px);
        }
        .btn-cta-gold:hover {
            background: #D4AF37;
            color: #0a0a0a;
            box-shadow: 0 8px 25px rgba(212,175,55,0.4);
            transform: translateY(-3px);
            gap: 15px;
        }

        /* no results message */
        .no-results {
            text-align: center;
            color: #aea78f;
            grid-column: 1 / -1;
            padding: 2rem;
        }

        /* responsive */
        @media (max-width: 992px) {
            .services-grid { gap: 1.5rem; }
            .section-title { font-size: 3rem; }
            .stats-row-services { padding: 0.6rem 1.2rem; gap: 1.5rem; }
        }
        @media (max-width: 768px) {
            .services-cinema { padding: 4rem 1.5rem; }
            .section-title { font-size: 2.4rem; }
            .stats-row-services { flex-direction: column; gap: 0.5rem; width: 100%; border-radius: 48px; align-items: center; background: rgba(0,0,0,0.6);}
            .filter-buttons { gap: 0.5rem; }
            .filter-btn { padding: 0.4rem 1rem; font-size: 0.7rem; }
            .service-card { padding: 1.5rem; }
        }
        @media (max-width: 500px) {
            .services-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 1.9rem; }
        }

        /* fade-up scroll reveal */
        .fade-up {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s ease;
        }
        .fade-up.revealed {
            opacity: 1;
            transform: translateY(0);
        }
    /* ...............gellary......................................................... */
      /* portfolio section (reimagined) */
        .portfolio-aura {
            position: relative;
            padding: 5rem 2rem;
            background: radial-gradient(circle at 80% 20%, #0f0e12 0%, #020101 100%);
            overflow: hidden;
        }

        /* animated background glow */
        .bg-sweep {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(ellipse at 40% 50%, rgba(212,175,55,0.04) 0%, rgba(0,0,0,0) 70%);
            animation: slowBreathing 12s infinite alternate;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes slowBreathing {
            0% { opacity: 0.4; transform: scale(1);}
            100% { opacity: 0.9; transform: scale(1.08);}
        }

        .container-lux {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        /* section header with avant-garde touch */
        .section-meta {
            text-align: center;
            margin-bottom: 3rem;
        }
        .accent-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, #7a5f1a);
            margin: 0 auto 0.8rem;
        }
        .pre-title {
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #D4AF37;
            font-weight: 400;
        }
        .main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.6rem;
            font-weight: 600;
            color: #FCF7E8;
            margin-bottom: 0.3rem;
        }
        .title-desc {
            color: #b7ad92;
            max-width: 550px;
            margin: 0 auto;
            font-size: 0.9rem;
        }

        /* filter tabs (new style: underline + pill hybrid) */
        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 3rem;
        }
        .tab-btn {
            background: rgba(10,10,15,0.6);
            backdrop-filter: blur(8px);
            border: none;
            padding: 0.55rem 1.6rem;
            border-radius: 60px;
            color: #e5decb;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s;
            border: 1px solid rgba(212,175,55,0.3);
        }
        .tab-btn.active, .tab-btn:hover {
            background: #D4AF37;
            color: #0a0a0a;
            border-color: #D4AF37;
            box-shadow: 0 5px 12px rgba(212,175,55,0.3);
            transform: translateY(-2px);
        }

        /* Masonry Grid using columns (more dynamic) */
        .masonry-gallery {
            column-count: 3;
            column-gap: 1.6rem;
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.6rem;
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.35s ease;
            background: #141414;
            box-shadow: 0 15px 30px -12px rgba(0,0,0,0.7);
            border: 1px solid rgba(212,175,55,0.2);
        }
        .masonry-item:hover {
            transform: translateY(-6px);
            border-color: rgba(212,175,55,0.7);
            box-shadow: 0 25px 40px -12px rgba(212,175,55,0.25);
        }
        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform 0.6s cubic-bezier(0.2,0.9,0.4,1.1);
        }
        .masonry-item:hover img {
            transform: scale(1.03);
        }
        /* overlay with glassmorphism (new style) */
        .glass-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.2rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .masonry-item:hover .glass-overlay {
            opacity: 1;
        }
        .item-cat {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #D4AF37;
            font-weight: 500;
        }
        .item-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-top: 0.2rem;
        }
        .play-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(8px);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            font-size: 1.3rem;
            border: 1px solid #D4AF37;
            opacity: 0;
            transition: 0.2s;
        }
        .masonry-item.video-item:hover .play-badge {
            opacity: 1;
        }

        /* load more button (refined) */
        .load-more-area {
            text-align: center;
            margin-top: 3rem;
        }
        .load-more-btn {
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(12px);
            border: 1.5px solid #D4AF37;
            padding: 0.8rem 2.2rem;
            border-radius: 60px;
            font-weight: 600;
            color: #F5E3B0;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .load-more-btn:hover {
            background: #D4AF37;
            color: #0a0a0a;
            gap: 12px;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212,175,55,0.4);
        }
        .load-more-btn.hidden {
            display: none;
        }

        /* Lightbox (fullscreen) */
        .fullscreen-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.96);
            backdrop-filter: blur(14px);
            z-index: 1100;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: 0.25s;
        }
        .fullscreen-modal.active {
            visibility: visible;
            opacity: 1;
        }
        .modal-inner {
            max-width: 90vw;
            max-height: 85vh;
            position: relative;
        }
        .modal-inner img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 24px;
            border: 1px solid #D4AF37;
            box-shadow: 0 20px 40px black;
        }
        .modal-inner iframe {
            width: 80vw;
            height: 45vw;
            max-width: 1100px;
            border-radius: 24px;
            border: 1px solid rgba(212,175,55,0.6);
        }
        .close-modal {
            position: absolute;
            top: 25px;
            right: 35px;
            color: #D4AF37;
            font-size: 1.8rem;
            background: rgba(20,20,20,0.7);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .close-modal:hover {
            background: #D4AF37;
            color: black;
        }

        /* responsive */
        @media (max-width: 992px) {
            .masonry-gallery { column-count: 2; column-gap: 1.2rem; }
            .main-title { font-size: 3rem; }
        }
        @media (max-width: 640px) {
            .portfolio-aura { padding: 3rem 1rem; }
            .masonry-gallery { column-count: 1; }
            .main-title { font-size: 2.2rem; }
            .tab-btn { padding: 0.4rem 1.2rem; font-size: 0.7rem; }
            .modal-inner iframe { width: 95vw; height: 55vw; }
        }

        /* fade-up scroll */
        .fade-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* ....vedio section.............................................................. */
          /* Video Showcase Section - Unique class names */
        .video-cinema-premium {
            position: relative;
            padding: 5rem 2rem;
            background: linear-gradient(145deg, #08060c 0%, #010001 100%);
            isolation: isolate;
            overflow: hidden;
        }

        .cinema-bg-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 40% 50%, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 70%);
            animation: glowDrift 18s infinite alternate;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes glowDrift {
            0% { opacity: 0.3; transform: scale(1);}
            100% { opacity: 0.8; transform: scale(1.15);}
        }

        .light-leak-texture {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: repeating-linear-gradient(45deg, rgba(212,175,55,0.02) 0px, rgba(212,175,55,0.02) 2px, transparent 2px, transparent 8px);
            pointer-events: none;
            z-index: 1;
        }

        .video-container-wide {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* Section Header */
        .video-header-studio {
            text-align: center;
            margin-bottom: 3rem;
        }
        .signature-divider {
            display: inline-block;
            width: 50px;
            height: 1px;
            background: #D4AF37;
            margin-bottom: 0.3rem;
        }
        .pre-title-motion {
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #D4AF37;
            font-weight: 500;
        }
        .main-heading-cinema {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.6rem;
            font-weight: 600;
            background: linear-gradient(125deg, #FDF8EC, #EBDAA4, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.3rem;
        }
        .sub-heading-desc {
            color: #b9af98;
            max-width: 550px;
            margin: 0 auto;
            font-size: 0.9rem;
        }

        /* Slider Wrapper (horizontal scroll) */
        .slider-showcase {
            position: relative;
            margin: 2rem 0 3rem;
        }
        .slider-scroll-area {
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #D4AF37 #1a1a1a;
            padding-bottom: 1rem;
        }
        .slider-scroll-area::-webkit-scrollbar {
            height: 5px;
        }
        .slider-scroll-area::-webkit-scrollbar-track {
            background: #1e1a1a;
            border-radius: 10px;
        }
        .slider-scroll-area::-webkit-scrollbar-thumb {
            background: #D4AF37;
            border-radius: 10px;
        }
        .slider-track-flex {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            padding: 0.5rem 0.2rem;
        }

        /* Video Card Premium */
        .video-card-glass {
            width: 380px;
            flex-shrink: 0;
            background: rgba(12, 10, 18, 0.55);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.3);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
        }
        .video-card-glass:hover {
            transform: translateY(-10px);
            border-color: #D4AF37;
            box-shadow: 0 30px 40px -15px rgba(212,175,55,0.25);
        }
        .card-media-wrapper {
            position: relative;
            overflow: hidden;
        }
        .card-media-wrapper img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s;
        }
        .video-card-glass:hover .card-media-wrapper img {
            transform: scale(1.05);
        }
        .play-icon-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            font-size: 1.2rem;
            border: 1px solid #D4AF37;
            transition: 0.2s;
            opacity: 0;
        }
        .video-card-glass:hover .play-icon-overlay {
            opacity: 1;
        }
        .category-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.65rem;
            font-weight: 500;
            color: #EBD68C;
            border-left: 2px solid #D4AF37;
        }
        .card-info-content {
            padding: 1.2rem;
        }
        .video-category-label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: #D4AF37;
            text-transform: uppercase;
        }
        .video-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0.3rem 0 0.4rem;
            color: #F3EFE2;
        }
        .video-duration-info {
            font-size: 0.7rem;
            color: #b8ae92;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Featured Showreel Area */
        .featured-reel-area {
            margin-top: 3rem;
            background: linear-gradient(115deg, rgba(0,0,0,0.65), rgba(30,25,20,0.4));
            backdrop-filter: blur(12px);
            border-radius: 48px;
            border: 1px solid rgba(212,175,55,0.4);
            padding: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            justify-content: space-between;
        }
        .reel-text-content {
            flex: 1;
        }
        .reel-text-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #F6EDD5;
        }
        .reel-text-content p {
            color: #cdc3ab;
            font-size: 0.85rem;
            margin: 0.5rem 0 1rem;
        }
        .btn-cinema-gold {
            background: transparent;
            border: 1.5px solid #D4AF37;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            color: #F5E3B0;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cinema-gold:hover {
            background: #D4AF37;
            color: #0a0a0a;
            gap: 12px;
        }
        .reel-thumbnail {
            width: 200px;
            height: 120px;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #D4AF37;
            transition: 0.3s;
        }
        .reel-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s;
        }
        .reel-thumbnail:hover img {
            transform: scale(1.05);
        }

        /* Video Modal */
        .video-modal-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.96);
            backdrop-filter: blur(20px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
        }
        .video-modal-popup.active {
            visibility: visible;
            opacity: 1;
        }
        .modal-inner-box {
            width: 85vw;
            max-width: 1100px;
            background: #000;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid #D4AF37;
            box-shadow: 0 30px 50px rgba(0,0,0,0.7);
        }
        .video-responsive-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }
        .video-responsive-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            background: rgba(0,0,0,0.5);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            font-size: 1.5rem;
            cursor: pointer;
            backdrop-filter: blur(5px);
            transition: 0.2s;
        }
        .modal-close-btn:hover {
            background: #D4AF37;
            color: black;
        }

        /* Scroll reveal */
        .fade-scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 860px) {
            .video-card-glass { width: 320px; }
            .featured-reel-area { flex-direction: column; text-align: center; }
            .main-heading-cinema { font-size: 2.5rem; }
            .video-cinema-premium { padding: 3rem 1.2rem; }
        }
        @media (max-width: 550px) {
            .video-card-glass { width: 280px; }
            .reel-thumbnail { width: 100%; height: auto; max-width: 280px; }
        }

        /* ...........packes................................................................................. */
        
        /* Pricing Section Premium */
        .pricing-luxury {
            position: relative;
            padding: 6rem 2rem;
            background: radial-gradient(ellipse at 20% 30%, #0c0a14 0%, #010001 100%);
            isolation: isolate;
            overflow: hidden;
        }

        /* cinematic animated background */
        .cinematic-bg-motion {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 40% 60%, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 70%);
            animation: slowBreathing 15s infinite alternate;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes slowBreathing {
            0% { opacity: 0.3; transform: scale(1);}
            100% { opacity: 0.8; transform: scale(1.15);}
        }

        /* floating glowing particles */
        .floating-glow-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        .glow-dust {
            position: absolute;
            background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0) 80%);
            border-radius: 50%;
            filter: blur(18px);
            animation: dustFloat 18s infinite alternate;
        }
        @keyframes dustFloat {
            0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.2; }
            100% { transform: translateY(-60px) translateX(40px) scale(1.3); opacity: 0.5; }
        }

        .container-wide {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* section header */
        .section-header-lux {
            text-align: center;
            margin-bottom: 3rem;
        }
        .gold-accent-line {
            width: 70px;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, transparent);
            margin: 0 auto 0.8rem;
        }
        .pre-title {
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #D4AF37;
            font-weight: 500;
        }
        .main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, #FFF8E7, #EBDAA4, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        .sub-desc {
            color: #b7b0a0;
            max-width: 600px;
            margin: 0 auto;
            font-size: 0.95rem;
        }

        /* pricing cards grid */
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0 3rem;
        }

        /* glassmorphism card */
        .pricing-card {
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            background: rgba(12, 10, 18, 0.65);
            backdrop-filter: blur(14px);
            border-radius: 40px;
            padding: 2rem 1.8rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid rgba(212,175,55,0.35);
            position: relative;
            text-align: center;
        }
        .pricing-card:hover {
            transform: translateY(-12px);
            border-color: #D4AF37;
            box-shadow: 0 30px 45px -15px rgba(212,175,55,0.3);
            background: rgba(18, 16, 26, 0.8);
        }

        /* featured card (most popular) */
        .pricing-card.featured {
            border: 1px solid #D4AF37;
            box-shadow: 0 0 25px rgba(212,175,55,0.3), 0 20px 35px -12px black;
            background: rgba(20, 18, 28, 0.8);
        }
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #D4AF37, #B38F2A);
            color: #0a0a0a;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.3rem 1.2rem;
            border-radius: 60px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(212,175,55,0.4);
            white-space: nowrap;
        }

        .package-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #F5EFE0;
            margin-bottom: 0.5rem;
        }
        .price {
            font-size: 2.8rem;
            font-weight: 800;
            color: #EBD68C;
            margin: 0.8rem 0;
        }
        .price span {
            font-size: 1rem;
            font-weight: 400;
            color: #b7ae96;
        }
        .divider-gold {
            width: 50px;
            height: 1px;
            background: #D4AF37;
            margin: 1rem auto;
        }
        .features-list {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }
        .features-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ddd6c5;
            font-size: 0.85rem;
        }
        .features-list li i {
            color: #D4AF37;
            width: 20px;
            font-size: 0.9rem;
        }
        .btn-book {
            background: transparent;
            border: 1.5px solid #D4AF37;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            color: #F5E7B2;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
            width: 100%;
            justify-content: center;
        }
        .btn-book:hover {
            background: #D4AF37;
            color: #0a0a0a;
            gap: 12px;
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(212,175,55,0.4);
        }

        /* custom quote button */
        .custom-quote-wrapper {
            text-align: center;
            margin-top: 1rem;
        }
        .btn-custom {
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(212,175,55,0.6);
            padding: 0.75rem 2rem;
            border-radius: 60px;
            font-weight: 500;
            color: #EBD68C;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-custom:hover {
            border-color: #D4AF37;
            background: #D4AF37;
            color: #0a0a0a;
            gap: 15px;
            transform: translateY(-2px);
        }

        /* animated monthly/yearly toggle (optional decorative) */
        .toggle-mock {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.8rem;
            color: #b9b09b;
        }
        .pill-mock {
            background: rgba(212,175,55,0.2);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            cursor: default;
        }
        .pill-mock.active {
            background: #D4AF37;
            color: #0a0a0a;
        }

        /* scroll reveal */
        .reveal-up {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-up.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* responsive */
        @media (max-width: 1050px) {
            .pricing-grid { gap: 1.5rem; }
            .main-title { font-size: 3rem; }
        }
        @media (max-width: 880px) {
            .pricing-card { min-width: 260px; }
            .price { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .pricing-luxury { padding: 3rem 1.2rem; }
            .main-title { font-size: 2.4rem; }
            .pricing-grid { flex-direction: column; align-items: center; }
            .pricing-card { max-width: 380px; width: 100%; }
        }
        /* ........testimonam.................................................................... */
            /* Testimonials Section Premium */
        .testimonials-cinema {
            position: relative;
            padding: 6rem 2rem;
            background: radial-gradient(ellipse at 30% 20%, #0c0a14 0%, #010001 100%);
            isolation: isolate;
            overflow: hidden;
        }

        /* cinematic animated gradient background */
        .cinematic-bg-motion {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 40% 60%, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 70%);
            animation: slowBreathing 16s infinite alternate;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes slowBreathing {
            0% { opacity: 0.3; transform: scale(1);}
            100% { opacity: 0.7; transform: scale(1.12);}
        }

        /* floating glow particles */
        .floating-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        .glow-dust {
            position: absolute;
            background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0) 80%);
            border-radius: 50%;
            filter: blur(18px);
            animation: dustFloat 20s infinite alternate;
        }
        @keyframes dustFloat {
            0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.2; }
            100% { transform: translateY(-60px) translateX(40px) scale(1.3); opacity: 0.5; }
        }

        .container-wide {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* section header */
        .section-header-lux {
            text-align: center;
            margin-bottom: 3rem;
        }
        .gold-accent {
            width: 70px;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, transparent);
            margin: 0 auto 0.8rem;
        }
        .pre-title {
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #D4AF37;
            font-weight: 500;
        }
        .main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, #FFF8E7, #EBDAA4, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        .sub-desc {
            color: #b7b0a0;
            max-width: 600px;
            margin: 0 auto;
            font-size: 0.95rem;
        }

        /* Swiper container customization */
        .testimonials-slider {
            padding: 1rem 0 3rem;
            margin-bottom: 2rem;
        }
        .swiper-slide {
            height: auto;
        }
        /* glassmorphism card */
        .testimonial-card {
            background: rgba(12, 10, 18, 0.65);
            backdrop-filter: blur(14px);
            border-radius: 36px;
            padding: 2rem 1.8rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid rgba(212,175,55,0.35);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: #D4AF37;
            box-shadow: 0 25px 40px -15px rgba(212,175,55,0.25);
            background: rgba(20, 18, 28, 0.8);
        }
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2.5rem;
            color: rgba(212,175,55,0.2);
            font-family: serif;
        }
        .client-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #D4AF37;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .client-info h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #F5EFE0;
        }
        .client-info p {
            font-size: 0.75rem;
            color: #D4AF37;
            letter-spacing: 1px;
        }
        .stars {
            margin: 0.5rem 0 1rem;
            color: #D4AF37;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #ddd6c5;
            font-style: italic;
            margin-bottom: 1.2rem;
            flex: 1;
        }
        .video-testimonial-icon {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #D4AF37;
            font-size: 0.75rem;
            cursor: pointer;
            margin-top: 0.5rem;
            transition: 0.2s;
            width: fit-content;
        }
        .video-testimonial-icon i {
            font-size: 1rem;
        }
        .video-testimonial-icon:hover {
            color: white;
            gap: 10px;
        }

        /* Swiper navigation & pagination custom */
        .swiper-button-next, .swiper-button-prev {
            color: #D4AF37;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: 0.3s;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: #D4AF37;
            color: #0a0a0a;
        }
        .swiper-pagination-bullet {
            background: #6b634e;
            opacity: 0.6;
        }
        .swiper-pagination-bullet-active {
            background: #D4AF37;
            opacity: 1;
            box-shadow: 0 0 8px #D4AF37;
        }

        /* Logo showcase row */
        .client-logos {
            margin-top: 3rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 1.5rem;
            background: rgba(10, 10, 15, 0.4);
            backdrop-filter: blur(8px);
            border-radius: 60px;
            border: 1px solid rgba(212,175,55,0.2);
        }
        .logo-item {
            font-size: 1.8rem;
            color: #aaa48e;
            transition: 0.2s;
            filter: grayscale(0.5);
            opacity: 0.7;
        }
        .logo-item:hover {
            color: #D4AF37;
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        .logo-item i {
            font-size: 2rem;
        }

        /* CTA Button */
        .leave-review {
            text-align: center;
            margin-top: 2rem;
        }
        .btn-leave {
            background: transparent;
            border: 1.5px solid #D4AF37;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-weight: 500;
            color: #F5E7B2;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-leave:hover {
            background: #D4AF37;
            color: #0a0a0a;
            gap: 15px;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212,175,55,0.3);
        }

        /* Video Modal Popup */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.96);
            backdrop-filter: blur(20px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
        }
        .video-modal.active {
            visibility: visible;
            opacity: 1;
        }
        .modal-content {
            width: 85vw;
            max-width: 1000px;
            background: #000;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid #D4AF37;
            box-shadow: 0 30px 50px black;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            background: rgba(0,0,0,0.6);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            font-size: 1.5rem;
            cursor: pointer;
            backdrop-filter: blur(5px);
            transition: 0.2s;
        }
        .close-modal:hover {
            background: #D4AF37;
            color: black;
        }

        /* scroll reveal */
        .reveal-up {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-up.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* responsive */
        @media (max-width: 992px) {
            .main-title { font-size: 3rem; }
            .testimonials-cinema { padding: 4rem 1.2rem; }
        }
        @media (max-width: 768px) {
            .main-title { font-size: 2.4rem; }
            .swiper-button-next, .swiper-button-prev { display: none; }
            .client-logos { gap: 1rem; }
        }
        @media (max-width: 550px) {
            .testimonial-card { padding: 1.5rem; }
            .client-img { width: 55px; height: 55px; }
        }
        /* .........booking............................................................ */
        
    /* cinematic background with gradient & moving glow lines */
    .cinematic-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: radial-gradient(circle at 20% 30%, rgba(0,0,0,0.95) 0%, #030405 100%);
    }

    .glow-line {
      position: fixed;
      width: 200%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.5), transparent);
      top: 15%;
      left: -50%;
      animation: slideGlow 14s infinite linear;
      z-index: -1;
      filter: blur(2px);
    }

    .glow-line-2 {
      top: 70%;
      animation-duration: 22s;
      animation-direction: reverse;
      opacity: 0.6;
    }

    @keyframes slideGlow {
      0% { transform: translateX(-30%) translateY(0px) rotate(3deg); opacity: 0; }
      30% { opacity: 0.9; }
      70% { opacity: 0.9; }
      100% { transform: translateX(40%) translateY(20px) rotate(5deg); opacity: 0; }
    }

    /* particle floating effect */
    .particle {
      position: fixed;
      background: rgba(212, 175, 55, 0.25);
      border-radius: 50%;
      filter: blur(3px);
      pointer-events: none;
      z-index: -1;
      animation: floatParticle 18s infinite alternate ease-in-out;
    }

    @keyframes floatParticle {
      0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
      100% { transform: translateY(-60px) translateX(40px) scale(1.2); opacity: 0.8; }
    }

    /* main container split layout */
    .booking-wrapper {
      max-width: 1440px;
      margin: 0 auto;
      padding: 3rem 2rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
    }

    .split-layout {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 2.5rem;
      width: 100%;
      backdrop-filter: blur(0px);
    }

    /* LEFT SIDE – Studio Story & Info */
    .luxury-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.8rem;
      padding-right: 1rem;
      animation: fadeUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
      opacity: 0;
      transform: translateY(25px);
    }

    .section-badge {
      display: inline-block;
      background: rgba(212, 175, 55, 0.15);
      backdrop-filter: blur(4px);
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.75rem;
      letter-spacing: 2px;
      font-weight: 500;
      border-left: 2px solid #d4af37;
      width: fit-content;
    }

    h1 {
      font-size: 4rem;
      font-weight: 600;
      font-family: 'Cormorant Garamond', serif;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff 30%, #d4af37 80%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-top: 0.25rem;
    }

    .subhead {
      font-size: 1.1rem;
      color: #cfcfcf;
      border-left: 2px solid #d4af37;
      padding-left: 1.2rem;
      font-weight: 300;
    }

    .studio-desc {
      margin: 0.5rem 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #b9b9c5;
    }

    .availability-card {
      background: rgba(20, 20, 28, 0.55);
      backdrop-filter: blur(12px);
      border-radius: 32px;
      padding: 1rem 1.5rem;
      border: 1px solid rgba(212, 175, 55, 0.3);
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 0.5rem 0;
      width: fit-content;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .live-dot {
      width: 12px;
      height: 12px;
      background: #2cd66e;
      border-radius: 50%;
      box-shadow: 0 0 8px #2cd66e;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse { 0% { opacity: 0.4; transform: scale(0.9);} 100% { opacity: 1; transform: scale(1.2);} }

    .availability-text {
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
    }

    .contact-social {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
      align-items: center;
    }

    .whatsapp-btn-sm {
      background: #25D36620;
      border: 1px solid #25D36660;
      border-radius: 40px;
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
      color: #fff;
      text-decoration: none;
    }

    .whatsapp-btn-sm:hover {
      background: #25D366;
      border-color: #25D366;
      transform: scale(1.02);
    }

    .social-icons a {
      color: #ddd;
      font-size: 1.2rem;
      margin-right: 1rem;
      transition: all 0.2s;
    }

    .social-icons a:hover { color: #d4af37; transform: translateY(-3px); }

    /* RIGHT SIDE – Glassmorphism Form */
    .glass-form-card {
      background: rgba(12, 12, 18, 0.55);
      backdrop-filter: blur(14px);
      border-radius: 42px;
      padding: 2rem 2rem 2.2rem;
      border: 1px solid rgba(212, 175, 55, 0.3);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
      transition: all 0.3s;
      animation: fadeUp 0.8s 0.1s forwards;
      opacity: 0;
      transform: translateY(25px);
    }

    /* Floating label group */
    .input-group {
      position: relative;
      margin-bottom: 1.5rem;
    }

    .input-group input, .input-group select, .input-group textarea {
      width: 100%;
      background: rgba(20, 22, 27, 0.8);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 24px;
      padding: 1rem 1.2rem;
      font-size: 0.9rem;
      color: #fff;
      font-family: 'Inter', sans-serif;
      transition: all 0.25s ease;
      outline: none;
    }

    .input-group textarea {
      resize: vertical;
      min-height: 80px;
    }

    .input-group label {
      position: absolute;
      left: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      padding: 0 4px;
      color: #b9b9c5;
      font-size: 0.9rem;
      pointer-events: none;
      transition: 0.2s ease all;
    }

    .input-group.textarea-group label {
      top: 1.2rem;
      transform: translateY(0);
    }

    .input-group.filled label, .input-group input:focus ~ label, 
    .input-group select:focus ~ label, .input-group textarea:focus ~ label,
    .input-group input:not(:placeholder-shown) ~ label {
      top: -0.6rem;
      left: 1rem;
      font-size: 0.7rem;
      background: #12121c;
      padding: 0 8px;
      color: #d4af37;
      letter-spacing: 0.3px;
      backdrop-filter: blur(2px);
    }

    .input-group input:focus, .input-group select:focus, .input-group textarea:focus {
      border-color: #d4af37;
      box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
      background: rgba(10, 12, 18, 0.9);
    }

    /* custom select */
    select {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      cursor: pointer;
    }

    /* date & time style */
    input[type="date"], input[type="time"] {
      color-scheme: dark;
    }

    /* CTA BUTTON */
    .btn-book {
      width: 100%;
      background: linear-gradient(105deg, #b8860b, #d4af37, #f5cb5c);
      border: none;
      border-radius: 60px;
      padding: 1rem;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1px;
      color: #0a0a0a;
      margin-top: 1rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .btn-book:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 20px 30px -8px rgba(212, 175, 55, 0.5);
      filter: brightness(1.05);
    }

    .btn-book i { font-size: 1.2rem; transition: transform 0.2s; }
    .btn-book:hover i { transform: translateX(5px); }

    /* MODAL */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: 0.25s;
    }
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .modal-container {
      background: rgba(15,15,22,0.96);
      border-radius: 40px;
      max-width: 450px;
      width: 90%;
      padding: 2rem;
      text-align: center;
      border: 1px solid #d4af37;
      box-shadow: 0 30px 40px rgba(0,0,0,0.6);
      transform: scale(0.9);
      transition: 0.2s;
    }
    .modal-container.success-animate { animation: modalPop 0.4s ease forwards; }
    @keyframes modalPop {
      0% { transform: scale(0.9); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    .success-icon {
      font-size: 4rem;
      color: #d4af37;
      margin-bottom: 1rem;
    }
    .close-modal {
      background: #d4af37;
      border: none;
      padding: 0.6rem 1.5rem;
      border-radius: 30px;
      margin-top: 1rem;
      cursor: pointer;
      font-weight: bold;
    }

    /* scroll reveal + floating elements */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* responsive */
    @media (max-width: 1024px) {
      .split-layout { grid-template-columns: 1fr; gap: 2rem; }
      .luxury-left { padding-right: 0; text-align: center; align-items: center; }
      .availability-card { justify-content: center; margin: 0 auto; }
      .subhead { text-align: left; }
      h1 { font-size: 3rem; }
      .booking-wrapper { padding: 2rem 1.5rem; }
    }

    @media (max-width: 640px) {
      h1 { font-size: 2.6rem; }
      .glass-form-card { padding: 1.5rem; }
      .input-group input, .input-group select, .input-group textarea { padding: 0.9rem 1rem; }
      .btn-book { padding: 0.8rem; }
    }

    /* flatpickr customization (premium style) */
    .flatpickr-calendar {
      background: #111217 !important;
      border: 1px solid rgba(212,175,55,0.4) !important;
      border-radius: 28px !important;
      box-shadow: 0 20px 35px rgba(0,0,0,0.6) !important;
    }
    .flatpickr-day.selected, .flatpickr-day.today {
      background: #d4af37 !important;
      border-color: #d4af37 !important;
      color: #111 !important;
    }
    .flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
      fill: #d4af37 !important;
    }
    /* ...........footer.................................................................................... */
  
  /* Unique footer styles - no conflicts */
  .footer-unique {
    position: relative;
    background: rgba(5, 5, 12, 0.92);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    margin-top: 4rem;
    width: 100%;
    z-index: 25;
  }
  .footer-container-unique {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
  }
  .footer-glow-unique {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, #f8e3a0, #d4af37, transparent);
    width: 100%;
    filter: blur(1px);
    margin-bottom: 2rem;
    animation: pulseGlow 3s infinite;
  }
  @keyframes pulseGlow {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
  }
  .footer-grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-col-unique h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
  }
  .footer-col-unique h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
  }
  .footer-col-unique:hover h3::after { width: 70px; }
  .logo-unique {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    background: linear-gradient(125deg, #fff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .tagline-unique {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 4px;
    color: #d4af37;
  }
  .desc-unique {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0.8rem 0;
    color: #cdcddf;
  }
  .insta-grid-unique {
    display: flex;
    gap: 0.6rem;
    margin: 1rem 0;
    flex-wrap: wrap;
  }
  .insta-item-unique {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.4);
    transition: 0.3s;
    cursor: pointer;
  }
  .insta-item-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }
  .insta-item-unique:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 5px 12px rgba(212,175,55,0.3);
  }
  .links-unique {
    list-style: none;
  }
  .links-unique li {
    margin-bottom: 0.7rem;
  }
  .links-unique a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.25s;
    display: inline-block;
  }
  .links-unique a:hover {
    color: #d4af37;
    transform: translateX(5px);
  }
  .contact-unique p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contact-unique i {
    color: #d4af37;
    width: 20px;
  }
  .newsletter-unique {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }
  .newsletter-unique input {
    background: rgba(20,20,32,0.9);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 60px;
    padding: 0.8rem 1.2rem;
    color: white;
    font-size: 0.85rem;
    outline: none;
  }
  .newsletter-unique input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212,175,55,0.6);
  }
  .newsletter-unique button {
    background: linear-gradient(95deg, #b8860b, #d4af37);
    border: none;
    padding: 0.8rem;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #0a0a0a;
  }
  .newsletter-unique button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
  }
  .social-unique {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .social-icon-unique {
    width: 42px;
    height: 42px;
    background: rgba(30,30,42,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ddd;
    transition: 0.25s;
    text-decoration: none;
    border: 1px solid rgba(212,175,55,0.3);
  }
  .social-icon-unique:hover {
    background: #d4af37;
    color: #020105;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 18px rgba(212,175,55,0.4);
  }
  .copyright-unique {
    text-align: center;
    border-top: 1px dashed rgba(212,175,55,0.3);
    padding-top: 1.5rem;
    font-size: 0.7rem;
    color: #aaa;
  }
  .copyright-line-unique {
    display: inline-block;
    position: relative;
  }
  .copyright-line-unique::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.4s;
  }
  .copyright-unique:hover .copyright-line-unique::after {
    width: 100%;
  }
  @media (max-width: 950px) {
    .footer-grid-unique { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
    .footer-container-unique { padding: 2rem 1.5rem 1.5rem; }
  }
  @media (max-width: 600px) {
    .footer-grid-unique { grid-template-columns: 1fr; text-align: center; }
    .footer-col-unique h3::after { left: 50%; transform: translateX(-50%); }
    .contact-unique p { justify-content: center; }
    .insta-grid-unique { justify-content: center; }
    .social-unique { justify-content: center; }
    .newsletter-unique { max-width: 280px; margin: 0 auto; width: 100%; }
  }
  .footer-col-unique {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .footer-col-unique.revealed-unique {
    opacity: 1;
    transform: translateY(0);
  }
