:root {
    /* ── Brand palette (sampled from logo) ── */
    --brand-navy: #1B2A5E;
    --brand-teal: #3DD9C4;
    --brand-orange: #F5A623;

    /* ── Semantic aliases ── */
    --primary-bg: #FFFFFF;
    --dark-blue: #1B2A5E;
    --teal: #3DD9C4;
    --orange: #F5A623;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --pill-bg-light: rgba(255, 255, 255, 0.15);
    --pill-bg-dark: rgba(0, 0, 0, 0.5);
    --border-radius-card: 24px;
    --border-radius-pill: 50px;

    /* ── Hero theme tint (updated by JS on pill click) ── */
    --hero-tint-r: 61;
    --hero-tint-g: 217;
    --hero-tint-b: 196;
    --hero-tint-a: 0.20;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: #0B1330;
}

body {
    color: var(--text-dark);
    line-height: 1.5;
}


a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 110;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background-color: rgba(11, 19, 48, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 9px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    font-weight: 400;
    opacity: 0.8;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    font-weight: 600;
    color: var(--teal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    padding-left: 10%;
    /* Sunrise/travel warmth gradient — navy base, teal-orange glow where globe sits */
    background:
        radial-gradient(ellipse 70% 90% at 68% 50%, rgba(61, 217, 196, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 72% 60%, rgba(245, 166, 35, 0.12) 0%, transparent 45%),
        linear-gradient(150deg, #1B2A5E 0%, #121f4a 50%, #080e2a 100%);
    clip-path: inset(0 0 0 0);
    transition: background 0.4s ease;
}

/* Background Image Slides for Pill Crossfade */
.hero-bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
}

/* Theme tint overlay — animated via JS class changes */
.hero-theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    /* Default: teal (Serenity) */
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
            rgba(61, 217, 196, 0.20) 0%, transparent 60%);
    transition: background-color 0.4s ease, opacity 0.4s ease;
}

.hero-theme-overlay.theme-serenity {
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
            rgba(61, 217, 196, 0.22) 0%, transparent 60%);
}

.hero-theme-overlay.theme-nature {
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
            rgba(74, 160, 100, 0.25) 0%, transparent 60%);
}

.hero-theme-overlay.theme-haven {
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
            rgba(245, 166, 35, 0.24) 0%, transparent 60%);
}

/* Subtle diagonal star-shimmer on top */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 255, 255, 0.20) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Kept for JS compat */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Globe wrapper — positioned on the right half.
   SIZING: the canvas renders at exactly (width × height).
   We add padding so the sphere never clips against the container edge.
   The sphere radius = 1 Three.js unit, camera at z=2.8, FOV 45°
   means the globe needs roughly 85% of the shorter dimension.
   720px container = comfortable full sphere with breathing room. */
.globe-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Wide enough that right side of sphere doesn't clip the viewport edge */
    width: 720px;
    height: 720px;
    /* No overflow:hidden — the canvas IS the content, never clip it */
    overflow: visible;
    z-index: 1;
    will-change: transform, opacity;
    transition: none;
    pointer-events: none;
}

/* Canvas fills its parent exactly — Three.js reads offsetWidth/offsetHeight */
.globe-wrapper canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Soft halo glow behind the globe */
.globe-wrapper::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 189, 182, 0.18) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero text — sits above the globe canvas in z order as a floating glassmorphic card */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 520px;
    background: rgba(27, 42, 94, 0.45);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    margin-right: auto;
}

