/* ========================================
   CREST & CORE - Design System
   Performance-optimized CSS
   Study Abroad Consultancy - Nepal
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-navy: #0A1628;
    --color-navy-light: #1a2d4a;
    --color-charcoal: #2D3748;
    --color-slate: #4A5568;
    --color-gray: #718096;
    --color-gray-light: #A0AEC0;
    --color-silver: #E2E8F0;
    --color-off-white: #e8eef4;
    --color-body-bg: #f0f4f8;
    --color-white: #FFFFFF;
    
    /* Brand Primary Colors */
    --color-primary: #526dff;
    --color-primary-light: #428fff;
    --color-primary-dark: #3c5ce0;
    --color-primary-glow: rgba(60, 156, 255, 0.35);
    
    /* Brand Accent Colors (Gradient) */
    --color-accent-purple: #7c37fc;
    --color-accent-cyan: #3c9cff;
    
    /* Legacy teal (keeping for compatibility) */
    --color-teal: #526dff;
    --color-teal-dark: #3c5ce0;
    --color-teal-light: #428fff;
    --color-teal-glow: rgba(82, 109, 255, 0.3);
    
    /* Accent colors for destinations */
    --color-korea: #C73E3A;
    --color-uk: #012169;
    --color-australia: #00008B;
    --color-japan: #BC002D;
    --color-germany: #FFCC00;
    
    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-smooth: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 6px rgba(10, 22, 40, 0.07);
    --shadow-lg: 0 10px 25px rgba(10, 22, 40, 0.1);
    --shadow-xl: 0 20px 40px rgba(10, 22, 40, 0.12);
    --shadow-glow: 0 0 30px var(--color-teal-glow);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 60px; /* Account for fixed navbar */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-body-bg);
    overflow-x: hidden;
}

/* Scroll Snap Sections */
.hero,
.services,
.destinations,
.assessment,
.about,
.testimonials,
.contact,
footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Dot Grid Background (Performance Optimized)
   ======================================== */
.dot-grid {
    position: fixed;
    /* Extend beyond viewport on all sides to allow seamless movement */
    top: -200px;
    left: -200px;
    width: calc(100% + 400px);
    height: calc(100% + 400px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    /* Use CSS Grid pattern instead of DOM elements */
    background-image: radial-gradient(circle, var(--color-gray) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    /* Performance: Avoid repaints */
    contain: strict;
}

/* Smaller dots on mobile */
@media (max-width: 768px) {
    .dot-grid {
        background-image: radial-gradient(circle, var(--color-gray) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.4;
    }
}

/* Removed cursor glow and particles for performance */

/* Text Gradient Effect */
.text-gradient {
    background: linear-gradient(135deg, var(--color-accent-purple) 0%, var(--color-primary) 50%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-silver);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.footer-brand .logo-icon {
    width: 3.75rem;
    height: 3.75rem;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.logo-crest {
    color: var(--color-primary);
}

.logo-ampersand {
    font-family: var(--font-display);
    color: var(--color-primary-light);
    font-weight: 600;
}

.logo-core {
    color: var(--color-primary-light);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-slate);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-navy);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav CTA - self-contained button styling */
.nav-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast) !important;
    box-shadow: 0 4px 14px rgba(82, 109, 255, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(82, 109, 255, 0.4);
}

.nav-cta:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(82, 109, 255, 0.3);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-silver);
    padding: var(--space-lg);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-links a {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-navy);
    padding: var(--space-sm) 0;
}

/* ========================================
   Buttons - Consistent Hover/Click Behavior
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

/* Unified hover effect for all buttons */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(82, 109, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
    box-shadow: 0 6px 20px rgba(82, 109, 255, 0.4);
}

.btn-primary:active {
    box-shadow: 0 2px 10px rgba(82, 109, 255, 0.3);
}

.btn-secondary {
    background: var(--color-off-white);
    color: var(--color-navy);
    border: 1px solid var(--color-silver);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-white);
    border-color: var(--color-teal);
    box-shadow: var(--shadow-md);
}

