:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --gold: #C5A059;
    --accent: #C5A059;
    --amber: #C5A059;
    --amber-glow: rgba(197, 160, 89, 0.35);
    --white: #FFFFFF;
    --text-dim: #888888;
    --text-muted: #9a9a9a;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --topbar-h: 38px;   /* Height of the top info strip */
    --nav-h: 70px;      /* Height of the main navigation bar */
}

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

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Mobile Split Utilities */
.hidden { display: none !important; }
@media (min-width: 768px) {
    .md\:block { display: block !important; }
    .md\:hidden { display: none !important; }
}

.accent {
    color: var(--accent);
}

.muted {
    color: var(--text-muted);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── TOP BAR STRIP ─── */
.top-bar-strip {
    /* Set to relative so it scrolls out of view naturally */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background-color: #0b1d33; /* Deep luxury navy blue matching reference */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-email:hover, .top-bar-link:hover {
    color: var(--gold, #c5a059);
}

.top-bar-right {
    gap: 12px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-bar-link .top-bar-icon {
    font-size: 16px !important;
    line-height: 1;
    color: var(--gold, #c5a059);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.top-bar-link:hover {
    color: var(--gold, #c5a059);
}

.top-bar-link:hover .top-bar-icon {
    transform: scale(1.15);
    color: #ffffff;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    user-select: none;
}

@media (max-width: 768px) {
    .top-bar-strip {
        display: none !important;
    }
}

/* ─── NAVIGATION (EaseMyTrip-Inspired Solid Header) ─── */
.glass-nav,
.solid-nav-header {
    /* Initially absolute below the relative top bar */
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 9998 !important;
    padding: 6px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* Option A: Luxury Deep Obsidian / Navy-Black (Active by Default) */
.solid-nav-header.option-a,
.solid-nav-header.option-a.scrolled {
    background: #050b14 !important;
    border-bottom: 2px solid var(--gold, #c5a059) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Option C: Integrated Deep Navy (Matching Top 'About Us' Strip) */
.solid-nav-header.option-c {
    background: #0b1d33 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.solid-nav-header.option-c.scrolled {
    background: rgba(11, 29, 51, 0.7) !important; /* Deep Navy with 30% transparency */
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Once user scrolls, nav slides up and pins to top:0 */
.glass-nav.scrolled,
.solid-nav-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    padding: 4px 0 !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65) !important;
}

/* Pages without the top info bar — nav sits sticky at top:0 from the start */
.glass-nav.nav-no-topbar,
.solid-nav-header.nav-no-topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
}

/* Prevent jump bug: ensure it stays sticky and doesn't become fixed when scrolled */
.glass-nav.nav-no-topbar.scrolled,
.solid-nav-header.nav-no-topbar.scrolled {
    position: sticky !important;
}

@media (max-width: 768px) {
    .glass-nav,
    .solid-nav-header {
        top: 0 !important;
    }
}

.glass-nav.nav-light-theme {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ─── GLOBAL FIXED HEADER OFFSET ─── */
/* Inner pages (no top bar): nav is sticky, so it handles its own height perfectly. */
body.no-topbar {
    padding-top: 0; /* Sticky nav automatically pushes content down exactly by its height */
}
/* Homepage (with top bar): nav sits at top:38px.
   The homepage hero manages its own full-screen layout.           */
body.has-topbar {
    padding-top: 0; /* Homepage hero handles its own spacing */
}

.glass-nav.nav-light-theme .nav-links a,
.glass-nav.nav-light-theme .phone-number {
    color: #030811;
}

/* Ensure the white text of the logo switches to dark, using a CSS filter since it's an image. Assuming the logo has white text, invert it. If it's a specific image, you might need an alt logo. Let's just invert the logo for now, or if it's colorful, just let it be. Wait, the Leisure Loop logo has white text. We can invert just the white parts if it's an SVG. Since it's a PNG, filter: invert(1) might invert the colorful parts too. Let's just keep the background white so the logo is readable if it has dark parts, but if it has white parts they will be invisible. Wait, let's use a solid dark background for nav-light-theme instead to match the ParableVC style! ParableVC uses dark text on a transparent background, but ParableVC's logo is dark. */
/* Actually, let's just make the text dark. If the logo has white text, it will disappear. Let's just make the background solid white and let the user decide. */

.nav-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-logo {
    display: block;
    height: 125px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    margin-left: -25px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.site-logo-footer {
    margin-bottom: 1.5rem;
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-left: -15px; /* slight left pull to visually align with text below */
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 15px;
    list-style: none;
    max-width: 950px;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .site-logo {
        height: 50px;
    }
}

.btn-primary,
.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.btn-primary,
.btn-gold {
    background: var(--gold);
    color: #111;
    border: 1px solid var(--gold);
}

.btn-primary:hover,
.btn-gold:hover,
.btn-outline:hover {
    transform: translateY(-1px);
}

.btn-primary:hover,
.btn-gold:hover {
    background: #d1ad69;
    border-color: #d1ad69;
}

.btn-outline {
    background: transparent !important;
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow-x: clip;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(5,5,5,0.4) 0%,
        transparent 40%,
        transparent 60%,
        rgba(5,5,5,0.8) 100%);
    z-index: 2;
}

.hero-video-container video, .hero-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.hero-card {
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 44px 40px;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(197,160,89,0.15);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.6), transparent);
}

.hero-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 6px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}

.hero-card > p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.3), transparent);
    margin-bottom: 24px;
}

.card-form {
    display: grid;
    gap: 12px;
}

.card-form .hero-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-shell {
    position: relative;
    margin-bottom: 20px;
}

.field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(197, 160, 89, 0.72);
    pointer-events: none;
    z-index: 1;
}

.field-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero-card input, .hero-card select {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 15px 14px 46px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-card input:focus, .hero-card select:focus {
    background: rgba(255,255,255,0.06);
    border-bottom-color: var(--gold);
}

.hero-card input::placeholder {
    color: rgba(255,255,255,0.48);
}

.hero-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: rgba(24, 24, 24, 0.92);
}

.hero-card select option {
    background: #171717;
    color: #f5f1e8;
}

.field-shell-select::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid rgba(255,255,255,0.45);
    border-bottom: 1.5px solid rgba(255,255,255,0.45);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.hero-card input:focus,
.hero-card select:focus {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.08);
}

.recaptcha-shell {
    margin-top: 4px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197, 160, 89, 0.14);
    overflow: hidden;
}

.recaptcha-shell .g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 440px) {
    .recaptcha-shell .g-recaptcha {
        transform: scale(0.88);
    }
}

.hero-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.card-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.card-form input,
.card-form select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    font-size: 0.82rem;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
}

.card-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.card-form select option {
    background: #111;
    color: #fff;
}

.card-form input:focus,
.card-form select:focus {
    border-color: rgba(197,160,89,0.6);
    background: rgba(197,160,89,0.07);
    box-shadow: 0 0 0 3px rgba(197,160,89,0.1);
}

.btn-card {
    background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
    color: #050505;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-top: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(197,160,89,0.3);
}
.btn-card--full {
    width: 100%;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197,160,89,0.5);
    background: linear-gradient(135deg, #d4b06a 0%, var(--gold) 100%);
}

.card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-trust-item .trust-score {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.card-trust-item .trust-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.1);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: capitalize;
}