.hero-content h1 {
    font-size: clamp(38px, 4.2vw, 52px);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ── Mobile Sparkles Canvas (Replaces 3D Globe on Mobile) ── */
#mobile-sparkles-canvas {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ── Hero Direct Content & Brand Glow Treatments ── */

.hero-content-direct {
    max-width: 620px;
}

.hero-content-direct h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(42px, 5.2vw, 68px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

/* Brand color highlights for "Globe & Glow" matching logo & Earth background */
.brand-globe {
    color: #3DD9C4;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 800 !important;
    font-style: italic;
    text-shadow: 0 0 20px rgba(61, 217, 196, 0.4);
}

.brand-glow {
    color: #F5A623;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 800 !important;
    font-style: italic;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.brand-accent-text {
    color: #3DD9C4;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 800 !important;
    font-style: italic;
}


.hero-subcopy-direct {
    display: none !important;
}

/* Initial hidden state for hero entrance animation (prevents flash before entrance animation) */
.hero-content-direct h1,
.hero-content-direct .hero-btn,
.hero-tags .tag {
    opacity: 0;
}






.hero-subcopy-direct {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 34px;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}



.hero-btn {
    padding: 16px 36px;
    font-size: 17px;
    background-color: var(--brand-teal);
    color: #0a1628;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(61, 217, 196, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(61, 217, 196, 0.6);
}

/* Hero subcopy — fades between themes */
.hero-subcopy {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.5vw, 20px);
    margin-bottom: 36px;
    margin-top: -20px;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: opacity 0.25s ease;
    max-width: 440px;
    line-height: 1.55;
}

.hero-subcopy.fading {
    opacity: 0;
}

/* Multi-scene structure (Phase 8 Refinements) */
.hero-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    z-index: 1;
    opacity: 0;
}

.hero-scene[data-scene="landing"] {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
}

.hero-scene.active {
    z-index: 2;
    opacity: 1;
}

.hero-bg-slide.full-bleed {
    opacity: 0.85 !important;
}

.legibility-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(11, 19, 48, 0.72) 0%, rgba(11, 19, 48, 0.35) 45%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-direct {
    position: relative;
    z-index: 10;
    max-width: 620px;
    margin-right: auto;
}

.hero-content-direct h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(42px, 5.2vw, 68px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}



.hero-subcopy-direct {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
    font-weight: 500;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* ── Animated Mouse Scroll Indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translate(-50%, 3px);
}

.mouse-icon {
    width: 18px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(61, 217, 196, 0.3);
    background: rgba(11, 19, 48, 0.35);
    backdrop-filter: blur(4px);
}

.mouse-wheel {
    width: 3px;
    height: 6px;
    background: #3DD9C4;
    border-radius: 2px;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 6px #3DD9C4;
    animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    60% {
        opacity: 0.25;
        transform: translate(-50%, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.scroll-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* ── Interactive Theme Tags Switcher Block ── */
.hero-tags-wrapper {
    position: absolute;
    bottom: 28px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 25;
}

.hero-tags {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tag {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(61, 217, 196, 0.45);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 14px rgba(61, 217, 196, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
    user-select: none;
}


.tag:hover {
    background-color: rgba(61, 217, 196, 0.25);
    border-color: #3DD9C4;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 217, 196, 0.4);
}

/* Active state — set by JS when a theme pill is selected */
.tag.active {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
    color: #0a1628;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(61, 217, 196, 0.7);
    transform: scale(1.05);
}


/* ── Responsive tweaks ── */
@media (max-width: 1024px) {
    .globe-wrapper {
        width: 520px;
        height: 520px;
        right: -2%;
    }

    .hero-content {
        max-width: 65%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-left: 6%;
        align-items: flex-start;
        justify-content: center;
    }

    .globe-wrapper {
        width: 380px;
        height: 380px;
        right: -10%;
        top: 55%;
    }

    .hero-content {
        max-width: 80%;
    }
}

/* How It Works Section */
.how-it-works {
    display: flex;
    padding: 120px 10%;
    gap: 64px;
    background-color: var(--primary-bg);
}

.hiw-image {
    flex: 1;
    border-radius: var(--border-radius-card);
    overflow: hidden;
}

.hiw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiw-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hiw-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.step.active,
.step:hover {
    opacity: 1;
}

.step-icon {
    font-size: 24px;
    background-color: #F0F0F0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-text p {
    color: var(--text-muted);
}

/* Experience Banner (With Parallax Snow Mountain Image) */
.experience-banner {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    z-index: 1;
    background-color: #FFFFFF;
}

.exp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.exp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) contrast(1.08);
}

.exp-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
}

.exp-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: none !important;
}

.exp-content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 32px;
    text-shadow: none !important;
}




.exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Footer Restyle (Phase 8) */
.footer {
    background-color: #0B1330;
    /* Darker navy */
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 10% 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 15px;
}

.footer-col h3 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--brand-teal);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
    color: var(--brand-teal);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(61, 217, 196, 0.3);
    border-color: var(--brand-teal);
}