.btn-secondary:active {
    background: var(--color-silver);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Contact Strip - Unified Social/Contact Component
   Single source of truth for all social icon strips.
   Usage:
     .contact-strip                    — base (horizontal by default)
     .contact-strip--vertical          — vertical layout (sidebar panel)
     .contact-strip--boarding-pass     — boarding pass chrome (header, perforations, plane)
     .contact-strip--compact           — smaller icons for footer
   ======================================== */
.contact-strip {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.contact-strip--vertical {
    flex-direction: column;
    align-items: stretch;
}

/* Icon links — shared base for ALL social/contact icons site-wide */
.cs-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
}

/* Boarding pass icons container gradient background */
/* Horizontal boarding pass icon spacing */
.contact-strip--boarding-pass:not(.contact-strip--vertical) .cs-icons {
    padding: 12px;
    gap: 10px;
}

.contact-strip--vertical .cs-icons {
    flex-direction: column;
}

.cs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1.5px solid var(--color-silver);
    color: var(--color-slate);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.cs-icon:hover {
    transform: scale(1.1);
    border-color: transparent;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cs-icon:active {
    transform: scale(0.95);
}

/* Platform-specific hover colors — single definition for entire site */
.cs-icon[aria-label="Facebook"]:hover { background: #1877f2; }
.cs-icon[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.cs-icon[aria-label="TikTok"]:hover { background: #000000; }
.cs-icon[aria-label="WhatsApp"]:hover { background: #25D366; }
.cs-icon[aria-label="Viber"]:hover { background: #7360f2; color: #fff; }
.cs-icon[aria-label="Phone"]:hover { background: var(--color-teal); }
.cs-icon[aria-label="Email"]:hover { background: var(--color-primary); }
.cs-icon[aria-label="Location"]:hover { background: #EF4444; }

/* Touch devices: show brand colors by default */
@media (hover: none) {
    .cs-icon[aria-label="Facebook"] { background: #1877f2; border-color: #1877f2; color: #fff; }
    .cs-icon[aria-label="Instagram"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: #d6249f; color: #fff; }
    .cs-icon[aria-label="TikTok"] { background: #000000; border-color: #000; color: #fff; }
    .cs-icon[aria-label="WhatsApp"] { background: #25D366; border-color: #25D366; color: #fff; }
    .cs-icon[aria-label="Viber"] { background: #7360f2; border-color: #7360f2; color: #fff; }
    .cs-icon[aria-label="Phone"] { background: var(--color-teal); border-color: var(--color-teal); color: #fff; }
    .cs-icon[aria-label="Email"] { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
    .cs-icon[aria-label="Location"] { background: #EF4444; border-color: #EF4444; color: #fff; }
}

/* (Footer compact variant removed — footer social strip removed) */

/* ---- Boarding Pass Chrome ---- */
/* Shared wrapper for boarding-pass-style strip (both horizontal + vertical) */
.contact-strip--boarding-pass {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.16), 0 3px 10px rgba(10, 22, 40, 0.1);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-strip--boarding-pass:hover {
    box-shadow: 0 14px 48px rgba(10, 22, 40, 0.2), 0 6px 16px rgba(10, 22, 40, 0.12);
}

/* Boarding pass icons inherit base .cs-icon styling (white bg, silver border, shadow) */

/* BP Label */
.cs-bp-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a2d4a 100%);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
    text-align: center;
}

.contact-strip--vertical .cs-bp-label {
    writing-mode: horizontal-tb;
    padding: 12px 10px;
    font-size: 8px;
    letter-spacing: 1.2px;
    line-height: 1.4;
    text-align: center;
}

/* BP Perforation */
.cs-bp-perforation {
    position: relative;
    border: none;
    margin: 0;
}

/* Horizontal perforation */
.contact-strip:not(.contact-strip--vertical) .cs-bp-perforation {
    width: 10px;
    align-self: stretch;
    background: repeating-linear-gradient(
        180deg,
        transparent,
        transparent 3px,
        var(--color-silver) 3px,
        var(--color-silver) 6px
    );
    position: relative;
}

.contact-strip:not(.contact-strip--vertical) .cs-bp-perforation::before,
.contact-strip:not(.contact-strip--vertical) .cs-bp-perforation::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-light);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.contact-strip:not(.contact-strip--vertical) .cs-bp-perforation::before { top: -5px; }
.contact-strip:not(.contact-strip--vertical) .cs-bp-perforation::after { bottom: -5px; }

/* Vertical perforation */
.contact-strip--vertical .cs-bp-perforation {
    height: 10px;
    width: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 4px,
        var(--color-silver) 4px,
        var(--color-silver) 8px
    );
    position: relative;
}

.contact-strip--vertical .cs-bp-perforation::before,
.contact-strip--vertical .cs-bp-perforation::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-light);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.contact-strip--vertical .cs-bp-perforation::before { left: -5px; }
.contact-strip--vertical .cs-bp-perforation::after { right: -5px; }

/* BP Plane icon footer */
.cs-bp-plane {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a2d4a 100%);
    color: var(--color-primary);
    align-self: stretch;
}

.cs-bp-plane svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ---- Sidebar panel positioning ---- */
.contact-strip-sidebar {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.contact-strip-sidebar.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-strip-sidebar .contact-strip--boarding-pass {
    width: 68px;
}

.contact-strip-sidebar .cs-icons {
    padding: 12px 12px;
    gap: 10px;
}

.contact-strip-sidebar .cs-icon {
    width: 40px;
    height: 40px;
}

/* Pulse ring effect on hover */
.cs-icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    border: 2px solid var(--color-teal);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Platform-specific ring colors */
.cs-icon[aria-label="Facebook"]:hover .cs-icon-ring { border-color: #1877f2; }
.cs-icon[aria-label="Instagram"]:hover .cs-icon-ring { border-color: #d6249f; }
.cs-icon[aria-label="TikTok"]:hover .cs-icon-ring { border-color: #000; }
.cs-icon[aria-label="WhatsApp"]:hover .cs-icon-ring { border-color: #25D366; }
.cs-icon[aria-label="Viber"]:hover .cs-icon-ring { border-color: #7360f2; }
.cs-icon[aria-label="Phone"]:hover .cs-icon-ring { border-color: var(--color-teal); }

/* ---- Hero horizontal variant sizing ---- */
.contact-strip--boarding-pass:not(.contact-strip--vertical) {
    min-height: 68px;
}

.contact-strip--boarding-pass:not(.contact-strip--vertical) .cs-bp-label {
    min-height: 68px;
}

.contact-strip--boarding-pass:not(.contact-strip--vertical) .cs-bp-plane {
    min-height: 68px;
    padding: 0 12px;
}

/* (Contact section strip removed — sidebar handles all social links) */

/* ---- Mobile FAB for sidebar ---- */
.cs-fab {
    display: none;
}

@media (max-width: 768px) {
    .contact-strip-sidebar {
        left: 16px;
        right: auto;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .cs-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
        color: var(--color-teal);
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(10, 22, 40, 0.3);
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .cs-fab:hover { transform: scale(1.05); }
    .cs-fab:active { transform: scale(0.95); }
    
    .cs-fab-icon {
        position: absolute;
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }
    
    .cs-fab-open { opacity: 1; transform: rotate(0deg); }
    .cs-fab-close { opacity: 0; transform: rotate(90deg); }
    
    .contact-strip-sidebar.expanded .cs-fab-open { opacity: 0; transform: rotate(-90deg); }
    .contact-strip-sidebar.expanded .cs-fab-close { opacity: 1; transform: rotate(0deg); }
    
    .contact-strip-sidebar .contact-strip--boarding-pass {
        position: absolute;
        bottom: 70px;
        left: 0;
        opacity: 0;
        transform: translateY(10px) scale(0.95);
        pointer-events: none;
        transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    }
    
    .contact-strip-sidebar.expanded .contact-strip--boarding-pass {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-4xl);
    padding: calc(80px + var(--space-md)) var(--space-lg) var(--space-4xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-off-white);
    border: 1px solid var(--color-silver);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.hero-title em {
    font-style: normal;
    color: var(--color-teal);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-slate);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Hero Destinations Ticker */
.hero-destinations {
    margin-top: var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.destinations-label {
    font-size: 0.875rem;
    color: var(--color-slate);
    white-space: nowrap;
}

.flags-ticker {
    overflow: hidden;
    flex: 1;
    max-width: 300px;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.flags-track {
    display: flex;
    gap: var(--space-lg);
    animation: ticker 15s linear infinite;
}

.flag-item {
    cursor: pointer;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    background: none;
    border: none;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
}

.flag-item img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flag-item:hover {
    transform: scale(1.3);
}

.flag-item:active,
.flag-item.active {
    transform: scale(1.6);
}

.flag-item:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 2px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Mobile Globe (hidden on desktop)
   ======================================== */
.mobile-globe {
    display: none;
}

/* ========================================
   Globe Modal (for mobile fullscreen view)
   ======================================== */
.globe-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.globe-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.globe-modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--color-body-bg);
}

.globe-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    overflow: hidden;
}

.globe-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-silver);
    background: var(--color-white);
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.globe-modal-close:hover {
    background: var(--color-off-white);
    border-color: var(--color-slate);
}

/* Container for the globe when shown in modal */
.globe-modal-globe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    max-width: 100vw;
    flex-shrink: 0;
    z-index: 20;
}

/* When globe is in modal, use actual size instead of CSS scale */
.globe-modal-globe-container .globe-container {
    width: min(75vw, 320px);
    height: min(75vw, 320px);
}

/* Scale down orbit in modal to fit mobile globe size */
.globe-modal-globe-container .globe-orbit {
    width: 370px;
    height: 370px;
}

.globe-modal-globe-container .globe-orbit-moon {
    width: 22px;
    height: 22px;
    animation: moonOrbitMobile 90s linear infinite;
}

@keyframes moonOrbitMobile {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(185px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(185px) rotate(-360deg); }
}

/* Smaller flags and pins when in modal */
.globe-modal-globe-container .globe-flag {
    width: 32px;
    height: 22px;
    border-radius: 3px;
}

.globe-modal-globe-container .globe-flag.nepal-flag {
    width: 28px;
}

.globe-modal-globe-container .globe-pin {
    width: 6px;
    height: 6px;
}

.globe-modal-globe-container .globe-pin-nepal {
    width: 8px;
    height: 8px;
}

/* Move globe upward in modal and scale down reveal elements */
.globe-modal-content {
    justify-content: flex-start;
    padding-top: var(--space-xl);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Globe starts visually centered, then slides up on destination click */
.globe-modal-globe-container {
    transform: translateY(calc(50vh - 50% - var(--space-xl)));
    transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.globe-modal-content.globe-revealed .globe-modal-globe-container {
    transform: translateY(var(--space-3xl));
}

/* Shrink orbit path and satellite orbit radius for mobile */
.globe-modal-globe-container .orbit-path {
    width: 370px;
    height: 370px;
}

.globe-modal-globe-container .destination-reveal.active .orbit-badge.badge-1 {
    animation: rocketOrbitMobile1 30s linear infinite;
}
.globe-modal-globe-container .destination-reveal.active .orbit-badge.badge-2 {
    animation: rocketOrbitMobile2 35s linear infinite;
}
.globe-modal-globe-container .destination-reveal.active .orbit-badge.badge-3 {
    animation: rocketOrbitMobile3 40s linear infinite;
}

@keyframes rocketOrbitMobile1 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(184px) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(184px) rotate(180deg); }
}
@keyframes rocketOrbitMobile2 {
    0% { transform: translate(-50%, -50%) rotate(120deg) translateX(184px) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(480deg) translateX(184px) rotate(180deg); }
}
@keyframes rocketOrbitMobile3 {
    0% { transform: translate(-50%, -50%) rotate(240deg) translateX(184px) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(600deg) translateX(184px) rotate(180deg); }
}

/* Counter-rotation for cards at mobile orbit radius */
.globe-modal-globe-container .destination-reveal.active .badge-1 .rocket-card {
    animation: cardUprightMobile1 30s linear infinite;
}
.globe-modal-globe-container .destination-reveal.active .badge-2 .rocket-card {
    animation: cardUprightMobile2 35s linear infinite;
}
.globe-modal-globe-container .destination-reveal.active .badge-3 .rocket-card {
    animation: cardUprightMobile3 40s linear infinite;
}

@keyframes cardUprightMobile1 {
    0% { transform: translate(-50%, 50%) rotate(140deg); }
    100% { transform: translate(-50%, 50%) rotate(-220deg); }
}
@keyframes cardUprightMobile2 {
    0% { transform: translate(-50%, 50%) rotate(20deg); }
    100% { transform: translate(-50%, 50%) rotate(-340deg); }
}
@keyframes cardUprightMobile3 {
    0% { transform: translate(-50%, 50%) rotate(-100deg); }
    100% { transform: translate(-50%, 50%) rotate(-460deg); }
}

/* Hide CTA inside globe on mobile — it gets moved to .globe-modal-content by JS */
.globe-modal-globe-container .reveal-cta {
    display: none;
}

/* Scale down country name text for mobile modal */
.globe-modal-globe-container .country-name-text {
    font-size: 3rem;
}

/* Move revealed country name further above the globe on mobile */
.globe-modal-globe-container .reveal-country-name.revealed,
.globe-modal-globe-container .destination-reveal.active .reveal-country-name {
    transform: translateX(-50%) translateY(-240%);
}

/* Description card — normal flex child below the globe */
.globe-modal-content > .reveal-description {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: calc(100% - var(--space-md) * 2);
    max-width: 380px;
    max-height: 35vh;
    overflow-y: auto;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    background: rgba(255, 255, 255, 1);
    padding: 16px;
    padding-top: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-top: 100px;
    flex-shrink: 0;
}

.globe-modal-content > .reveal-description.mobile-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Discover More CTA — normal flex child below description card */
.globe-modal-content > .reveal-cta {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--space-3xl);
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
}

/* ========================================
   Globe - Canvas-based Hero Visual
   ======================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 500px;
    height: 500px;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: drop-shadow(0 0 35px var(--color-primary-glow));
    position: relative;
    z-index: 2;
}

/* Persistent orbit path around globe */
.globe-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.globe-orbit-path {
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-navy);
    border-radius: 50%;
    opacity: 0.2;
}

.globe-orbit-moon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 50%, #64748b 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 12px rgba(100, 116, 139, 0.5),
        0 0 25px rgba(148, 163, 184, 0.3),
        inset -4px -4px 8px rgba(0, 0, 0, 0.2),
        inset 4px 4px 8px rgba(255, 255, 255, 0.5);
    animation: moonOrbit 90s linear infinite;
}

@keyframes moonOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(290px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(290px) rotate(-360deg); }
}

/* Globe country labels - flag only, no pill background */
.globe-label {
    position: absolute;
    transform: translate(-50%, -100%);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    color: var(--color-navy);
    font-size: 0.70rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: none;
    z-index: 10;
    user-select: none;
}

/* Line connecting flag to pin */
.globe-label::after {
    content: '';
    width: 0px;
    height: 10px;
    background: linear-gradient(to bottom, rgba(13, 148, 136, 0.6), rgba(13, 148, 136, 0.2));
    margin-top: 0px;
}

.globe-label:hover {
    background: transparent;
    color: var(--color-teal);
    transform: translate(-50%, -110%) scale(1.1);
    box-shadow: none;
}

.globe-label.active {
    background: transparent;
    color: white;
    transform: translate(-50%, -110%) scale(1.15);
    box-shadow: none;
}

/* Flag images in globe labels */
.globe-flag {
    width: 44px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.globe-flag.nepal-flag {
    object-fit: contain;
    width: 38px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.globe-label-nepal {
    cursor: default;
    border: none;
    background: transparent;
}

.globe-label-nepal:hover {
    transform: translate(-50%, -130%);
    background: transparent;
}

/* Globe pins */
.globe-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
    z-index: 3; /* Above canvas (z-index: 2) */
}

.globe-pin-nepal {
    background: var(--color-teal);
    box-shadow: 0 0 15px rgba(13, 148, 136, 0.5);
    width: 12px;
    height: 12px;
}

/* Hide globe pins during reveal */
.globe-container.destination-active .globe-pin {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all var(--transition-base);
}

/* ========================================
   Radial Destination Reveal (Creative Globe Info)
   ======================================== */
.destination-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.destination-reveal.active {
    pointer-events: auto;
}

/* Central flag burst effect */
.reveal-flag-burst {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(10, 22, 40, 0.5),
        0 10px 40px rgba(10, 22, 40, 0.3);
    z-index: 20;
}

.destination-reveal.active .reveal-flag-burst {
    transform: translate(-50%, -50%) scale(1);
}

.flag-burst-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: flagPulse 2s ease-in-out infinite;
}

@keyframes flagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Country name with arc styling */
/* Country name with dramatic rise animation from behind globe */
.reveal-country-name {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    transition: all 2s var(--transition-smooth);
    text-align: center;
    z-index: 1; /* Behind the canvas (z-index: 2) */
    pointer-events: none;
}

/* Early reveal triggered during flight */
.reveal-country-name.revealed,
.destination-reveal.active .reveal-country-name {
    transform: translateX(-50%) translateY(-182%);
    opacity: 1;
}

.country-name-text {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 700;
    color: var(--color-navy);
    text-shadow: 
        0 4px 20px rgba(255, 255, 255, 0.9),
        0 8px 40px rgba(10, 22, 40, 0.2);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

/* Orbiting highlight badges */
.reveal-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 50;
}

/* Orbit path circle - thin line showing the orbit track */
.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(13, 148, 136, 0.12);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s; /* Intentionally slow with delay for reveal effect */
    pointer-events: none;
}

.destination-reveal.active .orbit-path {
    opacity: 0.6;
}

.orbit-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0; /* Prevent any text from rendering at badge level */
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
}

/* SVG Rocket */
.svg-rocket {
    width: 18px;
    height: auto;
    color: #334155;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Wire/thread from rocket body to card - extends behind and outward */
.rocket-wire {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 90px;
    background: linear-gradient(to bottom, 
        rgba(100, 116, 139, 0.8) 0%,
        rgba(100, 116, 139, 0.3) 100%
    );
    transform-origin: top center;
    /* Wire points backward and outward from rocket */
    transform: translate(-50%, 0) rotate(40deg);
}

/* Trailing card attached to wire - positioned at wire endpoint */
.rocket-card {
    position: absolute;
    /* Position at bottom of wire (the wire's endpoint) */
    bottom: 0;
    left: 50%;
    transform-origin: center center;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    padding: 6px 12px;
    border-radius: 14px;
    box-shadow: 
        0 2px 8px rgba(10, 22, 40, 0.15),
        0 1px 2px rgba(10, 22, 40, 0.1);
    white-space: nowrap;
    pointer-events: none;
}

/* Only apply backdrop-filter on devices that support hover (typically desktop) */
@media (hover: hover) {
    .rocket-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* Card counter-rotation to stay perfectly upright - only when reveal is active */
.destination-reveal.active .badge-1 .rocket-card {
    animation: cardUpright1 30s linear infinite;
}
.destination-reveal.active .badge-2 .rocket-card {
    animation: cardUpright2 35s linear infinite;
}
.destination-reveal.active .badge-3 .rocket-card {
    animation: cardUpright3 40s linear infinite;
}

/* Counter-rotate to stay horizontal - same technique as orbitFlat */
/* Adjusted by -40deg total to fix initial tilt */
@keyframes cardUpright1 {
    0% { transform: translate(-50%, 50%) rotate(140deg); }
    100% { transform: translate(-50%, 50%) rotate(-220deg); }
}

@keyframes cardUpright2 {
    0% { transform: translate(-50%, 50%) rotate(20deg); }
    100% { transform: translate(-50%, 50%) rotate(-340deg); }
}

@keyframes cardUpright3 {
    0% { transform: translate(-50%, 50%) rotate(-100deg); }
    100% { transform: translate(-50%, 50%) rotate(-460deg); }
}

.rocket-card-flag {
    font-size: 1rem;
    line-height: 1;
}

.rocket-card-content {
    display: flex;
    flex-direction: column;
}

.rocket-card-highlight {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--color-charcoal);
    font-weight: 500;
    line-height: 1.2;
}

.destination-reveal.active .orbit-badge {
    opacity: 1;
}

/* Rockets orbit like the moon */
.destination-reveal.active .orbit-badge.badge-1 {
    animation: rocketOrbit1 30s linear infinite;
}

.destination-reveal.active .orbit-badge.badge-2 {
    animation: rocketOrbit2 35s linear infinite;
}

.destination-reveal.active .orbit-badge.badge-3 {
    animation: rocketOrbit3 40s linear infinite;
}

/* Simple orbit - rockets move on the 288px radius path and face direction of travel */
/* SVG rocket points up (0°/-90°), add 180° to face clockwise tangent */
@keyframes rocketOrbit1 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(288px) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(288px) rotate(180deg); }
}

@keyframes rocketOrbit2 {
    0% { transform: translate(-50%, -50%) rotate(120deg) translateX(288px) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(480deg) translateX(288px) rotate(180deg); }
}

@keyframes rocketOrbit3 {
    0% { transform: translate(-50%, -50%) rotate(240deg) translateX(288px) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(600deg) translateX(288px) rotate(180deg); }
}

/* Connecting beam from destination point */
.reveal-beam {
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-teal), transparent);
    border-radius: 3px;
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform var(--transition-slow);
    z-index: 10;
}

.destination-reveal.active .reveal-beam {
    transform: scaleY(1);
}

/* Description card alongside beam */
.reveal-description {
    position: absolute;
    left: 15px;
    top: 10px;
    width: 220px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-slow);
    background: rgba(255, 255, 255, 1);
    padding: 16px;
    padding-top: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Only apply backdrop-filter on devices that support hover (typically desktop) */
@media (hover: hover) {
    .reveal-description {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.destination-reveal.active .reveal-description {
    opacity: 1;
    transform: translateX(0);
}

.reveal-desc-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: 12px;
}

.reveal-bullets {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reveal-bullets li {
    font-size: 0.75rem;
    color: var(--color-slate);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.reveal-bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.reveal-footer {
    padding-top: 10px;
    border-top: 1px solid var(--color-silver);
    font-size: 0.7rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.reveal-footer::before {
    content: '💡';
    font-size: 0.75rem;
}

.reveal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: var(--color-off-white);
    border-radius: 50%;
    font-size: 1.125rem;
    color: var(--color-slate);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
    z-index: 5;
}

.reveal-close:hover {
    background: var(--color-silver);
    color: var(--color-navy);
    transform: rotate(90deg);
}

/* CTA button at bottom */
.reveal-cta {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all var(--transition-slow) 0.5s; /* Slow with delay for staggered reveal */
    box-shadow: 0 4px 20px rgba(82, 109, 255, 0.3);
    overflow: hidden;
    z-index: 25;
}

.destination-reveal.active .reveal-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.reveal-cta:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 30px rgba(82, 109, 255, 0.4);
}

/* Hide ALL country labels during reveal (info shown in radial card) */
.globe-container.destination-active .globe-label {
    opacity: 0;
    filter: blur(4px);
    transition: opacity var(--transition-base), filter var(--transition-base);
    pointer-events: none;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    flex-shrink: 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-slate);
}

/* ========================================
   Destinations Section
   ======================================== */
.destinations {
    background: transparent;
}

/* Wider container for destinations to fit 3 cards */
.destinations .container {
    max-width: 1220px;
}

/* Destinations Progress Indicator */
.destinations-progress {
    margin-top: var(--space-xl);
    max-width: 104px;
    margin-left: auto;
    margin-right: auto;
}

.destinations-progress-track {
    position: relative;
    height: 6px;
    background: var(--color-navy-light);
    border-radius: 3px;
}

.destinations-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Destination Dot Indicators */
.destination-dots {
    display: none;
}

.destination-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: var(--color-navy-light);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.destination-dot.active {
    background: var(--color-teal);
    width: 24px;
    border-radius: 3px;
}

/* ========================================
   Shared Carousel Components
   ======================================== */

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Shared Carousel Track */
.carousel-track {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-lg);
    padding: var(--space-sm) 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    min-height: 0;
    align-items: stretch;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Shared Carousel Card Base */
.carousel-card {
    flex: 0 0 340px;
    min-width: 300px;
    height: 500px;
    scroll-snap-align: center;
    position: relative;
    background: var(--color-white);
    border: 2px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-teal);
    box-shadow: 
        0 8px 30px rgba(10, 22, 40, 0.1),
        0 0 0 3px rgba(82, 109, 255, 0.1);
}

/* Shared Carousel Nav Button */

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-teal);
    background: var(--color-white);
    color: var(--color-slate);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(82, 109, 255, 0.1);
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-teal);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(82, 109, 255, 0.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled,
.carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* Destinations grid now uses .carousel-track class */

/* Carousel swipe hint (mobile only) */
.carousel-swipe-hint {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    animation: swipeHintPulse 2.5s ease-in-out infinite;
    position: absolute;
    top: -20px;
    right: 0;
    z-index: 2;
}

/* Carousel dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-lg);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-silver);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-teal);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   Destination Card - Specific Styles
   ======================================== */
.destination-card {
    --flag-color-1: var(--color-primary);
    --flag-color-2: var(--color-accent-cyan);
    
    /* Override base for image background */
    background: var(--color-silver);
}

/* Card Image - fills entire card */
.destination-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-image {
    transform: translateY(-25%) scale(1.05);
}

/* Card Body - wrapper that clips sliding content */
.destination-body {
    position: absolute;
    inset: auto 0 0;
    padding-top: 40px;
    overflow: hidden;
}

/* Card Content - slides up on hover */
.destination-content {
    padding: 46px 28px 28px;
    background: #fff;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    transform: translateY(calc(100% - 30px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-content {
    transform: translateY(0);
}

/* Top border line with flag gradient animation */
.destination-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-navy);
}

.destination-card:hover .destination-content::before {
    background: linear-gradient(90deg, var(--flag-color-1) 50%, var(--flag-color-2) 50%);
    animation: destinationSweepReveal 0.8s ease forwards;
}

@keyframes destinationSweepReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0); }
}