.hero h1 em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero .tagline {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

/* ─── GRID (BENTO) ─── */
.section {
    padding: 160px 0;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 80px;
    line-height: 1.2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    height: 900px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
    opacity: 0.8;
}

.bento-item:hover img {
    transform: scale(1.05);
    opacity: 0.5;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-item:hover .bento-content {
    opacity: 1;
}

.bento-1 { grid-column: span 8; grid-row: span 1; }
.bento-2 { grid-column: span 4; grid-row: span 2; }
.bento-3 { grid-column: span 4; grid-row: span 1; }
.bento-4 { grid-column: span 4; grid-row: span 1; }

/* ─── BUTTONS ─── */
.btn-premium {
    padding: 18px 40px;
    border: 1px solid var(--white);
    background: transparent !important;
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: var(--white);
    color: var(--bg);
}

/* ─── UTILS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--ease);
}

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

/* ─── PACKAGES SECTION ─── */
.packages-section {
    padding: 120px 0 80px;
    background: var(--bg);
}

.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.packages-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.packages-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.packages-count small {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-left: 10px;
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197,160,89,0.4);
    background: transparent !important;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.packages-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.packages-carousel::-webkit-scrollbar { display: none; }

.package-card {
    flex: 0 0 calc(25% - 22.5px);
    border-radius: 20px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: transform 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

.pkg-img {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.pkg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.85) 100%);
}

.pkg-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(197,160,89,0.15);
    border: 1px solid rgba(197,160,89,0.4);
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.pkg-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.pkg-dest {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.pkg-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-top: 1px solid var(--border);
}

.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-from {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.price-original {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.pkg-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pkg-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(197,160,89,0.5);
}

/* ─── DESTINATIONS GRID ─── */
.dest-section {
    padding: 120px 0;
    background: #080808;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    height: 520px;
    margin-top: 60px;
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.dest-card:hover {
    transform: scale(1.02);
}

.dest-large { grid-row: span 1; }
.dest-small { grid-row: span 1; }

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8) 100%);
    transition: background 0.4s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.7) 100%);
}

.dest-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.dest-info h3 {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 4px;
}

.dest-info span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dest-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.dest-card:hover .dest-arrow {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: #080808;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ─── EDITORIAL DIVIDER (GOLDEN THREAD) ─── */
.editorial-divider {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    margin-top: -90px; /* Pull up into the padding space of the previous section */
    margin-bottom: -90px; /* Pull down into the padding space of the FAQ section */
    z-index: 20;
}

.golden-thread {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(197, 160, 89, 0.8) 50%, transparent 100%);
}

.floating-emblem {
    position: relative;
    color: var(--gold);
    font-size: 1.5rem;
    background: #050a14; /* Match background to hide the line behind it */
    padding: 10px 0;
    animation: floatEmblem 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes floatEmblem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(15deg); }
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(197, 160, 89, 0.2); }
    50% { text-shadow: 0 0 15px rgba(197, 160, 89, 0.8); }
}

/* ─── FAQ SECTION ─── */
.faq-section {
    padding: 120px 0;
    background: #050505;
}

.faq-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: min(40vw, 600px);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1;
    opacity: 0.03;
    background: linear-gradient(to bottom, var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4 {
    color: var(--gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p {
    padding-top: 15px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* ─── PACKAGE CARDS (8:48 PM + OVERLAY STYLE) ─── */
.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.section-label-gold {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.packages-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}
.packages-carousel::-webkit-scrollbar { display: none; }

.packages-section {
    padding: 180px 0 100px;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 60px;
    left: 40px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
}

.package-card {
    flex: 0 0 calc(25% - 24px);
    background: #0d0d0d;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.pkg-img {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #1a1a1a;
}

.pkg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.9) 100%);
}

.pkg-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    width: 100%;
}

.pkg-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(197,160,89,0.3);
    color: var(--gold);
    font-size: 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
}

.pkg-dest {
    display: block;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pkg-title {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
}

.pkg-footer {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pkg-price {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

.pkg-price b {
    color: #fff;
    font-size: 1.25rem;
    margin-left: 8px;
    font-family: 'Inter', sans-serif;
}

    .pkg-btn {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pkg-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

/* ─── HERO REVEAL ANIMATIONS ─── */
@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-reveal-left {
    opacity: 0;
    animation: heroSlideInLeft 0.8s var(--ease) forwards;
}

.hero-reveal-right {
    opacity: 0;
    animation: heroSlideInRight 0.8s var(--ease) forwards;
}

/* ─── UNIVERSAL NAVIGATION ARROWS ─── */
.nav-arrows-group {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent !important;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    font-size: 1.2rem;
}

.nav-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.nav-arrow.active, .nav-arrow:active {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── RUNNING TAGS (CINEMATIC FILM STRIP) ─── */
.ticker-section {
    background: #050505;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

/* Film Perforations */
.ticker-section::before,
.ticker-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 4px, transparent 4px);
    background-size: 30px 100%;
    z-index: 10;
}

.ticker-section::before { top: 15px; }
.ticker-section::after { bottom: 15px; }

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    animation: marquee 50s linear infinite;
}

.ticker-frame {
    display: flex;
    align-items: center;
    gap: 30px;
}

.film-img {
    width: 280px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.5s var(--ease);
    border: 1px solid rgba(255,255,255,0.05);
}

.ticker-item {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.8;
}

.ticker-sep {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.4;
    margin: 0 10px;
}

/* Hover Effects */
.ticker-section:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-frame:hover .film-img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: var(--gold);
}

@keyframes marquee {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* ─── SIGNATURE TERRAINS SLIDER ─── */
.destinations-section {
    position: relative;
    padding: 80px 0 120px;
    background: #050505;
    overflow: hidden;
}

.destinations-header {
    margin-bottom: 40px;
}

.header-left {
    margin-bottom: 20px;
}

.destinations-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 60px;
}

.destinations-controls .nav-arrow.prev-dest {
    position: absolute;
    left: 0;
}

.destinations-controls .nav-arrow.next-dest {
    position: absolute;
    right: 0;
}

.destinations-filter {
    display: inline-flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.05);
}

.nav-arrows-group {
    display: none;
}

.filter-btn {
    background: transparent !important;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 12px 24px;
    min-height: 48px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease);
}

.filter-btn:hover {
    color: #ffffff;
}

.filter-btn.active {
    background: #dc2626 !important;
    color: #ffffff;
}

.destinations-carousel-wrapper {
    position: relative;
    padding: 0;
}

.destinations-carousel {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 60px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    will-change: scroll-position;
}

.destinations-carousel.active-drag {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.destinations-carousel::-webkit-scrollbar {
    display: none;
}

.dest-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 32px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    background: #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    will-change: transform;
}

/* Staggered Floating Effect using margin-top so GSAP entrance animation never flattens alternating layout */
.dest-card.stagger-down {
    margin-top: 60px;
    transform: translateY(0);
}

.dest-card.stagger-up {
    margin-top: -60px;
    transform: translateY(0);
}

/* Hover Reversal Animation */
.dest-card.stagger-down:hover {
    transform: translateY(-120px);
}
.dest-card.stagger-up:hover {
    transform: translateY(120px);
}

.dest-card.hidden {
    display: none;
}

.dest-img {
    height: 480px;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease);
}

.dest-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,10,20,0.95) 0%, rgba(5,10,20,0.4) 40%, rgba(5,10,20,0) 70%);
    z-index: 1;
}

