/* =========== BASE STARTS ==============*/

:root {
            --primary-pink: #FF66B2;
            --dark-pink: #E84393;
            --light-pink: #FFD6EC;
            --soft-pink: #FFF5FA;
            --gold: #FFD700;
            --dark: #333333;
            --white: #FFFFFF;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-soft: 0 8px 30px rgba(255, 102, 178, 0.1);
            --shadow-medium: 0 15px 40px rgba(255, 102, 178, 0.15);
            --shadow-strong: 0 25px 50px rgba(255, 102, 178, 0.2);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.7;
          background: linear-gradient(135deg, #FFE6F2 0%, #3d2431 30%, #180f14 70%, #FFA3CF 100%);
/* Soft pink to deeper rose - elegant & feminine */
            min-height: 100vh;
            position: relative;
            padding-top: 80px;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 214, 236, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 102, 178, 0.2) 0%, transparent 50%);
            z-index: -1;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--dark);
        }
        
        .logo-font {
            font-family: 'Dancing Script', cursive;
        }
        
        /* ================= NAVBAR ================= */
        .navbar {
            background: rgb(51 38 52);
            backdrop-filter: blur(15px);
            padding: 25px 0 ;
            transition: var(--transition);
            border-bottom: 2px  solid rgba(255, 214, 236, 0.8);
            box-shadow: var(--shadow-soft);
        }
        .navbar-logo {
    width: 100px;
}
        
        .navbar.scrolled {
            padding: 15px 0;
            background: rgb(12 8 10 / 95%);
            box-shadow: var(--shadow-medium);
        }
        
        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            font-size: 36px;
            color: var(--primary-pink);
            position: relative;
            padding-right: 20px;
        }
        
        .navbar-brand::after {
            content: '✦';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 20px;
            animation: sparkle 2s infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: translateY(-50%) rotate(0deg); }
            50% { opacity: 0.6; transform: translateY(-50%) rotate(180deg); }
        }
        
        .nav-link {
            font-weight: 500;
            color:#efe5e5 !important;
            margin: 0 8px;
            padding: 10px 20px !important;
            position: relative;
            transition: var(--transition);
            border-radius: 25px;
        }
        
        .nav-link:hover {
            color: var(--primary-pink) !important;
            background: rgba(255, 102, 178, 0.1);
            transform: translateY(-2px);
        }
        
        .nav-link.active {
            color: var(--primary-pink) !important;
            background: rgba(255, 102, 178, 0.15);
        }
        
        .nav-link i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .btn-book-1 {
            background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(255, 102, 178, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-book-1::before {
            content: '';
            position: absolute;
            top: 0;
           
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
                left: 50% !important;
    transform: translateX(-50%);
        }
        
        .btn-book-1:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 102, 178, 0.4);
            color: var(--white);
        }
        
        .btn-book-1:hover::before {
            left: 100%;
        }
        
        /* ================= MAIN CONTENT AREA ================= */
        main {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            margin: 100px 20px 30px;
            padding: 40px;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(255, 214, 236, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        main::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 102, 178, 0.05) 0%, transparent 70%);
            z-index: 0;
        }
        
        main > * {
            position: relative;
            z-index: 1;
        }
        /* =========== BASE ENDS ==============*/
        /* ================= FOOTER  STARTS ================= */
        footer {
            background: linear-gradient(135deg, var(--dark), #1d1c1c);
            color: var(--light-pink);
            padding: 80px 0 20px;
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-pink), var(--gold), var(--primary-pink));
        }
        
        footer::after {
            content: '✦';
            position: absolute;
            bottom: 20%;
            right: 10%;
            font-size: 60px;
            color: rgba(255, 102, 178, 0.1);
            transform: rotate(45deg);
        }
        
        footer h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-pink), var(--gold));
            border-radius:0;
        }
        
        footer p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        footer a:hover {
            color: var(--primary-pink);
            transform: translateX(10px);
            border-bottom-color: rgba(255, 102, 178, 0.3);
        }
        
        footer a i {
            color: var(--primary-pink);
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--primary-pink);
            margin-right: 15px;
            font-size: 20px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
            padding: 0;
            border: none;
        }
        
        .social-links a:hover {
            background: var(--primary-pink);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 5px 15px rgba(255, 102, 178, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 60px;
            padding-top: 25px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 2;
        }
        
        .pink-glow {
            text-shadow: 0 0 20px rgba(255, 102, 178, 0.3);
        }
        
        /* ================= DECORATIVE ELEMENTS ================= */
        .floating-hearts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .heart {
            position: absolute;
            color: rgba(255, 102, 178, 0.1);
            font-size: 24px;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }
        
        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 28px;
            }
            
            main {
                margin: 80px 15px 20px;
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            footer {
                padding: 60px 0 20px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .btn-book-1 {
                padding: 12px 24px;
            }
        }

         /* ================= FOOTER  ENDS ================= */


         /* ==================== INDEX STARTS =================*/

         .premium-hero {
        height: 120vh;
        position: relative;
        overflow: hidden;
        background: #0A0A0A;
        margin-top: 0;
    }
    
    .hero-parallax {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: url('https://images.unsplash.com/photo-1596703923338-48f1c07e4f2e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.4;
        transform: translateY(0);
        will-change: transform;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10,10,10,0.95) 0%, rgba(44,44,44,0.7) 100%);
        display: flex;
        align-items: center;
        padding: 0 8%;
    }
    
    .hero-content-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    
    .hero-text-content {
        color: #FFFFFF;
    }
    
    .hero-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .hero-main-title {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        background: linear-gradient(45deg, #FFFFFF, #E8D0A7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 500px;
    }
    
    .hero-stats {
        display: flex;
        gap: 40px;
        margin-top: 50px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-family: 'Cormorant Garamond', serif;
        color: #D4AF37;
        font-weight: 600;
        display: block;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 8px;
    }
    
    .hero-visual {
        position: relative;
    }
    
    .hero-frame {
        position: relative;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        margin-top: -100px;
    }
    
    .hero-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }
    
    .floating-element {
        position: absolute;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        animation: float 8s ease-in-out infinite;
    }
    
    .floating-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
        animation-delay: 0s;
    }
    
    .floating-2 {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
        animation-delay: -2s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    /* CTA Buttons */
    .cta-primary {
        background: #D4AF37;
        color: #0A0A0A;
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .cta-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #C19B2E;
        transition: all 0.5s ease;
        z-index: -1;
    }
    
    .cta-primary:hover::before {
        width: 100%;
    }
    
    .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }
    
    .cta-secondary {
        background: transparent;
        color: #D4AF37;
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: 2px solid #D4AF37;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .cta-secondary:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-3px);
    }
    
    .hero-cta {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    /* NEW: Luxury Brand Partners */
    .luxury-partners {
        padding: 80px 5%;
        background: #F8F5F0;
        position: relative;
    }
    
    .partners-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }
    
    .partners-header h2 {
        font-size: 2.8rem;
        color: #1A1A1A;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .partners-header p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .partner-logo {
        height: 120px;
        background: white;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .partner-logo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }
    
    .partner-logo:hover::before {
        transform: translateX(100%);
    }
    
    .partner-logo:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .partner-logo img {
        max-width: 100%;
        max-height: 80px;
        filter: grayscale(1);
        transition: filter 0.3s ease;
        object-fit: cover;
    }
    
    .partner-logo:hover img {
        filter: grayscale(0);
    }
    
    /* NEW: Master Artists Showcase */
    .master-artists {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .artists-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }
    
    .artists-header h2 {
        font-size: 3rem;
        color: #FFFFFF;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .artists-header p {
        color: #B0B0B0;
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .artists-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .artist-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.5s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .artist-card:hover {
        transform: translateY(-15px);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
    
    .artist-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .artist-card:hover .artist-image {
        transform: scale(1.05);
    }
    
    .artist-content {
        padding: 30px;
    }
    
    .artist-name {
        font-size: 1.5rem;
        color: #FFFFFF;
        margin-bottom: 8px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .artist-title {
        color: #D4AF37;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .artist-bio {
        color: #B0B0B0;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .artist-specialties {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .specialty-tag {
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
    }
    
    /* NEW: Luxury Experience Journey */
    .experience-journey {
        padding: 120px 5%;
        background: linear-gradient(135deg, #F9F7F4 0%, #F0ECE4 100%);
        position: relative;
        overflow: hidden;
    }
    
    .journey-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }
    
    .journey-header h2 {
        font-size: 3rem;
        color: #1A1A1A;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .journey-header p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .journey-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    
    .journey-steps::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(212, 175, 55, 0.3);
        z-index: 1;
    }
    
    .journey-step {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .step-number {
        width: 120px;
        height: 120px;
        background: #D4AF37;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: #FFFFFF;
        font-weight: 600;
        margin: 0 auto 30px;
        position: relative;
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    }
    
    .step-title {
        font-size: 1.3rem;
        color: #1A1A1A;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .step-description {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* NEW: VIP Membership */
    .vip-membership {
        padding: 120px 5%;
        background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        position: relative;
    }
    
    .membership-container {
        max-width: 1000px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 30px;
        padding: 60px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
    }
    
    .membership-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    }
    
    .membership-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .membership-header h2 {
        font-size: 3rem;
        color: #FFFFFF;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .membership-header p {
        color: #B0B0B0;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }
    
    .membership-benefits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .benefit-item {
        text-align: center;
        color: #FFFFFF;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #D4AF37;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover .benefit-icon {
        background: #D4AF37;
        color: #0A0A0A;
        transform: scale(1.1);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .benefit-description {
        color: #B0B0B0;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .membership-cta {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* NEW: Instagram Gallery */
    .instagram-gallery {
        padding: 80px 5%;
        background: #F9F7F4;
    }
    
    .gallery-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
    }
    
    .gallery-header h2 {
        font-size: 2.8rem;
        color: #1A1A1A;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .gallery-header p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .instagram-handle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #D4AF37;
        font-weight: 600;
        text-decoration: none;
        margin-top: 20px;
        font-size: 1.1rem;
    }
    
    .instagram-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .instagram-post {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 1;
        transition: all 0.4s ease;
    }
    
    .instagram-post img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .instagram-post:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .instagram-post:hover img {
        transform: scale(1.1);
    }
    
    .post-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        display: flex;
        align-items: flex-end;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .instagram-post:hover .post-overlay {
        opacity: 1;
    }
    
    .post-likes {
        color: white;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    /* Premium Services Showcase */
    .premium-showcase {
        padding: 140px 5%;
        background: #F9F7F4;
        position: relative;
        overflow: hidden;
    }
    
    .showcase-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }
    
    .showcase-title {
        font-size: 3.2rem;
        color: #1A1A1A;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    
    .showcase-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #D4AF37;
    }
    
    .showcase-description {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-top: 30px;
    }
    
    .services-showcase {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .service-showcase-card {
        background: #FFFFFF;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        height: 500px;
    }
    
    .service-showcase-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }
    
    .service-showcase-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 1s ease;
    }
    
    .service-showcase-card:hover .service-showcase-image {
        transform: scale(1.1);
    }
    
    .service-showcase-content {
        padding: 40px;
        position: relative;
        z-index: 2;
        background: #FFFFFF;
    }
    
    .service-showcase-category {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .service-showcase-name {
        font-size: 1.8rem;
        color: #1A1A1A;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .service-showcase-price {
        color: #D4AF37;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .service-showcase-desc {
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }
    
    .service-showcase-features {
        list-style: none;
        margin: 25px 0;
    }
    
    .service-showcase-features li {
        color: #555;
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        font-size: 0.9rem;
    }
    
    .service-showcase-features li:before {
        content: '✦';
        position: absolute;
        left: 0;
        color: #D4AF37;
    }
    
    /* Premium Testimonials */
    .premium-testimonials {
        padding: 140px 5%;
        background: #1A1A1A;
        position: relative;
    }
    
    .testimonials-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    .testimonial-slider-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .testimonial-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonial-slide {
        min-width: 100%;
        padding: 0 20px;
    }
    
    .testimonial-card-premium {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-card-premium:before {
        content: '"';
        position: absolute;
        top: 30px;
        right: 60px;
        font-size: 12rem;
        font-family: 'Cormorant Garamond', serif;
        color: rgba(212, 175, 55, 0.1);
        line-height: 1;
    }
    
    .testimonial-quote {
        font-size: 1.4rem;
        line-height: 1.8;
        color: #E0E0E0;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
        font-style: italic;
    }
    
    .testimonial-author-premium {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .author-avatar-premium {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #D4AF37;
    }
    
    .author-info-premium h4 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: #FFFFFF;
    }
    
    .author-info-premium p {
        color: #888;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 60px;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #FFFFFF;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }
    
    .slider-btn:hover {
        background: #D4AF37;
        border-color: #D4AF37;
        transform: scale(1.1);
    }
    
    /* Premium Booking CTA */
    .premium-booking-cta {
        padding: 140px 5%;
        background: linear-gradient(135deg, #F7F0E8 0%, #E8D3C5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .booking-cta-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    
    .booking-cta-content h2 {
        font-size: 3.5rem;
        color: #1A1A1A;
        margin-bottom: 25px;
        line-height: 1.1;
    }
    
    .booking-cta-content p {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 40px;
    }
    
    .booking-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .booking-feature {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: #D4AF37;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: #1A1A1A;
    }
    
    .feature-text p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 0;
    }
    
    .booking-form-premium {
        background: #FFFFFF;
        border-radius: 25px;
        padding: 50px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
    }
    
    .form-header-premium {
        text-align: center;
        margin-bottom: 20px;
        
    }
    
    .form-header-premium h3 {
        font-size: 2rem;
        color: #e33dd8;
        margin-bottom: 10px;
    }
    
    .form-header-premium p {
        color: #666;
    }
    
    .form-group-premium {
        margin-bottom: 25px;
    }
    
    .form-label-premium {
        display: block;
        margin-bottom: 8px;
        color: var(--dark-pink);
        font-weight: 500;
        font-size: 0.95rem;
    }
    
    .form-input-premium {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #E0E0E0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #FAFAFA;
    }
    
    .form-input-premium:focus {
        outline: none;
        border-color: #D4AF37;
        background: #FFFFFF;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    }
    
    .form-submit-premium {
        width: 100%;
        background: linear-gradient(45deg, #D4AF37, #C19B2E);
        color: white;
        border: none;
        padding: 18px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 20px;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }
    
    .form-submit-premium:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }

    /* ===================== INDEX ENDS =====================*/

    /* =================== ABOUT STARTS ========================*/
        /* About Hero Section */
    .about-hero {
        height: 80vh;
        position: relative;
        overflow: hidden;
        background: #0A0A0A;
    }
    
    .about-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.3;
        filter: brightness(0.6);
    }
    
    .about-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10,10,10,0.95) 0%, rgba(44,44,44,0.7) 100%);
        display: flex;
        align-items: center;
        padding: 0 8%;
    }
    
    .about-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        color: #FFFFFF;
    }
    
    .about-hero-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        animation: fadeInUp 1s ease;
    }
    
    .about-hero-title {
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        background: linear-gradient(45deg, #FFFFFF, #E8D0A7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 1s ease 0.2s both;
    }
    
    .about-hero-subtitle {
        font-size: 1.4rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 700px;
        animation: fadeInUp 1s ease 0.4s both;
    }
    
    /* Our Story Section */
    .our-story {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
        position: relative;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
        color: #FFFFFF;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
        position: relative;
        display: inline-block;
    }
    
    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #D4AF37;
    }
    
    .section-header p {
        color: #B0B0B0;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-top: 30px;
    }
    
    .story-timeline {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 100px;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .timeline-item.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .timeline-item:nth-child(odd) {
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }
    
    .timeline-content {
        width: 45%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        transition: all 0.4s ease;
    }
    .timeline-content h3{
        color:var(--primary-pink);
    }
     .timeline-content p{
        color:var(--white);
     }
    
    .timeline-content:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .timeline-year {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #D4AF37;
        color: #0A0A0A;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        z-index: 2;
    }
    
    .timeline-year span {
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    /* Mission & Vision */
    .mission-vision {
        padding: 120px 5%;
        background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        position: relative;
    }
    
    .mission-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .mission-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(50px);
    }
    
    .mission-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mission-card:hover {
        transform: translateY(-15px);
        border-color: #D4AF37;
    }
    
    .mission-icon {
        width: 100px;
        height: 100px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 3rem;
        color: #D4AF37;
        transition: all 0.3s ease;
    }
    
    .mission-card:hover .mission-icon {
        background: #D4AF37;
        color: #0A0A0A;
        transform: scale(1.1) rotate(10deg);
    }
    
    .mission-card h3 {
        font-size: 2.2rem;
        color: #FFFFFF;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .mission-card p {
        color: #B0B0B0;
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    /* Founders Section */
    .founders-section {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .founders-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .founder-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(50px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .founder-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .founder-card:hover {
        transform: translateY(-15px);
        border-color: #D4AF37;
    }
    
    .founder-image {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .founder-card:hover .founder-image {
        transform: scale(1.05);
    }
    
    .founder-content {
        padding: 40px;
    }
    
    .founder-name {
        font-size: 1.8rem;
        color: #FFFFFF;
        margin-bottom: 10px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .founder-role {
        color: #D4AF37;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        display: block;
    }
    
    .founder-bio {
        color: #B0B0B0;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .founder-quote {
        color: #FFFFFF;
        font-style: italic;
        padding-left: 20px;
        border-left: 3px solid #D4AF37;
        margin-top: 20px;
    }
    
    /* Values Section */
    .values-section {
        padding: 120px 5%;
        background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
        position: relative;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .value-card {
        text-align: center;
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .value-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .value-card:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        background: rgba(212, 175, 55, 0.05);
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.5rem;
        color: #D4AF37;
        transition: all 0.3s ease;
    }
    
    .value-card:hover .value-icon {
        background: #D4AF37;
        color: #0A0A0A;
        transform: rotate(15deg);
    }
    
    .value-card h4 {
        font-size: 1.3rem;
        color: #FFFFFF;
        margin-bottom: 15px;
    }
    
    .value-card p {
        color: #B0B0B0;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Studio Tour */
    .studio-tour {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
        overflow: hidden;
    }
    
    .tour-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }
    
    .tour-images {
        position: relative;
    }
    
    .tour-main-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }
    
    .tour-thumbnails {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }
    
    .tour-thumb {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0.6;
    }
    
    .tour-thumb:hover,
    .tour-thumb.active {
        opacity: 1;
        transform: scale(1.1);
        border: 2px solid #D4AF37;
    }
    
    .tour-content h3 {
        font-size: 2.5rem;
        color: #FFFFFF;
        margin-bottom: 25px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .tour-content p {
        color: #B0B0B0;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .tour-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .tour-feature {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .tour-feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4AF37;
        font-size: 1.2rem;
    }
    
    .tour-feature-text h5 {
        color: #FFFFFF;
        margin-bottom: 5px;
        font-size: 1rem;
    }
    
    .tour-feature-text p {
        color: #888;
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Call to Action */
    .about-cta {
        padding: 120px 5%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
        position: relative;
    }
    
    .about-cta-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-cta h2 {
        font-size: 3.5rem;
        color: #FFFFFF;
        margin-bottom: 25px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .about-cta p {
        color: #B0B0B0;
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    /* CTA Buttons */
    .cta-primary {
        background: #D4AF37;
        color: #0A0A0A;
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .cta-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #C19B2E;
        transition: all 0.5s ease;
        z-index: -1;
    }
    
    .cta-primary:hover::before {
        width: 100%;
    }
    
    .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }
    
    .cta-secondary1 {
        background: transparent;
        color: #D4AF37;
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: 2px solid #D4AF37;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .cta-secondary:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-3px);
    }
    
    /* Floating Elements */
    .floating-element {
        position: absolute;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        animation: float 8s ease-in-out infinite;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .founders-grid,
        .values-grid,
        .tour-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .about-hero-title {
            font-size: 3.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .about-hero-title {
            font-size: 2.8rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
        }
        
        .mission-grid,
        .tour-grid {
            grid-template-columns: 1fr;
        }
        
        .timeline-item {
            flex-direction: column;
            text-align: center;
        }
        
        .timeline-content {
            width: 100%;
        }
        
        .timeline-year {
            position: relative;
            top: 0;
            left: 0;
            transform: none;
            margin: 20px auto;
        }
        
        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 480px) {
        .about-hero-title {
            font-size: 2.2rem;
        }
        
        .values-grid {
            grid-template-columns: 1fr;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-primary,
        .cta-secondary1 {
            width: 100%;
            max-width: 300px;
        }
    }

    /* ====================ABOUT ENDS =============== */


    /* ================= SERVICES STARTS ============*/
      /* Premium Services Hero */
    .luxury-services-hero {
        height: 80vh;
        position: relative;
        overflow: hidden;
        background: #0A0A0A;
    }
    
    .services-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.4;
        filter: brightness(0.5);
        transform: scale(1.1);
        transition: transform 10s ease;
    }
    
    .luxury-services-hero:hover .services-hero-bg {
        transform: scale(1);
    }
    
    .services-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.7) 100%);
        display: flex;
        align-items: center;
        padding: 0 8%;
    }
    
    .services-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        color: #FFFFFF;
    }
    
    .services-hero-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        animation: badgePulse 2s infinite;
    }
    
    @keyframes badgePulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }
    
    .services-hero-title {
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        background: linear-gradient(45deg, #FFFFFF, #E8D0A7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .services-hero-subtitle {
        font-size: 1.4rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 700px;
    }
    
    /* Services Navigation */
    .services-navigation {
        padding: 40px 5%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .services-nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .service-nav-link {
        padding: 15px 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        color: #B0B0B0;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .service-nav-link:hover {
        color: #FFFFFF;
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }
    
    .service-nav-link.active {
        background: rgba(212, 175, 55, 0.15);
        color: #D4AF37;
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }
    
    /* Service Categories */
    .service-category-section {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .category-section-title {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .category-title-main {
        font-size: 3.5rem;
        color: #FFFFFF;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
        position: relative;
        display: inline-block;
    }
    
    .category-title-main::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #D4AF37;
    }
    
    .category-title-description {
        color: #B0B0B0;
        font-size: 1.2rem;
        max-width: 600px;
        margin: 30px auto 0;
        line-height: 1.8;
    }
    
    /* Service Grid Layout */
    .premium-service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Service Card Styles */
    .luxury-service-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        opacity: 0;
        transform: translateY(50px);
    }
    
    .luxury-service-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }
    
    .luxury-service-card:hover {
        transform: translateY(-20px);
        border-color: #D4AF37;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 
                    0 0 30px rgba(212, 175, 55, 0.1);
    }
    
    .service-image-wrapper {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .service-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .luxury-service-card:hover .service-card-image {
        transform: scale(1.1);
    }
    
    .service-overlay-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(212, 175, 55, 0.9);
        color: #0A0A0A;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 1px;
        transform: translateX(100px);
        transition: transform 0.5s ease 0.2s;
    }
    
    .luxury-service-card:hover .service-overlay-badge {
        transform: translateX(0);
    }
    
    .service-card-content {
        padding: 40px;
        position: relative;
        z-index: 2;
    }
    
    .service-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .service-card-title {
        font-size: 1.8rem;
        color: #FFFFFF;
        margin-bottom: 10px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .service-card-price {
        font-size: 1.8rem;
        color: #D4AF37;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .service-card-description {
        color: #B0B0B0;
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }
    
    .service-features-list {
        margin: 25px 0;
        padding: 0;
        list-style: none;
    }
    
    .service-feature-item {
        color: #FFFFFF;
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
        font-size: 0.9rem;
    }
    
    .service-feature-item::before {
        content: '✦';
        position: absolute;
        left: 0;
        color: #D4AF37;
        font-size: 1.2rem;
    }
    
    .service-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .service-duration {
        color: #888;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Service Booking Modal */
    .service-booking-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 100px;
     
    }
    
    .service-booking-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .booking-modal-content {
        background: rgba(26, 26, 26, 0.95);
        border-radius: 30px;
        padding: 50px;
        max-width: 600px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        border: 1px solid rgba(212, 175, 55, 0.2);
        position: relative;
        transform: translateY(50px);
        transition: transform 0.5s ease;
    }
    
    .service-booking-modal.active .booking-modal-content {
        transform: translateY(0);
    }
    
    .modal-close-btn {
        position: absolute;
        top: 25px;
        right: 25px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: #D4AF37;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }
    
    .modal-close-btn:hover {
        background: #D4AF37;
        color: #0A0A0A;
        transform: rotate(90deg);
    }
    
    /* Comparison Table */
    .services-comparison {
        padding: 120px 5%;
        background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        position: relative;
    }
    
    .comparison-table {
        max-width: 1000px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .comparison-header {
        display: grid;
        grid-template-columns: 2fr repeat(3, 1fr);
        background: rgba(212, 175, 55, 0.1);
        padding: 25px 30px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .comparison-header-cell {
        color: #FFFFFF;
        font-weight: 600;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .comparison-row {
        display: grid;
        grid-template-columns: 2fr repeat(3, 1fr);
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .comparison-row:hover {
        background: rgba(212, 175, 55, 0.05);
    }
    
    .comparison-cell {
        color: #B0B0B0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .comparison-cell.feature {
        text-align: left;
        justify-content: flex-start;
        color: #FFFFFF;
        font-weight: 500;
    }
    
    .comparison-check {
        color: #D4AF37;
        font-size: 1.2rem;
    }
    
    /* Service Packages */
    .luxury-packages {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .package-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 25px;
        padding: 50px 40px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    
    .package-card.popular {
        border-color: #D4AF37;
        transform: scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }
    
    .package-card.popular::before {
        content: 'MOST POPULAR';
        position: absolute;
        top: 20px;
        right: -30px;
        background: #D4AF37;
        color: #0A0A0A;
        padding: 8px 40px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        transform: rotate(45deg);
    }
    
    .package-header {
        margin-bottom: 40px;
    }
    
    .package-name {
        font-size: 2rem;
        color: #FFFFFF;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .package-price {
        font-size: 3.5rem;
        color: #D4AF37;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
        margin-bottom: 10px;
    }
    
    .package-period {
        color: #888;
        font-size: 0.9rem;
    }
    
    .package-features {
        list-style: none;
        margin: 40px 0;
        padding: 0;
    }
    
    .package-feature {
        color: #FFFFFF;
        margin-bottom: 15px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .package-feature i {
        color: #D4AF37;
    }
    
    /* Testimonials Carousel */
    .services-testimonials {
        padding: 120px 5%;
        background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
        position: relative;
    }
    
    .testimonial-carousel {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonial-slide {
        min-width: 100%;
        padding: 0 20px;
    }
    
    .testimonial-content {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
        position: relative;
    }
    
    .testimonial-content::before {
        content: '"';
        position: absolute;
        top: 30px;
        right: 60px;
        font-size: 8rem;
        font-family: 'Cormorant Garamond', serif;
        color: rgba(212, 175, 55, 0.1);
        line-height: 1;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
        line-height: 1.8;
        color: #E0E0E0;
        margin-bottom: 40px;
        font-style: italic;
        position: relative;
        z-index: 2;
    }
    
    /* CTA Buttons */
    .cta-button-primary {
        background: linear-gradient(45deg, #D4AF37, #C19B2E);
        color: #0A0A0A;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    
    .cta-button-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.5s;
    }
    
    .cta-button-primary:hover::before {
        left: 100%;
    }
    
    .cta-button-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }
    
    .cta-button-secondary {
        background: transparent;
        color: #D4AF37;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid #D4AF37;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
    }
    
    .cta-button-secondary:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-3px);
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .services-hero-title {
            font-size: 3.5rem;
        }
        
        .packages-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .package-card.popular {
            transform: none;
        }
    }
    
    @media (max-width: 768px) {
        .services-hero-title {
            font-size: 2.8rem;
        }
        
        .premium-service-grid {
            grid-template-columns: 1fr;
        }
        
        .packages-grid {
            grid-template-columns: 1fr;
        }
        
        .services-nav-container {
            flex-direction: column;
            align-items: center;
        }
        
        .comparison-row,
        .comparison-header {
            grid-template-columns: 1fr;
            gap: 10px;
            text-align: center;
        }
        
        .comparison-cell.feature {
            text-align: center;
            justify-content: center;
        }
    }
    /* ==================== SERVICES ENDS ================*/
    
    /* ================== BOOK STARTS ==================*/
    /* Premium Booking Hero */
    .booking-hero-section {
        min-height: 70vh;
        position: relative;
        overflow: hidden;
        background: #0A0A0A;
    }
    
    .booking-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.3;
        filter: brightness(0.6);
        transform: scale(1.1);
        transition: transform 8s ease;
    }
    
    .booking-hero-section:hover .booking-hero-background {
        transform: scale(1);
    }
    
    .booking-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.7) 100%);
        display: flex;
        align-items: center;
        padding: 0 8%;
    }
    
    .booking-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        color: #FFFFFF;
    }
    
    .booking-hero-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        animation: badgeGlow 2s infinite;
    }
    
    @keyframes badgeGlow {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        50% { 
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }
    }
    
    .booking-hero-title {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        background: linear-gradient(45deg, #FFFFFF, #E8D0A7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .booking-hero-subtitle {
        font-size: 1.4rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 700px;
    }
    
    /* Booking Process Steps */
    .booking-process-steps {
        padding: 80px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .steps-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    
    .steps-container::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            rgba(212, 175, 55, 0.3) 0%, 
            rgba(212, 175, 55, 0.1) 50%, 
            rgba(212, 175, 55, 0.3) 100%);
        z-index: 1;
    }
    
    .process-step {
        text-align: center;
        position: relative;
        z-index: 2;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .process-step.animate-step {
        opacity: 1;
        transform: translateY(0);
    }
    
    .step-icon-wrapper {
        width: 120px;
        height: 120px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #D4AF37;
        margin: 0 auto 30px;
        position: relative;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .process-step:hover .step-icon-wrapper {
        background: #D4AF37;
        color: #0A0A0A;
        transform: scale(1.1) rotate(5deg);
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    }
    
    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 40px;
        height: 40px;
        background: #D4AF37;
        color: #0A0A0A;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.4rem;
        color: #FFFFFF;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .step-description {
        color: #B0B0B0;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Booking Form Section */
    .booking-form-section {
        padding: 100px 5%;
        background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        position: relative;
    }
    
    .booking-form-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: start;
    }
    
    /* Form Sidebar */
    .booking-sidebar {
        position: sticky;
        top: 100px;
    }
    
    .sidebar-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 25px;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .sidebar-card:hover {
        border-color: #D4AF37;
        transform: translateY(-5px);
    }
    
    .sidebar-title {
        font-size: 1.5rem;
        color: #FFFFFF;
        margin-bottom: 25px;
        font-family: 'Cormorant Garamond', serif;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Selected Services */
    .selected-services {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .selected-service {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .selected-service:hover {
        transform: translateX(5px);
        border-bottom-color: rgba(212, 175, 55, 0.2);
    }
    
    .service-info h4 {
        color: #FFFFFF;
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .service-duration {
        color: #888;
        font-size: 0.85rem;
    }
    
    .service-price {
        color: #D4AF37;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    /* Booking Summary */
    .booking-summary {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }
    
    .summary-label {
        color: #B0B0B0;
        font-size: 0.95rem;
    }
    
    .summary-value {
        color: #FFFFFF;
        font-weight: 500;
    }
    
    .summary-total {
        font-size: 1.5rem;
        color: #D4AF37;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
    }
    
    /* Main Form */
    .booking-main-form {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 30px;
        padding: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
    }
    
    .form-section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .form-main-title {
        font-size: 2.5rem;
        color: #FFFFFF;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .form-subtitle {
        color: #B0B0B0;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }
    
    /* Form Steps */
    .form-steps-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        position: relative;
    }
    
    .form-steps-container::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }
    
    .form-step {
        position: relative;
        z-index: 2;
        text-align: center;
        flex: 1;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-weight: 600;
        color: #B0B0B0;
        transition: all 0.3s ease;
    }
    
    .form-step.active .step-circle {
        background: #D4AF37;
        color: #0A0A0A;
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    }
    
    .form-step.completed .step-circle {
        background: rgba(212, 175, 55, 0.2);
        color: #D4AF37;
    }
    
    .step-label {
        color: #B0B0B0;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .form-step.active .step-label {
        color: #FFFFFF;
        font-weight: 600;
    }
    
    /* Form Content */
    .form-content {
        min-height: 400px;
    }
    
    .form-step-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .form-step-content.active {
        display: block;
    }
    
    /* Form Groups */
    .form-group-container {
        margin-bottom: 30px;
    }
    
    .form-label {
        display: block;
        color: #FFFFFF;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .form-label .required {
        color: #D4AF37;
        margin-left: 5px;
    }
    
    .form-input {
        width: 100%;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #FFFFFF;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-input:focus {
        outline: none;
        border-color: #D4AF37;
        background: rgba(212, 175, 55, 0.05);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    }
    
    .form-input::placeholder {
        color: #666;
    }
    
    .form-select {
        width: 100%;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #FFFFFF;
        font-size: 1rem;
        transition: all 0.3s ease;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 20px;
    }
    
    .form-select:focus {
        outline: none;
        border-color: #D4AF37;
        background-color: rgb(4 3 3 / 78%);
        box-shadow: 0 5px 20px rgba(238, 238, 237, 0.1);
    }
    
    .form-textarea {
        width: 100%;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #FFFFFF;
        font-size: 1rem;
        transition: all 0.3s ease;
        min-height: 120px;
        resize: vertical;
    }
    
    .form-textarea:focus {
        outline: none;
        border-color: #D4AF37;
        background: rgba(212, 175, 55, 0.05);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    }
    
    /* Service Selection */
    .service-selection-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .service-option {
        position: relative;
        cursor: pointer;
    }
    
    .service-checkbox {
        position: absolute;
        opacity: 0;
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 25px;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .service-checkbox:checked + .service-card {
        background: rgba(212, 175, 55, 0.1);
        border-color: #D4AF37;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    }
    
    .service-checkbox:checked + .service-card::after {
        content: '✓';
        position: absolute;
        top: 15px;
        right: 15px;
        width: 25px;
        height: 25px;
        background: #D4AF37;
        color: #0A0A0A;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    
    .service-name {
        color: #FFFFFF;
        font-size: 1.1rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .service-price-tag {
        color: #D4AF37;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .service-duration-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        color: #B0B0B0;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    /* Time Slots */
    .time-slots-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .time-slot {
        position: relative;
    }
    
    .time-radio {
        position: absolute;
        opacity: 0;
    }
    
    .time-button {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: #B0B0B0;
        font-size: 0.95rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .time-radio:checked + .time-button {
        background: rgba(212, 175, 55, 0.2);
        border-color: #D4AF37;
        color: #FFFFFF;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }
    
    /* Form Navigation */
    .form-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-button {
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        border: none;
    }
    
    .nav-button.prev {
        background: transparent;
        color: #B0B0B0;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-button.prev:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #FFFFFF;
        transform: translateX(-5px);
    }
    
    .nav-button.next {
        background: linear-gradient(45deg, #D4AF37, #C19B2E);
        color: #0A0A0A;
    }
    
    .nav-button.next:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }
    
    .nav-button.submit {
        background: linear-gradient(45deg, #D4AF37, #C19B2E);
        color: #0A0A0A;
        width: 100%;
        justify-content: center;
    }
    
    .nav-button.submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }
    
    /* Success Modal */
    .booking-success-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .booking-success-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .success-modal-content {
        background: rgba(26, 26, 26, 0.95);
        border-radius: 30px;
        padding: 60px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transform: scale(0.9);
        transition: transform 0.5s ease;
    }
    
    .booking-success-modal.active .success-modal-content {
        transform: scale(1);
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #D4AF37;
        margin: 0 auto 30px;
        animation: successPulse 2s infinite;
    }
    
    @keyframes successPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    .success-title {
        font-size: 2.5rem;
        color: #FFFFFF;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .success-message {
        color: #B0B0B0;
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }
    
    .booking-details {
        background: rgba(212, 175, 55, 0.05);
        border-radius: 15px;
        padding: 25px;
        margin: 30px 0;
        text-align: left;
    }
    
    .detail-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .detail-label {
        color: #B0B0B0;
    }
    
    .detail-value {
        color: #FFFFFF;
        font-weight: 500;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .booking-form-container {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        .booking-sidebar {
            position: static;
        }
        
        .steps-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .steps-container::before {
            display: none;
        }
        
        .service-selection-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .booking-hero-title {
            font-size: 3rem;
        }
        
        .booking-hero-subtitle {
            font-size: 1.2rem;
        }
        
        .steps-container {
            grid-template-columns: 1fr;
            text-align: left;
            gap: 40px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .step-icon-wrapper {
            margin: 0;
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            font-size: 2.5rem;
        }
        
        .step-number {
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            font-size: 1rem;
        }
        
        .booking-main-form {
            padding: 40px 30px;
        }
        
        .time-slots-container {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .form-navigation {
            flex-direction: column;
            gap: 15px;
        }
        
        .nav-button {
            width: 100%;
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .booking-hero-title {
            font-size: 2.5rem;
        }
        
        .form-main-title {
            font-size: 2rem;
        }
        
        .booking-main-form {
            padding: 30px 20px;
        }
        
        .time-slots-container {
            grid-template-columns: 1fr;
        }
        
        .success-modal-content {
            padding: 40px 25px;
        }
    }
/* =============== BOOK ENDS ===============*/

/* ================ GALLERY STARTS ============*/
  /* Premium Gallery Hero */
    .gallery-hero-section {
        height: 75vh;
        position: relative;
        overflow: hidden;
        background: #0A0A0A;
    }
    
    .gallery-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.3;
        filter: brightness(0.6);
        transform: scale(1.1);
        transition: transform 8s ease;
    }
    
    .gallery-hero-section:hover .gallery-hero-background {
        transform: scale(1);
    }
    
    .gallery-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.7) 100%);
        display: flex;
        align-items: center;
        padding: 0 8%;
    }
    
    .gallery-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        color: #FFFFFF;
        text-align: center;
    }
    
    .gallery-hero-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        animation: badgePulse 2s infinite;
    }
    
    @keyframes badgePulse {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        50% { 
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }
    }
    
    .gallery-hero-title {
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        background: linear-gradient(45deg, #FFFFFF, #E8D0A7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .gallery-hero-subtitle {
        font-size: 1.4rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Gallery Navigation */
    .gallery-navigation {
        padding: 40px 5%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .gallery-nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .gallery-nav-btn {
        padding: 12px 25px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        color: #B0B0B0;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .gallery-nav-btn:hover {
        color: #FFFFFF;
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }
    
    .gallery-nav-btn.active-filter {
        background: rgba(212, 175, 55, 0.15);
        color: #D4AF37;
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }
    
    /* Gallery Container */
    .premium-gallery-container {
        padding: 80px 5%;
        background: #0A0A0A;
        position: relative;
        min-height: 100vh;
    }
    
    /* Loading Animation */
    .gallery-loading {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(212, 175, 55, 0.1);
        border-top-color: #D4AF37;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Gallery Grid */
    .gallery-grid-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .masonry-grid {
        columns: 4;
        column-gap: 20px;
    }
    
    .grid-sizer {
        width: 100%;
    }
    
    /* Gallery Items */
    .gallery-item {
        break-inside: avoid;
        margin-bottom: 20px;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .gallery-item.animate-in {
        transform: translateY(0);
        opacity: 1;
    }
    
    .gallery-item:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(212, 175, 55, 0.1);
    }
    
    .gallery-image-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .gallery-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .gallery-item:hover .gallery-image {
        transform: scale(1.1);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.9) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-item:hover .image-overlay {
        opacity: 1;
    }
    
    .image-category-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.9);
        color: #0A0A0A;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .image-title {
        color: #FFFFFF;
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 8px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .image-description {
        color: #B0B0B0;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Lightbox Modal */
    .lightbox-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .lightbox-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .lightbox-content {
        max-width: 90%;
        max-height: 90vh;
        position: relative;
        background: rgba(26, 26, 26, 0.95);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transform: scale(0.9);
        transition: transform 0.5s ease;
    }
    
    .lightbox-modal.active .lightbox-content {
        transform: scale(1);
    }
    
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: #D4AF37;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        z-index: 2;
    }
    
    .lightbox-close:hover {
        background: #D4AF37;
        color: #0A0A0A;
        transform: rotate(90deg);
    }
    
    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: #D4AF37;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.5rem;
        z-index: 2;
    }
    
    .lightbox-nav:hover {
        background: #D4AF37;
        color: #0A0A0A;
        transform: translateY(-50%) scale(1.1);
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-image-container {
        width: 100%;
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }
    
    .lightbox-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    
    .lightbox-info {
        padding: 30px 40px;
        background: rgba(10, 10, 10, 0.8);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .lightbox-title {
        color: #FFFFFF;
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .lightbox-category {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .lightbox-description {
        color: #B0B0B0;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    /* Empty State */
    .gallery-empty-state {
        text-align: center;
        padding: 100px 20px;
        color: #666;
    }
    
    .empty-state-icon {
        font-size: 4rem;
        color: rgba(212, 175, 55, 0.3);
        margin-bottom: 20px;
    }
    
    .empty-state-title {
        font-size: 1.5rem;
        color: #FFFFFF;
        margin-bottom: 10px;
    }
    
    .empty-state-text {
        color: #888;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .masonry-grid {
            columns: 3;
        }
        
        .gallery-hero-title {
            font-size: 4rem;
        }
    }
    
    @media (max-width: 768px) {
        .masonry-grid {
            columns: 2;
        }
        
        .gallery-hero-title {
            font-size: 3rem;
        }
        
        .gallery-hero-subtitle {
            font-size: 1.2rem;
        }
        
        .gallery-nav-container {
            flex-direction: column;
            align-items: center;
        }
        
        .gallery-nav-btn {
            width: 200px;
            justify-content: center;
        }
        
        .lightbox-content {
            max-width: 95%;
        }
        
        .lightbox-image-container {
            height: 50vh;
            padding: 20px;
        }
        
        .lightbox-info {
            padding: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .masonry-grid {
            columns: 1;
        }
        
        .gallery-hero-title {
            font-size: 2.5rem;
        }
        
        .gallery-navigation {
            padding: 30px 5%;
        }
    }

    /* ============= GALLERY ENDS ==============*/

    /* ============ PACKAGE STARTS =============*/
     /* Premium Packages Hero */
    .premium-packages-hero {
        height: 80vh;
        position: relative;
        overflow: hidden;
        background: #0A0A0A;
    }
    
    .packages-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        opacity: 0.3;
        filter: brightness(0.6);
        transform: scale(1.1);
        transition: transform 8s ease;
    }
    
    .premium-packages-hero:hover .packages-hero-background {
        transform: scale(1);
    }
    
    .packages-hero-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.7) 100%);
        display: flex;
        align-items: center;
        padding: 0 8%;
    }
    
    .hero-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        color: #FFFFFF;
    }
    
    .packages-hero-badge {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        animation: badgeGlow 2s infinite;
    }
    
    @keyframes badgeGlow {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        50% { 
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }
    }
    
    .hero-main-heading {
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        background: linear-gradient(45deg, #FFFFFF, #E8D0A7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subheading {
        font-size: 1.4rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 700px;
    }
    
    .hero-stats-container {
        display: flex;
        gap: 40px;
        margin-top: 50px;
        flex-wrap: wrap;
    }
    
    .stat-item-wrapper {
        text-align: center;
    }
    
    .stat-number-display {
        font-size: 2.5rem;
        font-family: 'Cormorant Garamond', serif;
        color: #D4AF37;
        font-weight: 600;
        display: block;
    }
    
    .stat-label-text {
        font-size: 0.9rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 8px;
    }
    
    /* Packages Navigation */
    .packages-navigation-bar {
        padding: 40px 5%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-container-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .package-nav-item {
        padding: 15px 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        color: #B0B0B0;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .package-nav-item:hover {
        color: #FFFFFF;
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }
    
    .package-nav-item.active-nav {
        background: rgba(212, 175, 55, 0.15);
        color: #D4AF37;
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }
    
    /* Packages Section */
    .luxury-packages-section {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
        overflow: hidden;
    }
    
    .section-header-container {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
        position: relative;
    }
    
    .section-main-title {
        font-size: 3.5rem;
        color: #FFFFFF;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
        position: relative;
        display: inline-block;
    }
    
    .section-main-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #D4AF37;
    }
    
    .section-description-text {
        color: #B0B0B0;
        font-size: 1.2rem;
        line-height: 1.8;
        margin-top: 30px;
    }
    
    /* Packages Grid */
    .packages-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Individual Package Cards */
    .premium-package-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 25px;
        padding: 50px 40px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px);
    }
    
    .premium-package-card.animate-card {
        opacity: 1;
        transform: translateY(0);
    }
    
    .premium-package-card:hover {
        transform: translateY(-20px);
        border-color: #D4AF37;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 
                    0 0 40px rgba(212, 175, 55, 0.1);
    }
    
    .premium-package-card.featured-card {
        border-color: #D4AF37;
        transform: scale(1.05);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    }
    
    .premium-package-card.featured-card:hover {
        transform: scale(1.05) translateY(-20px);
    }
    
    .featured-badge {
        position: absolute;
        top: 20px;
        right: -35px;
        background: #D4AF37;
        color: #0A0A0A;
        padding: 10px 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 2px;
        transform: rotate(45deg);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    }
    
    .package-header-content {
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }
    
    .package-name-title {
        font-size: 2.2rem;
        color: #FFFFFF;
        margin-bottom: 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .package-price-display {
        font-size: 4rem;
        color: #D4AF37;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
        margin-bottom: 5px;
        position: relative;
        display: inline-block;
    }
    
    .package-price-display::before {
        content: '$';
        font-size: 2rem;
        position: absolute;
        top: 10px;
        left: -25px;
    }
    
    .package-duration-text {
        color: #888;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .package-features-list {
        list-style: none;
        margin: 40px 0;
        padding: 0;
        position: relative;
        z-index: 2;
    }
    
    .feature-list-item {
        color: #FFFFFF;
        margin-bottom: 20px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    
    .feature-list-item:hover {
        transform: translateX(10px);
        border-bottom-color: rgba(212, 175, 55, 0.2);
    }
    
    .feature-check-icon {
        color: #D4AF37;
        font-size: 1.2rem;
    }
    
    .feature-cross-icon {
        color: #666;
        font-size: 1.2rem;
    }
    
    .package-card-footer {
        position: relative;
        z-index: 2;
        margin-top: 30px;
    }
    
    /* Special Offers Section */
    .special-offers-section {
        padding: 120px 5%;
        background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        position: relative;
    }
    
    .offers-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .special-offer-card {
        background: rgba(212, 175, 55, 0.05);
        border-radius: 25px;
        padding: 60px 50px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease;
    }
    
    .special-offer-card:hover {
        transform: translateY(-15px);
        border-color: #D4AF37;
        box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
    }
    
    .offer-badge-container {
        position: absolute;
        top: 30px;
        right: 30px;
        background: #D4AF37;
        color: #0A0A0A;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .offer-main-title {
        font-size: 2.5rem;
        color: #FFFFFF;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .offer-description-text {
        color: #B0B0B0;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .offer-highlight {
        color: #D4AF37;
        font-weight: 600;
        font-size: 1.3rem;
        margin: 25px 0;
        display: inline-block;
        padding: 10px 20px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 10px;
    }
    
    /* Bridal Packages Section */
    .bridal-packages-section {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .bridal-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .bridal-package-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 25px;
        padding: 50px 40px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    
    .bridal-package-card:hover {
        transform: translateY(-15px);
        border-color: #D4AF37;
    }
    
    .bridal-package-card.royal-card {
        border-color: #D4AF37;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .bridal-badge {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(212, 175, 55, 0.2);
        color: #D4AF37;
        padding: 8px 25px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .bridal-package-name {
        font-size: 1.8rem;
        color: #FFFFFF;
        margin: 40px 0 15px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .bridal-inclusions-list {
        list-style: none;
        margin: 30px 0;
        padding: 0;
        text-align: left;
    }
    
    .bridal-inclusion-item {
        color: #B0B0B0;
        margin-bottom: 15px;
        padding-left: 25px;
        position: relative;
    }
    
    .bridal-inclusion-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #D4AF37;
        font-weight: bold;
    }
    
    /* Comparison Table */
    .packages-comparison-section {
        padding: 120px 5%;
        background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
        position: relative;
    }
    
    .comparison-table-container {
        max-width: 1000px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .table-header-row {
        display: grid;
        grid-template-columns: 2fr repeat(3, 1fr);
        background: rgba(212, 175, 55, 0.1);
        padding: 30px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .table-header-cell {
        color: #FFFFFF;
        font-weight: 600;
        font-size: 1.2rem;
        text-align: center;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .table-data-row {
        display: grid;
        grid-template-columns: 2fr repeat(3, 1fr);
        padding: 25px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .table-data-row:hover {
        background: rgba(212, 175, 55, 0.05);
    }
    
    .table-data-cell {
        color: #B0B0B0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    .table-data-cell.feature-name {
        text-align: left;
        justify-content: flex-start;
        color: #FFFFFF;
        font-weight: 500;
    }
    
    .check-mark-cell {
        color: #D4AF37;
        font-size: 1.3rem;
    }
    
    /* CTA Buttons */
    .primary-action-button {
        background: linear-gradient(45deg, #D4AF37, #C19B2E);
        color: #0A0A0A;
        padding: 18px 45px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .primary-action-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.6s;
    }
    
    .primary-action-button:hover::before {
        left: 100%;
    }
    
    .primary-action-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    }
    
    .secondary-action-button {
        background: transparent;
        color: #D4AF37;
        padding: 18px 45px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid #D4AF37;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .secondary-action-button:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-3px);
    }
    
    /* FAQ Section */
    .faq-accordion-section {
        padding: 120px 5%;
        background: #0A0A0A;
        position: relative;
    }
    
    .faq-container-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-accordion-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-accordion-item.active-faq {
        border-color: #D4AF37;
        background: rgba(212, 175, 55, 0.05);
    }
    
    .faq-question-header {
        padding: 25px 30px;
        color: #FFFFFF;
        font-size: 1.2rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .faq-question-header:hover {
        color: #D4AF37;
    }
    
    .faq-toggle-icon {
        color: #D4AF37;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .faq-accordion-item.active-faq .faq-toggle-icon {
        transform: rotate(45deg);
    }
    
    .faq-answer-content {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        color: #B0B0B0;
        line-height: 1.7;
    }
    
    .faq-accordion-item.active-faq .faq-answer-content {
        padding: 0 30px 25px;
        max-height: 500px;
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 120px 5%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .cta-content-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .cta-main-heading {
        font-size: 3.5rem;
        color: #FFFFFF;
        margin-bottom: 25px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .cta-description-text {
        color: #B0B0B0;
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .packages-grid-layout,
        .bridal-grid-layout {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .premium-package-card.featured-card {
            transform: none;
        }
        
        .premium-package-card.featured-card:hover {
            transform: translateY(-20px);
        }
    }
    
    @media (max-width: 768px) {
        .hero-main-heading {
            font-size: 3rem;
        }
        
        .packages-grid-layout,
        .bridal-grid-layout,
        .offers-grid-container {
            grid-template-columns: 1fr;
        }
        
        .nav-container-wrapper {
            flex-direction: column;
            align-items: center;
        }
        
        .table-header-row,
        .table-data-row {
            grid-template-columns: 1fr;
            gap: 10px;
            text-align: center;
        }
        
        .table-data-cell.feature-name {
            text-align: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .cta-buttons-group {
            flex-direction: column;
            align-items: center;
        }
        
        .primary-action-button,
        .secondary-action-button {
            width: 100%;
            max-width: 300px;
        }
    }
    
    @media (max-width: 480px) {
        .hero-main-heading {
            font-size: 2.5rem;
        }
        
        .section-main-title {
            font-size: 2.5rem;
        }
        
        .package-price-display {
            font-size: 3rem;
        }
    }

    /* =============== PACKAGE ENDS ==============*/
    