.social-links a:hover svg {
    transform: scale(1.15);
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* =========================================================
   DESTINATIONS GRID (Phase 3)
   ========================================================= */
.search-container {
    max-width: 580px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(27, 42, 94, 0.12);
    border-radius: 50px;
    padding: 4px 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(27, 42, 94, 0.04);
}

.search-input-wrapper:focus-within {
    border-color: var(--brand-navy);
    box-shadow: 0 10px 35px rgba(27, 42, 94, 0.08), 0 0 0 3px rgba(27, 42, 94, 0.15);
    transform: translateY(-2px);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: rgba(27, 42, 94, 0.4);
    margin-left: 20px;
    transition: color 0.3s;
}

.search-input-wrapper:focus-within .search-icon {
    color: var(--brand-navy);
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 16px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.search-input-wrapper input::placeholder {
    color: rgba(27, 42, 94, 0.4);
    font-weight: 400;
}

.clear-search-btn {
    background: rgba(27, 42, 94, 0.05);
    border: none;
    color: var(--brand-navy);
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 8px;
    transition: background 0.2s, transform 0.2s;
}

.clear-search-btn:hover {
    background: rgba(27, 42, 94, 0.1);
    transform: scale(1.05);
}

.clear-search-btn:active {
    transform: scale(0.95);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 2px dashed rgba(27, 42, 94, 0.1);
    margin: 40px auto;
    max-width: 500px;
    display: none;
    z-index: 5;
    position: relative;
    box-shadow: 0 10px 30px rgba(27, 42, 94, 0.02);
}

.no-results h3 {
    color: var(--brand-navy);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.no-results p {
    color: var(--text-muted);
    font-size: 14px;
}

.destinations-section {
    padding: 100px 10% 120px;
    background-color: #F8FAFC;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.dest-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-tab {
    background: white;
    color: var(--brand-navy);
    border: 1px solid rgba(27, 42, 94, 0.1);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--brand-navy);
    color: white;
    box-shadow: 0 10px 20px rgba(27, 42, 94, 0.15);
    border-color: var(--brand-navy);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.dest-card {
    background: white;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    border: 1px solid rgba(27, 42, 94, 0.05);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 42, 94, 0.12);
}

.dest-card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dest-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card:hover .dest-card-image-wrapper img {
    transform: scale(1.05);
}

/* Sliding Price/Duration Badge */
.dest-badge {
    position: absolute;
    bottom: -40px;
    left: 20px;
    background: var(--brand-orange);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    opacity: 0;
    z-index: 2;
}

.dest-card:hover .dest-badge {
    bottom: 20px;
    opacity: 1;
}

.dest-card-content {
    padding: 28px;
}

.dest-card-content h3 {
    font-size: 20px;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-card-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.dest-card-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    border: none;
    box-shadow: none;
}

.dest-card-btn:hover {
    background-color: #2ec5b0;
    box-shadow: 0 4px 15px rgba(61, 217, 196, 0.35);
}

/* =========================================================
   SERVICES SECTION (Phase 4)
   ========================================================= */
.services-section {
    padding: 120px 10%;
    background-color: #FFFFFF;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-top: 60px;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1.1;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(27, 42, 94, 0.08);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.04);
}

.service-text {
    flex: 0.9;
}

.service-meta {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.service-text h3 {
    font-size: 32px;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.service-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
}

.btn-secondary:hover {
    background: var(--brand-navy);
    color: white;
    box-shadow: 0 10px 20px rgba(27, 42, 94, 0.15);
}

/* =========================================================
   ABOUT US SECTION (Phase 5)
   ========================================================= */
.about-section {
    padding: 100px 10%;
    background-color: #F8FAFC;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-image {
    flex: 1;
    position: relative;
    height: 480px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--brand-navy);
    color: white;
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(27, 42, 94, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-years {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-teal);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.about-content {
    flex: 1.1;
}

.about-btn {
    padding: 14px 32px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(61, 217, 196, 0.3);
}

/* =========================================================
   TESTIMONIALS MARQUEE (Phase 6)
   ========================================================= */
.testimonials-section {
    padding: 100px 0 120px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    gap: 32px;
    width: 200%;
    margin-top: 50px;
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 32s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.testimonial-card {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 24px;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(27, 42, 94, 0.04);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 42, 94, 0.08);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 32px));
    }
}

/* =========================================================
   QUOTE SECTION & FLOW (Phase 7)
   ========================================================= */
.quote-section {
    padding: 120px 10%;
    background-color: #F8FAFC;
}

.quote-card-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(150deg, #1B2A5E 0%, #121f4a 100%);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(27, 42, 94, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-info-side {
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-info-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.quote-info-side p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.quote-form-side {
    background: white;
    padding: 60px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    padding: 14px 20px;
    border: 1px solid rgba(27, 42, 94, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: var(--brand-navy);
    background: #F8FAFC;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: white;
    box-shadow: 0 4px 15px rgba(61, 217, 196, 0.15);
}

.quote-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    border: none;
}

.quote-submit-btn:hover {
    background-color: #2ec5b0;
    box-shadow: 0 8px 24px rgba(61, 217, 196, 0.4);
}

/* =========================================================
   HOMEPAGE HERO REDESIGN OVERRIDES
   ========================================================= */

/* Note: Landing background slide and globe columns removed from HTML */

/* Dark space background landing scene styles */

/* Explore button design: glowing teal gradient */
.hero-scene[data-scene="landing"] .hero-btn {
    background: linear-gradient(135deg, #44e3cb 0%, #159b95 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 24px rgba(61, 217, 196, 0.5) !important;
    border: none !important;
}

.hero-scene[data-scene="landing"] .hero-btn:hover {
    box-shadow: 0 12px 32px rgba(61, 217, 196, 0.7) !important;
    transform: scale(1.05) !important;
}

/* Tags outline design with gold/amber border (default for dark backgrounds) */
.hero-tags .tag {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-tags .tag:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Landing scene uses default dark tags */

/* High specificity active theme styles */
.hero-tags .tag.active {
    background-color: var(--brand-teal) !important;
    border-color: var(--brand-teal) !important;
    color: #0a1628 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 16px rgba(61, 217, 196, 0.5) !important;
}

.hero-tags .tag[data-theme="haven"].active {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.5) !important;
    color: #1B2A5E !important;
}

.hero-tags .tag[data-theme="nature"].active {
    background-color: #4AA064 !important;
    border-color: #4AA064 !important;
    box-shadow: 0 0 16px rgba(74, 160, 100, 0.5) !important;
    color: #fff !important;
}

/* =========================================================
   NAVBAR VISUAL OVERRIDES FOR LIGHT BACKGROUND
   ========================================================= */

/* Default navbar link color: orange (high readability) */
.nav-links a {
    color: var(--brand-orange) !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

/* Hover, active, and pressed state: brand teal (#3dd9c4) */
.nav-links a:hover,
.nav-links a.active,
.nav-links a:active {
    color: var(--brand-teal) !important;
    opacity: 1 !important;
}

.nav-links a::after {
    background-color: var(--brand-teal) !important;
}

/* Plan My Trip / Call Us button in navbar: brand orange */
.navbar .btn-primary {
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    font-size: 14px !important;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35) !important;
    border: none !important;
    border-radius: var(--border-radius-pill) !important;
}

.navbar .btn-primary:hover {
    background-color: #e09216 !important;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5) !important;
    transform: scale(1.04) !important;
}

/* =========================================================
   LOGO GLASS BACKDROP OVERRIDE (Option 2)
   To undo this: Delete this entire block or comment it out.
   ========================================================= */
.logo {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 4px 14px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;
}

.footer-col .logo {
    width: fit-content !important;
    margin-bottom: 20px !important;
}

.footer-col .logo img {
    height: 44px !important;
    width: auto !important;
    max-height: 48px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 0 !important;
}

.logo img {
    height: 38px !important;
    width: auto !important;
    max-height: 42px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.04);
}

/* =========================================================
   SPLINE 3D GLOBE OVERRIDES
   ========================================================= */

/* =========================================================
   CREATIVE BROCHURE & DOWNLOADS GRID
   ========================================================= */
.creatives-section {
    padding: 80px 0;
    background: #080E21;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.creatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.creative-card {
    background: #0E1838;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.creative-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-teal);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(61, 217, 196, 0.2);
}

.creative-img-wrap {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
    background: #040814;
}

.creative-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.creative-card:hover .creative-img-wrap img {
    transform: scale(1.06);
}

.creative-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.creative-title {
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.creative-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.creative-actions {
    display: flex;
    gap: 10px;
}

.creative-actions a,
.creative-actions button {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download-poster {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-download-poster:hover {
    background: var(--brand-teal);
    color: #040814;
    border-color: var(--brand-teal);
}

#hero-3d-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: -16vw !important;
    width: 82.5vw !important;
    height: 50% !important;
    z-index: 0 !important;
    opacity: 1 !important;
    contain: strict !important;
    transform: scale(2) !important;
    transform-origin: top left !important;
    will-change: transform !important;
    pointer-events: auto !important;
    overflow: hidden !important;
}

#hero-3d-canvas {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    outline: none !important;
}

/* Ensure mood tag pills and header links remain fully interactive on top of Spline */
.navbar,
.hero-tags {
    z-index: 100 !important;
    pointer-events: auto !important;
}

.hero-tags .tag {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* =========================================================
   RESPONSIVE MOBILE OVERRIDES FOR SEARCH & FILTER GRID
   ========================================================= */
/* Mobile Navigation Drawer styles */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--brand-orange);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #0B1330;
    z-index: 105;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    opacity: 1;
    color: var(--brand-teal);
}

.mobile-menu-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    background-color: var(--brand-orange) !important;
    border: none !important;
    color: white !important;
}

body.menu-open {
    overflow: hidden;
}

/* ── Destination Card Description & Buttons ── */
.dest-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.dest-btn-group {
    display: flex;
    gap: 12px;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--teal);
    color: white;
    transform: scale(1.05);
}