.dest-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(5, 10, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 3;
}

.dest-overlay-content {
    position: absolute;
    inset: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.dest-main-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dest-text h3 {
    font-size: 2.4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}

.dest-tours {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dest-tours svg {
    color: var(--gold);
}

.dest-card-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}

/* Hover States */
.dest-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    z-index: 10;
}

.dest-card:hover .dest-img {
    transform: scale(1.03);
}

.dest-card:hover .dest-card-arrow {
    background: var(--gold);
    color: black;
    border-color: var(--gold);
    transform: rotate(-45deg) scale(1.1);
}

/* --- HERO MULTI-SLIDER --- */
.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-fallback,
.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: block;
}

.hero-bg-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: block;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    background: #050505;
}

.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    background: #050505;
}

.hero-slide.video-ready .hero-slide-video {
    opacity: 1;
}

.hero-slide.video-ready .hero-slide-fallback {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dot.active {
    background: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--accent);
}

/* ─── DESTINATION DETAIL PAGE ─── */
.dest-hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.4), rgba(5,5,5,0.9));
}

.dest-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.dest-tagline-gold {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* GSAP will handle the intro animation */
}

.dest-title-reveal {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: 'Playfair Display', serif;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
    line-height: 1;
    /* GSAP will handle the intro animation */
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Story Section */
.dest-story-section {
    padding: 120px 0;
    background: #050505;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: start;
}

.editorial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 2.1;
    color: rgba(255,255,255,0.85);
    margin-top: 40px;
    letter-spacing: 0.01em;
    font-weight: 400;
}

.editorial-text::first-letter {
    float: left;
    font-size: 5.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    line-height: 0.7;
    margin-right: 20px;
    margin-top: 12px;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(197, 160, 89, 0.2);
}

.concierge-card {
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    position: sticky;
    top: 120px;
}

.concierge-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.concierge-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* SIGHTSEEING 3-COLUMN GRID */
.sightseeing-section {
    padding: 100px 0;
    background: #080808;
}

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

.sightseeing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sight-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: pointer;
}

.sight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}

.sight-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sight-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.sight-info {
    padding: 24px;
}

.sight-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold);
    transition: color 0.3s;
}

.sight-card:hover .sight-info h3 {
    color: white;
}

.sight-info p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .sightseeing-grid { grid-template-columns: 1fr; }
}

/* ─── DESTINATION PAGE: PACKAGE ENQUIRY BUTTON ─── */
.dest-pkg-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
}

.dest-pkg-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.pkg-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent !important;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    flex: 1;
    justify-content: center;
}

.pkg-enquire-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.pkg-enquire-btn:hover {
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.18);
}

.pkg-enquire-btn:hover::before {
    opacity: 1;
}

.pkg-enquire-btn svg {
    flex-shrink: 0;
    opacity: 0.75;
}

/* ─── GLOBAL ADMIN SIDEBAR OVERRIDES ─── */
.sidebar-nav {
    list-style: none;
    margin-top: 3rem;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    text-decoration: none;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: block;
    transition: 0.3s;
    font-size: 0.95rem;
}

.sidebar-nav a.active, 
.sidebar-nav a:hover {
    background: var(--glass);
    color: white;
}

/* ─── HORIZONTAL HERO SEARCH BAR ─── */
.hero-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 50px;
}