/* Flag Box - country identifier */
.destination-flag {
    position: absolute;
    top: -30px;
    left: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.1);
    z-index: 5;
    transition: box-shadow 0.3s;
}

/* Border layer */
.destination-flag::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--color-navy);
    border-radius: 13px;
    z-index: -2;
    transition: background 0.4s;
}

/* Background layer */
.destination-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-white);
    border-radius: 10px;
    z-index: -1;
}

.destination-card:hover .destination-flag::before {
    background: linear-gradient(90deg, var(--flag-color-1) 50%, var(--flag-color-2) 50%);
}

.destination-card:hover .destination-flag {
    box-shadow: 0 4px 20px rgba(82, 109, 255, 0.25);
}

.destination-flag img {
    width: 32px;
    height: 22px;
    border-radius: 3px;
}

.destination-flag span {
    font: 700 0.95rem var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-navy);
}

/* Card Content Elements */
.destination-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: rgba(82, 109, 255, 0.1);
    border-radius: var(--radius-full);
}

.destination-desc {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-slate);
}

.destination-highlights {
    list-style: none;
    margin-bottom: 16px;
}

.destination-highlights li {
    padding: 3px 0;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

/* Destination CTA Button */
.destination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font: 500 0.875rem var(--font-body);
    text-decoration: none;
    border-radius: var(--radius-md);
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
    box-shadow: 0 4px 14px rgba(82, 109, 255, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.destination-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(82, 109, 255, 0.4);
}

.destination-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(82, 109, 255, 0.3);
}