/* ── Customization Modal ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 19, 48, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-card);
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--brand-navy);
}

.modal-content h2 {
    color: var(--brand-navy);
    margin-bottom: 10px;
    font-size: 28px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
}

/* ── Modal Content Form Styling ── */
.modal-content .form-group {
    margin-bottom: 18px !important;
    width: 100% !important;
}

.modal-content .form-group label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0A1628 !important;
    margin-bottom: 6px !important;
}

.modal-content .form-group input,
.modal-content .form-group select,
.modal-content .form-group textarea {
    width: 100% !important;
    height: 48px !important;
    padding: 10px 14px !important;
    background: #F4F6FB !important;
    border: 1px solid #D0D5DD !important;
    border-radius: 10px !important;
    color: #0A1628 !important;
    font-size: 16px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

.modal-content .form-group textarea {
    height: 100px !important;
    resize: vertical !important;
}

.modal-content .form-group input::placeholder,
.modal-content .form-group select::placeholder,
.modal-content .form-group textarea::placeholder {
    color: #667085 !important;
}

/* ── Tour Details Responsive Typography ── */
.tour-hero-content h1 {
    font-size: clamp(28px, 5.5vw, 56px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {

    /* Global Typography overrides on Mobile */
    h1 {
        font-size: clamp(28px, 6vw, 42px) !important;
        line-height: 1.25 !important;
    }

    h2 {
        font-size: clamp(24px, 5vw, 32px) !important;
        line-height: 1.3 !important;
    }

    /* Tour Detail Mobile Styles */
    .tour-hero {
        height: 60vh !important;
        padding: 40px 24px !important;
        align-items: flex-end !important;
        justify-content: flex-start !important;
    }

    .tour-hero-content {
        width: 100% !important;
    }

    .tour-hero-content .tour-meta {
        font-size: 14px !important;
        flex-wrap: wrap !important;
        gap: 12px 20px !important;
    }

    .tour-content-wrapper {
        padding: 40px 24px !important;
        gap: 30px !important;
    }

    .tour-main h2 {
        font-size: 24px !important;
        margin-top: 30px !important;
    }

    .tour-sidebar .price {
        font-size: 28px !important;
    }

    /* Navbar */
    .navbar {
        padding: 10px 18px !important;
    }

    .navbar .logo {
        padding: 3px 10px !important;
    }

    .navbar .logo img {
        height: 32px !important;
        max-height: 36px !important;
    }

    .navbar .nav-links,
    .navbar .btn-primary:not(.mobile-menu-btn) {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Form Input Zoom Prevention */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Hero Section */
    .hero {
        padding: 100px 20px 70px !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        min-height: 88vh !important;
        background-color: #000000 !important;
        background: #000000 !important;
    }

    .hero-bg-gradient {
        display: none !important;
    }

    #mobile-sparkles-canvas {
        display: block !important;
    }


    #hero-3d-wrapper {
        display: none !important;
    }

    .hero-scene {
        padding: 0 !important;
        max-width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-content-direct {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .hero-content-direct h1,
    .hero-content-direct .hero-btn,
    .hero-tags .tag {
        opacity: 1 !important;
    }

    .hero-content-direct h1,
    .hero-scene h1 {

        font-size: clamp(30px, 7.8vw, 42px) !important;
        line-height: 1.2 !important;
        text-align: center !important;
        letter-spacing: -0.015em !important;
        margin-bottom: 22px !important;
    }

    .hero-subcopy-direct {
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .hero-content-direct .btn-primary {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 15px 26px !important;
        font-size: 16px !important;
        justify-content: center !important;
        display: inline-flex !important;
    }

    .hero-tags-wrapper {
        bottom: 16px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        width: 94% !important;
        max-width: 420px !important;
        align-items: center !important;
    }

    .hero-tags-label {
        font-size: 10px !important;
    }

    .hero-tags {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 6px !important;
    }

    .hero-tags .tag {
        padding: 8px 10px !important;
        font-size: 11px !important;
        flex: 1 !important;
        text-align: center !important;
        justify-content: center !important;
        border-radius: 30px !important;
    }

    .hero-scroll-indicator {
        display: none !important;
    }

    .hero-tags .tag[data-theme="nature"] {
        display: inline-flex !important;
    }



    /* Destinations Section */
    .destinations-section {
        padding: 60px 16px 80px !important;
    }

    .section-header h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .section-header p {
        font-size: 14px !important;
    }

    .search-container {
        width: 100% !important;
        margin: 0 auto 28px auto !important;
    }

    .search-input-wrapper {
        padding: 2px 4px !important;
    }

    .search-input-wrapper input {
        padding: 10px 12px !important;
        font-size: 15px !important;
    }

    .search-icon {
        margin-left: 14px !important;
        width: 18px !important;
        height: 18px !important;
    }

    .clear-search-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 16px !important;
    }

    .dest-filters {
        gap: 8px !important;
        margin-bottom: 32px !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 4px 4px 12px 4px !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        scrollbar-width: none !important;
    }

    .dest-filters::-webkit-scrollbar {
        display: none !important;
    }

    .filter-tab {
        padding: 8px 18px !important;
        font-size: 14px !important;
        flex-shrink: 0 !important;
    }

    .dest-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .dest-btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 16px !important;
    }

    .dest-card-btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        justify-content: center !important;
    }


    /* Services Section */
    .services-section {
        padding: 60px 20px !important;
    }

    .services-list {
        gap: 48px !important;
        margin-top: 32px !important;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .service-image {
        width: 100% !important;
        height: 220px !important;
    }

    .service-text {
        width: 100% !important;
        text-align: left !important;
    }

    .service-text h3 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .service-text p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    /* About Us Section */
    .about-section {
        padding: 60px 20px !important;
    }

    .about-wrapper {
        flex-direction: column !important;
        gap: 48px !important;
    }

    .about-image {
        width: 100% !important;
        height: 300px !important;
        flex: none !important;
    }

    .experience-badge {
        padding: 16px 20px !important;
        bottom: -10px !important;
        right: -10px !important;
    }

    .exp-years {
        font-size: 28px !important;
    }

    .exp-label {
        font-size: 10px !important;
    }

    .about-content {
        width: 100% !important;
        flex: none !important;
    }

    .about-content .section-header h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .about-story {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .team-highlights {
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 24px !important;
    }

    /* Experience Banner */
    .experience-banner {
        height: auto !important;
        padding: 80px 20px !important;
    }

    .exp-content h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .exp-content p {
        font-size: 14px !important;
        margin-bottom: 24px !important;
    }

    /* Testimonials Marquee */
    .testimonials-section {
        padding: 60px 0 80px !important;
    }

    .testimonial-card {
        width: 300px !important;
        padding: 28px !important;
    }

    .testimonial-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* Quote Section (AI Travel Planner) Mobile Optimizations */
    .quote-section {
        padding: 40px 16px !important;
    }

    .quote-card-container,
    .quote-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        background: rgba(11, 19, 48, 0.98) !important;
        width: 100% !important;
    }

    .quote-info-side {
        width: 100% !important;
        padding: 32px 20px 24px !important;
        box-sizing: border-box !important;
    }

    .quote-info-side h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .quote-info-side p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .benefits-list {
        margin-top: 20px !important;
        gap: 16px !important;
    }

    .benefit-item {
        gap: 12px !important;
    }

    .benefit-item h5 {
        font-size: 14px !important;
    }

    .benefit-item p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .side-cta-box {
        margin-top: 20px !important;
        padding: 14px !important;
        border-radius: 14px !important;
    }

    .quote-form-side {
        width: 100% !important;
        padding: 24px 20px 32px !important;
        background: rgba(8, 14, 36, 0.95) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-sizing: border-box !important;
    }

    .quote-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    .form-group {
        width: 100% !important;
    }

    .quote-form-side .form-group label {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.95) !important;
        margin-bottom: 8px !important;
        display: block !important;
        letter-spacing: 0.02em !important;
    }

    .quote-form-side .form-group input,
    .quote-form-side .form-group select {
        height: 52px !important;
        font-size: 16px !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.07) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        color: #FFFFFF !important;
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: border-color 0.2s ease, background-color 0.2s ease !important;
    }

    .quote-form-side .form-group input:focus,
    .quote-form-side .form-group select:focus {
        border-color: var(--brand-teal) !important;
        background: rgba(255, 255, 255, 0.12) !important;
        outline: none !important;
    }

    .quote-form-side .form-group input::placeholder {
        color: rgba(255, 255, 255, 0.45) !important;
        font-size: 14px !important;
    }

    .quote-form-side .form-group select option {
        background: #0B1330 !important;
        color: #FFFFFF !important;
        padding: 10px !important;
    }

    .quote-submit-btn,
    #ai-generate-btn {
        height: 54px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 16px !important;
        margin-top: 10px !important;
        width: 100% !important;
        box-shadow: 0 8px 24px rgba(32, 188, 167, 0.25) !important;
    }

    /* Footer */
    .footer {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 60px 24px 40px !important;
    }

    /* Tour Detail Pages Mobile Enhancements */
    .tour-hero {
        height: 55vh !important;
        min-height: 380px !important;
        padding: 40px 20px !important;
    }

    .tour-hero-content h1 {
        font-size: clamp(26px, 6.5vw, 36px) !important;
        line-height: 1.25 !important;
    }

    .tour-hero-content .tour-meta {
        font-size: 14px !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .tour-content-wrapper {
        grid-template-columns: 1fr !important;
        padding: 40px 20px 80px !important;
        gap: 32px !important;
    }

    .tour-sidebar {
        padding: 24px !important;
        border-radius: 20px !important;
    }

    .itinerary-day {
        padding: 20px !important;
        border-radius: 16px !important;
    }
}

/* =========================================================

   TRUST & STATS IMPACT SECTION (UNDER HERO)
   ========================================================= */
.trust-stats-section {
    background: #FFFFFF;
    padding: 85px 8%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(11, 19, 48, 0.06);
}

.trust-stats-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.trust-stats-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.trust-stats-header p {
    color: var(--text-muted);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.stat-card {
    background: #F8FAFC;
    border: 1px solid rgba(11, 19, 48, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(11, 19, 48, 0.03);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-teal);
    box-shadow: 0 15px 35px rgba(27, 42, 94, 0.1), 0 0 20px rgba(61, 217, 196, 0.2);
    background: #FFFFFF;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 3.4vw, 46px);
    font-weight: 800;
    color: var(--brand-teal);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}


@media (max-width: 900px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .trust-stats-section {
        padding: 60px 20px;
    }

    .trust-stats-header {
        margin-bottom: 36px;
    }

    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-card {
        padding: 24px 18px;
    }
}

/* =========================================================
   FLAGSHIP AI ITINERARY GENERATOR STYLES
   ========================================================= */

.ai-flagship-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
}

.ai-card-wrapper {
    box-shadow: 0 25px 60px rgba(27, 42, 94, 0.18), 0 0 40px rgba(61, 217, 196, 0.12);
    border: 1px solid rgba(61, 217, 196, 0.2);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ai-output-container {
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    animation: fadeIn 0.4s ease-out;
}

.ai-hotel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ai-hotel-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-teal);
}