.hero-text-center {
    padding-top: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-search-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ─── 3-ROW HERO INLINE FORM ─── */
/* ─── 2-STEP HERO FORM ─── */
.hero-inline-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Step 1 & 2 share the same pill-bar style */
.hero-form-row--bar {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.58);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 50px;
    padding: 6px 8px 6px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-form-row--bar .search-field {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(197, 160, 89, 0.18);
    padding: 12px 20px 12px 0;
    margin-right: 20px;
    flex: 1;
    position: relative;
}

.hero-form-row--bar .search-field:last-of-type {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.hero-form-row--bar .field-icon {
    position: static;
    transform: none;
    width: 18px;
    height: 18px;
    fill: var(--gold);
    color: var(--gold);
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.85;
}

.hero-form-row--bar input[type="text"],
.hero-form-row--bar input[type="tel"],
.hero-form-row--bar input[type="email"],
.hero-form-row--bar input[type="date"] {
    border: none;
    background: transparent !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    width: 100%;
    outline: none;
    padding: 0;
    color-scheme: dark;
}

.hero-form-row--bar input::placeholder {
    color: rgba(255,255,255,0.32);
}

/* Step 2 Reveal Animation */
.hero-step2-reveal {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: slideDownFade 0.4s ease forwards;
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Row 3: reCAPTCHA + Submit */
.hero-form-row--submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
}

.hero-form-row--submit .btn-search-submit {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .hero-form-row--bar {
        flex-direction: column;
        padding: 6px 18px;
    }
    .hero-form-row--bar .search-field {
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.13);
        margin-right: 0;
        padding: 12px 0;
        width: 100%;
    }
    .hero-form-row--bar .search-field:last-of-type {
        border-bottom: none;
    }
    .hero-form-row--submit {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
    .hero-form-row--submit .btn-search-submit {
        width: 100%;
        border-radius: 12px;
    }
}

.horizontal-search-bar {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.horizontal-search-bar .search-field {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(197, 160, 89, 0.18);
    padding-left: 34px;
    padding-right: 15px;
    margin-right: 15px;
    flex: 1;
    position: relative;
    min-width: 0;
}

.horizontal-search-bar .search-field:last-of-type {
    border-right: none;
    margin-right: 0;
    padding-right: 10px;
}

.horizontal-search-bar .field-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    opacity: 0.8;
    pointer-events: none;
}

.horizontal-search-bar input {
    border: none;
    background: transparent !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    width: 100%;
    outline: none;
    padding: 0;
}

.horizontal-search-bar input::placeholder {
    color: rgba(255,255,255,0.35);
}

.btn-search-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #a8844a 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 40px;
    padding: 14px 35px;
    min-height: 48px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
}

.btn-search-submit:hover {
    background: linear-gradient(135deg, #e0c97a 0%, var(--gold) 100%);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.55);
    transform: translateY(-1px);
}

/* Custom Traveler Popover */
.custom-select-wrapper {
    position: relative;
}

.traveler-popover {
    display: none;
    position: fixed;
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    padding: 20px 24px 16px;
    width: 320px;
    z-index: 9999;
}

.traveler-popover.show {
    display: block;
    animation: fadeInPop 0.2s ease forwards;
}

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

.popover-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.popover-label strong {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.popover-label span {
    color: rgba(255,255,255,0.38);
    font-size: 0.78rem;
}

.popover-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.btn-qty {
    background: transparent !important;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-qty:hover {
    background: rgba(197, 160, 89, 0.15);
}

.popover-controls input {
    width: 38px;
    text-align: center;
    border: none;
    background: transparent !important;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.btn-done-popover {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #a8844a 100%);
    color: #0a0a0a;
    border: none;
    padding: 12px;
    min-height: 48px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    margin-top: 16px;
}

.btn-done-popover:hover {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .horizontal-search-bar {
        flex-direction: column;
        border-radius: 24px;
        padding: 18px;
    }
    .horizontal-search-bar .search-field {
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.15);
        margin-right: 0;
        padding: 14px 0 14px 34px;
        width: 100%;
    }
    .horizontal-search-bar .search-field:last-of-type {
        border-bottom: none;
    }
    .btn-search-submit {
        width: 100%;
        margin-top: 15px;
        border-radius: 12px;
    }
}

/* =========================================
   CUSTOM TOAST NOTIFICATIONS
   ========================================= */
.toast-container {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s var(--ease-out);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.toast.error {
    border-color: #ff4444;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.15);
}

.toast-icon {
    font-size: 1.2rem;
}

/* =========================================
   PREMIUM DYNAMIC MEGA-MENU NAVIGATION
   ========================================= */
.nav-content {
    position: relative; /* Anchor for absolute mega-menus */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
}

/* EaseMyTrip-Inspired Stacked Category Ribbon */
.nav-links,
.nav-links.nav-ribbon {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    gap: 15px !important;
    list-style: none;
    margin-left: auto !important;
    padding: 0;
    flex: 1 !important;
    max-width: 850px;
}

.nav-links li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links > li > a,
.nav-links > li > a.nav-ribbon-btn {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px !important;
    border-radius: 10px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-ribbon-icon {
    font-size: 24px !important;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s var(--ease);
}

.nav-ribbon-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
}

.nav-links > li > a.nav-ribbon-btn:hover,
.nav-links > li:hover > a.nav-ribbon-btn {
    background: rgba(255, 255, 255, 0.07);
    color: var(--gold);
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.nav-links > li > a.active-nav-btn {
    color: #008cff !important;
    border-bottom: 3px solid #008cff !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.nav-links > li > a.nav-ribbon-btn:hover .nav-ribbon-icon,
.nav-links > li:hover > a.nav-ribbon-btn .nav-ribbon-icon {
    color: var(--gold) !important;
    transform: scale(1.12);
}

.nav-links > li > a.active-nav-btn .nav-ribbon-icon {
    color: #008cff !important;
}

/* Home button specific luxury touch */
.home-ribbon-btn .nav-ribbon-icon {
    color: #de1245 !important; /* Scarlet accent for home */
}
.home-ribbon-btn:hover {
    border-color: rgba(222, 18, 69, 0.4) !important;
}

/* Offers button gold prominence */
.offers-ribbon-btn {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.25) !important;
}
.offers-ribbon-btn:hover {
    background: rgba(197, 160, 89, 0.18) !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.35) !important;
}

/* Responsive Laptop Refinement (< 1380px) */
@media (max-width: 1380px) {
    .nav-links.nav-ribbon {
        gap: 2px !important;
    }
    .nav-links > li > a.nav-ribbon-btn {
        padding: 5px 6px !important;
        font-size: 0.66rem;
        gap: 3px;
    }
    .nav-ribbon-icon {
        font-size: 22px !important;
    }
}

/* Dropdown Arrow Indicator */
.chevron-arrow {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) rotate(45deg);
    margin-left: 7px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav-links li:hover .chevron-arrow {
    transform: translateY(1px) rotate(-135deg);
    border-color: var(--gold);
}

/* 2. Standard Dropdown Menu (Tour Packages - Elevated to Landscape Split Grid) */
.nav-links li.nav-item-dropdown {
    position: relative !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.72); /* Luxe transparent obsidian glass */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Slightly brighter border for glass clarity */
    border-top: 3px solid var(--gold); /* Premium gold strip */
    border-radius: 16px;
    padding: 1rem 0;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1010;
    list-style: none;
    margin: 0;
}

.nav-links li.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Split Panel Dropdown Container */
.dropdown-split-panel {
    width: 620px; /* Luxurious landscape profile */
    padding: 1.5rem;
    box-shadow: 0 35px 80px rgba(197, 160, 89, 0.06), 0 15px 40px rgba(0, 0, 0, 0.95);
    left: 0 !important;
    transform: translateY(15px) !important;
}

.nav-links li.nav-item-dropdown:hover .dropdown-split-panel {
    transform: translateY(0) !important;
}

.dropdown-split-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

.dropdown-themes-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item-with-subtitle {
    display: flex;
    flex-direction: column;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 3px solid transparent;
}

.menu-item-with-subtitle:hover {
    background: rgba(197, 160, 89, 0.04); /* Soft warm gold backdrop glow */
    border-left-color: var(--gold); /* Thin glowing gold line */
    padding-left: 1.6rem; /* Fluid elite slide-in */
}

.menu-item-title {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.menu-item-with-subtitle:hover .menu-item-title {
    color: var(--gold);
}

.menu-item-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 400;
    font-style: italic;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.menu-item-with-subtitle:hover .menu-item-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Featured Promo Card Layout */
.dropdown-promo-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(15, 15, 15, 0.5) 100%); /* Breathtaking transparent glass gradient */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.25); /* Crimson border highlight */
    border-radius: 14px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 220px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.3s var(--ease);
}

.dropdown-promo-card:hover {
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* Optimize sub-menu height for shorter screens/laptops */
@media (max-height: 800px) {
    .dropdown-split-panel {
        padding: 1rem !important;
    }
    .dropdown-split-grid {
        gap: 1rem !important;
    }
    .menu-item-with-subtitle {
        padding: 0.4rem 0.8rem !important;
    }
    .dropdown-themes-col {
        gap: 0.3rem !important;
    }
    .dropdown-promo-card {
        padding: 1rem !important;
        min-height: 180px !important;
    }
    .promo-description {
        margin-bottom: 8px !important;
        font-size: 0.68rem !important;
    }
    .promo-title {
        font-size: 1.1rem !important;
        margin: 4px 0 !important;
    }
    .btn-promo-cta {
        padding: 0.45rem 1rem !important;
        font-size: 0.68rem !important;
    }
}

.promo-badge {
    align-self: flex-start;
    font-size: 0.62rem;
    color: #dc2626; /* Logo Crimson */
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    padding: 3px 8px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.promo-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 10px 0 6px 0;
}

.promo-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    line-height: 1.45;
    margin-bottom: 15px;
}

.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: #dc2626; /* Crimson brand button */
    border-radius: 50px;
    padding: 0.55rem 1.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s var(--ease);
    border: 1px solid #dc2626;
}

.btn-promo-cta:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-promo-cta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s var(--ease);
}

.btn-promo-cta:hover svg {
    transform: translateX(3px); /* Interactive sliding arrow */
}

/* 3 & 4. Mega Menu System (Domestic & International) */
.nav-item-mega {
    position: static !important; /* Forces mega menu to relative parent nav-content container */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: rgba(10, 10, 10, 0.72); /* Luxe transparent obsidian glass */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3.5px solid var(--gold);
    border-radius: 20px;
    padding: 130px 3rem 2.5rem 3rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1000;
}

/* Scrollbar styling for mega menu */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}
.mega-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.mega-menu::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}
.mega-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* 3.1 Nested Destinations Mega Menu Logic */
/* When hovering domestic link OR hovering domestic mega menu itself */
.nav-content:has(.domestic-trigger:hover) .mega-domestic,
.nav-content .mega-domestic:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
    pointer-events: auto;
}

/* When hovering international link OR hovering international mega menu itself */
.nav-content:has(.international-trigger:hover) .mega-international,
.nav-content .mega-international:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
    pointer-events: auto;
}