/* Active card state (mobile swipe) - mirrors hover */
.destination-card.active-card {
    transform: translateY(-6px);
    border-color: var(--color-teal);
    box-shadow: 
        0 8px 30px rgba(10, 22, 40, 0.1),
        0 0 0 3px rgba(82, 109, 255, 0.1);
}

.destination-card.active-card .destination-image {
    transform: translateY(-25%) scale(1.05);
}

.destination-card.active-card .destination-content {
    transform: translateY(0);
}

.destination-card.active-card .destination-content::before {
    background: linear-gradient(90deg, var(--flag-color-1) 50%, var(--flag-color-2) 50%);
    animation: destinationSweepReveal 0.8s ease forwards;
}

.destination-card.active-card .destination-flag::before {
    background: linear-gradient(90deg, var(--flag-color-1) 50%, var(--flag-color-2) 50%);
}

.destination-card.active-card .destination-flag {
    box-shadow: 0 4px 20px rgba(82, 109, 255, 0.25);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--color-off-white);
    min-height: calc(100vh - 60px);
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    box-sizing: border-box;
}

/* Wider container for services to fit 3 cards */
.services .container {
    max-width: 1220px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-lg);
    padding: var(--space-sm) 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    flex: 1;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-silver);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card[data-hover-lift]:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-teal);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.service-desc {
    color: var(--color-slate);
    margin-bottom: var(--space-lg);
}

