:root {
            --primary-gold: #D4AF37;
            --luxury-purple: #2D0B5A;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-main: #ffffff;
            --bg-dark: #0f051d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --nav-gold: #AE8625;
            --nav-gold-hover: #d4af37;
        }

        [data-theme="light"] {
            --luxury-purple: #f8f9fa;
            --bg-dark: #ffffff;
            --text-main: #2D0B5A;
            --glass-bg: rgba(45, 11, 90, 0.05);
            --glass-border: rgba(45, 11, 90, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
            transition: background 0.5s ease;
        }

        h1, h2, h3 { font-family: 'Playfair Display', serif; }

        /* --- Animated Bubble Background --- */
        .bubble-container {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            overflow: hidden;
            background: radial-gradient(circle at center, var(--luxury-purple) 0%, var(--bg-dark) 100%);
        }

        .bubble {
            position: absolute;
            bottom: -100px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.15;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) scale(1); opacity: 0.15; }
            100% { transform: translateY(-120vh) scale(1.5); opacity: 0; }
        }

        /* --- Glassmorphism --- */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            transition: var(--transition);
        }

        .glass-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        /* --- Shimmer Effect --- */
        .shimmer {
            background: linear-gradient(90deg, var(--text-main) 0%, var(--primary-gold) 50%, var(--text-main) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s linear infinite;
        }

        @keyframes shine {
            to { background-position: 200% center; }
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* --- Navigation --- */
        .navbar {
            backdrop-filter: blur(15px);
            /* background: rgba(0, 0, 0, 0.75); */
            border-bottom: 1px solid var(--glass-border);
        }

        .nav-link { color: var(--text-main) !important; font-weight: 600; }

        /* Desktop navbar links */
        .desktop-nav .nav-link {
            color: var(--nav-gold);
            transition: color 0.3s ease;
        }

        .desktop-nav .nav-link:hover {
            color: var(--nav-gold-hover);
        }

        /* Mobile top menu */
        .mobile-menu a {
            color: var(--nav-gold);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--nav-gold-hover);
        }

        /* Mobile bottom nav */
        .mobile-bottom-nav a,
        .mobile-bottom-nav div {
            color: var(--nav-gold);
            transition: color 0.3s ease;
        }

        .mobile-bottom-nav a:hover i,
        .mobile-bottom-nav div:hover i {
            color: var(--nav-gold-hover);
        }

        .nav-active {
            color: var(--nav-gold-hover) !important;
        }

        /* Bottom nav */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;   
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding: 0.5rem 0; 
            border-top: 1px solid var(--glass-border);
            background: rgba(0, 0, 0, 0.65);
            z-index: 1100;
            box-sizing: border-box; 
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-sizing: border-box; 
            z-index: 1050;
            background: rgba(0, 0, 0, 0.3);
        }

        .mobile-menu a {
            text-decoration: none;
            color: #fff;
            font-weight: 600;
        }

        .mobile-menu a:hover {
            text-decoration: none;
            color: #ffc107; 
        }

        .brand-badge {
            background: transparent !important;  
            backdrop-filter: none;               
            border: none;
            padding: 0;                          
        }

        .brand-logo {
            height: 60px;
            width: auto;
            flex-shrink: 0;
        }

        .brand-text {
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 1px;
            color: var(--nav-gold);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .navbar-brand {
                flex-wrap: wrap;
            }

            .brand-logo {
                height: 50px;
            }

            .brand-text {
                font-size: 0.9rem;
                white-space: normal;
            }
        }

        /* --- Hero Section --- */
        .hero-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-section,
        section {
            max-width: 100%;
            overflow-x: hidden;
        }

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

        /* --- CTAs --- */
        .cta-float {
            position: fixed;
            bottom: 80px;
            z-index: 999;
            width: 50px; height: 50px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .cta-whatsapp { left: 20px; background: #25d366; }
        .cta-call { right: 20px; background: var(--primary-gold); }

        @media (max-width: 768px) {
            .mobile-bottom-nav { display: flex; }
            .desktop-nav { display: none; }
            .hero-section h1 { font-size: 2.5rem; }
            section { padding: 60px 0; }
        }

        /*  FAQ  */
        #faq .accordion-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
        }

        #faq .accordion-button {
            background: transparent !important;
            color: var(--text-main) !important;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: none !important;
        }

        #faq .accordion-button:not(.collapsed) {
            color: var(--primary-gold) !important;
            background: transparent !important;
        }

        #faq .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        
        [data-theme="light"] #faq .accordion-button::after {
            filter: none;
        }

        #faq .accordion-body {
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            opacity: 0.85;
            background: transparent;
        }

        #faq .accordion-button:focus {
            border: none;
            box-shadow: none;
        }

        #about .glass-card p {
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonial-card {
            min-height: 260px;
            display: none;
            animation: fadeSlide 0.8s ease;
        }

        .testimonial-card.active {
            display: block;
        }

        .stars {
            color: var(--primary-gold);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .testimonial-author {
            font-weight: 600;
            margin-top: 15px;
        }

        .testimonial-role {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }

        .testimonial-controls button {
            background: transparent;
            border: 1px solid var(--primary-gold);
            color: var(--primary-gold);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            transition: var(--transition);
        }

        .testimonial-controls button:hover {
            background: var(--primary-gold);
            color: #000;
        }

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

/*  Gallery  */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    aspect-ratio: 4 / 3;  
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.12);
}

/* Golden shine */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(212, 175, 55, 0.35),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* Caption */
.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    background: rgba(0,0,0,0.55);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition:
        opacity 0.45s ease-out,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/*  WHY CHOOSE */

.why-us-enhanced .why-card {
    padding: 2.6rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Icon badge */
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, 0.18);
}

.why-icon i {
    width: 30px;
    height: 30px;
    color: var(--primary-gold);
}

/* Card title */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Card text */
.why-card p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.why-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 4px;
}

.why-card:hover::after {
    width: 60%;
}

/* Hover motion */
.why-card:hover {
    transform: translateY(-10px);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .why-card {
        padding: 2.2rem 1.6rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: #25D366; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i {
    font-size: 28px;
    color: #fff;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.45);
}

/* Mobile spacing fix */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
    }
}

/*  Image Service Cards  */
.service-img-card {
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1 / 1; 
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Icon Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.35)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.service-overlay i {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* Hover Effects */
.service-img-card:hover img {
    transform: scale(1.08);
}

.service-img-card:hover .service-overlay {
    opacity: 1;
}

.service-img-card h5 {
    font-weight: 600;
}

/* Fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

#pageLoader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, var(--luxury-purple) 0%, var(--bg-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}

/* Loader */
.flight-loader {
    position: relative;
    width: 260px;
    height: 40px;
    margin-bottom: 20px;
}

.route {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,193,7,0.25);
    transform: translateY(-50%);
}

.plane {
    position: absolute;
    top: 50%;
    left: -30px;
    font-size: 24px;
    transform: translateY(-50%);
    animation: flySmooth 2.2s ease-in-out infinite;
}

@keyframes flySmooth {
    0% {
        left: -30px;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 260px;
        opacity: 0;
    }
}

.loader-text {
    color: #ffc107;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