/* Ensure the primary dropdown stays visible when hovering the mega menus */
.nav-content:has(.mega-domestic:hover) .dest-menu-container .dropdown-menu,
.nav-content:has(.mega-international:hover) .dest-menu-container .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dest-menu-container:hover .dropdown-menu,
.dest-menu-container .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dest-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-title a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.mega-title a:hover {
    color: var(--white);
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
}

.mega-list li {
    display: block;
}

.mega-list li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.mega-list li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s var(--ease);
}

.mega-list li a:hover {
    color: #fff;
    padding-left: 4px;
}

.mega-list li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.muted-item {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
}

/* Actions Menu right container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px; /* Optimized tight gap for premium alignment */
    flex-shrink: 0; /* Never shrink this action container */
    white-space: nowrap;
}

/* Phone Contact Pill */
.nav-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    text-decoration: none;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.3s var(--ease);
    white-space: nowrap; /* Prevent phone number wrapping */
    flex-shrink: 0;
}

.nav-phone-pill:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
}

.nav-phone-pill svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

/* Enquiry Now Action Capsule */
.btn-enquiry-nav {
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    background: #de1245; /* Match company logo's exact red in rip text */
    color: white;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1px solid #de1245;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap; /* Prevent Enquiry Now wrapping */
    flex-shrink: 0;
}

.btn-enquiry-nav:hover {
    background: #ba0f39; /* Luxury darker logo crimson on hover */
    border-color: #ba0f39;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(222, 18, 69, 0.45);
}

/* ─── PACKAGES CATALOG REDESIGN (FILTERS & SORTING SIDEBAR) ─── */
.packages-catalog-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.filters-sidebar-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sidebar-sticky-shell {
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.sidebar-title {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-weight: 500;
}

.btn-clear-all {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-clear-all:hover {
    opacity: 0.8;
}

.filter-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
}

.filter-group-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.sort-options-list, .checkbox-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* Custom inputs */
.custom-radio-option, .custom-checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.custom-radio-option:hover, .custom-checkbox-option:hover {
    color: #fff;
}

.custom-radio-option input[type="radio"],
.custom-checkbox-option input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Price Range Styling */
.price-input-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.price-field {
    position: relative;
    flex: 1;
}

.currency-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--gold);
}

.price-field input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    font-size: 0.85rem;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.price-field input:focus {
    border-color: var(--gold);
}

.price-field-divider {
    color: rgba(255, 255, 255, 0.4);
}

.price-action-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-price-apply, .btn-price-clear {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-price-apply {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.btn-price-apply:hover {
    background: #e5c37b;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-price-clear {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-price-clear:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Grid & Cards display */
.packages-grid-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.active-chips-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
}

.chips-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.active-filter-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold);
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.chip-remove-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
}

.chip-remove-btn:hover {
    opacity: 0.7;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.catalog-card-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.catalog-card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.35);
}

.catalog-card-anchor {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
}

.catalog-card-image-shell {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
}

.catalog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.catalog-card-item:hover .catalog-card-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.catalog-card-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.days-nights-pill {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.catalog-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-card-destination {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.catalog-card-title {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 2rem 0;
    margin-bottom: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.catalog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1.5rem;
}

.catalog-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.catalog-card-selling-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.catalog-card-original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.catalog-card-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.catalog-card-action-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.catalog-card-item:hover .catalog-card-action-btn {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.catalog-card-item:hover .catalog-card-action-btn svg {
    transform: translateX(2px);
}

/* Empty state design */
.catalog-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: var(--text-muted);
}

.catalog-empty-state svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .packages-catalog-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-sidebar-panel {
        position: relative;
    }
    
    .sidebar-sticky-shell {
        position: relative;
        top: 0;
    }
}

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

/* ─── CATALOG HERO BANNER SECTION ─── */
.catalog-hero-banner {
    position: relative;
    padding: 13rem 0 7rem 0;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(5, 10, 20, 0.82) 0%, rgba(5, 10, 20, 0.65) 60%, #050a14 100%), url('../assets/img/luxury_himalaya_banner.png');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    margin-bottom: 4rem;
    overflow: hidden;
}

.catalog-hero-banner .section-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.catalog-hero-banner .section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.catalog-hero-banner .section-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-weight: 700;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* ─── TRUSTED & ACCREDITED BY ── */
.accreditations-section {
    background: #050505;
    padding: 4rem 0;
    overflow: hidden;
}

.accreditations-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.accreditations-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.accreditations-track {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.accreditations-track::before,
.accreditations-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.accreditations-track::before {
    left: 0;
    background: linear-gradient(90deg, #050505, transparent);
}

.accreditations-track::after {
    right: 0;
    background: linear-gradient(-90deg, #050505, transparent);
}

.accreditations-scroll {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 3rem;
    animation: accred-scroll 30s linear infinite;
    min-width: max-content;
}

.accreditations-track:hover .accreditations-scroll {
    animation-play-state: paused;
}

.accreditation-logo {
    flex-shrink: 0;
    flex-grow: 0;
    height: 80px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.4s var(--ease);
}

.accreditation-logo img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.4s var(--ease);
}

.accreditations-track:hover .accreditation-logo img {
    filter: grayscale(0%) brightness(1);
}

.accreditation-logo:hover {
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

@keyframes accred-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .accreditations-title {
        font-size: 1.2rem;
    }
    .section-line {
        max-width: 80px;
    }
    .accreditation-logo {
        height: 60px;
        padding: 0.3rem 1rem;
    }
    .accreditation-logo img {
        max-height: 44px;
        max-width: 100px;
    }
    .accreditations-scroll {
        gap: 2rem;
    }
}

/* --------------------------------------------------------
   The Art of Discovery (How We Work)
   -------------------------------------------------------- */
.how-we-work-section {
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 100px 100px 12px 12px;
    padding: 1rem 1rem 3rem 1rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-12px);
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(197, 160, 89, 0.05);
}

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

.process-img-wrapper {
    overflow: hidden;
    border-radius: 90px 90px 8px 8px;
    margin-bottom: 2.5rem;
    width: 100%;
    height: 320px;
    position: relative;
    /* Force WebKit to clip transformed children properly */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    isolation: isolate;
}

.process-img-canvas {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: inset 0 -40px 60px rgba(5, 10, 20, 0.8);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.process-content {
    padding: 0 1.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-watermark {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: opacity 0.5s var(--ease);
}

.process-card:hover .process-watermark {
    opacity: 0.12;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s var(--ease);
}

.process-card:hover .process-icon {
    background: var(--gold);
    color: var(--obsidian);
    transform: scale(1.1);
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.process-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    margin: 0;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-img-canvas {
        height: 260px;
    }
    .process-watermark {
        font-size: 6rem;
        top: -3.5rem;
    }
}

/* =========================================
   PREMIUM "QUIET LUXURY" JOURNAL SYSTEM
   ========================================= */
.blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) 1.1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Elegant Double Gold-Border Cover Image Container */
.luxury-image-wrapper {
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 8px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.4);
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.luxury-image-wrapper::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.luxury-cover-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Table of Contents (Luxurious gold-accented accordion) */
.luxe-toc-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.luxe-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.luxe-toc-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.luxe-toc-chevron {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    transition: transform 0.3s var(--ease);
}

.luxe-toc-container.active .luxe-toc-chevron {
    transform: rotate(180deg);
}

.luxe-toc-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0 0 0;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
}

.luxe-toc-container.active .luxe-toc-list {
    display: flex;
}

.luxe-toc-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.luxe-toc-list a::before {
    content: '▪';
    color: var(--gold);
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.luxe-toc-list a:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* Glassmorphic Sticky Sidebar */
.bespoke-enquiry-sidebar {
    position: sticky;
    top: 110px;
    z-index: 100;
}

.glass-form-card {
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.glass-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Premium Multi-step Wizard Header */
.step-indicator-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s var(--ease);
}

.step-node.active {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.2);
}

.step-node.completed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(197, 160, 89, 0.15);
    max-width: 60px;
}

/* Glass inputs */
.glass-input-group {
    margin-bottom: 1.4rem;
}

.glass-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.92rem !important;
    transition: all 0.3s var(--ease) !important;
    outline: none !important;
}