.service-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
    font-size: 0.9375rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--color-teal);
    border-radius: 50%;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text p {
    color: var(--color-slate);
    margin-bottom: var(--space-md);
}

.about-text strong {
    color: var(--color-navy);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: inline;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-slate);
    margin-top: var(--space-xs);
}

/* About Visual */
.about-visual {
    display: flex;
    justify-content: center;
}

.visual-block {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--color-navy);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.world-map-pattern {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand icon as subtle background */
.visual-brand-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
    z-index: 1;
}

.visual-brand-icon svg {
    width: 280px;
    height: 280px;
}

.map-nepal {
    font-size: 4rem;
    animation: pulse-scale 2s ease-in-out infinite;
    z-index: 3;
    position: relative;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.map-connections {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Country flag dots */
.map-flag-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    animation: flagFloat 3s ease-in-out infinite;
}

.map-flag-dot:nth-child(1) { animation-delay: 0s; }
.map-flag-dot:nth-child(2) { animation-delay: 0.75s; }
.map-flag-dot:nth-child(3) { animation-delay: 1.5s; }
.map-flag-dot:nth-child(4) { animation-delay: 2.25s; }

.orbit-flag {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base);
}

.map-flag-dot:hover .orbit-flag {
    transform: scale(1.2);
}

@keyframes flagFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0); 
        opacity: 0.9;
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-8px); 
        opacity: 1;
    }
}

/* Bouncing brand icon (DVD screensaver style) */
.bouncing-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 1;
    opacity: 0.7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

/* ========================================
   Journey Timeline (inside Services section)
   ======================================== */

/* ---- Journey Cards Carousel ---- */
.journey-carousel {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.journey-controls {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

/* Journey flight-path */
.journey-path {
    position: relative;
    padding: var(--space-lg) var(--space-xl) var(--space-xs);
}

/* Dashed track line — anchored to node center */
.journey-path-track {
    position: absolute;
    top: 0;
    left: var(--space-xl);
    right: var(--space-xl);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-silver) 0px,
        var(--color-silver) 6px,
        transparent 6px,
        transparent 12px
    );
    /* Vertical position is set by JS to match node center */
}

/* Filled portion of the track */
.journey-path-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    max-width: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Milestone nodes row */
.journey-milestones {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Each milestone button */
.journey-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.milestone-node {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-silver);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Visited state (steps already passed) */
.journey-milestone.visited .milestone-node {
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(82, 109, 255, 0.15);
}

/* Active state (current step) */
.journey-milestone.active .milestone-node {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(82, 109, 255, 0.2);
    transform: scale(1.3);
}

/* Checkmark inside visited nodes */
.journey-milestone.visited .milestone-node::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: var(--color-white);
    border-radius: 50%;
}

/* Active node inner pulse */
.journey-milestone.active .milestone-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: milestonePulse 2s ease-in-out infinite;
}

@keyframes milestonePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0.5; }
}

.milestone-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.journey-milestone.active .milestone-label,
.journey-milestone.visited .milestone-label {
    color: var(--color-primary);
}

/* Traveling plane — sits on the path line, hidden at milestones, visible when moving */
.journey-plane {
    position: absolute;
    top: 0;
    left: var(--space-xl);
    transform: translateX(-50%) translateY(-50%);
    color: var(--color-primary);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
    z-index: 3;
    filter: drop-shadow(0 1px 3px rgba(82, 109, 255, 0.35));
    pointer-events: none;
    opacity: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show plane while it's flying between milestones */
.journey-plane.flying {
    opacity: 1;
}

/* Flip plane to face left when moving backwards */
.journey-plane.facing-left {
    transform: translateX(-50%) translateY(-50%) scaleX(-1);
}

.journey-swipe-hint {
    display: none; /* Shown on mobile only */
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    animation: swipeHintPulse 2.5s ease-in-out infinite;
}

@keyframes swipeHintPulse {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}

/* Slider: prev-btn | track | next-btn */
.journey-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    min-height: 0;
}

/* Journey nav buttons now use .carousel-btn class */

.carousel-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Journey cards track now uses .carousel-track class */

/* ========================================
   Journey Card - Image Reveal Design
   (Matches destination card pattern)
   ======================================== */
.journey-card {
    /* Override base for image background */
    background: var(--color-silver);
}

/* Journey Image - fills entire card */
.journey-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.journey-card:hover .journey-image {
    transform: translateY(-100px) scale(1.05);
}

.journey-card:hover .journey-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.25) 0%,
        rgba(10, 22, 40, 0.35) 50%,
        rgba(10, 22, 40, 0.5) 100%
    );
}

/* Light overlay for readability */
.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.1) 0%,
        rgba(10, 22, 40, 0.2) 50%,
        rgba(10, 22, 40, 0.35) 100%
    );
    border-radius: 15px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Title on image */
.journey-header-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    text-align: center;
    padding: 0 30px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 90px;
}

/* Card Body - wrapper that clips sliding content */
.journey-body {
    position: absolute;
    inset: auto 0 0;
    padding-top: 40px;
    overflow: hidden;
}

/* Card Content - slides up on hover */
.journey-content {
    padding: 46px 28px 28px;
    background: var(--color-white);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    transform: translateY(calc(100% - 30px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-card:hover .journey-content {
    transform: translateY(0);
}

/* Top border line with teal animation */
.journey-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-navy);
}

.journey-card:hover .journey-content::before {
    background: var(--color-teal);
    animation: journeySweepReveal 0.8s ease forwards;
}

@keyframes journeySweepReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0); }
}

/* Step badge - like destination flag */
.journey-badge {
    position: absolute;
    top: -22px;
    left: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.1);
    z-index: 5;
    transition: box-shadow 0.3s;
}

/* Border layer */
.journey-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--color-navy);
    border-radius: 13px;
    z-index: -2;
    transition: background 0.4s;
}

/* Background layer */
.journey-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-white);
    border-radius: 10px;
    z-index: -1;
}

.journey-badge svg {
    color: var(--color-teal);
}

.journey-badge span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
}

.journey-card:hover .journey-badge::before {
    background: var(--color-teal);
}

.journey-card:hover .journey-badge {
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.25);
}

/* Description text */
.journey-desc {
    font-size: 0.9375rem;
    color: var(--color-slate);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* Service list - matches destination-highlights */
.journey-services {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.journey-services li {
    padding: 3px 0;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

/* Active card indicator */
.journey-card.active-card {
    transform: translateY(-6px);
    border-color: var(--color-teal);
    box-shadow: 
        0 8px 30px rgba(10, 22, 40, 0.1),
        0 0 0 3px rgba(82, 109, 255, 0.1);
}

.journey-card.active-card .journey-image {
    transform: translateY(-100px) scale(1.05);
}

.journey-card.active-card .journey-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.25) 0%,
        rgba(10, 22, 40, 0.35) 50%,
        rgba(10, 22, 40, 0.5) 100%
    );
}

.journey-card.active-card .journey-content {
    transform: translateY(0);
}

.journey-card.active-card .journey-content::before {
    background: var(--color-teal);
    animation: journeySweepReveal 0.8s ease forwards;
}

.journey-card.active-card .journey-badge::before {
    background: var(--color-teal);
}

.journey-card.active-card .journey-badge {
    box-shadow: 0 4px 20px rgba(82, 109, 255, 0.25);
}

/* Dot indicators */
.journey-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-xl);
}

.journey-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: var(--color-navy-light);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.journey-dot.active {
    background: var(--color-teal);
    width: 24px;
    border-radius: 3px;
}

/* ========================================
   Student Assessment Section
   ======================================== */