.ai-day-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.ai-day-badge {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #20bca7 100%);
    color: #0B1330;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 16px;
}

.whatsapp-cta-btn {
    background: #25D366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    border: none !important;
}

.whatsapp-cta-btn:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5) !important;
}

/* ── Destination Page Hero Header (White Text with Scenic Image Background) ── */
.destination-hero {
    background: linear-gradient(180deg, rgba(11, 19, 48, 0.62) 0%, rgba(11, 19, 48, 0.82) 100%), url('images/header-destinations.jpg') center 35%/cover no-repeat !important;
    padding: 160px 20px 70px !important;
    text-align: center;
}

.destination-hero h1 {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.destination-hero p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(15px, 1.8vw, 18px);
    max-width: 640px;
    margin: 16px auto 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ── Hide Mouse Scroll Indicator on Alternate Hero Scenes ── */
#hero-section[data-theme]:not([data-theme="landing"]) .hero-scroll-indicator {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   STICKY FLOATING CTA DOCK COMPONENT
   ========================================================= */

@keyframes floatingDockEntrance {
    from {
        opacity: 0;
        transform: translate(-50%, 40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

@keyframes pulseGlowDot {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 217, 196, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(61, 217, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 217, 196, 0);
    }
}

.floating-cta-dock {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translate(-50%, 35px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    max-width: 94vw;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta-dock.dock-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.floating-cta-dock.hidden-dock {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 35px) scale(0.95) !important;
}

.floating-cta-dock-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(11, 19, 48, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 7px 10px 7px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 166, 35, 0.12);
}

.floating-cta-dock-info {
    display: flex;
    align-items: center;
    gap: 9px;
}

.floating-cta-beacon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-teal);
    animation: pulseGlowDot 2s infinite ease-out;
    flex-shrink: 0;
}

.floating-cta-dock-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.floating-cta-dock-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-dock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    border: none;
    line-height: 1;
}