.glass-input:focus {
    border-color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15) !important;
}

select.glass-input option {
    background-color: var(--obsidian);
    color: #ffffff;
}

/* Luxe Trust Badge container */
.luxe-trust-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.luxe-trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    padding-bottom: 0.6rem;
}

.luxe-trust-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.luxe-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.luxe-trust-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.luxe-trust-text h5 {
    margin: 0 0 3px 0;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
}

.luxe-trust-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.76rem;
    line-height: 1.4;
}

/* Luxurious Comparison Table Styling */
.luxe-comparison-table-wrapper {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.luxe-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.luxe-comparison-table th {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    padding: 1.2rem;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.luxe-comparison-table td {
    padding: 1.2rem;
    vertical-align: top;
    background: rgba(10, 10, 10, 0.4);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.luxe-comparison-table tr:last-child td {
    border-bottom: none;
}

.luxe-comparison-table td ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.luxe-comparison-table td ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.luxe-list-check {
    color: #10b981;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.luxe-list-cross {
    color: #ef4444;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* PARALLAX HERO */
.parallax-hero {
    --parallax-x: 0px;
    --parallax-y: 0px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 160px 0 86px;
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 233, 187, 0.18), transparent 30%),
        linear-gradient(180deg, #8d918f 0%, #6f716d 30%, #29251f 72%, #070707 100%);
    isolation: isolate;
}

.parallax-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.18) 24%, rgba(8, 8, 8, 0.32) 68%, rgba(5, 5, 5, 0.72) 100%),
        radial-gradient(circle at 50% 34%, rgba(239, 213, 152, 0.28), transparent 26%);
    z-index: 1;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    will-change: transform;
    pointer-events: none;
}

.parallax-layer.sky {
    z-index: 0;
    background-size: cover;
    transform: scale(1.06) translate3d(calc(var(--parallax-x) * -0.08), calc(var(--parallax-y) * -0.08), 0);
    filter: saturate(0.9) brightness(1.03);
}

.parallax-layer.back-mountain {
    z-index: 2;
    background-position: center bottom;
    background-size: 138% auto;
    transform: scale(1.08) translate3d(calc(var(--parallax-x) * 0.12), calc(var(--parallax-y) * 0.1), 0);
    opacity: 0.68;
    mix-blend-mode: darken;
    filter: saturate(0.88) brightness(1.04) contrast(1.02);
}

.parallax-layer.mid-mountain {
    z-index: 3;
    background-position: center bottom;
    background-size: 126% auto;
    transform: scale(1.1) translate3d(calc(var(--parallax-x) * 0.24), calc(var(--parallax-y) * 0.18), 0);
    opacity: 0.74;
    mix-blend-mode: darken;
    filter: saturate(0.82) brightness(0.9) contrast(1.04);
}

.parallax-layer.fore-mountain {
    z-index: 4;
    background-position: center bottom;
    background-size: 118% auto;
    transform: scale(1.12) translate3d(calc(var(--parallax-x) * 0.4), calc(var(--parallax-y) * 0.28), 0);
    opacity: 0.62;
    mix-blend-mode: darken;
    filter: saturate(0.8) brightness(0.82) contrast(1.06);
}

.parallax-hero .hero-content {
    position: relative;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 220px);
    width: 100%;
    padding-top: 75px;
}

.hero-centered-content {
    position: relative;
    z-index: 5;
    gap: 44px;
}

.hero-text-center {
    padding-top: 0;
    max-width: 860px;
    position: relative;
    z-index: 5;
    margin-inline: auto;
}

.hero-text-center .tagline {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FF4C4C; /* Coral Red */
}