.assessment {
    background: var(--color-off-white);
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

/* Pages container — initially shows only page 1 */
.assess-pages {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Individual page — each fills the full section */
.assess-page {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Page 1: profile page uses the original section layout */
.assess-page-profile {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-md);
    overflow: hidden;
}

.assess-page-profile .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Result pages: centered content */
.assess-page-result {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-off-white);
}

.assess-page-result .assess-page-inner {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-3xl);
    box-sizing: border-box;
}

/* After reveal: enable horizontal scrolling with snap */
.assess-revealed .assess-pages {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.assess-revealed .assess-pages::-webkit-scrollbar {
    display: none;
}

.assess-revealed .assess-page {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Dots: fixed at bottom of section */
.assess-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.assess-revealed .assess-dots {
    opacity: 1;
    visibility: visible;
}

/* Swipe / Navigate hint */
.assess-swipe-hint {
    position: absolute;
    bottom: calc(var(--space-lg) + 48px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.assess-swipe-hint.visible {
    opacity: 1;
    visibility: visible;
}

.assess-swipe-hint.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
}

.assess-swipe-hint-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-slate);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    animation: hintPulse 2s ease-in-out infinite;
}

.assess-swipe-hint-text svg {
    color: var(--color-teal);
    flex-shrink: 0;
    animation: hintArrow 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
    50% { box-shadow: 0 2px 20px rgba(13, 148, 136, 0.12); }
}

@keyframes hintArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Prev / Next navigation buttons (desktop only) */
.assess-page-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(10, 22, 40, 0.12);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.assess-page-nav:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.08);
}

.assess-page-nav:active {
    transform: translateY(-50%) scale(0.96);
}

.assess-page-nav:disabled {
    opacity: 0 !important;
    cursor: default;
    pointer-events: none;
}

.assess-page-prev {
    left: max(var(--space-lg), calc((100% - 1200px) / 2 + var(--space-lg)));
}

.assess-page-next {
    right: max(var(--space-lg), calc((100% - 1200px) / 2 + var(--space-lg)));
}

.assess-revealed .assess-page-nav {
    opacity: 1;
    visibility: visible;
}

.assess-revealed .assess-page-nav:disabled {
    opacity: 0.35 !important;
    visibility: visible;
}

.assessment .section-header {
    margin-bottom: var(--space-md);
    transition: margin 0.4s ease;
}

/* After results revealed: collapse subtitle & tag, shift everything up */
.assessment.assess-revealed .section-header {
    margin-bottom: var(--space-xs);
}

.assessment .section-subtitle,
.assessment .section-tag {
    overflow: hidden;
    max-height: 60px;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.assessment.assess-revealed .section-subtitle,
.assessment.assess-revealed .section-tag {
    max-height: 0;
    opacity: 0;
    margin: 0;
}

.assessment.assess-revealed .section-title {
    margin-bottom: 0;
}

/* Country Selector */
.assess-country-wrapper {
    position: relative;
    margin-bottom: var(--space-md);
    z-index: 5;
}

.assess-country-selector {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--space-sm) 0;
}

.assess-country-selector::-webkit-scrollbar {
    display: none;
}

.assess-country-card {
    flex: 0 0 110px;
    padding: var(--space-md) var(--space-md);
    background: var(--color-white);
    border: 2px solid var(--color-silver);
    border-radius: var(--radius-xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.assess-country-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.assess-country-card.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(82, 109, 255, 0.05) 0%, rgba(60, 156, 255, 0.05) 100%);
    box-shadow: 0 4px 14px rgba(82, 109, 255, 0.15);
}

.assess-country-flag {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin: 0 auto var(--space-sm);
    display: block;
    box-shadow: var(--shadow-sm);
}

.assess-country-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
}

.assess-country-card.disabled {
    opacity: 0.45;
    cursor: pointer;
    position: relative;
}

.assess-country-card.disabled:hover {
    transform: none;
    border-color: var(--color-silver);
    box-shadow: var(--shadow-sm);
    opacity: 0.55;
}

/* Coming Soon tooltip – fixed position, appended to body */
.assess-country-tooltip {
    position: fixed;
    z-index: 9999;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.assess-country-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--color-navy);
}

.assess-country-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.assess-more-icon {
    width: 48px;
    height: 36px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-slate);
    background: linear-gradient(135deg, var(--color-off-white), var(--color-silver));
    border-radius: var(--radius-sm);
}

/* ---- Result Page Styles ---- */
.assess-page-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.assess-page-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, rgba(82, 109, 255, 0.1) 0%, rgba(60, 156, 255, 0.1) 100%);
    color: var(--color-primary);
}

.assess-page-tag.alt {
    background: var(--color-off-white);
    color: var(--color-slate);
    border: 1px solid var(--color-silver);
}

.assess-page-tag.opportunity {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(82, 109, 255, 0.1) 100%);
    color: var(--color-teal);
}

.assess-page-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.assess-page-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.assess-page-desc {
    font-size: 1rem;
    color: var(--color-slate);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.assess-page-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
}

.assess-page-highlights li {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    padding: 8px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.assess-page-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.assess-page-stat {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-silver);
}

.assess-page-stat.highlight {
    background: linear-gradient(135deg, rgba(82, 109, 255, 0.04), rgba(60, 156, 255, 0.04));
    border-color: rgba(82, 109, 255, 0.15);
}

.assess-page-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.assess-page-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assess-page-cta {
    display: block;
    text-align: center;
    width: 100%;
}

/* TOPIK levels on result page */
.assess-page-levels {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.assess-page-level {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-silver);
    font-size: 0.9rem;
    color: var(--color-charcoal);
    line-height: 1.5;
}

.assess-page-level-badge {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(82, 109, 255, 0.1));
    color: var(--color-teal);
}

.assess-page-topik-cta {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(82, 109, 255, 0.06));
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    font-size: 0.95rem;
    color: var(--color-charcoal);
}

/* ---- Assessment Card Carousel (locked state on page 1) ---- */
.assess-carousel {
    position: relative;
    max-width: 100%;
    overflow: clip;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Locked state: only profile card visible, centered, no scrolling */
.assess-locked .carousel-btn {
    display: none;
}

.assess-locked .assess-cards-track {
    justify-content: center;
    overflow: hidden;
    scroll-snap-type: none;
}

.assess-locked .assess-card {
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    min-height: auto;
}

/* Assessment cards use the shared .carousel-wrapper + .carousel-track */
.assess-cards-track {
    padding: var(--space-sm) 0;
    gap: var(--space-lg);
    align-items: stretch;
}

/* Individual Assessment Card */
.assess-card {
    flex: 0 0 360px;
    min-width: 300px;
    height: auto;
    min-height: 420px;
    scroll-snap-align: center;
    position: relative;
    background: var(--color-white);
    border: 2px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.assess-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-teal);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12), 0 0 0 3px rgba(82, 109, 255, 0.08);
}

.assess-card-inner {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.assess-card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.assess-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.assess-card-desc {
    font-size: 0.9rem;
    color: var(--color-slate);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

/* Card Badges */
.assess-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    width: fit-content;
}

.assess-card-badge.best {
    background: linear-gradient(135deg, rgba(82, 109, 255, 0.1) 0%, rgba(60, 156, 255, 0.1) 100%);
    color: var(--color-primary);
}

.assess-card-badge.alt {
    background: var(--color-off-white);
    color: var(--color-slate);
    border: 1px solid var(--color-silver);
}

.assess-card-badge.opportunity {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(82, 109, 255, 0.1) 100%);
    color: var(--color-teal);
}

/* Card visa label */
.assess-card-visa {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

/* Profile Strength Card */
.assess-card-strength {
    border-color: rgba(82, 109, 255, 0.15);
    background: linear-gradient(160deg, var(--color-white) 60%, rgba(82, 109, 255, 0.03) 100%);
}

/* Filled / revealed profile card — compact content */
.assess-card-strength:not(.assess-card-empty) {
    min-height: auto;
    height: auto;
}

.assess-card-strength:not(.assess-card-empty) .assess-card-inner {
    padding: var(--space-lg) var(--space-xl);
}

.assess-card-strength:not(.assess-card-empty) .assess-card-score {
    font-size: 2.2rem;
    margin-bottom: 2px;
}

.assess-card-strength:not(.assess-card-empty) .assess-card-score-label {
    margin-bottom: var(--space-sm);
}

.assess-card-strength:not(.assess-card-empty) .assess-card-bar {
    margin-bottom: var(--space-sm);
}

.assess-card-strength:not(.assess-card-empty) .assess-card-chips {
    margin-bottom: var(--space-md);
    gap: 5px;
}

.assess-card-strength:not(.assess-card-empty) .assess-chip {
    font-size: 0.78rem;
    padding: 5px 12px;
}

.assess-card-strength:not(.assess-card-empty) .assess-card-icon {
    margin-bottom: var(--space-xs);
}

/* Empty / unfilled profile card */
.assess-card-empty .assess-card-inner {
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-2xl);
}