.floating-dock-btn svg {
    flex-shrink: 0;
}

.floating-dock-btn.btn-call {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.floating-dock-btn.btn-call:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.floating-dock-btn.btn-wa {
    color: #FFFFFF;
    background: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.floating-dock-btn.btn-wa:hover {
    background: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    transform: translateY(-1px);
}

.floating-dock-btn.btn-plan {
    color: #FFFFFF;
    background: linear-gradient(135deg, #F5A623, #FF8C00);
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
}

.floating-dock-btn.btn-plan:hover {
    box-shadow: 0 6px 22px rgba(245, 166, 35, 0.6);
    transform: translateY(-1px) scale(1.02);
}

.floating-cta-dismiss {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    margin-left: 2px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.floating-cta-dismiss:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

/* Minimized Trigger Pill */
.floating-cta-trigger-pill {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1000;
    background: rgba(11, 19, 48, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    padding: 8px 14px;
    border-radius: 30px;
    display: none;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.floating-cta-trigger-pill:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(245, 166, 35, 0.3);
}

.floating-cta-trigger-pill.visible {
    display: inline-flex;
    animation: floatingDockEntrance 0.3s ease both;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-cta-dock {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: translateY(100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        border-radius: 18px 18px 0 0 !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
    }

    .floating-cta-dock.dock-visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .floating-cta-dock.hidden-dock {
        transform: translateY(100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .floating-cta-dock-inner {
        width: 100% !important;
        border-radius: 18px 18px 0 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
        background: rgba(11, 19, 48, 0.96) !important;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px)) 12px !important;
        justify-content: space-between !important;
        gap: 6px !important;
    }

    .floating-cta-dock-info {
        display: none !important;
    }

    .floating-cta-dock-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr 1.3fr !important;
        gap: 6px !important;
    }

    .floating-dock-btn {
        padding: 9px 6px !important;
        font-size: 12px !important;
        justify-content: center !important;
        border-radius: 10px !important;
    }

    .floating-dock-btn svg {
        width: 15px !important;
        height: 15px !important;
    }

    .floating-cta-dismiss {
        display: none !important;
    }

    /* Add bottom padding to body on mobile so footer isn't covered */
    body {
        padding-bottom: 58px;
    }
}

/* =========================================================
   LUXURY LIGHT-THEMED AI ITINERARY RESULTS (SS 2 THEME)
   ========================================================= */
.ai-output-container {
    background: #FFFFFF !important;
    color: #1E293B !important;
    border-top: 1px solid #E2E8F0 !important;
    padding: 60px 8% !important;
    border-radius: 0 0 24px 24px;
}

.ai-results-header-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.ai-results-header-box h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0B1330 !important;
    margin: 3px 0 4px;
    letter-spacing: -0.4px;
    text-transform: capitalize;
}

.ai-results-header-box p {
    color: #64748B !important;
    font-size: 13.5px;
    margin: 0;
}

.ai-weather-pill {
    background: rgba(0, 209, 178, 0.1) !important;
    color: #00897B !important;
    padding: 7px 16px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border: 1px solid rgba(0, 209, 178, 0.3) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ai-section-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0B1330 !important;
    margin-bottom: 20px !important;
    margin-top: 10px !important;
    page-break-after: avoid !important;
    break-after: avoid !important;
}

/* Timeline Itinerary Days (SS 2 Matching) */
.ai-timeline-wrapper {
    margin-bottom: 40px;
}

.ai-timeline-day {
    border-left: 3px solid #00D1B2;
    padding-left: 22px;
    margin-bottom: 24px;
    position: relative;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.ai-timeline-day::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF6B35;
    border: 4px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.ai-timeline-day h3 {
    color: #0B1330 !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.ai-timeline-day p {
    color: #475569 !important;
    line-height: 1.7 !important;
    font-size: 14.5px !important;
    margin-bottom: 8px !important;
}

.ai-timeline-day .day-activity-item {
    margin-bottom: 8px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.ai-timeline-day .day-activity-label {
    font-weight: 700;
    color: #0B1330;
    margin-right: 6px;
}

/* Luxury Hotel Cards */
.ai-hotel-card-light {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 24px rgba(11, 19, 48, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.ai-hotel-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 19, 48, 0.1) !important;
}

.ai-hotel-card-light h4 {
    color: #0B1330 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.ai-hotel-card-light .hotel-price {
    color: #00897B !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
}

.ai-hotel-card-light p {
    color: #64748B !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    flex-grow: 1;
}

/* Action CTA Banner */
.ai-cta-banner-light {
    background: #F8FAFC !important;
    border: 1.5px solid #E2E8F0 !important;
    padding: 36px 30px !important;
    border-radius: 24px !important;
    text-align: center !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
    margin-top: 20px;
}

.ai-cta-banner-light h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0B1330 !important;
    margin-bottom: 8px !important;
}

.ai-cta-banner-light p {
    color: #475569 !important;
    font-size: 15px !important;
    max-width: 620px !important;
    margin: 0 auto 24px !important;
}

/* =========================================================
   AIRPLANE FLIGHT LOADING ANIMATION & 100 TRAVEL TIPS
   ========================================================= */
.ai-flight-track {
    width: 100%;
    max-width: 440px;
    height: 48px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flight-dashed-line {
    position: absolute;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #CBD5E1;
    top: 50%;
    left: 0;
    z-index: 1;
}

.flight-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background: #FFFFFF;
}

.flight-dot-start {
    border: 3px solid #00D1B2;
}

.flight-dot-end {
    border: 3px solid #FF6B35;
}

.flight-airplane {
    position: absolute;
    top: 50%;
    z-index: 3;
    animation: planeFly 2.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 209, 178, 0.35));
}

@keyframes planeFly {
    0% {
        left: 2%;
        transform: translateY(-50%) scale(0.85);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        left: 92%;
        transform: translateY(-50%) scale(1);
        opacity: 0;
    }
}

/* 100 Travel Tips Rotating Box */
.travel-tip-box {
    max-width: 540px;
    margin: 0 auto;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 18px 24px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.travel-tip-badge {
    display: inline-block;
    background: rgba(0, 209, 178, 0.12);
    color: #00897B;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.travel-tip-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.travel-tip-text.fade-out {
    opacity: 0;
    transform: translateY(4px);
}

/* Printable PDF Clean Export Styles */
@media print {
    body {
        background: #FFFFFF !important;
        color: #0B1330 !important;
    }
    .header, .footer, .floating-cta-dock, .floating-cta-trigger-pill, .floating-lead-dock, .ai-days-nav, button, a[href*="wa.me"] {
        display: none !important;
    }
    .ai-output-container {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .ai-timeline-day {
        display: block !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
    .ai-hotel-card-light,
    .ai-investment-card,
    .ai-results-header-box,
    .ai-cta-banner-light,
    .day-activity-item {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
}

/* Flight Transit Pill */
.ai-transit-pill {
    background: rgba(11, 19, 48, 0.05) !important;
    color: #0B1330 !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border: 1px solid #CBD5E1 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Package Investment Summary Box */
.ai-investment-card {
    background: #F8FAFC !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    margin-bottom: 28px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 14px !important;
    align-items: center !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.ai-investment-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ai-investment-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ai-investment-val {
    font-size: 18px;
    font-weight: 800;
    color: #0B1330;
}

.ai-investment-val.highlight {
    color: #00897B;
    font-size: 21px;
}

/* Multi-Day Navigation Tabs */
.ai-days-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.ai-days-nav::-webkit-scrollbar {
    display: none;
}

.ai-day-tab-btn {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    color: #475569;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.ai-day-tab-btn:hover {
    border-color: #00D1B2;
    color: #0B1330;
}

.ai-day-tab-btn.active {
    background: #0B1330;
    color: #FFFFFF;
    border-color: #0B1330;
}

/* intl-tel-input Luxury Styling */
.iti {
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

.iti input[type="tel"] {
    width: 100% !important;
    height: 48px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-right: 14px !important;
    border: 1.5px solid #CBD5E1 !important;
    border-radius: 10px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #0F172A !important;
    background: #FFFFFF !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.iti input[type="tel"]:focus {
    outline: none !important;
    border-color: #00D1B2 !important;
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.15) !important;
}

.iti__selected-country {
    border-radius: 10px 0 0 10px !important;
    padding: 0 8px 0 12px !important;
    background: transparent !important;
}

.iti__selected-dial-code {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin-left: 6px !important;
}

.iti__arrow {
    border-top-color: #64748B !important;
    margin-left: 6px !important;
}

.iti__dropdown-content {
    z-index: 10005 !important;
    border-radius: 12px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18) !important;
    background: #FFFFFF !important;
    color: #0B1330 !important;
    max-height: 280px !important;
    overflow-y: auto !important;
}

.iti__search-input {
    border-radius: 8px !important;
    border: 1.5px solid #CBD5E1 !important;
    padding: 9px 12px !important;
    font-size: 13.5px !important;
    font-family: inherit !important;
    color: #0B1330 !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
    box-sizing: border-box !important;
}

.iti__search-input:focus {
    outline: none !important;
    border-color: #00D1B2 !important;
    box-shadow: 0 0 0 2px rgba(0, 209, 178, 0.15) !important;
}

.iti__country-list {
    max-height: 220px !important;
    scrollbar-width: thin !important;
}

.iti__country {
    padding: 8px 12px !important;
    font-size: 13.5px !important;
    transition: background 0.15s ease !important;
}

.iti__country--highlight {
    background: #F1F5F9 !important;
    color: #00897B !important;
}

.iti__country-name {
    font-weight: 500 !important;
    color: #0F172A !important;
}

.iti__dial-code {
    color: #64748B !important;
    font-weight: 600 !important;
}

/* ── PDF Export Mode (Applied to #printable-itinerary during export) ── */
.pdf-export-mode {
    max-width: 740px !important;
    width: 740px !important;
    margin: 0 auto !important;
    padding: 12px 16px !important;
    background: #FFFFFF !important;
    color: #0B1330 !important;
    box-sizing: border-box !important;
}

.pdf-export-mode .ai-days-nav,
.pdf-export-mode .ai-cta-banner-light,
.pdf-export-mode button {
    display: none !important;
}

.pdf-export-mode .ai-results-header-box {
    padding: 14px 18px !important;
    margin-bottom: 14px !important;
    border-radius: 12px !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.pdf-export-mode .ai-results-header-box h2 {
    font-size: 22px !important;
    margin: 2px 0 6px 0 !important;
}

.pdf-export-mode .ai-investment-card {
    padding: 12px 16px !important;
    margin-bottom: 18px !important;
    border-radius: 12px !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
}

.pdf-export-mode .ai-hotel-card-light {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 10px !important;
}

.pdf-export-mode .ai-hotel-card-light img {
    height: 120px !important;
    object-fit: cover !important;
}

.pdf-export-mode .ai-timeline-wrapper {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.pdf-export-mode .ai-timeline-wrapper::before {
    display: none !important;
}

.pdf-export-mode .ai-timeline-day {
    display: block !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    margin-bottom: 14px !important;
    padding: 14px 16px !important;
    border: 1.2px solid #E2E8F0 !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
}

.pdf-export-mode .ai-timeline-day::before {
    display: none !important;
}

.pdf-export-mode .ai-timeline-day h3 {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0B1330 !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    padding-bottom: 6px !important;
}

.pdf-export-mode .day-activity-item {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin: 4px 0 !important;
    color: #334155 !important;
}