.hero-text-center h1 {
    font-size: clamp(3.35rem, 6vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #fff;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hero-text-center h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-text-center p {
    font-size: 1.15rem;
    line-height: 1.65;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-reveal-up {
    opacity: 0;
    transform: translateY(24px);
    animation: heroRevealUp 0.9s var(--ease) forwards;
}

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

.hero-search-wrapper {
    max-width: 980px;
    position: relative;
    z-index: 5;
}

.search-header {
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.search-header h3 {
    font-size: clamp(2.2rem, 3.3vw, 3.3rem) !important;
    line-height: 1.02;
}

.search-header p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-inline-form {
    gap: 18px;
}

.hero-form-row--bar {
    background: rgba(26, 21, 16, 0.62);
    border: 1px solid rgba(197, 160, 89, 0.24);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-form-row--bar input[type="text"],
.hero-form-row--bar input[type="tel"],
.hero-form-row--bar input[type="email"],
.hero-form-row--bar input[type="date"] {
    font-size: 1rem;
}

.btn-search-submit {
    min-width: 140px;
}

/* Mobile fallback: keep the same hero layout, but simplify movement */
@media (max-width: 1024px) {
    .parallax-hero {
        min-height: 920px;
        padding: 150px 0 70px;
    }

    .parallax-hero .hero-content {
        min-height: auto;
    }

    .parallax-layer.sky,
    .parallax-layer.back-mountain,
    .parallax-layer.mid-mountain,
    .parallax-layer.fore-mountain {
        transform: none;
    }

    .hero-text-center h1 {
        font-size: clamp(3.2rem, 9vw, 5.1rem);
        line-height: 1.02;
    }
}

@media (max-width: 768px) {
    .parallax-hero {
        min-height: auto;
        padding: 132px 0 54px;
    }

    .parallax-hero::before {
        background:
            linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.42) 35%, rgba(5, 5, 5, 0.92) 100%),
            radial-gradient(circle at 50% 30%, rgba(239, 213, 152, 0.18), transparent 28%);
    }

    .parallax-layer.sky,
    .parallax-layer.back-mountain,
    .parallax-layer.mid-mountain,
    .parallax-layer.fore-mountain {
        background-size: cover;
        background-position: center bottom;
    }

    .hero-centered-content {
        gap: 32px;
    }

    .hero-text-center {
        max-width: 100%;
    }

    .hero-text-center .tagline {
        font-size: 1.05rem;
        font-weight: 900;
        letter-spacing: 0.2em;
    }

    .hero-text-center h1 {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
        line-height: 1.04;
    }

    .hero-text-center p {
        font-size: 1rem;
        margin-bottom: 0 !important;
    }

    .search-header h3 {
        font-size: clamp(1.9rem, 8vw, 2.5rem) !important;
    }

    .hero-search-wrapper {
        max-width: 100%;
    }
}

/* ── Mobile video fallback (hidden on desktop) ───────────────── */
.hero-mobile-video {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Mobile: swap parallax layers for video background */
@media (max-width: 768px) {
    .hero-mobile-video {
        display: block;
    }

    /* Hide the static PNG layers — video handles the bg */
    .parallax-layer.sky,
    .parallax-layer.back-mountain,
    .parallax-layer.mid-mountain,
    .parallax-layer.fore-mountain {
        display: none;
    }



    /* Darken overlay so text remains readable over video */
    .parallax-hero::before {
        background:
            linear-gradient(180deg,
                rgba(5, 5, 5, 0.45) 0%,
                rgba(5, 5, 5, 0.55) 40%,
                rgba(5, 5, 5, 0.85) 100%);
    }
}


/* ==========================================================================
   DESTINATION DETAILS - PACKAGES CAROUSEL & GRID
   ========================================================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0 50px 0;
}
@media (max-width: 991px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}
.packages-grid .package-card {
    flex: none;
    width: 100%;
    margin: 0;
}

.packages-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 20px 50px 20px; /* Added 50px bottom padding to prevent card clipping */
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.packages-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.no-packages {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-style: italic;
    padding: 40px 0;
}

.package-card.dest-pkg-card {
    flex: 0 0 350px;
    min-height: 400px; /* Ensure card is tall enough */
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card.dest-pkg-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.pkg-img {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(3, 8, 17, 0.8);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pkg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 8, 17, 0.9) 0%, rgba(3, 8, 17, 0) 100%);
    z-index: 1;
}

.pkg-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.pkg-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.pkg-footer.dest-pkg-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 8, 17, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
    flex-shrink: 0;
}

.pkg-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-price b {
    color: white;
    font-size: 1.2rem;
    margin-left: 5px;
}

.dest-pkg-actions {
    display: flex;
    gap: 10px;
}

.pkg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkg-btn:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.pkg-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    height: 40px;
    border-radius: 20px;
    background: #25D366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pkg-enquire-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.pkg-enquire-btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   REAL SMILES GALLERY
   ========================================================================== */
.smiles-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .smiles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.smiles-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    max-width: 690px; /* (220px * 3) + (15px * 2 gaps) = exactly 3 images */
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.smiles-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.smiles-marquee {
    display: flex;
    gap: 15px;
    width: max-content;
}

.track-left {
    animation: stepScrollLeft 20s infinite;
}

.track-right {
    transform: translateX(-33.33%);
    animation: stepScrollRight 20s infinite;
}

.smile-card {
    width: 220px;
    flex-shrink: 0;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: scale(1);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.smile-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.smiles-gallery-container:hover .smiles-marquee {
    animation-play-state: paused;
}

.smile-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@keyframes stepScrollLeft {
  0%, 15% { transform: translateX(0); }
  20%, 40% { transform: translateX(-8.33%); }
  45%, 65% { transform: translateX(-16.66%); }
  70%, 90% { transform: translateX(-25.00%); }
  95%, 100% { transform: translateX(-33.33%); }
}

@keyframes stepScrollRight {
  0%, 15% { transform: translateX(-33.33%); }
  20%, 40% { transform: translateX(-25.00%); }
  45%, 65% { transform: translateX(-16.66%); }
  70%, 90% { transform: translateX(-8.33%); }
  95%, 100% { transform: translateX(0); }
}

/* ==========================================================================
   THE LEISURE LOOP DIFFERENCE SECTION
   ========================================================================== */
.leisure-difference-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.leisure-difference-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5,10,20,0.85), rgba(5,10,20,0.92)), url('../assets/img/difference-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    transform-origin: center;
}

.leisure-difference-section > .container {
    position: relative;
    z-index: 1;
}

.difference-slider-container {
    width: 100%;
    position: relative;
}

.difference-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 10px 3rem 10px; /* Padding for hover shadows */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    will-change: scroll-position;
}

.difference-slider.active {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.difference-slider::-webkit-scrollbar {
    display: none;
}

.difference-card {
    flex: 0 0 320px; /* Fixed width for cards */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15); /* Faint gold border */
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    user-select: none; /* Prevent text selection during drag */
    scroll-snap-align: start;
    transform: translateZ(0);
}

.difference-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(197, 160, 89, 0.05);
}

.difference-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.difference-card:hover .difference-icon-wrapper {
    background: var(--gold);
}

.difference-card:hover .difference-icon-wrapper svg {
    stroke: var(--obsidian);
}

.difference-card h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.difference-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .difference-card {
        flex: 0 0 280px;
    }
}

/* ─── HOTEL PARTNERS SECTION ─── */
.hotel-partners-section {
    padding: 6rem 0 8rem 0;
    position: relative;
    background: transparent !important;
}

.partner-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollPartnerMarquee 40s linear infinite;
}

.partner-marquee-group {
    display: flex;
    gap: 2.5rem;
}

.partner-marquee-wrapper:hover .partner-marquee-track {
    animation-play-state: paused;
}

.partner-card {
    width: 260px;
    height: 140px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
    position: relative;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s var(--ease);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(197, 160, 89, 0.05);
}

.partner-card:hover .partner-logo {
    filter: drop-shadow(0 5px 15px rgba(197, 160, 89, 0.3));
}

@keyframes scrollPartnerMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}

@media (max-width: 768px) {
    .partner-card {
        width: 200px;
        height: 110px;
        padding: 1.5rem;
    }
}

/* ─── PREMIUM FOOTER ─── */
.premium-footer {
    background: #050a14;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Concierge Banner */
.footer-concierge-banner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, rgba(5,10,20,0.4) 0%, rgba(197,160,89,0.05) 50%, rgba(5,10,20,0.4) 100%);
    padding: 3rem 0;
}

.concierge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.concierge-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.concierge-block:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.concierge-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.concierge-block:hover .concierge-icon {
    background: var(--gold);
    color: #050a14;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.concierge-info h5 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    font-family: 'Playfair Display', serif;
}

.concierge-info p, .concierge-info a {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.concierge-block:hover .concierge-info a {
    color: var(--gold);
}

/* Main Footer Grid */
.footer-main {
    padding: 6rem 0 4rem 0;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 4rem;
}

/* Column Headings */
.footer-heading {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

/* Brand Column */
.footer-brand .site-logo-footer {
    max-width: 450px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-gstin {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
}

.social-rings {
    display: flex;
    gap: 1rem;
}

.social-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-ring:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-3px);
}

/* Architectural Office Blocks */
.office-block {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.office-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(197,160,89,0.1) 100%);
}

.office-type {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.office-address {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Quick Links & Places */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .concierge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .concierge-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid-4 {
        grid-template-columns: 1fr;
    }
    .office-block {
        margin-bottom: 1.5rem;
    }
}


html, body { overflow-x: clip !important; width: 100%; max-width: 100vw; }

/* ==========================================================================
   Cloud Reveal Animation (Parallax Heroes)
   ========================================================================== */
.cloud-reveal-container {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    z-index: 100; /* Above all other layers */
    pointer-events: none; /* Let clicks pass through */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.cloud-door {
    position: absolute;
    top: 0;
    width: 60%; /* Slight overlap in middle */
    height: 100%;
    background-image: url('../images/parallax/cinematic_mist.png'); /* Or any cloud mask */
    background-size: cover;
    background-repeat: no-repeat;
    /* Create a dense white cloud using gradient if mist is not fully opaque */
    background-color: rgba(255, 255, 255, 0.9);
    filter: blur(20px);
    opacity: 1;
    pointer-events: none;
    transform: translateX(0);
}

.cloud-door-left {
    left: -5%;
    background-position: right center;
    mask-image: linear-gradient(to right, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
    animation: cloudPartLeft 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.2s; /* Brief pause before parting */
}

.cloud-door-right {
    right: -5%;
    background-position: left center;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
    animation: cloudPartRight 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.2s;
}

/* Fallback if cinematic_mist doesn't exist, we rely on the blurred white background and mask */

@keyframes cloudPartLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-120%);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes cloudPartRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
        visibility: hidden;
    }
}