.assess-card-empty .assess-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.assess-card-empty-desc {
    font-size: 0.9rem;
    color: var(--color-slate);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.assess-card-empty .assess-profile-btn {
    font-size: 0.95rem;
    padding: 12px 26px;
}

/* Filled content wrapper */
.assess-card-filled-content {
    width: 100%;
}

.assess-card-score {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.assess-card-score-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
}

.assess-card-bar {
    margin-bottom: var(--space-lg);
}

.assess-strength-bar-track {
    background: var(--color-off-white);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.assess-strength-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    border-radius: 5px;
    width: 72%;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.assess-card-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--space-xl);
}

.assess-chip {
    font-size: 0.82rem;
    color: var(--color-charcoal);
    padding: 8px 14px;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-silver);
    display: block;
}

.assess-profile-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Recommended Card */
.assess-card-recommended {
    border-color: var(--color-primary);
    background: linear-gradient(160deg, var(--color-white) 50%, rgba(82, 109, 255, 0.04) 100%);
    box-shadow: 0 6px 30px rgba(82, 109, 255, 0.1), 0 0 0 1px rgba(82, 109, 255, 0.08);
}

.assess-card-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-lg);
    padding: 0;
}

.assess-card-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-charcoal);
    padding: 6px 12px;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-silver);
}

/* Card Stats Grid */
.assess-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-silver);
    border-bottom: 1px solid var(--color-silver);
    margin-bottom: var(--space-lg);
}

.assess-card-stat {
    text-align: center;
    padding: var(--space-sm) 4px;
}

.assess-card-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.assess-card-stat-label {
    font-size: 0.65rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assess-card-stat.highlight .assess-card-stat-value {
    color: var(--color-primary);
}

.assess-card-cta {
    margin-top: auto;
    text-align: center;
    font-size: 0.9rem;
}

/* Opportunity Card */
.assess-card-opportunity {
    border-color: rgba(13, 148, 136, 0.2);
    background: linear-gradient(160deg, var(--color-white) 50%, rgba(13, 148, 136, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.assess-card-opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-primary));
}

.assess-card-levels {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.assess-card-level {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-charcoal);
    padding: var(--space-md);
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-silver);
    line-height: 1.5;
}

.assess-card-level-badge {
    flex-shrink: 0;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.7rem;
    white-space: nowrap;
}

.assess-card-topik-cta {
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(82, 109, 255, 0.06) 0%, rgba(13, 148, 136, 0.06) 100%);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(82, 109, 255, 0.2);
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

/* ---- Assessment Dot Indicators ---- */
.assess-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-xl);
}

.assess-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: var(--color-navy-light);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.assess-dot.active {
    background: var(--color-teal);
    width: 24px;
    border-radius: 3px;
}

/* ========================================
   Assessment Profile Modal
   ======================================== */
.assess-modal {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0 var(--space-4xl) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.assess-modal.open {
    opacity: 1;
    visibility: visible;
}

.assess-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.assess-modal-content {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    width: 90%;
    max-width: 520px;
    max-height: calc(100vh - 60px - 160px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(10, 22, 40, 0.25);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.assess-modal.open .assess-modal-content {
    transform: translateY(0) scale(1);
}

.assess-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-2xl);
    border-bottom: 1px solid var(--color-silver);
    flex-shrink: 0;
}

.assess-modal-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.assess-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-silver);
    background: var(--color-off-white);
    color: var(--color-slate);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.assess-modal-close:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.assess-modal-body {
    padding: var(--space-2xl) var(--space-2xl);
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--color-silver) transparent;
}

.assess-modal-body::-webkit-scrollbar {
    width: 6px;
}

.assess-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.assess-modal-body::-webkit-scrollbar-thumb {
    background: var(--color-silver);
    border-radius: 3px;
}

.assess-modal-footer {
    padding: var(--space-lg) var(--space-2xl);
    border-top: 1px solid var(--color-silver);
    flex-shrink: 0;
}

/* Form Elements (inside modal) */
.assess-form-group {
    margin-bottom: var(--space-lg);
}

.assess-form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-slate);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assess-form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-off-white);
    border: 1px solid var(--color-silver);
    border-radius: var(--radius-md);
    color: var(--color-navy);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.assess-form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(82, 109, 255, 0.1);
}

/* Range Slider */
.assess-range-container { position: relative; padding-top: 4px; }

.assess-range-value {
    position: absolute;
    right: 0;
    top: -20px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.assess-range-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--color-silver);
    border-radius: 3px;
    outline: none;
}

.assess-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(82, 109, 255, 0.3);
    transition: transform var(--transition-fast);
}

.assess-range-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

/* Toggle Buttons */
.assess-toggle-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.assess-toggle-option {
    flex: 1;
    min-width: 48px;
    padding: 10px 8px;
    background: var(--color-off-white);
    border: 1px solid var(--color-silver);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate);
}

.assess-toggle-option:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.assess-toggle-option.active {
    background: linear-gradient(135deg, rgba(82, 109, 255, 0.08) 0%, rgba(60, 156, 255, 0.08) 100%);
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
}

/* Radio Options */
.assess-radio-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.assess-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-slate);
}

.assess-radio-option input { display: none; }

.assess-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-silver);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-fast);
}

.assess-radio-option input:checked + .assess-radio-circle {
    border-color: var(--color-primary);
}

.assess-radio-option input:checked + .assess-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.assess-form-divider {
    border: none;
    border-top: 1px solid var(--color-silver);
    margin: var(--space-lg) 0;
}

.assess-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: var(--color-off-white);
}

.testimonials-carousel {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--color-off-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-silver);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-destination {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.dest-flag {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.dest-flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.map-flag {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.map-flag.nepal-flag {
    width: 32px;
}

.footer-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
    vertical-align: middle;
    margin-right: 4px;
}

.dest-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-teal);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.testimonial-content p {
    font-size: 1.0625rem;
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-navy);
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-slate);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--color-navy);
    border-radius: var(--radius-xl);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-teal-light);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--color-slate);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--color-navy);
    color: var(--color-white);
}

.contact .section-tag {
    color: var(--color-primary-light);
}

.contact .section-title {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-content .section-tag,
.contact-content .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--color-gray-light);
    margin-bottom: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-gray-light);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-white);
}

/* Contact Destinations */
.contact-destinations {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-navy-light);
}

.dest-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-sm);
}

.dest-flags {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.dest-flags img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform var(--transition-fast);
    cursor: default;
}

.dest-flags img:hover {
    transform: scale(1.2);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-charcoal);
    background: var(--color-off-white);
    border: 1px solid var(--color-silver);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: var(--space-md);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-off-white);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-silver);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-tagline {
    color: var(--color-slate);
    margin-top: var(--space-md);
}

/* (Removed: footer social strip was redundant with floating sidebar) */

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-slate);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--color-teal);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-silver);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.footer-location {
    margin-top: var(--space-sm);
}

/* ========================================
   Reveal Animations (Performance Optimized)
   ======================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-destinations {
        justify-content: center;
    }
    
    .globe-container {
        width: 420px;
        height: 420px;
    }
    
    .globe-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-content .section-tag,
    .about-content .section-title,
    .contact-content .section-tag,
    .contact-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .contact-destinations {
        text-align: center;
    }
    
    .dest-flags {
        justify-content: center;
    }
    
    .trust-bar {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .trust-divider {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        min-height: calc(100vh);
        max-height: calc(100vh);
        overflow: hidden;
        padding-top: calc(80px + var(--space-sm));
    }
    
    .hero-visual {
        display: none;
    }
    
    /* Mobile Floating Globe */
    .mobile-globe {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 16px;
        width: 56px;
        height: 56px;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.2s ease;
        pointer-events: none;
        cursor: pointer;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--color-navy) 0%, #1a2d4a 100%);
        box-shadow: 0 4px 20px rgba(10, 22, 40, 0.4);
        color: var(--color-teal);
    }
    
    .mobile-globe.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .mobile-globe:active {
        transform: scale(0.95);
    }
    
    .mobile-globe-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Globe Modal visible on mobile */
    .globe-modal {
        display: none;
    }
    
    .globe-modal.active {
        display: flex;
    }
    
    /* Mobile adjustments for destination cards */
    .destinations {
        height: auto;
        min-height: calc(100vh - 60px);
        padding: 30px var(--space-lg) 100px;
        display: flex;
        flex-direction: column;
    }

    .destinations .container {
        padding: 0;
        height: auto;
    }

    .destinations .section-header {
        margin-bottom: var(--space-lg);
    }

    .destinations .section-tag {
        margin-bottom: var(--space-sm);
    }

    .destinations .section-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
        margin-bottom: var(--space-sm);
    }

    .destinations .section-subtitle {
        font-size: 0.9rem;
    }

    .destinations-progress {
        display: none;
    }

    .destination-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 46px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .destination-dots.visible {
        opacity: 1;
        visibility: visible;
    }

    .destinations-grid .destination-card {
        flex: 0 0 85%;
        height: 450px;
        scroll-snap-align: center;
        min-width: 280px;
    }
    
    .destination-card:hover .destination-image {
        transform: translateY(-80px) scale(1.03);
    }
    
    .destination-content {
        padding: 40px 24px 24px;
    }
    
    /* Mobile adjustments for service cards */
    .services-grid .service-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
    }
    
    /* Hide carousel buttons on mobile - swipe instead */
    .carousel-btn {
        display: none;
    }
    
    .carousel-wrapper {
        gap: 0;
    }

    .carousel-swipe-hint {
        display: flex;
    }
    
    /* ---- Journey section mobile layout ---- */
    .services {
        height: auto;
        min-height: calc(100vh - 60px);
        padding: 30px var(--space-lg) 100px;
        display: flex;
        flex-direction: column;
    }

    .services .container {
        padding: 0;
        height: auto;
    }

    .services .section-header {
        margin-bottom: var(--space-lg);
    }

    .services .section-tag {
        margin-bottom: var(--space-sm);
    }

    .services .section-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
        margin-bottom: var(--space-sm);
    }

    .services .section-subtitle {
        font-size: 0.9rem;
    }

    .journey-carousel {
        max-width: 100%;
        flex: none;
    }

    .journey-slider {
        gap: 0;
        flex: none;
    }

    .carousel-track.journey-cards-track {
        padding: var(--space-sm) 0;
        gap: var(--space-lg);
        align-items: flex-start;
    }

    /* Mobile adjustments for journey cards */
    .journey-cards-track .journey-card {
        flex: 0 0 85%;
        height: 450px;
        scroll-snap-align: center;
        min-width: 280px;
    }

    .journey-card:hover .journey-image,
    .journey-card.active-card .journey-image {
        transform: translateY(-80px) scale(1.03);
    }

    .journey-header-title {
        font-size: 1.25rem;
        padding: 0 20px;
        margin-bottom: 70px;
    }

    .journey-content {
        padding: 40px 24px 24px;
    }

    .journey-dots {
        position: fixed;
        bottom: 46px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .journey-dots.visible {
        opacity: 1;
        visibility: visible;
    }

    .journey-badge {
        padding: 8px 14px;
        gap: 8px;
    }

    .journey-badge svg {
        width: 18px;
        height: 18px;
    }

    .journey-badge span {
        font-size: 0.7rem;
    }

    .journey-desc {
        font-size: 0.875rem;
        margin-bottom: 14px;
    }

    .journey-services {
        margin-bottom: 0;
    }

    .journey-services li {
        font-size: 0.8rem;
        padding: 3px 0;
    }

    /* ---- Assessment section mobile layout ---- */
    .assessment {
        height: calc(100vh - 60px);
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .assess-page-profile {
        padding: 20px var(--space-lg) 60px;
    }

    .assessment .container {
        padding: 0;
        height: 100%;
    }

    .assess-page-result .assess-page-inner {
        padding: var(--space-xl) var(--space-xl);
    }

    .assess-page-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .assessment .section-header {
        margin-bottom: var(--space-sm);
    }

    .assessment .section-tag {
        margin-bottom: var(--space-sm);
    }

    .assessment .section-title {
        font-size: clamp(1.8rem, 4vw, 2.75rem);
        margin-bottom: var(--space-sm);
    }

    .assessment .section-subtitle {
        font-size: 0.9rem;
    }

    .assess-country-wrapper {
        margin-bottom: var(--space-md);
    }

    .assess-country-selector {
        justify-content: flex-start;
        padding: var(--space-sm) var(--space-sm);
    }

    .assess-country-card {
        flex: 0 0 80px;
        padding: var(--space-sm) var(--space-sm);
    }

    .assess-country-flag {
        width: 36px;
        height: 27px;
    }

    .assess-country-name {
        font-size: 0.75rem;
    }

    .assess-cards-track .assess-card {
        flex: 0 0 85%;
        min-width: 280px;
        min-height: 380px;
        scroll-snap-align: center;
    }

    /* Locked: single centered card on mobile too */
    .assess-locked .assess-cards-track .assess-card {
        flex: 0 0 auto;
        width: 85%;
        max-width: 420px;
    }

    .assess-card-inner {
        padding: var(--space-xl);
    }

    .assess-card-score {
        font-size: 2.5rem;
    }

    .assess-card-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .assess-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 46px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .assess-revealed .assess-dots {
        opacity: 1;
        visibility: visible;
    }

    .assess-page-nav {
        display: none !important;
    }

    /* Modal mobile adjustments */
    .assess-modal-content {
        width: 95%;
        max-height: calc(100vh - 60px - 120px);
        border-radius: var(--radius-xl);
    }

    .assess-modal-header {
        padding: var(--space-lg) var(--space-xl);
    }

    .assess-modal-body {
        padding: var(--space-xl) var(--space-xl);
    }

    .assess-modal-footer {
        padding: var(--space-md) var(--space-xl);
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: var(--space-xl);
    }
    

    
    .logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .journey-card {
        flex: 0 0 85%;
        min-width: 260px;
        height: 420px;
    }

    .carousel-track.journey-cards-track {
        padding: var(--space-sm) 0;
    }

    .journey-header-title {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .journey-content {
        padding: 36px 20px 20px;
    }

    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .flags-ticker {
        max-width: 200px;
    }
    
    .globe-container {
        width: 380px;
        height: 380px;
    }
    
    .globe-label {
        font-size: 0.72rem;
        padding: 5px 11px;
        gap: 5px;
    }
    
    .globe-pin {
        width: 6px;
        height: 6px;
    }
    
    .globe-pin-nepal {
        width: 10px;
        height: 10px;
    }
    
    .trust-bar {
        padding: var(--space-lg);
    }
    
    .trust-item {
        width: 40%;
    }
}

/* ========================================
   Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .nav,
    .dot-grid,
    .hero-visual,
    .visual-block,
    .flight-path-panel {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero {
        min-height: auto;
        padding-top: 0;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Hero Social Panel – now uses unified .contact-strip--boarding-pass (see Unified Contact Strip section) */
.hero-social-panel {
    margin-top: var(--space-xl);
    max-width: 100%;
}

/* Hero boarding pass: label | icons | plane always in one row; only icons wrap internally */
.hero-social-panel .contact-strip--boarding-pass {
    max-width: 100%;
}

.hero-social-panel .cs-bp-label,
.hero-social-panel .cs-bp-plane,
.hero-social-panel .cs-bp-perforation {
    flex-shrink: 0;
    align-self: stretch;
}

.hero-social-panel .cs-icons {
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

/* (Removed: contact-section-strip was redundant with floating sidebar) */

/* Sidebar social & boarding pass panel – now uses unified .contact-strip-sidebar (see Unified Contact Strip section) */