/* ==========================================================================
   Animated Toy Train Smoke (Darjeeling)
   ========================================================================== */
.train-puff {
    position: absolute;
    /* Aligned perfectly with the toy train chimney. */
    right: 36%;
    bottom: 27%;
    width: 25px;
    height: 25px;
    background: #e0ecef;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    animation: trainSmokeRise 4s infinite cubic-bezier(0.3, 0, 0.8, 1);
}

.train-puff.puff-2 { animation-delay: 1s; width: 30px; height: 30px; right: 36.5%; bottom: 26.5%; }
.train-puff.puff-3 { animation-delay: 2s; width: 20px; height: 20px; right: 35.5%; bottom: 27.5%; }
.train-puff.puff-4 { animation-delay: 3s; width: 35px; height: 35px; right: 36%; bottom: 27%; }

@keyframes trainSmokeRise {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    100% {
        /* Smoke drifts up and slightly left, expanding as it rises */
        transform: translate(-150px, -200px) scale(6);
        opacity: 0;
    }
}

/* ==========================================================================
   Ambient Roaming Clouds (Parallax Midground)
   ========================================================================== */
.roaming-clouds {
    background: url('../images/parallax/cinematic_mist.png') no-repeat center center;
    background-size: 200% 100%; 
    opacity: 0.65;
    animation: driftClouds 60s ease-in-out infinite alternate;
    mix-blend-mode: screen;
    /* Soften the edges to blend smoothly into the sky */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

@keyframes driftClouds {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; } 
}

/* ==========================================================================
   Animated 3D Sky Parallax (Darjeeling)
   ========================================================================== */
.animated-sky-image {
    /* Using a very long duration for a slow, majestic pan */
    animation: flyClouds3D 90s linear infinite alternate;
    transform-origin: center bottom;
    will-change: transform;
    /* Soften the bottom edge slightly if it bleeds */
    mask-image: linear-gradient(to top, transparent 0%, black 5%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 5%, black 100%);
}

@keyframes flyClouds3D {
    0% {
        /* Start shifted to the left */
        transform: rotateX(10deg) scale(1.1) translate(-4%, 2%);
    }
    100% {
        /* Move smoothly to the right */
        transform: rotateX(10deg) scale(1.1) translate(4%, 2%);
    }
}


/* --- ENQUIRY MODAL (DUAL PANE) --- */
.enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 24, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.enquiry-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.enquiry-modal-glass {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid var(--glass-border);
    width: min(1000px, 95%);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.1);
    transform: translateY(30px) scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-modal-overlay.is-active .enquiry-modal-glass {
    transform: translateY(0) scale(1);
}

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

.enquiry-modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: rotate(90deg);
}

.enquiry-modal-grid { display: grid; grid-template-columns: 1.2fr 1fr; min-height: auto; }

.enquiry-modal-form-pane { padding: 1.5rem 2rem; }

.enquiry-modal-header { margin-bottom: 0.8rem; }

.enquiry-modal-header h2 { font-size: 1.6rem; margin-top: 0; color: #fff; }

.enquiry-modal-info-pane { background: linear-gradient(145deg, rgba(197, 160, 89, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%); border-left: 1px solid var(--glass-border); padding: 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }

.enquiry-modal-info-pane h3 { font-size: 1.6rem; margin-bottom: 1rem; color: #fff; }

.enq-benefits-list { list-style: none; margin-bottom: 1rem; }

.enq-benefits-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.enq-icon {
    font-size: 1.2rem;
}

.enq-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

.enq-stat {
    text-align: center;
}

.enq-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.enq-stat-num {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.enq-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.enq-contact-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.enq-contact-icon {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
}

.enq-contact-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.enq-contact-phone {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.enq-contact-phone:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .enquiry-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry-modal-info-pane {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        padding: 3rem 2rem;
    }
    
    .enquiry-modal-form-pane {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .enq-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* --- FLOATING FORM CONTROLS --- */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
}

.form-group-float {
    position: relative;
    width: 100%;
}

.form-control-float {
    width: 100%;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    display: block;
}

.form-control-float:focus {
    border-bottom-color: var(--gold);
}

.form-label-float {
    position: absolute;
    top: 10px;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-control-float:focus ~ .form-label-float,
.form-control-float:not(:placeholder-shown) ~ .form-label-float {
    top: -15px;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

textarea.form-control-float {
    resize: none;
}


/* --- GLASS SELECT STYLES --- */
select.enq-glass-select {
    color: #fff;
    background-color: transparent;
    cursor: pointer;
}

select.enq-glass-select option {
    background-color: #111;
    color: #fff;
    padding: 10px;
}


/* --- ENQUIRY MODAL ICONS --- */
.enq-icon-field .form-control-float {
    padding-left: 36px;
}
.enq-icon-field .form-label-float {
    left: 36px;
}
.enq-icon-field .field-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gold);
    pointer-events: none;
    opacity: 0.8;
}

.enq-icon-field:has(textarea) .field-icon {
    top: 18px;
    transform: none;
}
.enq-icon-field .field-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ensure floated label doesn't move left on focus/filled */
.enq-icon-field .form-control-float:focus ~ .form-label-float,
.enq-icon-field .form-control-float:not(:placeholder-shown) ~ .form-label-float {
    left: 0;
}









/* ─── NARRATIVE CASCADING IMAGES ─── */
.narrative-img-card { transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1), left 0.6s cubic-bezier(0.4, 0, 0.2, 1); position: absolute; pointer-events: none; }
.narrative-img-card[data-pos="0"] { top: 0%; left: 0%; z-index: 30; }
.narrative-img-card[data-pos="1"] { top: 16.66%; left: 16.66%; z-index: 20; }
.narrative-img-card[data-pos="2"] { top: 33.33%; left: 33.33%; z-index: 10; }

/* ==========================================================================
   FIXED DEPARTURES
   ========================================================================== */
.fixed-departures-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.fd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.fd-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.fd-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(197, 160, 89, 0.05);
}

.fd-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fd-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.fd-card:hover .fd-img {
    transform: scale(1.08);
}

.fd-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.fd-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fd-dates {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.fd-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.fd-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fd-price {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}


/* Accessibility Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Specific Utilities */
.delay-150 { animation-delay: 0.15s; }
.delay-300 { animation-delay: 0.3s; }
.delay-450 { animation-delay: 0.45s; }
.delay-600 { animation-delay: 0.6s; }

.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.inline-block { display: inline-block; }
.text-center { text-align: center; }
.cursor-pointer { cursor: pointer; }
.no-border-right { border-right: none !important; }

.relative { position: relative; }
.z-55 { z-index: 55; }

/* Hero Form Typography Enhancements */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.search-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem !important;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
    z-index: 55;
}

.search-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 55;
}
