:root {
            /* Light Mode (Default) - Based on VisaD Logo */
            --bg-primary: #ffffff;
            --bg-secondary: #f0f4f8;
            --bg-card: rgba(255, 255, 255, 0.9);
            --bg-glass: rgba(52, 78, 124, 0.03);
            --border-glass: rgba(52, 78, 124, 0.12);
            --border-solid: #c8d4e8;
            --text-primary: #1a2b4a;
            --text-secondary: #4a5f82;
            --text-muted: #7a8ba8;
            
            /* Brand Colors from Logo */
            --brand-navy: #344E7C;
            --brand-navy-dark: #2a3f64;
            --brand-navy-light: #4a6694;
            --brand-green: #3A9D4F;
            --brand-green-dark: #2d7a3d;
            --brand-green-light: #4fb865;
            
            --accent-primary: var(--brand-navy);
            --accent-secondary: var(--brand-green);
            
            --gradient-brand: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-green) 100%);
            --gradient-navy: linear-gradient(135deg, #2a3f64 0%, #4a6694 100%);
            --gradient-green: linear-gradient(135deg, #2d7a3d 0%, #4fb865 100%);
            --gradient-glow: linear-gradient(135deg, rgba(52, 78, 124, 0.08) 0%, rgba(58, 157, 79, 0.08) 100%);
            
            --shadow-glow: 0 0 60px rgba(52, 78, 124, 0.1);
            --shadow-card: 0 4px 24px rgba(52, 78, 124, 0.08);
            --aurora-opacity: 0.12;
            --grid-opacity: 0.5;
            
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

        [data-theme="dark"] {
            --bg-primary: #0a1628;
            --bg-secondary: #0f1f35;
            --bg-card: rgba(15, 31, 53, 0.8);
            --bg-glass: rgba(255, 255, 255, 0.03);
            --border-glass: rgba(255, 255, 255, 0.08);
            --border-solid: rgba(255, 255, 255, 0.18);
            --text-primary: #e8eef5;
            --text-secondary: #a0b3cc;
            --text-muted: #6b839e;
            
            --brand-navy: #5a7ab0;
            --brand-navy-dark: #4a6694;
            --brand-navy-light: #7a9ad0;
            --brand-green: #4fb865;
            --brand-green-dark: #3A9D4F;
            --brand-green-light: #6ed080;
            
            --accent-primary: var(--brand-navy);
            --accent-secondary: var(--brand-green);
            
            --gradient-brand: linear-gradient(135deg, #5a7ab0 0%, #4fb865 100%);
            --gradient-navy: linear-gradient(135deg, #4a6694 0%, #7a9ad0 100%);
            --gradient-green: linear-gradient(135deg, #3A9D4F 0%, #6ed080 100%);
            --gradient-glow: linear-gradient(135deg, rgba(90, 122, 176, 0.15) 0%, rgba(79, 184, 101, 0.15) 100%);
            
            --shadow-glow: 0 0 60px rgba(90, 122, 176, 0.2);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --aurora-opacity: 0.25;
            --grid-opacity: 1;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            touch-action: manipulation;
        }

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

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            overflow-y: auto;
            line-height: 1.7;
            font-size: 16px;
            transition: background-color 0.4s ease, color 0.4s ease;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            width: 100%;
            max-width: 100vw;
            position: relative;
        }

        /* Preloader – Full-page skeleton */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            z-index: 99999;
            overflow: hidden;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* Aurora glow behind skeleton */
        .preloader::before {
            content: '';
            position: absolute;
            top: 15%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 111, 217, 0.08) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 70%);
            border-radius: 50%;
            animation: skAuroraFloat 6s ease-in-out infinite;
            pointer-events: none;
        }

        [data-theme="dark"] .preloader::before {
            background: radial-gradient(circle, rgba(59, 111, 217, 0.12) 0%, rgba(16, 185, 129, 0.06) 50%, transparent 70%);
        }

        @keyframes skAuroraFloat {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
            50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
        }

        /* Shimmer animation */
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Base bone element */
        .sk-bone {
            background: linear-gradient(
                90deg,
                var(--bg-secondary) 0%,
                var(--bg-secondary) 25%,
                rgba(59, 111, 217, 0.07) 45%,
                var(--bg-glass) 50%,
                rgba(59, 111, 217, 0.07) 55%,
                var(--bg-secondary) 75%,
                var(--bg-secondary) 100%
            );
            background-size: 200% 100%;
            animation: shimmer 2s ease-in-out infinite;
            border-radius: 8px;
        }

        [data-theme="dark"] .sk-bone {
            background: linear-gradient(
                90deg,
                var(--bg-secondary) 0%,
                var(--bg-secondary) 25%,
                rgba(96, 165, 250, 0.08) 45%,
                var(--bg-glass) 50%,
                rgba(96, 165, 250, 0.08) 55%,
                var(--bg-secondary) 75%,
                var(--bg-secondary) 100%
            );
            background-size: 200% 100%;
            animation: shimmer 2s ease-in-out infinite;
        }

        /* ── Skeleton Nav ── */
        .sk-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 18px 32px;
            opacity: 0;
            animation: skFadeSlideDown 0.5s ease 0.1s forwards;
        }

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

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

        @keyframes skScaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .sk-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .sk-logo .visa-part { color: var(--brand-navy); }
        .sk-logo .d-part { color: var(--brand-green); }

        .sk-nav-links {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .sk-bone-nav {
            width: 70px;
            height: 14px;
            border-radius: 7px;
        }

        .sk-bone-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
        }

        /* ── Skeleton Hero ── */
        .sk-hero {
            text-align: center;
            padding: 60px 32px 36px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0;
            animation: skFadeSlideUp 0.6s ease 0.25s forwards;
        }

        .sk-bone-badge {
            width: 180px;
            height: 28px;
            border-radius: 14px;
            margin: 0 auto 24px;
        }

        .sk-title {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            animation: skTitleGlow 3s ease-in-out infinite;
        }

        .sk-title .visa-part { color: var(--brand-navy); }
        .sk-title .d-part { color: var(--brand-green); }

        @keyframes skTitleGlow {
            0%, 100% {
                opacity: 1;
                text-shadow: 0 0 20px rgba(59, 111, 217, 0.0);
            }
            50% {
                opacity: 0.6;
                text-shadow: 0 0 30px rgba(59, 111, 217, 0.15), 0 0 60px rgba(16, 185, 129, 0.08);
            }
        }

        [data-theme="dark"] .sk-title {
            animation: skTitleGlowDark 3s ease-in-out infinite;
        }

        @keyframes skTitleGlowDark {
            0%, 100% {
                opacity: 1;
                text-shadow: 0 0 20px rgba(96, 165, 250, 0.0);
            }
            50% {
                opacity: 0.6;
                text-shadow: 0 0 40px rgba(96, 165, 250, 0.25), 0 0 80px rgba(16, 185, 129, 0.12);
            }
        }

        .sk-bone-subtitle {
            width: 320px;
            height: 16px;
            border-radius: 8px;
            margin: 0 auto 28px;
        }

        .sk-bone-search {
            width: 100%;
            max-width: 520px;
            height: 52px;
            border-radius: 14px;
            margin: 0 auto;
            box-shadow: 0 4px 24px rgba(59, 111, 217, 0.06);
        }

        [data-theme="dark"] .sk-bone-search {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
        }

        /* ── Skeleton Section (filters + cards) ── */
        .sk-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 32px 0;
            opacity: 0;
            animation: skFadeSlideUp 0.6s ease 0.45s forwards;
        }

        .sk-bone-filters {
            width: 260px;
            height: 18px;
            border-radius: 9px;
            margin-bottom: 24px;
        }

        .sk-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* ── Skeleton Card ── */
        .sk-card {
            background: var(--bg-card, var(--bg-secondary));
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            opacity: 0;
            animation: skScaleIn 0.5s ease forwards;
            transition: box-shadow 0.3s ease;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .sk-card:nth-child(1) { animation-delay: 0.55s; }
        .sk-card:nth-child(2) { animation-delay: 0.7s; }
        .sk-card:nth-child(3) { animation-delay: 0.85s; }

        .sk-card:nth-child(1) .sk-bone { animation-delay: 0s; }
        .sk-card:nth-child(2) .sk-bone { animation-delay: 0.15s; }
        .sk-card:nth-child(3) .sk-bone { animation-delay: 0.3s; }

        /* Subtle floating animation on cards */
        @keyframes skFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }

        .sk-card:nth-child(1) { animation: skScaleIn 0.5s ease 0.55s forwards, skFloat 4s ease-in-out 1.1s infinite; }
        .sk-card:nth-child(2) { animation: skScaleIn 0.5s ease 0.7s forwards, skFloat 4s ease-in-out 1.4s infinite; }
        .sk-card:nth-child(3) { animation: skScaleIn 0.5s ease 0.85s forwards, skFloat 4s ease-in-out 1.7s infinite; }

        /* Card head: flag + name/region */
        .sk-card-head {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .sk-bone-flag {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .sk-card-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .sk-bone-name {
            width: 65%;
            height: 16px;
            border-radius: 8px;
        }

        .sk-bone-region {
            width: 40%;
            height: 12px;
            border-radius: 6px;
        }

        /* Card specs: 3 short bones */
        .sk-card-specs {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sk-bone-spec {
            height: 12px;
            border-radius: 6px;
        }

        .sk-bone-spec:nth-child(1) { width: 80%; }
        .sk-bone-spec:nth-child(2) { width: 60%; }
        .sk-bone-spec:nth-child(3) { width: 70%; }

        /* Card foot: price + button */
        .sk-card-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }

        .sk-bone-price {
            width: 72px;
            height: 20px;
            border-radius: 8px;
        }

        .sk-bone-btn {
            width: 100px;
            height: 38px;
            border-radius: 10px;
        }

        /* ── Responsive skeleton ── */
        @media (max-width: 768px) {
            .sk-hero { padding: 40px 20px 24px; }
            .sk-title { font-size: 38px; }
            .sk-cards { grid-template-columns: 1fr; gap: 16px; }
            .sk-section { padding: 24px 20px 0; }
            .sk-nav { padding: 14px 20px; }
            .sk-bone-nav { display: none; }
            .sk-bone-subtitle { width: 220px; }
            .sk-bone-search { height: 46px; }
            .preloader::before { width: 300px; height: 300px; }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .sk-cards { grid-template-columns: repeat(2, 1fr); }
            .sk-card:nth-child(3) { display: none; }
        }

        /* Animated Background */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(52, 78, 124, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(52, 78, 124, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
            opacity: var(--grid-opacity);
            transition: opacity 0.5s ease;
        }

        [data-theme="dark"] .bg-grid {
            background-image: 
                linear-gradient(rgba(90, 122, 176, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(90, 122, 176, 0.03) 1px, transparent 1px);
        }

        /* Dark mode enhancements */
        [data-theme="dark"] .info-card,
        [data-theme="dark"] .booking-card,
        [data-theme="dark"] .review-card {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }

        [data-theme="dark"] .spec-item {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(90, 122, 176, 0.05) 100%);
        }

        [data-theme="dark"] .booking-price-header {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.10);
        }

        [data-theme="dark"] .booking-card {
            background: var(--bg-secondary);
            border-color: rgba(255,255,255,0.08);
            box-shadow: 0 8px 40px rgba(0,0,0,0.4);
        }

        [data-theme="dark"] .booking-form-display,
        [data-theme="dark"] .booking-date-input,
        [data-theme="dark"] .calendar-picker-trigger {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .booking-form-display:hover,
        [data-theme="dark"] .booking-date-input:hover,
        [data-theme="dark"] .calendar-picker-trigger:hover {
            background: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .visa-type-btn {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.06);
        }

        [data-theme="dark"] .visa-type-btn:hover {
            background: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .visa-type-btn.active {
            border-color: transparent;
        }

        [data-theme="dark"] .applicants-compact {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .applicants-compact-control {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .applicant-btn-sm:hover {
            background: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .addon-item {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .addon-item:hover {
            background: rgba(58,157,79,0.06);
            border-color: rgba(58,157,79,0.3);
        }

        [data-theme="dark"] .addon-item.selected {
            background: rgba(58,157,79,0.10);
            border-color: var(--brand-green);
        }

        [data-theme="dark"] .addon-icon {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .addon-toggle {
            background: rgba(255,255,255,0.12);
        }

        [data-theme="dark"] .addon-desc .addon-features li {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .addon-item.selected .addon-desc .addon-features li {
            background: rgba(58,157,79,0.08);
            border-color: rgba(58,157,79,0.2);
        }

        [data-theme="dark"] .booking-processing {
            background: rgba(58,157,79,0.12);
        }

        [data-theme="dark"] .booking-processing-tag {
            background: rgba(58,157,79,0.15);
        }

        [data-theme="dark"] .booking-price-amount {
            color: #fff;
            -webkit-text-fill-color: #fff;
        }

        [data-theme="dark"] .booking-form-divider {
            background: rgba(255,255,255,0.06);
        }

        [data-theme="dark"] .apply-now-header-block {
            border-bottom-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .booking-route-header {
            border-bottom-color: rgba(255,255,255,0.08);
        }

        [data-theme="dark"] .route-flag {
            box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 0 0 1.5px rgba(255,255,255,0.1);
        }

        [data-theme="dark"] .fullscreen-toggle-btn {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.10);
        }

        [data-theme="dark"] .fullscreen-toggle-btn:hover {
            background: rgba(255,255,255,0.10);
        }

        [data-theme="dark"] .booking-selector-dropdown {
            background: #0f1f35;
            border-color: rgba(255,255,255,0.12);
        }

        [data-theme="dark"] .booking-selector-search input {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.10);
            color: var(--text-primary);
        }

        [data-theme="dark"] .booking-selector-item:hover {
            background: rgba(255,255,255,0.06);
        }

        [data-theme="dark"] .booking-selector-item.selected {
            background: rgba(90,122,176,0.15);
        }

        [data-theme="dark"] .addons-section .addons-label {
            color: var(--text-muted);
        }

        [data-theme="dark"] .visa-details-badge-header {
            background: linear-gradient(135deg, #4a6694 0%, #3A9D4F 100%);
        }

        [data-theme="dark"] .theme-toggle-switch {
            background: var(--bg-glass) !important;
        }

        [data-theme="dark"] .theme-toggle-switch:hover {
            background: var(--bg-secondary) !important;
        }

        .aurora-blob {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            opacity: var(--aurora-opacity);
            pointer-events: none;
            z-index: 0;
            animation: float 20s ease-in-out infinite;
            transition: opacity 0.5s ease;
        }

        .aurora-blob:nth-child(1) {
            width: 600px;
            height: 600px;
            background: #344E7C;
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .aurora-blob:nth-child(2) {
            width: 500px;
            height: 500px;
            background: #3A9D4F;
            top: 50%;
            right: -150px;
            animation-delay: -7s;
        }

        .aurora-blob:nth-child(3) {
            width: 400px;
            height: 400px;
            background: #4a6694;
            bottom: -100px;
            left: 30%;
            animation-delay: -14s;
        }

        /* Paper Plane Decoration */
        .plane-decoration {
            position: fixed;
            pointer-events: none;
            z-index: 0;
            opacity: 0.03;
        }

        .plane-decoration svg {
            width: 400px;
            height: 400px;
            fill: var(--brand-navy);
        }

        .plane-decoration.top-right {
            top: 10%;
            right: 5%;
            transform: rotate(15deg);
        }

        .plane-decoration.bottom-left {
            bottom: 20%;
            left: 5%;
            transform: rotate(-20deg) scaleX(-1);
        }

        [data-theme="dark"] .plane-decoration svg {
            fill: var(--brand-navy-light);
            opacity: 0.05;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.02); }
        }

        /* Loading Screen */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transition: opacity 0.6s ease, visibility 0.6s ease, background-color 0.4s ease;
        }

        .loader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-logo {
            font-size: 48px;
            font-weight: 900;
            letter-spacing: -2px;
            display: flex;
        }

        .loader-logo .visa {
            color: var(--brand-navy);
        }

        .loader-logo .d {
            color: var(--brand-green);
        }

        .loader-bar {
            width: 200px;
            height: 3px;
            background: var(--bg-glass);
            border-radius: 10px;
            overflow: hidden;
        }

        .loader-progress {
            width: 0%;
            height: 100%;
            background: var(--gradient-brand);
            border-radius: 10px;
            animation: load 1.5s ease-out forwards;
        }

        @keyframes load {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
        }

        [data-theme="dark"] header.scrolled {
            background: rgba(3, 7, 18, 0.8);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 42px;
            font-weight: 900;
            letter-spacing: -2px;
            display: flex;
            text-shadow: 0 2px 10px rgba(52, 78, 124, 0.15);
        }

        .logo-text .visa {
            color: var(--brand-navy);
        }

        .logo-text .d {
            color: var(--brand-green);
        }

        /* Responsive logo - smaller on mobile */
        @media (max-width: 768px) {
            .logo-text {
                font-size: 28px;
                letter-spacing: -1px;
            }
        }

        /* Mobile Header Action Buttons */
        .mobile-header-actions {
            display: none;
            align-items: center;
            gap: 10px;
            margin-left: auto;
            margin-right: 12px;
        }
        
        @media (max-width: 768px) {
            .mobile-header-actions {
                display: flex;
            }
        }
        
        .mobile-action-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-glass);
            background: var(--bg-card);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }
        
        .mobile-action-btn svg {
            width: 18px;
            height: 18px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }
        
        .mobile-action-btn:hover {
            background: var(--bg-secondary);
            border-color: var(--brand-green);
        }
        
        .mobile-action-btn:hover svg {
            color: var(--brand-green);
        }

        .mobile-login-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .mobile-action-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            line-height: 1;
            letter-spacing: 0.3px;
        }

        .mobile-login-wrapper:hover .mobile-action-label {
            color: var(--brand-green);
        }

        /* Phone Button with pulse */
        
        /* Theme Toggle Button */
        .mobile-theme-btn {
            background: var(--bg-card);
        }
        
        .mobile-theme-btn .theme-icon-sun {
            display: block;
            color: #f59e0b;
        }
        
        .mobile-theme-btn .theme-icon-moon {
            display: none;
            color: #6366f1;
        }
        
        [data-theme="dark"] .mobile-theme-btn .theme-icon-sun {
            display: none;
        }
        
        [data-theme="dark"] .mobile-theme-btn .theme-icon-moon {
            display: block;
        }
        
        [data-theme="dark"] .mobile-theme-btn {
            background: var(--bg-secondary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            padding: 10px 20px;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--text-primary);
            background: var(--bg-glass);
        }

        .nav-link.active {
            color: var(--brand-navy);
        }

        /* Desktop Theme Toggle in Header */
        .nav-theme-toggle {
            width: 42px;
            height: 42px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            margin-left: 8px;
        }

        .nav-theme-toggle:hover {
            background: var(--bg-tertiary);
            border-color: var(--brand-navy);
            transform: translateY(-2px);
        }

        .nav-theme-toggle svg {
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            position: absolute;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .nav-theme-toggle .theme-icon-sun {
            opacity: 0;
            transform: rotate(-90deg);
        }

        .nav-theme-toggle .theme-icon-moon {
            opacity: 1;
            transform: rotate(0);
        }

        [data-theme="light"] .nav-theme-toggle .theme-icon-sun {
            opacity: 1;
            transform: rotate(0);
        }

        [data-theme="light"] .nav-theme-toggle .theme-icon-moon {
            opacity: 0;
            transform: rotate(90deg);
        }

        .nav-cta {
            padding: 12px 24px;
            background: var(--gradient-brand);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(52, 78, 124, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(52, 78, 124, 0.4);
        }

        /* Nav Login/Account Button */
        .nav-login-link,
        .nav-account-link {
            display: flex !important;
            align-items: center;
            gap: 6px;
        }

        .nav-login-link svg,
        .nav-account-link svg {
            flex-shrink: 0;
        }

        .nav-avatar-img {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid var(--brand-green);
        }

        .nav-avatar-initials {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--gradient-brand);
            color: white;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mobile-login-btn,
        .mobile-account-btn {
            color: var(--brand-navy);
        }

        .mobile-account-btn {
            color: var(--brand-green);
            overflow: hidden;
        }

        .mobile-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
        }

        .mobile-avatar-initials {
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-navy);
            line-height: 1;
        }

        /* Details header avatar */
        .details-login-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .details-login-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            line-height: 1;
            letter-spacing: 0.3px;
        }

        .details-login-wrapper:hover .details-login-label {
            color: var(--brand-green);
        }

        .details-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
        }

        .details-avatar-initials {
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-navy);
            line-height: 1;
        }

        /* Theme Toggle */
        /* Header Switch-style Theme Toggle */
        .theme-toggle-switch {
            width: 56px !important;
            height: 30px !important;
            background: var(--bg-glass) !important;
            border: 1px solid var(--border-glass) !important;
            border-radius: 100px !important;
            position: relative !important;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            padding: 3px !important;
        }

        .theme-toggle-switch:hover {
            border-color: var(--brand-navy) !important;
        }

        .theme-toggle-track {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 6px;
            position: relative;
        }

        .theme-toggle-icon {
            font-size: 12px;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .theme-toggle-icon.sun {
            opacity: 1;
        }

        .theme-toggle-icon.moon {
            opacity: 0.4;
        }

        [data-theme="dark"] .theme-toggle-icon.sun {
            opacity: 0.4;
        }

        [data-theme="dark"] .theme-toggle-icon.moon {
            opacity: 1;
        }

        .theme-toggle-thumb {
            position: absolute;
            width: 24px;
            height: 24px;
            background: var(--gradient-brand);
            border-radius: 50%;
            left: 3px;
            top: 50%;
            transform: translateY(-50%);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(52, 78, 124, 0.3);
        }

        [data-theme="dark"] .theme-toggle-thumb {
            left: calc(100% - 27px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .menu-toggle:hover {
            background: var(--bg-secondary);
            border-color: var(--brand-navy);
        }

        .menu-toggle.active {
            background: var(--bg-card);
            border-color: var(--brand-green);
            box-shadow: 0 4px 20px rgba(58, 157, 79, 0.2);
        }

        .menu-toggle span {
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 140px 40px 80px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 100px;
            margin-bottom: 32px;
            animation: fadeUp 0.8s ease 0.2s backwards;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
        }

        .trustpilot-logo {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .trustpilot-star-icon {
            width: 20px;
            height: 20px;
        }

        .trustpilot-text {
            font-size: 14px;
            font-weight: 700;
            color: #00b67a;
            letter-spacing: -0.3px;
        }

        .trustpilot-divider {
            width: 1px;
            height: 24px;
            background: var(--border-glass);
        }

        .trustpilot-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trustpilot-stars {
            display: flex;
            gap: 3px;
        }

        .trustpilot-star {
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trustpilot-star svg {
            width: 100%;
            height: 100%;
        }

        .trustpilot-score {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .trustpilot-score-value {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.1;
        }

        .trustpilot-score-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }

        @media (max-width: 640px) {
            .hero-badge {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                padding: 12px 16px;
            }

            .trustpilot-divider {
                display: none;
            }

            .trustpilot-star {
                width: 18px;
                height: 18px;
            }
        }

        .hero-title {
            font-size: clamp(40px, 8vw, 88px);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -2px;
            margin-bottom: 28px;
            animation: fadeUp 0.8s ease 0.3s backwards;
        }

        .hero-title-line {
            display: block;
        }

        .hero-title .gradient {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .typed-active {
            border-right: 4px solid var(--brand-green);
            padding-right: 6px;
            animation: cursorBlink 0.75s step-end infinite;
        }

        @keyframes cursorBlink {
            0%, 100% { border-color: var(--brand-green); }
            50% { border-color: transparent; }
        }

        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 48px;
            font-weight: 400;
            line-height: 1.7;
            animation: fadeUp 0.8s ease 0.4s backwards;
        }

        .hero-shine {
            background: linear-gradient(
                105deg,
                var(--text-secondary) 0%,
                var(--text-secondary) 35%,
                var(--brand-navy) 48%,
                #60a5fa 50%,
                var(--brand-navy) 52%,
                var(--text-secondary) 65%,
                var(--text-secondary) 100%
            );
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: heroShine 5s ease-in-out infinite;
        }

        [data-theme="dark"] .hero-shine {
            background: linear-gradient(
                105deg,
                var(--text-secondary) 0%,
                var(--text-secondary) 35%,
                #93bbfc 48%,
                #fff 50%,
                #93bbfc 52%,
                var(--text-secondary) 65%,
                var(--text-secondary) 100%
            );
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: heroShine 5s ease-in-out infinite;
        }

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

        .hero-ready {
            display: inline-block;
            margin-top: 6px;
            font-weight: 600;
            font-size: 0.85em;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.85;
        }

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

        /* Location Selector - Modern Design */
        .location-selector {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
            animation: fadeUp 0.8s ease 0.45s backwards;
            position: relative;
            z-index: 600;
        }

        .location-wrapper {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            padding: 6px;
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            z-index: 101;
        }

        .location-wrapper:hover {
            border-color: var(--brand-navy);
            box-shadow: 0 8px 32px rgba(52, 78, 124, 0.15);
            transform: translateY(-2px);
        }

        .location-wrapper.dropdown-open {
            border-color: var(--brand-green);
            z-index: 9998;
        }

        .location-label-box {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--gradient-brand);
            border-radius: calc(var(--radius-xl) - 4px);
            margin-right: -1px;
        }

        .location-pin-icon {
            font-size: 16px;
            filter: brightness(0) invert(1);
        }

        .location-label {
            font-size: 13px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .location-current {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: calc(var(--radius-xl) - 4px);
        }

        .location-current:hover {
            background: var(--bg-glass);
        }

        .location-flag {
            font-size: 24px;
            line-height: 1;
            display: inline-flex;
            align-items: center;
        }

        .location-flag-img {
            width: 36px;
            height: 26px;
            border-radius: 5px;
            object-fit: cover;
            display: block;
            box-shadow: 0 1px 4px rgba(0,0,0,0.18);
        }

        .location-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .location-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .location-sublabel {
            font-size: 11px;
            color: var(--brand-green);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .location-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(58, 157, 79, 0.1);
            border: 1px solid rgba(58, 157, 79, 0.2);
            border-radius: calc(var(--radius-xl) - 8px);
            margin-left: 8px;
            margin-right: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .location-dropdown-btn:hover {
            background: var(--brand-green);
            border-color: var(--brand-green);
        }

        .location-dropdown-btn:hover .location-change-text {
            color: white;
        }

        .location-dropdown-btn:hover .location-change-icon {
            color: white;
        }

        .location-wrapper.dropdown-open .location-dropdown-btn .location-change-icon {
            transform: rotate(180deg);
        }

        .location-change-text {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-green);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .location-change-icon {
            font-size: 14px;
            color: var(--brand-green);
            transition: all 0.3s ease;
        }

        /* Dropdown Menu Styles */
        .location-dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            min-width: 280px;
            background: var(--bg-primary);
            border: 2px solid var(--brand-green);
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
            overflow: hidden;
        }

        .location-wrapper.dropdown-open .location-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .location-dropdown-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 24px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid var(--border-glass);
            background: var(--bg-primary);
        }

        .location-dropdown-item:last-child {
            border-bottom: none;
        }

        .location-dropdown-item:hover {
            background: var(--gradient-glow);
        }

        .location-dropdown-item.active {
            background: rgba(58, 157, 79, 0.15);
            border-left: 4px solid var(--brand-green);
        }

        .dropdown-flag {
            font-size: 28px;
        }

        .dropdown-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .location-detecting {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
        }

        .location-spinner {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border-glass);
            border-top-color: var(--brand-navy);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .location-detecting-text {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Mobile responsive */
        @media (max-width: 640px) {
            .location-wrapper {
                flex-direction: column;
                padding: 4px;
                width: 100%;
                max-width: 320px;
            }

            .location-label-box {
                width: 100%;
                justify-content: center;
                border-radius: calc(var(--radius-xl) - 4px) calc(var(--radius-xl) - 4px) 0 0;
                margin-right: 0;
                padding: 10px 16px;
            }

            .location-current {
                width: 100%;
                justify-content: center;
                padding: 12px 16px;
            }

            .location-change-btn {
                margin: 0 8px 8px 8px;
                justify-content: center;
            }
        }

        /* Search Container */
        .search-container {
            width: 100%;
            max-width: 900px;
            animation: fadeUp 0.8s ease 0.5s backwards;
            position: relative;
            z-index: 500;
        }

        .search-box {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            padding: 8px;
            display: flex;
            gap: 8px;
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-glow);
            transition: all 0.3s ease;
            position: relative;
            z-index: 501;
            overflow: visible;
        }

        .search-box:focus-within {
            border-color: var(--brand-navy);
            box-shadow: 0 0 0 4px rgba(52, 78, 124, 0.1), var(--shadow-glow);
        }

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

        .search-field-label {
            position: absolute;
            top: 12px;
            left: 20px;
            font-size: 11px;
            font-weight: 700;
            color: var(--brand-navy);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .search-field-input {
            width: 100%;
            padding: 32px 20px 12px;
            background: transparent;
            border: none;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            border-radius: var(--radius-lg);
            transition: background 0.3s ease;
        }

        .search-field-input:focus {
            outline: none;
            background: var(--bg-glass);
        }

        .search-field-input::placeholder {
            color: var(--text-muted);
        }

        /* Passport Dropdown Styles */
        .passport-field {
            position: relative;
            z-index: 502;
        }

        .passport-field.dropdown-open {
            z-index: 600;
        }

        .passport-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 32px 20px 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-radius: var(--radius-lg);
        }

        .passport-selector:hover {
            background: var(--bg-glass);
        }

        .passport-flag {
            font-size: 24px;
            display: inline-flex;
            align-items: center;
        }

        .passport-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .passport-arrow {
            color: var(--text-muted);
            transition: transform 0.3s ease;
            margin-left: auto;
        }

        .passport-field.dropdown-open .passport-arrow {
            transform: rotate(180deg);
        }

        .passport-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: -8px;
            width: 380px;
            max-height: 480px;
            background: var(--bg-primary);
            border: 2px solid var(--brand-navy);
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.25s ease;
            z-index: 9999;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .passport-field.dropdown-open .passport-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .passport-dropdown-search {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            border-bottom: 1px solid var(--border-glass);
            background: var(--bg-secondary);
            flex-shrink: 0;
        }

        .passport-dropdown-search svg {
            color: var(--text-muted);
            flex-shrink: 0;
            width: 18px;
            height: 18px;
        }

        .passport-dropdown-search input {
            flex: 1;
            background: none;
            border: none;
            outline: none;
            font-size: 16px;
            color: var(--text-primary);
            font-family: inherit;
        }

        .passport-dropdown-search input::placeholder {
            color: var(--text-muted);
        }

        .passport-dropdown-list {
            flex: 1;
            overflow-y: auto;
            max-height: 380px;
        }

        .passport-dropdown-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            cursor: pointer;
            transition: all 0.15s ease;
            border-bottom: 1px solid var(--border-glass);
        }

        .passport-dropdown-item:last-child {
            border-bottom: none;
        }

        .passport-dropdown-item:hover {
            background: var(--gradient-glow);
        }

        .passport-dropdown-item.active {
            background: rgba(74, 125, 255, 0.15);
            border-left: 3px solid var(--brand-navy);
        }

        .passport-dropdown-item .flag {
            font-size: 24px;
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
        }

        .passport-dropdown-item .name {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .passport-flag-img {
            width: 38px;
            height: 27px;
            border-radius: 5px;
            object-fit: cover;
            display: block;
            box-shadow: 0 1px 4px rgba(0,0,0,0.18);
            flex-shrink: 0;
        }

        .passport-selector-flag-img {
            width: 34px;
            height: 24px;
            border-radius: 4px;
            object-fit: cover;
            display: block;
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        }

        .passport-dropdown-list::-webkit-scrollbar {
            width: 5px;
        }

        .passport-dropdown-list::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        .passport-dropdown-list::-webkit-scrollbar-thumb {
            background: var(--border-glass);
            border-radius: 3px;
        }

        /* Destination Dropdown Styles */
        .destination-field {
            position: relative;
            z-index: 502;
        }

        .destination-field.dropdown-open {
            z-index: 600;
        }

        .destination-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 32px 20px 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-radius: var(--radius-lg);
        }

        .destination-selector:hover {
            background: var(--bg-glass);
        }

        .destination-flag {
            font-size: 24px;
            display: inline-flex;
            align-items: center;
        }

        .destination-selector-flag-img {
            width: 34px;
            height: 24px;
            border-radius: 4px;
            object-fit: cover;
            display: block;
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        }

        .destination-name {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .destination-name.selected {
            font-weight: 600;
            color: var(--text-primary);
        }

        .destination-arrow {
            color: var(--text-muted);
            transition: transform 0.3s ease;
            margin-left: auto;
        }

        .destination-field.dropdown-open .destination-arrow {
            transform: rotate(180deg);
        }

        .destination-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            right: -8px;
            width: 400px;
            max-height: 500px;
            background: var(--bg-primary);
            border: 2px solid var(--brand-green);
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.25s ease;
            z-index: 9999;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .destination-field.dropdown-open .destination-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .destination-dropdown-search {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            border-bottom: 1px solid var(--border-glass);
            background: var(--bg-secondary);
            flex-shrink: 0;
        }

        .destination-dropdown-search svg {
            color: var(--text-muted);
            flex-shrink: 0;
            width: 18px;
            height: 18px;
        }

        .destination-dropdown-search input {
            flex: 1;
            background: none;
            border: none;
            outline: none;
            font-size: 16px;
            color: var(--text-primary);
            font-family: inherit;
        }

        .destination-dropdown-search input::placeholder {
            color: var(--text-muted);
        }

        .destination-dropdown-list {
            flex: 1;
            overflow-y: auto;
            max-height: 400px;
        }

        .destination-dropdown-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            cursor: pointer;
            transition: all 0.15s ease;
            border-bottom: 1px solid var(--border-glass);
        }

        .destination-dropdown-item:last-child {
            border-bottom: none;
        }

        .destination-dropdown-item:hover {
            background: var(--gradient-glow);
        }

        .destination-dropdown-item .flag {
            font-size: 24px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
        }

        .destination-dropdown-item .info {
            flex: 1;
            min-width: 0;
        }

        .destination-dropdown-item .name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            display: block;
        }

        .destination-dropdown-item .type {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .destination-dropdown-item .price {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-green);
            flex-shrink: 0;
        }

        .destination-flag-img {
            width: 38px;
            height: 27px;
            border-radius: 5px;
            object-fit: cover;
            display: block;
            box-shadow: 0 1px 4px rgba(0,0,0,0.18);
        }

        .destination-dropdown-list::-webkit-scrollbar {
            width: 5px;
        }

        .destination-dropdown-list::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        .destination-dropdown-list::-webkit-scrollbar-thumb {
            background: var(--border-glass);
            border-radius: 3px;
        }

        .search-divider {
            width: 1px;
            background: var(--border-glass);
            margin: 16px 0;
        }

        .search-btn {
            padding: 16px 32px;
            background: var(--gradient-brand);
            border: none;
            border-radius: var(--radius-lg);
            color: white;
            font-size: 16px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .search-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(52, 78, 124, 0.4);
        }

        .search-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Stats */
        .stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 64px;
            animation: fadeUp 0.8s ease 0.6s backwards;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: clamp(32px, 5vw, 42px);
            font-weight: 800;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: clamp(14px, 2vw, 16px);
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 500;
        }

        /* Destinations Section */
        .destinations {
            padding: 40px 40px 100px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

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

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(52, 78, 124, 0.1);
            border: 1px solid rgba(52, 78, 124, 0.2);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-navy);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        [data-theme="dark"] .section-tag {
            background: rgba(90, 122, 176, 0.15);
            border-color: rgba(90, 122, 176, 0.3);
            color: var(--brand-navy-light);
        }

        .section-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
            line-height: 1.15;
        }

        .section-subtitle {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-secondary);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Filter Pills */
        .filters {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }

        .filter-pill {
            padding: 12px 24px;
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .filter-pill:hover {
            border-color: var(--brand-navy);
            color: var(--brand-navy);
        }

        .filter-pill.active {
            background: var(--gradient-brand);
            border-color: transparent;
            color: white;
        }

        /* Destination Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            padding: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            opacity: 1;
            transform: translateY(0);
            box-shadow: var(--shadow-card);
        }

        .card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-brand);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: rgba(52, 78, 124, 0.3);
            box-shadow: 0 20px 60px rgba(52, 78, 124, 0.15);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .card-country {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .card-flag {
            width: 68px;
            height: 46px;
            border-radius: 8px;
            background: var(--bg-secondary);
            box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 0 1px var(--border-glass);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        .card-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .card-name {
            font-size: clamp(20px, 3vw, 24px);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .card-region {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .card-badge {
            padding: 8px 14px;
            background: rgba(58, 157, 79, 0.1);
            border: 1px solid rgba(58, 157, 79, 0.2);
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-green);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-badge.evisa {
            background: rgba(52, 78, 124, 0.1);
            border-color: rgba(52, 78, 124, 0.2);
            color: var(--brand-navy);
        }

        .card-specs {
            display: flex;
            gap: 10px;
            padding: 16px 0;
            border-top: 1px solid var(--border-glass);
            border-bottom: 1px solid var(--border-glass);
            margin-bottom: 20px;
        }

        .card-spec {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 10px 4px;
            background: var(--bg-secondary);
            border-radius: 10px;
        }

        .card-spec-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(58, 157, 79, 0.1);
            color: var(--brand-green);
        }

        .card-spec-icon svg {
            width: 14px;
            height: 14px;
        }

        .card-spec-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            text-align: center;
            line-height: 1.3;
        }

        .card-spec-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 600;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-price {
            display: flex;
            flex-direction: column;
        }

        .card-price-label {
            font-size: 13px;
            color: var(--text-muted);
        }

        .card-price-value {
            font-size: clamp(26px, 4vw, 32px);
            font-weight: 800;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'JetBrains Mono', monospace;
        }

        .card-btn {
            padding: 14px 26px;
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-btn:hover {
            background: var(--gradient-brand);
            border-color: transparent;
        }

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

        .card-btn:hover svg {
            transform: translateX(4px);
        }

        /* Coming Soon Card */
        .card.coming-soon {
            position: relative;
            cursor: default;
            pointer-events: none;
        }
        .card.coming-soon .card-header,
        .card.coming-soon .card-specs,
        .card.coming-soon .card-footer {
            filter: blur(1.5px);
            opacity: 0.4;
        }
        .coming-soon-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            border-radius: inherit;
        }
        .coming-soon-badge {
            background: rgba(59, 111, 217, 0.1);
            color: #3b6fd9;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            border: 1.5px solid rgba(59, 111, 217, 0.2);
            backdrop-filter: blur(2px);
        }
        [data-theme="dark"] .coming-soon-badge {
            background: rgba(96, 165, 250, 0.12);
            color: #93bbfc;
            border-color: rgba(96, 165, 250, 0.25);
        }
        .card-btn.btn-processing {
            background: #e2e8f0;
            color: #64748b;
            border-color: #e2e8f0;
            cursor: default;
        }
        .card-btn.btn-processing:hover {
            background: #e2e8f0;
            border-color: #e2e8f0;
            color: #64748b;
        }
        [data-theme="dark"] .card-btn.btn-processing,
        [data-theme="dark"] .card-btn.btn-processing:hover {
            background: #334155;
            color: #94a3b8;
            border-color: #334155;
        }

        /* Features Section */
        /* =============================================
           ABOUT US SECTION
           ============================================= */
        .about-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
            position: relative;
            z-index: 1;
        }

        .about-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Intro */
        .about-intro {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-headline {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -1.5px;
            line-height: 1.15;
            margin: 16px 0 24px;
            font-family: 'Outfit', sans-serif;
        }

        .about-lead {
            max-width: 720px;
            margin: 0 auto;
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        /* Stats */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 48px;
        }

        .about-stat {
            text-align: center;
            padding: 28px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .about-stat:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,.06);
            border-color: rgba(1, 163, 83, 0.2);
        }

        .about-stat-number {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: var(--brand-green);
            font-family: 'Outfit', sans-serif;
            letter-spacing: -1px;
            line-height: 1;
            margin-bottom: 6px;
        }

        .about-stat-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Mission + Expertise cards */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }

        .about-card {
            padding: 36px 32px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            border-radius: 20px 20px 0 0;
        }

        .about-card--mission::before {
            background: var(--gradient-brand);
        }

        .about-card--expertise::before {
            background: linear-gradient(90deg, var(--brand-navy), #6366f1);
        }

        .about-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,.08);
        }

        .about-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: rgba(1, 163, 83, 0.1);
            color: var(--brand-green);
        }

        .about-card--expertise .about-card-icon {
            background: rgba(52, 78, 124, 0.1);
            color: var(--brand-navy);
        }

        .about-card-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }

        .about-card-text {
            font-size: 15.5px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* Services */
        .about-services-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -0.3px;
        }

        .about-services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-service {
            display: flex;
            gap: 18px;
            padding: 28px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .about-service:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,.06);
            border-color: rgba(1, 163, 83, 0.15);
        }

        .about-service-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-service-icon--indigo {
            background: rgba(99,102,241,.1);
            color: #4f46e5;
        }
        .about-service-icon--orange {
            background: rgba(249,115,22,.1);
            color: #ea580c;
        }
        .about-service-icon--cyan {
            background: rgba(6,182,212,.1);
            color: #0891b2;
        }
        .about-service-icon--green {
            background: rgba(34,197,94,.1);
            color: #16a34a;
        }

        .about-service-content {
            flex: 1;
            min-width: 0;
        }

        .about-service-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .about-service-desc {
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 60px 20px;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .about-stat {
                padding: 20px 12px;
            }

            .about-stat-number {
                font-size: 26px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .about-card {
                padding: 28px 22px;
            }

            .about-services-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-service {
                padding: 22px 18px;
            }

            .about-lead {
                font-size: 15px;
            }
        }

        /* CTA Section */
        .cta {
            padding: 120px 40px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            padding: 64px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-brand);
        }

        .cta-title {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .cta-desc {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-secondary);
            margin-bottom: 36px;
            line-height: 1.6;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 44px;
            background: var(--gradient-brand);
            border: none;
            border-radius: var(--radius-md);
            color: white;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            text-decoration: none;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(52, 78, 124, 0.4);
        }

        /* Pre-Footer Stats Section */
        .pre-footer-stats {
            background: var(--gradient-glow);
            border-top: 1px solid var(--border-glass);
            border-bottom: 1px solid var(--border-glass);
            padding: 60px 20px;
            position: relative;
            z-index: 1;
        }

        .pre-footer-stats .stats {
            margin-top: 0;
            animation: none;
        }

        @media (max-width: 600px) {
            .pre-footer-stats {
                padding: 40px 16px;
            }
        }

        /* Footer */
        /* =====================
           FOOTER – card layout
        ===================== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-glass);
            padding: 0;
            position: relative;
            z-index: 1;
        }

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

        /* ── Main row ── */
        .footer-main {
            display: grid;
            grid-template-columns: 300px 1fr 220px;
            gap: 48px;
            padding: 56px 0 48px;
            align-items: start;
        }

        /* ── CTA Card ── */
        .footer-cta-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 18px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .footer-cta-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(34,197,94,.06));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-green);
            margin-bottom: 18px;
        }

        .footer-cta-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .footer-cta-card p {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 22px;
        }

        .footer-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            background: var(--brand-navy);
            color: #fff;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            align-self: flex-start;
        }

        .footer-cta-btn:hover {
            background: var(--brand-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34,197,94,.3);
        }

        /* ── Link columns group ── */
        .footer-links-group {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            min-width: 130px;
        }

        .footer-title {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-green);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 13px;
        }

        .footer-links li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .footer-links li a:hover {
            color: var(--text-primary);
        }

        /* ── Follow Us column ── */
        .footer-follow-col {
            display: flex;
            flex-direction: column;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.22s ease;
        }

        .social-link:hover {
            background: var(--brand-navy);
            border-color: var(--brand-navy);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(26,54,93,.2);
        }

        .social-link.social-whatsapp:hover {
            background: #25D366;
            border-color: #25D366;
            box-shadow: 0 6px 16px rgba(37,211,102,.25);
        }

        /* WhatsApp promo strip */
        .footer-whatsapp-promo {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 12px 14px;
            text-decoration: none;
            margin-bottom: 20px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .footer-whatsapp-promo:hover {
            border-color: #25D366;
            box-shadow: 0 4px 16px rgba(37,211,102,.15);
        }

        .footer-whatsapp-logo {
            width: 36px;
            height: 36px;
            background: rgba(37,211,102,.12);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .footer-whatsapp-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .footer-whatsapp-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .footer-whatsapp-sub {
            font-size: 11.5px;
            color: #25D366;
            font-weight: 500;
        }

        /* Newsletter mini */
        .footer-newsletter-inline {
            border-top: 1px solid var(--border-glass);
            padding-top: 18px;
        }

        .footer-newsletter-inline h4 {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-green);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 6px;
        }

        .footer-newsletter-inline p {
            font-size: 12.5px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            gap: 7px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 13px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-primary);
            font-family: inherit;
            transition: border-color 0.2s ease;
            min-width: 0;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(34,197,94,.1);
        }

        .newsletter-form input::placeholder { color: var(--text-muted); }

        .newsletter-form button {
            width: 40px;
            height: 40px;
            background: var(--brand-navy);
            border: none;
            border-radius: 8px;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease, transform 0.2s ease;
            flex-shrink: 0;
        }

        .newsletter-form button:hover {
            background: var(--brand-green);
            transform: scale(1.06);
        }

        /* ── Footer Brand / Logo ── */
        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 32px 0 24px;
            border-top: 1px solid var(--border-glass);
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .footer-logo:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .footer-logo-mark {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(52, 78, 124, 0.25);
            flex-shrink: 0;
        }

        .footer-logo-text {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .footer-visa {
            color: var(--brand-navy);
        }

        .footer-d {
            color: var(--brand-green);
        }

        .footer-tagline {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            font-weight: 400;
            letter-spacing: 0.2px;
        }

        /* ── Footer Bottom bar ── */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            border-top: 1px solid var(--border-glass);
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-bottom-left p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        .footer-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11.5px;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--bg-card);
            padding: 4px 11px;
            border-radius: 20px;
            border: 1px solid var(--border-glass);
        }

        .trust-badge svg { color: var(--brand-green); }

        .footer-bottom-right { display: flex; align-items: center; }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .payment-methods span {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .payment-icons { display: flex; gap: 6px; flex-wrap: wrap; }

        .payment-icon {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-secondary);
        }

        /* ── Scroll-to-top ── */
        .scroll-top-btn {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 44px;
            height: 44px;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-secondary);
            box-shadow: 0 4px 16px rgba(0,0,0,.1);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(16px);
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top-btn:hover {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(34,197,94,.35);
        }

        /* ── Footer Responsive ── */
        @media (max-width: 1100px) {
            .footer-main {
                grid-template-columns: 260px 1fr 200px;
                gap: 36px;
            }
        }

        @media (max-width: 900px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .footer-cta-card {
                grid-column: 1 / -1;
                flex-direction: row;
                align-items: flex-start;
                gap: 24px;
            }
            .footer-cta-icon { flex-shrink: 0; }
        }

        @media (max-width: 768px) {
            .footer-container { padding: 0 20px; }
            .footer-main {
                grid-template-columns: 1fr;
                padding: 36px 0 32px;
                gap: 28px;
            }
            .footer-cta-card { flex-direction: column; }
            .footer-links-group { gap: 28px; }
            .footer-brand { padding: 24px 0 18px; }
            .footer-logo-mark { width: 34px; height: 34px; border-radius: 10px; }
            .footer-logo-mark svg { width: 18px; height: 18px; }
            .footer-logo-text { font-size: 24px; }
            .footer-tagline { font-size: 12px; }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .footer-bottom-left { flex-direction: column; gap: 12px; }
            .scroll-top-btn { bottom: 90px; right: 16px; }
        }

        @media (max-width: 480px) {
            .footer-social { gap: 8px; }
            .payment-methods { flex-direction: column; gap: 8px; }
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        [data-theme="dark"] .modal-overlay {
            background: rgba(0, 0, 0, 0.8);
        }

        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }

        .modal {
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            background: var(--bg-secondary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.show .modal {
            transform: translateY(0);
        }

        .modal-header {
            padding: 24px 28px;
            border-bottom: 1px solid var(--border-glass);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 700;
        }

        .modal-close {
            width: 36px;
            height: 36px;
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .modal-close:hover {
            background: #e53935;
            border-color: #e53935;
            color: white;
        }

        .modal-search {
            padding: 16px 28px;
            border-bottom: 1px solid var(--border-glass);
        }

        .modal-search input {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .modal-search input:focus {
            outline: none;
            border-color: var(--brand-navy);
        }

        .modal-search input::placeholder {
            color: var(--text-muted);
        }

        .modal-list {
            max-height: 400px;
            overflow-y: auto;
            padding: 12px;
        }

        .modal-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-item:hover {
            background: var(--bg-glass);
        }

        .modal-item-flag {
            font-size: 28px;
        }

        .modal-item-name {
            font-size: 15px;
            font-weight: 500;
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            padding: 12px 22px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            z-index: 10001;
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        }
        .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
        .toast-success { border-left: 3px solid #3a9d4f; }
        .toast-warn    { border-left: 3px solid #e67e22; }
        .toast-error   { border-left: 3px solid #ef4444; }
        .toast-info    { border-left: 3px solid #3b82f6; }

        /* ── Inline field notice ── */
        .field-notice {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            margin-top: 6px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            animation: fieldNoticeIn 0.3s ease;
        }
        .field-notice svg { flex-shrink: 0; }
        .field-notice-warn  { background: #fef3e2; color: #b45309; }
        .field-notice-error { background: #fef2f2; color: #dc2626; }
        .field-notice-success { background: #ecfdf5; color: #16a34a; }
        .field-notice-info  { background: #eff6ff; color: #2563eb; }
        .field-notice.fade-out { opacity: 0; transition: opacity 0.4s ease; }

        [data-theme="dark"] .field-notice-warn  { background: rgba(234,179,8,0.12); color: #fbbf24; }
        [data-theme="dark"] .field-notice-error { background: rgba(239,68,68,0.12); color: #f87171; }
        [data-theme="dark"] .field-notice-success { background: rgba(58,157,79,0.12); color: #4ade80; }
        [data-theme="dark"] .field-notice-info  { background: rgba(59,130,246,0.12); color: #60a5fa; }

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

        /* ── Submission Loading Overlay ── */
        .ssl-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 20001;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .ssl-overlay.show { opacity: 1; }
        .ssl-overlay.show .ssl-card {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .ssl-card {
            background: var(--bg-secondary);
            border-radius: 20px;
            padding: 40px 32px;
            max-width: 380px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transform: translateY(20px) scale(0.97);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .ssl-spinner-wrap {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ssl-spinner {
            width: 56px;
            height: 56px;
            border: 3px solid var(--border-glass);
            border-top-color: var(--brand-green);
            border-right-color: var(--brand-navy);
            border-radius: 50%;
            animation: sslSpin 0.9s linear infinite;
        }
        @keyframes sslSpin {
            to { transform: rotate(360deg); }
        }

        .ssl-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px;
        }
        .ssl-subtitle {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0 0 28px;
        }

        .ssl-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
        }

        .ssl-step {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 14px;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }
        .ssl-step + .ssl-step {
            border-top: 1px solid var(--border-glass);
        }

        .ssl-step-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .ssl-step .ssl-step-done { display: none; }
        .ssl-step .ssl-step-loading { display: none; }

        /* Active step */
        .ssl-step.active {
            color: var(--text-primary);
            font-weight: 500;
        }
        .ssl-step.active .ssl-step-loading {
            display: block;
            animation: sslSpin 0.9s linear infinite;
            color: var(--brand-navy);
        }

        /* Done step */
        .ssl-step.done {
            color: var(--brand-green);
            font-weight: 500;
        }
        .ssl-step.done .ssl-step-done { display: block; }
        .ssl-step.done .ssl-step-loading { display: none; }

        /* ── Submission Success Modal ── */
        .ssm-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .ssm-overlay.show { opacity: 1; }
        .ssm-overlay.show .ssm-card {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .ssm-card {
            background: var(--bg-secondary);
            border-radius: 20px;
            padding: 32px;
            max-width: 420px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transform: translateY(20px) scale(0.97);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .ssm-icon-wrap {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: rgba(58,157,79,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ssm-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 4px;
        }
        .ssm-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 20px;
        }

        .ssm-details {
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 4px 0;
            margin-bottom: 20px;
            text-align: left;
        }
        .ssm-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 16px;
            font-size: 13px;
        }
        .ssm-row + .ssm-row { border-top: 1px solid var(--border-glass); }
        .ssm-row span { color: var(--text-muted); }
        .ssm-row strong { color: var(--text-primary); font-weight: 600; }

        .ssm-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ssm-auth-prompt { margin-bottom: 4px; }
        .ssm-auth-text {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0 0 12px;
            line-height: 1.5;
        }

        /* Inline password form */
        .ssm-password-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .ssm-field { width: 100%; }
        .ssm-input-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            padding: 0 12px;
            transition: border-color 0.2s;
        }
        .ssm-input-wrap:focus-within {
            border-color: var(--brand, #344E7C);
            box-shadow: 0 0 0 3px rgba(52,78,124,0.08);
        }
        .ssm-input-wrap svg { flex-shrink: 0; opacity: 0.4; }
        .ssm-input-wrap.ssm-readonly {
            background: var(--bg-glass);
            opacity: 0.75;
        }
        .ssm-input-wrap.ssm-readonly input {
            cursor: default;
            color: var(--text-secondary);
        }
        .ssm-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 11px 0;
            font-size: 14px;
            font-family: inherit;
            color: var(--text-primary);
            outline: none;
        }
        .ssm-input::placeholder { color: var(--text-muted); }
        .ssm-toggle-pw {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            opacity: 0.4;
            transition: opacity 0.2s;
        }
        .ssm-toggle-pw:hover { opacity: 0.7; }
        .ssm-pw-error {
            display: none;
            font-size: 12px;
            color: #ef4444;
            margin-top: 4px;
            text-align: left;
            padding-left: 2px;
        }
        .ssm-btn-create { width: 100%; margin-top: 2px; }
        .ssm-btn-create:disabled { opacity: 0.65; cursor: wait; }
        .ssm-spinner {
            display: inline-block;
            width: 16px; height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: ssmSpin 0.6s linear infinite;
        }
        @keyframes ssmSpin { to { transform: rotate(360deg); } }
        .ssm-account-created {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            background: rgba(58,157,79,0.08);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #3a9d4f;
        }

        [data-theme="dark"] .ssm-input-wrap {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.1);
        }
        [data-theme="dark"] .ssm-input-wrap:focus-within {
            border-color: rgba(52,78,124,0.5);
            box-shadow: 0 0 0 3px rgba(52,78,124,0.15);
        }

        .ssm-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            font-family: inherit;
        }
        .ssm-btn-primary {
            background: var(--gradient-brand);
            color: #fff;
            box-shadow: 0 4px 12px rgba(52,78,124,0.25);
        }
        .ssm-btn-primary:hover {
            box-shadow: 0 6px 18px rgba(52,78,124,0.35);
            transform: translateY(-1px);
        }
        .ssm-btn-ghost {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid var(--border-glass);
        }
        .ssm-btn-ghost:hover {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        [data-theme="dark"] .ssm-card {
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }
        [data-theme="dark"] .ssm-icon-wrap {
            background: rgba(58,157,79,0.15);
        }

        @media (max-width: 480px) {
            .ssm-card { padding: 24px 20px; border-radius: 16px; }
            .ssm-title { font-size: 20px; }
        }

        /* Inline Auth Dialog (iad) — extends ssm-* classes */
        .iad-card { max-width: 420px; }
        .iad-form { margin-top: 16px; }
        .iad-form .ssm-field { margin-bottom: 10px; }
        .iad-loading { display: flex; flex-direction: column; align-items: center; padding: 32px 0; }
        .ssm-spinner {
            width: 20px; height: 20px; border: 2px solid rgba(0,0,0,0.1);
            border-top-color: #3b82f6; border-radius: 50%;
            animation: ssmSpin 0.6s linear infinite; display: inline-block; vertical-align: middle;
        }
        @keyframes ssmSpin { to { transform: rotate(360deg); } }

        /* OTP input boxes */
        .otp-box {
            width: 44px; height: 52px; text-align: center; font-size: 22px; font-weight: 600;
            border: 2px solid var(--border-color, #e2e8f0); border-radius: 10px;
            background: var(--bg-primary, #fff); color: var(--text-primary, #1e293b);
            outline: none; transition: border-color 0.2s;
        }
        .otp-box:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
        [data-theme="dark"] .otp-box { background: #1e293b; border-color: #334155; color: #f1f5f9; }
        [data-theme="dark"] .otp-box:focus { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96,165,250,0.15); }
        @media (max-width: 400px) {
            .otp-box { width: 38px; height: 46px; font-size: 18px; }
        }

        /* Visa Details Page - Modern Professional Design */
        .visa-details-page {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            max-width: 100vw;
            background: var(--bg-secondary);
            z-index: 9000;
            overflow-y: auto;
            overflow-x: hidden;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
            -webkit-overflow-scrolling: touch;
        }

        .visa-details-page.show {
            display: block;
            opacity: 1;
        }

        .visa-details-page * {
            max-width: 100%;
            box-sizing: border-box;
        }

        .visa-details-header {
            position: sticky;
            top: 0;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-glass);
            padding: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0,0,0,0.06);
        }

        [data-theme="dark"] .visa-details-header {
            background: var(--bg-primary);
        }

        .visa-details-nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 14px 48px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;
            box-sizing: border-box;
            width: 100%;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 0;
            flex-shrink: 0;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .header-logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-brand);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(52, 78, 124, 0.3);
        }

        .header-logo-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .header-logo-text {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .header-logo-text .visa-part {
            color: var(--brand-navy);
        }

        .header-logo-text .d-part {
            color: var(--brand-green);
        }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--bg-secondary);
            border: none;
            border-radius: 100px;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .back-btn:hover {
            background: var(--bg-glass);
            color: var(--brand-navy);
        }

        .visa-details-title-section {
            display: flex;
            align-items: center;
            gap: 14px;
            justify-content: center;
            min-width: 0;
            overflow: hidden;
        }

        .visa-details-flag {
            width: 38px;
            height: 28px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .visa-details-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .visa-details-name {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: flex-end;
            min-width: 0;
            flex-shrink: 0;
        }

        /* Theme Toggle */
        .theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--bg-secondary);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .theme-toggle:hover {
            background: var(--bg-glass);
            color: var(--brand-navy);
            transform: scale(1.05);
        }

        .theme-toggle svg {
            width: 20px;
            height: 20px;
            transition: all 0.3s ease;
        }

        .theme-toggle .sun-icon {
            display: none;
        }

        .theme-toggle .moon-icon {
            display: block;
        }

        [data-theme="dark"] .theme-toggle .sun-icon {
            display: block;
        }

        [data-theme="dark"] .theme-toggle .moon-icon {
            display: none;
        }

        /* Visa Details Header Action Buttons (matching homepage mobile style) */
        .details-header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .details-action-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-glass);
            background: var(--bg-card);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }

        .details-action-btn svg {
            width: 18px;
            height: 18px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .details-action-btn:hover {
            background: var(--bg-secondary);
            border-color: var(--brand-green);
        }

        .details-action-btn:hover svg {
            color: var(--brand-green);
        }

        /* Phone Button with pulse */
        .details-phone-btn {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            border: none;
        }

        .details-phone-btn svg {
            color: white;
        }

        .details-phone-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
        }

        .details-phone-btn:hover svg {
            color: white;
        }

        .details-phone-pulse {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
            border: 2px solid var(--bg-primary);
            animation: phonePulse 2s ease-in-out infinite;
        }

        /* Theme Toggle Button */
        .details-theme-btn {
            background: var(--bg-card);
        }

        .details-theme-btn .theme-icon-sun {
            display: block;
            color: #f59e0b;
        }

        .details-theme-btn .theme-icon-moon {
            display: none;
            color: #6366f1;
        }

        [data-theme="dark"] .details-theme-btn .theme-icon-sun {
            display: none;
        }

        [data-theme="dark"] .details-theme-btn .theme-icon-moon {
            display: block;
        }

        [data-theme="dark"] .details-theme-btn {
            background: var(--bg-secondary);
        }

        .visa-details-badge-header {
            display: none;
        }

        .visa-details-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 32px 48px 48px;
            display: grid;
            grid-template-columns: 1fr minmax(0, 420px);
            gap: 32px;
            width: 100%;
            box-sizing: border-box;
        }

        .visa-details-page > footer {
            width: 100%;
        }

        .visa-info-panel {
            display: flex;
            flex-direction: column;
            gap: 24px;
            min-width: 0;
            max-width: 100%;
        }

        .info-card {
            background: var(--bg-primary);
            border: none;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 4px 30px rgba(52, 78, 124, 0.08);
            transition: all 0.3s ease;
            min-width: 0;
            max-width: 100%;
            overflow: hidden;
        }

        .info-card:hover {
            box-shadow: 0 8px 40px rgba(52, 78, 124, 0.12);
        }

        .info-card-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-card-title svg {
            color: var(--brand-navy);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            width: 100%;
            min-width: 0;
        }

        .spec-item {
            padding: 24px 20px;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(52, 78, 124, 0.03) 100%);
            border: none;
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
            transition: all 0.3s ease;
            min-width: 0;
            overflow: hidden;
        }

        .spec-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(52, 78, 124, 0.15);
        }

        .spec-icon {
            width: 62px;
            height: 62px;
            background: var(--bg-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-navy);
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(52, 78, 124, 0.12);
            transition: all 0.3s ease;
        }

        .spec-item:hover .spec-icon {
            background: var(--gradient-brand);
            color: white;
            transform: scale(1.1);
        }

        .spec-icon svg {
            width: 28px;
            height: 28px;
        }

        .spec-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
            max-width: 100%;
        }

        .spec-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 700;
            word-break: break-word;
        }

        .spec-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* ── Tabs ── */
        .info-tabs {
            display: flex;
            gap: 4px;
            background: var(--bg-secondary);
            padding: 5px;
            border-radius: 14px;
            margin-bottom: 20px;
        }

        .info-tab {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 14px;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 10px;
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            white-space: nowrap;
        }

        .info-tab:hover {
            color: var(--text-primary);
        }

        .info-tab.active {
            background: rgba(1, 163, 83, 0.1);
            color: var(--brand-green);
            border-color: rgba(1, 163, 83, 0.2);
        }

        /* ── Process – 2-col card grid ── */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 14px;
            border: 1px solid transparent;
            transition: all 0.22s ease;
            position: relative;
            overflow: hidden;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: var(--gradient-brand);
            opacity: 0;
            transition: opacity 0.22s ease;
        }

        .process-step:hover {
            border-color: rgba(1, 163, 83, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(1, 163, 83, 0.07);
        }

        .process-step:hover::after {
            opacity: 1;
        }

        .step-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .step-number {
            width: 30px;
            height: 30px;
            background: var(--gradient-brand);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .step-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(1, 163, 83, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-green);
        }

        .step-icon svg {
            width: 18px;
            height: 18px;
        }

        .step-content h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 3px;
        }

        .step-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* hidden — kept for compat */
        .step-indicator, .step-connector { display: none; }

        /* ── Documents – single-column checklist ── */
        .documents-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .document-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 18px;
            background: var(--bg-secondary);
            border-radius: 12px;
            border: 1px solid transparent;
            border-left-width: 3px;
            transition: all 0.2s ease;
        }

        .document-item:hover {
            border-color: rgba(1, 163, 83, 0.15);
            border-left-color: var(--brand-green);
            background: rgba(1, 163, 83, 0.04);
        }

        .document-item.required {
            border-left-color: var(--brand-green);
        }

        .document-item.optional {
            border-left-color: rgba(52, 78, 124, 0.4);
        }

        .document-icon {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(1, 163, 83, 0.1);
            color: var(--brand-green);
        }

        .document-item.optional .document-icon {
            background: rgba(52, 78, 124, 0.1);
            color: var(--brand-navy);
        }

        .document-text {
            font-size: 17px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.5;
            flex: 1;
        }

        .doc-badge {
            flex-shrink: 0;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(1, 163, 83, 0.12);
            color: var(--brand-green);
        }

        .doc-badge.optional {
            background: rgba(52, 78, 124, 0.1);
            color: var(--brand-navy);
        }

        .documents-note {
            margin-top: 12px;
            font-size: 12px;
            color: var(--text-muted);
            font-style: italic;
        }

        .documents-note {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 14px;
            font-style: italic;
        }

        /* ── FAQ Section ── */
        .faq-item {
            background: var(--bg-secondary);
            border-radius: 12px;
            margin-bottom: 10px;
            overflow: hidden;
            border: 1px solid transparent;
            transition: border-color 0.2s ease;
        }

        .faq-item.faq-open {
            border-color: rgba(1, 163, 83, 0.2);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 22px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            font-family: inherit;
            gap: 12px;
        }

        .faq-toggle {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            color: var(--text-muted);
            transition: transform 0.25s ease, color 0.2s ease;
        }

        .faq-item.faq-open .faq-toggle {
            transform: rotate(180deg);
            color: var(--brand-green);
        }

        .faq-answer {
            display: none;
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.65;
            padding: 0 22px 20px;
        }

        .faq-item.faq-open .faq-answer {
            display: block;
        }

        /* Reviews Section */
        .reviews-section {
            margin-top: 24px;
        }

        .reviews-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            gap: 12px;
        }

        .reviews-header-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .reviews-nav {
            display: flex;
            gap: 6px;
        }

        .reviews-nav-btn {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1px solid var(--border-glass);
            background: var(--bg-card);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .reviews-nav-btn:hover:not(:disabled) {
            background: var(--brand-navy);
            border-color: var(--brand-navy);
            color: #fff;
        }

        .reviews-nav-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .reviews-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .reviews-title svg {
            color: var(--brand-navy);
        }

        .reviews-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .reviews-stars {
            display: flex;
            gap: 2px;
            color: #fbbf24;
        }

        .reviews-stars svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .reviews-score {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .reviews-count {
            font-size: 14px;
            color: var(--text-muted);
        }

        .reviews-grid {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 4px;
        }

        .reviews-grid::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            background: var(--bg-secondary);
            border-radius: 18px;
            padding: 24px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            flex: 0 0 calc(33.333% - 10px);
            max-width: calc(33.333% - 10px);
            scroll-snap-align: start;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(52, 78, 124, 0.12);
            border-color: rgba(52, 78, 124, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .review-avatar {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            background: var(--gradient-brand);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 15px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(52, 78, 124, 0.2);
        }

        .review-info {
            flex: 1;
        }

        .review-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .review-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .review-destination {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .review-stars {
            display: flex;
            gap: 2px;
            color: #fbbf24;
            margin-bottom: 10px;
        }

        .review-stars svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .review-verified {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: var(--brand-green);
            font-weight: 600;
            margin-top: 12px;
        }

        .review-verified svg {
            width: 14px;
            height: 14px;
        }

        /* Booking Sidebar - Modern Card */
        .booking-sidebar {
            position: sticky;
            top: 90px;
            height: fit-content;
            min-width: 0;
            max-width: 100%;
        }

        .booking-card {
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 20px;
            padding: 0;
            position: relative;
            max-width: 100%;
            overflow: visible;
            box-shadow: 0 8px 40px rgba(52, 78, 124, 0.10);
            transition: all 0.3s ease;
        }
        
        /* Fullscreen Toggle Button */
        .fullscreen-toggle-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            padding: 0;
            background: var(--bg-secondary);
            border: 1px solid var(--border-solid);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            z-index: 100;
            transition: all 0.2s ease;
        }
        
        /* Hide expand/collapse button on mobile */
        @media (max-width: 768px) {
            .fullscreen-toggle-btn {
                display: none !important;
            }
        }
        
        .fullscreen-toggle-btn:hover {
            background: var(--bg-primary);
            border-color: var(--brand-green);
        }
        
        .fullscreen-icon {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
        }
        
        .fullscreen-text {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
        }
        
        .fullscreen-toggle-btn:hover .fullscreen-icon,
        .fullscreen-toggle-btn:hover .fullscreen-text {
            color: var(--brand-green);
        }
        
        /* Default: show expand, hide collapse */
        .fullscreen-icon.expand,
        .fullscreen-text.expand {
            display: inline-block;
        }

        .fullscreen-icon.collapse,
        .fullscreen-text.collapse {
            display: none;
        }

        /* =============================================
           FULLSCREEN MODE — BEAUTIFUL REDESIGN
           ============================================= */

        .booking-card.fullscreen {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            width: 100%; height: 100vh;
            max-width: 100%;
            border-radius: 0;
            border: none;
            z-index: 9995;
            overflow-y: auto;
            overflow-x: hidden;
            animation: expandFullscreen 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            background: var(--bg-secondary);
            padding: 0;
        }

        .booking-card.fullscreen::before { display: none; }
        [data-theme="dark"] .booking-card.fullscreen { background: var(--bg-primary); }

        /* ── Collapse button ── */
        .booking-card.fullscreen .fullscreen-toggle-btn {
            display: flex !important;
            position: fixed;
            top: 18px; right: 24px; left: auto;
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            color: var(--text-secondary);
            z-index: 99999;
            padding: 10px 22px;
            border-radius: 30px;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
            transition: all 0.2s;
        }
        .booking-card.fullscreen .fullscreen-toggle-btn:hover {
            border-color: var(--brand-green);
            color: var(--brand-green);
        }
        .booking-card.fullscreen .fullscreen-icon,
        .booking-card.fullscreen .fullscreen-text { color: inherit; }

        /* ── Page title ── */
        .booking-card.fullscreen .apply-now-header-block {
            padding: 48px 24px 0;
            border: none;
        }
        .booking-card.fullscreen .apply-now-simple {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            text-align: center;
            margin: 0 0 10px;
            letter-spacing: -0.8px;
        }
        .booking-card.fullscreen .apply-now-header {
            background: transparent; border: none; padding: 48px 24px 0;
        }
        .booking-card.fullscreen .apply-now-title { font-size: 32px; letter-spacing: -0.8px; }
        .booking-card.fullscreen .apply-now-subtitle { color: var(--text-secondary); font-size: 16px; margin-top: 6px; }

        /* ── Route strip ── */
        .booking-card.fullscreen .booking-route-header {
            max-width: 920px;
            margin: 24px auto 0;
            padding: 22px 40px;
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 18px;
            gap: 24px;
        }
        .booking-card.fullscreen .route-label {
            font-size: 11px; letter-spacing: 1.5px;
        }
        .booking-card.fullscreen .route-flag {
            width: 52px; height: 38px; border-radius: 8px;
        }
        .booking-card.fullscreen .route-country { font-size: 22px; }
        .booking-card.fullscreen .route-to-section .route-country { color: var(--brand-green); }
        .booking-card.fullscreen .route-arrow-wrapper {
            width: 48px; height: 48px;
        }
        .booking-card.fullscreen .route-arrow-icon { width: 20px; height: 20px; }

        /* ── Content wrappers ── */
        .booking-card.fullscreen .booking-form-content,
        .booking-card.fullscreen .booking-main-content,
        .booking-card.fullscreen .passport-upload-form,
        .booking-card.fullscreen .applicants-upload-section {
            max-width: 920px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ── Section labels ── */
        .booking-card.fullscreen .booking-form-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        /* ── Form section spacing ── */
        .booking-card.fullscreen .booking-form-section { margin-bottom: 20px; }

        /* ── Selectors (passport / destination) ── */
        .booking-card.fullscreen .booking-form-display {
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 16px;
            padding: 16px 20px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .booking-card.fullscreen .booking-form-display:hover {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(58,157,79,0.10);
        }
        .booking-card.fullscreen .booking-form-display .display-value {
            font-size: 18px; font-weight: 600; color: var(--text-primary);
        }
        .booking-card.fullscreen .booking-form-display .display-sublabel {
            color: var(--text-muted); font-size: 12px; margin-top: 2px;
        }
        .booking-card.fullscreen .booking-form-display .display-flag { width: 36px; height: 36px; }
        .booking-card.fullscreen .booking-form-display .change-icon { color: var(--text-muted); width: 18px; height: 18px; }

        /* ── Calendar trigger ── */
        .booking-card.fullscreen .calendar-picker-trigger {
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 16px;
            padding: 16px 20px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .booking-card.fullscreen .calendar-picker-trigger:hover {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(58,157,79,0.10);
        }
        .booking-card.fullscreen .calendar-picker-text { color: var(--text-primary); font-size: 17px; font-weight: 500; }
        .booking-card.fullscreen .calendar-picker-icon { color: var(--brand-navy); width: 20px; height: 20px; }
        .booking-card.fullscreen .calendar-picker-arrow { color: var(--text-muted); }
        .booking-card.fullscreen .calendar-hint { color: var(--text-muted); font-size: 13px; margin-top: 8px; }
        .booking-card.fullscreen .calendar-feedback {
            font-size: 14px; border-radius: 10px; padding: 12px 16px; margin-top: 10px;
        }

        /* ── Applicants counter ── */
        .booking-card.fullscreen .applicants-compact {
            padding: 16px 24px;
        }
        .booking-card.fullscreen .applicants-compact-label {
            font-size: 16px;
        }
        .booking-card.fullscreen .applicant-count-sm {
            font-size: 22px; font-weight: 800; min-width: 44px;
        }
        .booking-card.fullscreen .applicant-btn-sm {
            width: 44px; height: 44px; border-radius: 12px;
        }
        .booking-card.fullscreen .applicant-btn-sm svg {
            width: 18px; height: 18px;
        }

        /* ── Visa type buttons ── */
        .booking-card.fullscreen .visa-type-selector { gap: 12px; }
        .booking-card.fullscreen .visa-type-btn {
            font-size: 16px;
            font-weight: 600;
            padding: 18px 12px;
            border-radius: 16px;
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            color: var(--text-secondary);
            transition: all 0.2s;
            letter-spacing: 0.2px;
        }
        .booking-card.fullscreen .visa-type-btn:hover {
            border-color: var(--brand-green);
            color: var(--brand-green);
            background: rgba(58,157,79,0.04);
        }
        .booking-card.fullscreen .visa-type-btn.active {
            background: var(--gradient-brand);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 4px 16px rgba(58,157,79,0.30);
        }

        .booking-card.fullscreen .booking-service-tags {
            max-width: 920px;
            margin: 24px auto 0;
        }

        /* ── Price + processing ── */
        .booking-card.fullscreen .booking-price-header {
            max-width: 920px;
            margin: 24px auto;
            padding: 28px 32px;
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 20px;
            border-left: 5px solid var(--brand-green);
        }
        .booking-card.fullscreen .booking-price-amount {
            font-size: 56px;
            letter-spacing: -2px;
            color: var(--brand-navy);
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
        }
        .booking-card.fullscreen .booking-price-breakdown {
            font-size: 15px; color: var(--text-muted); margin-top: 4px;
        }
        .booking-card.fullscreen .booking-processing {
            background: rgba(58,157,79,0.08);
            border: 1.5px solid rgba(58,157,79,0.20);
            border-radius: 14px;
            padding: 16px 20px;
            max-width: 200px;
        }
        .booking-card.fullscreen .booking-processing-label {
            font-size: 11px; color: var(--text-muted); letter-spacing: 0.8px; font-weight: 700;
        }
        .booking-card.fullscreen .booking-processing-value {
            font-size: 16px; font-weight: 700; color: var(--brand-green); margin-top: 2px;
        }
        .booking-card.fullscreen .booking-processing-icon { width: 24px; height: 24px; color: var(--brand-green); }

        /* ── Add-ons ── */
        .booking-card.fullscreen .booking-addons-section {
            max-width: 920px; margin: 0 auto; padding: 0 40px 28px;
        }
        .booking-card.fullscreen .addons-label {
            font-size: 12px; color: var(--text-muted); letter-spacing: 1.2px;
            font-weight: 700; text-transform: uppercase; margin-bottom: 12px;
        }
        .booking-card.fullscreen .addon-item {
            background: var(--bg-primary);
            border: 2px solid var(--border-solid);
            border-radius: 14px;
            padding: 18px 22px;
        }
        .booking-card.fullscreen .addon-item:hover {
            border-color: rgba(58,157,79,0.4);
        }
        .booking-card.fullscreen .addon-name { font-size: 16px; }
        .booking-card.fullscreen .addon-price { font-size: 18px; }
        .booking-card.fullscreen .no-addons-text { color: var(--text-muted); font-size: 15px; }

        /* ── CTA ── */
        .booking-card.fullscreen .booking-cta-section {
            max-width: 920px; margin: 0 auto; padding: 0 40px 56px;
        }
        .booking-card.fullscreen .start-application-btn {
            height: 66px;
            font-size: 18px;
            letter-spacing: 1px;
            border-radius: 18px;
            box-shadow: 0 6px 24px rgba(58,157,79,0.30);
        }

        /* ── Traveller / passport form ── */
        .booking-card.fullscreen .traveller-form,
        .booking-card.fullscreen .passport-upload-form {
            max-width: 920px; margin: 0 auto; padding: 0 40px 40px;
        }
        .booking-card.fullscreen .traveller-form-title { font-size: 30px; margin-bottom: 32px; letter-spacing: -0.5px; }
        .booking-card.fullscreen .form-back-btn { font-size: 16px; margin-bottom: 28px; }
        .booking-card.fullscreen .form-label { font-size: 13px; margin-bottom: 10px; }
        .booking-card.fullscreen .form-input,
        .booking-card.fullscreen .phone-prefix { padding: 18px 20px; font-size: 18px; border-radius: 14px; }
        .booking-card.fullscreen .form-group { margin-bottom: 26px; }
        .booking-card.fullscreen .form-summary { padding: 6px 24px; margin-bottom: 28px; border-radius: 16px; }
        .booking-card.fullscreen .form-summary-row { font-size: 17px; padding: 16px 0; }
        .booking-card.fullscreen .form-summary-row:last-child { font-size: 19px; }
        .booking-card.fullscreen .form-summary-row:last-child span:last-child { font-size: 24px; }
        .booking-card.fullscreen .submit-btn { padding: 22px; font-size: 18px; border-radius: 16px; }

        /* ── Dropdowns ── */
        .booking-card.fullscreen .booking-selector-dropdown { background: var(--bg-primary); border-color: var(--border-solid); }
        .booking-card.fullscreen .booking-selector-search { border-bottom-color: var(--border-solid); background: var(--bg-primary); }
        .booking-card.fullscreen .booking-selector-search input { background: var(--bg-secondary); border-color: var(--border-solid); color: var(--text-primary); }
        .booking-card.fullscreen .selector-option { color: var(--text-primary); font-size: 15px; padding: 12px 16px; }
        .booking-card.fullscreen .selector-option:hover { background: var(--bg-secondary); }
        .booking-card.fullscreen .selector-option.selected { background: rgba(58,157,79,0.10); color: var(--brand-green); }

        /* ── Calendar dropdown ── */
        .booking-card.fullscreen .calendar-dropdown { background: var(--bg-primary); border-color: var(--border-solid); }
        .booking-card.fullscreen .calendar-dropdown-header { border-bottom-color: var(--border-solid); }
        .booking-card.fullscreen .calendar-month-title { color: var(--text-primary); font-size: 17px; font-weight: 700; }
        .booking-card.fullscreen .calendar-nav-btn { background: var(--bg-secondary); color: var(--text-primary); width: 36px; height: 36px; }
        .booking-card.fullscreen .calendar-weekday { color: var(--text-muted); font-size: 12px; }
        .booking-card.fullscreen .calendar-day { color: var(--text-primary); font-size: 14px; }
        .booking-card.fullscreen .calendar-day:hover:not(.disabled):not(.other-month) { background: var(--bg-secondary); }
        .booking-card.fullscreen .calendar-day.other-month { color: var(--text-muted); opacity: 0.4; }
        .booking-card.fullscreen .calendar-legend { border-top-color: var(--border-solid); }
        .booking-card.fullscreen .legend-label { color: var(--text-muted); font-size: 13px; }

        /* ── DARK MODE ── */
        [data-theme="dark"] .booking-card.fullscreen .booking-route-header,
        [data-theme="dark"] .booking-card.fullscreen .booking-form-display,
        [data-theme="dark"] .booking-card.fullscreen .calendar-picker-trigger,
        [data-theme="dark"] .booking-card.fullscreen .applicants-compact-row,
        [data-theme="dark"] .booking-card.fullscreen .visa-type-btn,
        [data-theme="dark"] .booking-card.fullscreen .booking-price-header,
        [data-theme="dark"] .booking-card.fullscreen .addon-item,
        [data-theme="dark"] .booking-card.fullscreen .fullscreen-toggle-btn,
        [data-theme="dark"] .booking-card.fullscreen .form-summary { background: var(--bg-secondary); }
        [data-theme="dark"] .booking-card.fullscreen .booking-price-amount { color: #fff; }
        [data-theme="dark"] .booking-card.fullscreen .booking-selector-dropdown,
        [data-theme="dark"] .booking-card.fullscreen .booking-selector-search,
        [data-theme="dark"] .booking-card.fullscreen .calendar-dropdown { background: var(--bg-secondary); }

        @keyframes expandFullscreen {
            from { opacity: 0.6; transform: scale(0.97); }
            to   { opacity: 1;   transform: scale(1); }
        }

        /* Hide scrollbar on body when fullscreen */
        body.fullscreen-active {
            overflow: hidden;
        }

        body.fullscreen-active .visa-details-page {
            overflow: hidden;
        }

        .booking-card::before {
            display: none;
        }

        /* Apply Now Simple */
        .apply-now-header-block {
            text-align: center;
            padding: 16px 20px 14px;
            border-bottom: 1px solid var(--border-solid);
        }
        .apply-now-simple {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
        }
        .apply-now-processing {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border-radius: 100px;
            background: linear-gradient(135deg, rgba(58,157,79,0.08) 0%, rgba(58,157,79,0.03) 100%);
            border: 1px solid rgba(58,157,79,0.18);
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-green);
        }
        .apply-now-processing svg {
            color: var(--brand-green);
        }

        [data-theme="dark"] .apply-now-processing {
            background: rgba(58,157,79,0.12);
            border-color: rgba(58,157,79,0.25);
        }

        /* Apply Now Header */
        .apply-now-header {
            text-align: center;
            padding: 20px 20px 16px;
            border-bottom: 1px solid var(--border-solid);
            background: linear-gradient(135deg, rgba(168, 142, 72, 0.08) 0%, rgba(168, 142, 72, 0.02) 100%);
        }

        .apply-now-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px 0;
            background: linear-gradient(135deg, #a88e48 0%, #d4af37 50%, #a88e48 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .apply-now-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Increased font sizes for booking form */
        .booking-main-content .booking-form-label {
            font-size: 15px;
            font-weight: 700;
        }

        .booking-main-content .display-value {
            font-size: 17px;
        }

        .booking-main-content .applicants-compact-label {
            font-size: 17px;
        }

        .booking-main-content .applicant-count-sm {
            font-size: 22px;
        }

        .booking-main-content .visa-type-btn {
            font-size: 16px;
            padding: 14px 12px;
        }

        .booking-main-content .booking-price-amount {
            font-size: 44px;
        }

        .booking-main-content .addons-label {
            font-size: 16px;
        }

        .booking-main-content .addon-item {
            font-size: 16px;
        }

        /* Route Header - Modern Design */
        .booking-route-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 16px 20px;
            background: none;
            border-bottom: 1px solid var(--border-glass);
        }

        .route-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
            padding: 8px 12px;
        }

        .route-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 700;
            white-space: nowrap;
        }

        .route-country-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .route-flag {
            width: 38px;
            height: 28px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-secondary);
            box-shadow: 0 2px 6px rgba(0,0,0,0.08), 0 0 0 1.5px var(--border-glass);
        }

        .route-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .route-country {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .route-to-section {
            cursor: pointer;
            position: relative;
            border-radius: 12px;
            transition: background 0.2s ease;
        }

        .route-to-section:hover {
            background: rgba(58, 157, 79, 0.05);
        }

        .route-to-section .route-country {
            color: var(--brand-green);
        }

        .route-change-icon {
            color: var(--text-muted);
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .route-to-section:hover .route-change-icon {
            color: var(--brand-green);
        }

        /* Destination dropdown inside route header */
        .route-dropdown.booking-selector-dropdown {
            top: calc(100% + 6px);
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            min-width: 260px;
            z-index: 9999;
            border-radius: 12px;
        }

        .route-arrow-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: rgba(58, 157, 79, 0.08);
            border: 1.5px solid rgba(58, 157, 79, 0.2);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .route-arrow-icon {
            width: 16px;
            height: 16px;
            color: var(--brand-green);
        }

        .booking-route {
            padding: 16px 20px 0;
            text-align: center;
        }

        .booking-route-text {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .booking-route-text .route-from {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .booking-route-text .route-to {
            color: var(--brand-navy);
            font-weight: 700;
        }

        .booking-route-text .route-arrow {
            margin: 0 6px;
            color: var(--text-muted);
        }

        .booking-main-content,
        .traveller-form,
        .passport-upload-form {
            padding: 20px 22px 24px;
        }

        /* Service Tags (above price box) */
        .booking-service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }

        .booking-service-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-solid);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .booking-service-tag.addon-tag {
            background: rgba(58, 157, 79, 0.08);
            border-color: rgba(58, 157, 79, 0.2);
            color: var(--brand-green);
        }

        /* Price Header Modern */
        .booking-price-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            background: var(--bg-secondary);
            border-radius: 14px;
            margin-bottom: 14px;
            border: 1px solid var(--border-solid);
            gap: 12px;
        }

        .booking-price-main {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .booking-price-amount {
            font-size: 38px;
            font-weight: 800;
            color: var(--brand-navy);
            font-family: 'Outfit', sans-serif;
            line-height: 1;
            letter-spacing: -1px;
        }

        .booking-price-breakdown {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 4px;
            font-weight: 500;
        }
        
        .booking-price-divider {
            display: none;
        }
        
        .booking-processing {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: rgba(58, 157, 79, 0.1);
            border-radius: 10px;
            flex-shrink: 0;
            max-width: 140px;
        }
        
        .booking-processing-icon {
            width: 20px;
            height: 20px;
            color: var(--brand-green);
            flex-shrink: 0;
        }
        
        .booking-processing-text {
            display: flex;
            flex-direction: column;
        }
        
        .booking-processing-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .booking-processing-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--brand-green);
            line-height: 1.3;
        }

        .booking-processing-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(58, 157, 79, 0.12);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-green);
        }



        .booking-form-section {
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        /* Raise z-index when dropdown is open */
        .booking-form-section:has(.booking-selector-dropdown.show) {
            z-index: 100;
        }

        /* Calendar section needs higher z-index when open */
        .booking-form-section:has(.calendar-picker) {
            z-index: 50;
        }

        .booking-form-section:has(.calendar-dropdown.show) {
            z-index: 100;
        }

        .booking-form-label {
            font-size: 14px;
            color: var(--brand-navy);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 6px;
            display: block;
            font-weight: 700;
        }

        .booking-form-display {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--bg-secondary);
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
        }

        .booking-form-display:hover {
            background: var(--bg-secondary);
        }

        .booking-form-display .display-flag {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-secondary);
            box-shadow: 0 0 0 1.5px var(--border-glass);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .booking-form-display .display-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .booking-form-display .display-info {
            flex: 1;
        }

        .booking-form-display .display-value {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .booking-form-display .display-sublabel {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .booking-form-display .change-icon {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .booking-form-display:hover .change-icon {
            color: var(--brand-navy);
        }

        /* Booking Selector Dropdown */
        .booking-selector-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: var(--bg-primary);
            border: 1px solid var(--border-solid);
            border-radius: var(--radius-sm);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            max-height: 250px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .booking-selector-dropdown.show {
            display: block;
            animation: fadeUp 0.2s ease;
        }

        .booking-selector-search {
            padding: 10px;
            border-bottom: 1px solid var(--border-solid);
            position: sticky;
            top: 0;
            background: var(--bg-primary);
        }

        .booking-selector-search input {
            width: 100%;
            padding: 10px 12px;
            background: var(--bg-primary);
            border: 1px solid var(--border-solid);
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-primary);
            font-family: inherit;
        }

        .booking-selector-search input:focus {
            outline: none;
            border-color: var(--brand-navy);
        }

        .booking-selector-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .booking-selector-item:hover {
            background: var(--bg-glass);
        }

        .booking-selector-item.selected {
            background: rgba(58, 157, 79, 0.1);
        }

        .booking-selector-item .item-flag {
            font-size: 20px;
        }

        .booking-selector-item .item-name {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .booking-form-section {
            position: relative;
        }

        .booking-date-input {
            width: 100%;
            padding: 12px 14px;
            background: var(--bg-secondary);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .booking-date-input:hover {
            background: var(--bg-glass);
        }

        .booking-date-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 78, 124, 0.15);
        }

        .booking-form-divider {
            height: 1px;
            background: var(--border-glass);
            margin: 10px 0;
        }

        /* Visa Type Buttons */
        .visa-type-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .visa-type-btn {
            padding: 10px 8px;
            background: var(--bg-secondary);
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }

        .visa-type-btn:hover {
            background: var(--bg-glass);
            color: var(--text-primary);
        }

        .visa-type-btn.active {
            background: var(--gradient-brand);
            color: white;
        }

        /* Price Header */
        .booking-price-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-solid);
            border-radius: var(--radius-md);
            margin-bottom: 20px;
        }

        .booking-price-left {
            display: flex;
            flex-direction: column;
        }

        .booking-price-amount {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Outfit', sans-serif;
            line-height: 1;
        }

        .booking-price-per {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .booking-price-right {
            text-align: right;
        }

        .booking-processing-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: rgba(58, 157, 79, 0.1);
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-green);
        }

        /* Compact Applicants */
        .applicants-compact {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--bg-secondary);
            border-radius: 12px;
            margin-bottom: 16px;
            gap: 12px;
        }

        .applicants-compact-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .applicants-compact-control {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 4px;
            flex-shrink: 0;
        }

        .applicant-btn-sm {
            width: 36px;
            height: 36px;
            background: transparent;
            border: none;
            border-radius: 10px;
            color: var(--text-muted);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .applicant-btn-sm:hover {
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .applicant-btn-sm:active {
            transform: scale(0.92);
        }

        .applicant-btn-sm.plus {
            background: var(--brand-green);
            color: #fff;
        }

        .applicant-btn-sm.plus:hover {
            background: var(--brand-green-dark);
            color: #fff;
        }

        .applicant-count-sm {
            font-size: 18px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            min-width: 36px;
            text-align: center;
            color: var(--text-primary);
        }

        /* Add-on Packages */
        .addons-section {
            margin-bottom: 16px;
        }

        .addons-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
            display: block;
            font-weight: 600;
        }

        .addon-item {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 16px;
            background: var(--bg-secondary);
            border: 2px solid var(--border-glass);
            border-radius: 14px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.25s ease;
            user-select: none;
        }

        .addon-item:last-child {
            margin-bottom: 0;
        }

        .addon-item:hover {
            border-color: rgba(58, 157, 79, 0.4);
            background: rgba(58, 157, 79, 0.03);
        }

        .addon-item.selected {
            background: rgba(58, 157, 79, 0.06);
            border-color: var(--brand-green);
        }

        .addon-item.selected::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            box-shadow: 0 0 0 1px var(--brand-green);
            pointer-events: none;
        }

        /* Top row with toggle, icon, name, price */
        .addon-header {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        .addon-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .addon-toggle {
            width: 40px;
            height: 22px;
            border-radius: 12px;
            background: var(--border-glass);
            position: relative;
            flex-shrink: 0;
            transition: background 0.25s ease;
        }

        .addon-toggle::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
            transition: transform 0.25s ease;
        }

        .addon-item.selected .addon-toggle {
            background: var(--brand-green);
        }

        .addon-item.selected .addon-toggle::after {
            transform: translateX(18px);
        }

        .addon-icon {
            width: 36px;
            height: 36px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-navy);
            flex-shrink: 0;
            transition: all 0.25s ease;
        }

        .addon-icon svg {
            width: 18px;
            height: 18px;
        }

        .addon-item.selected .addon-icon {
            background: rgba(58, 157, 79, 0.12);
            border-color: rgba(58, 157, 79, 0.25);
            color: var(--brand-green);
        }

        .addon-info {
            display: flex;
            flex-direction: column;
            min-width: 0;
            flex: 1;
        }

        .addon-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.3;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .addon-price {
            font-size: 17px;
            font-weight: 700;
            color: var(--brand-green);
            font-family: 'Outfit', sans-serif;
            white-space: nowrap;
            flex-shrink: 0;
            padding: 4px 12px;
            background: rgba(58, 157, 79, 0.08);
            border-radius: 8px;
        }

        .addon-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid var(--border-glass);
            line-height: 1.4;
            width: 100%;
        }

        /* Compact feature tags */
        .addon-desc .addon-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .addon-desc .addon-features li {
            position: relative;
            padding: 7px 10px 7px 28px;
            margin-bottom: 0;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            line-height: 1.3;
            transition: all 0.2s ease;
        }

        .addon-item.selected .addon-desc .addon-features li {
            background: rgba(58, 157, 79, 0.06);
            border-color: rgba(58, 157, 79, 0.15);
        }

        .addon-desc .addon-features li::before {
            content: "✓";
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--brand-green);
            font-weight: 700;
            font-size: 13px;
            line-height: 1;
        }

        .addon-desc .addon-features li.tick-item::before {
            content: "✓";
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--brand-green);
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
        }

        .addon-desc strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Plain text description */
        .addon-desc-text {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* Tap hint label */
        .addon-tap-hint {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
            margin-left: auto;
            opacity: 0.7;
            transition: opacity 0.2s ease;
        }

        .addon-item:hover .addon-tap-hint {
            opacity: 1;
        }

        .addon-item.selected .addon-tap-hint {
            color: var(--brand-green);
            opacity: 1;
        }


        /* Traveller Details Form */
        .traveller-form {
            display: none;
            animation: slideUp 0.4s ease;
        }

        .traveller-form.show {
            display: block;
        }

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

        .booking-main-content {
            transition: all 0.3s ease;
            overflow: visible;
        }

        .booking-main-content.hidden {
            display: none;
        }

        .form-back-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            margin-bottom: 24px;
            font-family: inherit;
            transition: color 0.2s ease;
        }

        .form-back-btn:hover {
            color: var(--brand-navy);
        }

        .form-back-btn svg {
            width: 20px;
            height: 20px;
        }

        .traveller-form-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 28px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-label {
            font-size: 13px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
            display: block;
            font-weight: 700;
        }

        .form-input {
            width: 100%;
            padding: 16px 18px;
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 12px;
            font-size: 17px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .form-input:hover {
            border-color: var(--brand-navy);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--brand-navy);
            box-shadow: 0 0 0 3px rgba(52, 78, 124, 0.12);
        }

        .form-input::placeholder {
            color: var(--text-muted);
            font-weight: 400;
        }

        .phone-input-group {
            display: flex;
            gap: 10px;
        }

        .phone-prefix {
            width: 80px;
            padding: 16px 12px;
            background: var(--bg-secondary);
            border: 1.5px solid var(--border-solid);
            border-radius: 12px;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            flex-shrink: 0;
        }

        .phone-input-group .form-input {
            flex: 1;
        }

        .form-summary {
            background: var(--bg-primary);
            border: 1.5px solid var(--border-solid);
            border-radius: 14px;
            padding: 8px 20px;
            margin-bottom: 22px;
        }

        .form-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            color: var(--text-secondary);
            padding: 14px 0;
            border-bottom: 1px solid var(--border-solid);
            margin-bottom: 0;
        }

        .form-summary-row:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-top: 14px;
            font-weight: 800;
            font-size: 18px;
            color: var(--text-primary);
        }

        .form-summary-row span:first-child {
            font-weight: 500;
            color: var(--text-muted);
        }

        .form-summary-row:last-child span:first-child {
            color: var(--text-primary);
            font-weight: 800;
        }

        .form-summary-row span:last-child {
            font-weight: 600;
            color: var(--text-primary);
            font-family: inherit;
        }

        .form-summary-row:last-child span:last-child {
            color: var(--brand-green);
            font-size: 22px;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: var(--gradient-brand);
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(52, 78, 124, 0.4);
        }

        .form-note {
            font-size: 13px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 14px;
            line-height: 1.5;
        }

        .form-note svg {
            width: 14px;
            height: 14px;
            display: inline;
            vertical-align: middle;
            margin-right: 5px;
        }

        /* Passport Upload Step */
        .passport-upload-form {
            display: none;
            animation: slideUp 0.4s ease;
        }

        .passport-upload-form.show {
            display: block;
        }

        /* Eligibility Questions */
        .eligibility-step {
            margin-bottom: 16px;
        }
        
        .eligibility-question {
            display: flex;
            gap: 14px;
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 18px;
            border: 1px solid var(--border-glass);
        }
        
        .eligibility-question-number {
            width: 28px;
            height: 28px;
            background: var(--gradient-brand);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .eligibility-question-content {
            flex: 1;
        }
        
        .eligibility-question-text {
            font-size: 15px;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 14px;
        }
        
        .eligibility-question-text strong,
        .eligibility-question-text .highlight {
            color: var(--brand-green);
            font-weight: 600;
        }
        
        .eligibility-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 40px;
            color: var(--text-muted);
        }
        
        .eligibility-loading .loading-spinner {
            width: 24px;
            height: 24px;
            border: 2px solid var(--border-glass);
            border-top-color: var(--brand-green);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .eligibility-input-wrapper {
            display: flex;
            gap: 10px;
        }
        
        .eligibility-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            background: var(--bg-secondary);
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
        }
        
        .eligibility-input:focus {
            outline: none;
            border-color: var(--brand-green);
        }
        
        .eligibility-options {
            display: flex;
            gap: 10px;
        }
        
        .eligibility-btn {
            flex: 1;
            padding: 12px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }
        
        .eligibility-btn.yes-btn {
            background: rgba(58, 157, 79, 0.1);
            border: 1px solid rgba(58, 157, 79, 0.3);
            color: var(--brand-green);
        }
        
        .eligibility-btn.yes-btn:hover,
        .eligibility-btn.yes-btn.active {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: white;
        }
        
        .eligibility-btn.no-btn {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.3);
            color: #dc3545;
        }
        
        .eligibility-btn.no-btn:hover,
        .eligibility-btn.no-btn.active {
            background: #dc3545;
            border-color: #dc3545;
            color: white;
        }
        
        /* Contact Fields in Eligibility */
        .contact-fields {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-field {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .contact-name-row {
            flex-direction: row;
            gap: 12px;
        }
        .contact-name-col {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .contact-name-col .contact-input {
            width: 100%;
            box-sizing: border-box;
        }
        
        .contact-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }
        
        .contact-input {
            padding: 12px 14px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.2s ease;
        }
        
        .contact-input:focus {
            outline: none;
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(58, 157, 79, 0.15);
        }
        
        .contact-input::placeholder {
            color: var(--text-muted);
        }
        
        /* Booking Summary Mini */
        .booking-summary-mini {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 14px;
            margin-top: 8px;
            border: 1px solid var(--border-glass);
        }
        
        .summary-mini-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-glass);
        }
        
        .summary-mini-row:last-child {
            border-bottom: none;
        }
        
        .summary-mini-row.total {
            margin-top: 4px;
            padding-top: 12px;
            border-top: 1px solid var(--border-glass);
            border-bottom: none;
        }
        
        .summary-mini-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .summary-mini-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .summary-mini-row.total .summary-mini-label {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .summary-mini-row.total .summary-mini-value {
            font-size: 16px;
            color: var(--brand-green);
        }
        
        .contact-phone-group {
            display: flex;
            gap: 0;
        }
        
        .contact-phone-prefix {
            padding: 12px 14px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-glass);
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        
        .contact-phone-group .contact-input {
            border-radius: 0 8px 8px 0;
            flex: 1;
        }
        
        .contact-continue-btn {
            width: 100%;
            padding: 14px 20px !important;
            font-size: 15px !important;
        }
        
        /* Eligibility Select Dropdown */
        .eligibility-select-wrapper {
            position: relative;
        }
        
        .eligibility-select {
            width: 100%;
            padding: 14px 44px 14px 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            transition: all 0.2s ease;
        }
        
        .eligibility-select:focus {
            outline: none;
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(58, 157, 79, 0.15);
        }
        
        .eligibility-select:hover {
            border-color: var(--brand-green);
        }
        
        .eligibility-select option {
            padding: 12px;
            background: var(--bg-primary);
            color: var(--text-primary);
        }
        
        .eligibility-select.selected {
            border-color: var(--brand-green);
            background-color: rgba(58, 157, 79, 0.05);
        }
        
        .eligibility-warning {
            display: flex;
            gap: 12px;
            background: rgba(220, 53, 69, 0.08);
            border: 1px solid rgba(220, 53, 69, 0.2);
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 16px;
        }
        
        .eligibility-warning svg {
            width: 24px;
            height: 24px;
            color: #dc3545;
            flex-shrink: 0;
        }
        
        .eligibility-warning strong {
            display: block;
            color: #dc3545;
            font-size: 14px;
            margin-bottom: 4px;
        }
        
        .eligibility-warning p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        /* Eligibility Continue Button */
        .eligibility-continue-wrap {
            margin-top: 20px;
            display: flex;
            justify-content: flex-end;
        }

        .eligibility-continue-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--gradient-brand);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 2px 12px rgba(52, 78, 124, 0.25);
        }

        .eligibility-continue-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 18px rgba(52, 78, 124, 0.35);
        }

        .eligibility-continue-btn:active {
            transform: translateY(0);
        }

        .eligibility-continue-btn svg {
            transition: transform 0.2s ease;
        }

        .eligibility-continue-btn:hover svg {
            transform: translateX(3px);
        }

        /* Shake animation for unanswered questions */
        @keyframes eligibilityShake {
            0%, 100% { transform: translateX(0); }
            10%, 50%, 90% { transform: translateX(-6px); }
            30%, 70% { transform: translateX(6px); }
        }

        .eligibility-question.shake {
            animation: eligibilityShake 0.5s ease;
            border-color: rgba(220, 53, 69, 0.5);
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
        }

        .passport-question {
            background: var(--gradient-glow);
            border-radius: var(--radius-md);
            padding: 18px;
            margin-bottom: 20px;
        }

        .passport-question-text {
            font-size: 15px;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .passport-question-options {
            display: flex;
            gap: 12px;
        }

        .passport-option-btn {
            flex: 1;
            padding: 12px 18px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .passport-option-btn.yes-btn {
            background: rgba(58, 157, 79, 0.1);
            border: 1px solid rgba(58, 157, 79, 0.3);
            color: var(--brand-green);
        }

        .passport-option-btn.yes-btn:hover,
        .passport-option-btn.yes-btn.active {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: white;
        }

        .passport-option-btn.no-btn {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.3);
            color: #dc3545;
        }

        .passport-option-btn.no-btn:hover,
        .passport-option-btn.no-btn.active {
            background: #dc3545;
            border-color: #dc3545;
            color: white;
        }

        .passport-warning {
            display: none;
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.2);
            border-radius: var(--radius-sm);
            padding: 14px;
            margin-bottom: 16px;
            font-size: 14px;
            color: #dc3545;
            line-height: 1.5;
        }

        .passport-warning.show {
            display: block;
        }

        .applicants-upload-section {
            display: none;
        }

        .applicants-upload-section.show {
            display: block;
        }

        .applicant-card {
            background: var(--bg-secondary);
            border: none;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
        }

        .applicant-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .applicant-card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .applicant-number {
            width: 30px;
            height: 30px;
            background: var(--gradient-brand);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: white;
        }

        .applicant-status {
            font-size: 13px;
            padding: 6px 14px;
            border-radius: 100px;
            font-weight: 600;
        }

        .applicant-status.pending {
            background: rgba(255, 193, 7, 0.12);
            color: #d39e00;
        }

        .applicant-status.complete {
            background: rgba(58, 157, 79, 0.12);
            color: var(--brand-green);
        }

        .passport-upload-area {
            border: 2px dashed var(--border-glass);
            border-radius: 10px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 12px;
            background: var(--bg-primary);
        }

        .passport-upload-area:hover {
            border-color: var(--brand-navy);
        }

        .passport-upload-area.uploaded {
            border-color: var(--brand-green);
            border-style: solid;
            background: rgba(58, 157, 79, 0.04);
        }

        .passport-upload-area.uploading {
            border-color: var(--brand-navy);
            border-style: solid;
            background: rgba(52, 78, 124, 0.04);
            pointer-events: none;
        }

        .passport-upload-area.uploading .upload-icon {
            animation: pulse 1s ease-in-out infinite;
            color: var(--brand-navy);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .upload-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 6px;
            color: var(--text-muted);
        }

        .passport-upload-area.uploaded .upload-icon {
            color: var(--brand-green);
        }

        .upload-text {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .upload-hint {
            font-size: 13px;
            color: var(--text-muted);
        }

        .uploaded-file-name {
            display: none;
            font-size: 14px;
            color: var(--brand-green);
            font-weight: 600;
            margin-top: 8px;
        }

        .passport-upload-area.uploaded .uploaded-file-name {
            display: block;
        }

        .passport-upload-area.uploaded .upload-text,
        .passport-upload-area.uploaded .upload-hint {
            display: none;
        }

        /* ── File preview inside upload area ── */
        .passport-upload-area.has-preview {
            border: 1.5px solid var(--brand-green);
            border-style: solid;
            background: var(--bg-primary);
            padding: 0;
            cursor: default;
            overflow: hidden;
        }
        .passport-upload-area.has-preview .upload-icon,
        .passport-upload-area.has-preview .upload-text,
        .passport-upload-area.has-preview .upload-hint,
        .passport-upload-area.has-preview .uploaded-file-name {
            display: none;
        }
        .doc-preview-wrap { width: 100%; }
        .doc-preview-content { display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
        .doc-preview-thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); }
        .doc-preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .doc-preview-thumb-pdf { width: 56px; height: 56px; border-radius: 8px; background: linear-gradient(135deg, #e74c3c, #c0392b); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .5px; flex-shrink: 0; }
        .doc-preview-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
        .doc-preview-name { font-size: 13px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .doc-preview-meta { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
        .doc-preview-meta .doc-check { color: var(--brand-green); font-weight: 700; }
        .doc-preview-actions { display: flex; width: 100%; border-top: 1px solid var(--border-color); }
        [data-theme="dark"] .doc-preview-actions { border-top-color: rgba(255,255,255,0.08); }
        .doc-preview-btn { flex: 1; padding: 9px 0; border: none; background: transparent; cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.2s; color: var(--text-muted); }
        .doc-preview-btn:not(:last-child) { border-right: 1px solid var(--border-color); }
        [data-theme="dark"] .doc-preview-btn:not(:last-child) { border-right-color: rgba(255,255,255,0.08); }
        .doc-preview-btn:hover { background: var(--bg-secondary); }
        .doc-preview-btn svg { width: 14px; height: 14px; }
        .doc-preview-btn.dp-view { color: #3b82f6; }
        .doc-preview-btn.dp-view:hover { background: rgba(59,130,246,0.06); }
        .doc-preview-btn.dp-replace { color: #c9a84c; }
        .doc-preview-btn.dp-replace:hover { background: rgba(201,168,76,0.06); }
        .doc-preview-btn.dp-remove { color: #e07850; }
        .doc-preview-btn.dp-remove:hover { background: rgba(224,120,80,0.06); }

        .applicant-details-fields {
            display: none;
        }

        .applicant-details-fields.show {
            display: block;
        }

        .applicant-field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 10px;
        }

        .applicant-field-row:last-child {
            margin-bottom: 0;
        }

        .applicant-field-row.full-width {
            grid-template-columns: 1fr;
        }

        .applicant-input {
            width: 100%;
            padding: 10px 12px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .applicant-input:hover {
            border-color: var(--brand-navy);
        }

        .applicant-input:focus {
            outline: none;
            border-color: var(--brand-navy);
            box-shadow: 0 0 0 2px rgba(52, 78, 124, 0.1);
        }

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

        .applicant-phone-group {
            display: flex;
            gap: 6px;
        }

        .applicant-phone-prefix {
            width: 55px;
            padding: 10px 6px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
            flex-shrink: 0;
        }

        .applicant-phone-group .applicant-input {
            flex: 1;
        }

        /* Address Lookup Section */
        .address-section {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border-glass);
        }

        .address-section-title {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        /* Visa Center Selection */
        .visa-center-section {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-glass);
        }
        
        .visa-center-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        
        .visa-center-title svg {
            color: var(--brand-green);
        }
        
        .visa-center-help {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        
        .visa-center-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .visa-center-btn {
            padding: 10px 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .visa-center-btn:hover {
            border-color: var(--brand-green);
            background: rgba(58, 157, 79, 0.05);
        }
        
        .visa-center-btn.selected {
            background: rgba(58, 157, 79, 0.1);
            border-color: var(--brand-green);
            color: var(--brand-green);
        }
        
        .visa-center-buttons.error .visa-center-btn {
            border-color: #ef4444;
        }
        
        .visa-center-buttons.error {
            padding: 4px;
            border-radius: 10px;
            background: rgba(239, 68, 68, 0.03);
        }

        .postcode-lookup-row {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
        }

        .postcode-input {
            flex: 1;
            padding: 10px 12px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            text-transform: uppercase;
        }

        .postcode-input:focus {
            outline: none;
            border-color: var(--brand-navy);
        }

        .lookup-btn {
            padding: 10px 16px;
            background: var(--gradient-brand);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            white-space: nowrap;
        }

        .lookup-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(52, 78, 124, 0.3);
        }

        .address-select-wrapper {
            display: none;
            margin-bottom: 10px;
        }

        .address-select-wrapper.show {
            display: block;
        }

        .address-select {
            width: 100%;
            padding: 10px 12px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5f82' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .address-select:focus {
            outline: none;
            border-color: var(--brand-navy);
        }

        .selected-address {
            display: none;
            padding: 10px 12px;
            background: rgba(58, 157, 79, 0.08);
            border: 1px solid rgba(58, 157, 79, 0.2);
            border-radius: var(--radius-sm);
            font-size: 12px;
            color: var(--text-primary);
            line-height: 1.5;
        }

        .selected-address.show {
            display: block;
        }

        .selected-address-label {
            font-size: 10px;
            color: var(--brand-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .change-address-btn {
            background: none;
            border: none;
            color: var(--brand-navy);
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
            margin-top: 6px;
            font-family: inherit;
        }

        .change-address-btn:hover {
            text-decoration: underline;
        }

        /* Address Autocomplete */
        .address-input-wrapper {
            position: relative;
            margin-bottom: 10px;
        }

        .address-autocomplete-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .address-search-icon {
            position: absolute;
            left: 12px;
            color: var(--text-muted);
            pointer-events: none;
            z-index: 1;
        }

        .address-autocomplete-input {
            width: 100%;
            padding: 10px 12px 10px 34px;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .address-autocomplete-input:hover {
            border-color: var(--brand-navy);
        }

        .address-autocomplete-input:focus {
            outline: none;
            border-color: var(--brand-navy);
            box-shadow: 0 0 0 2px rgba(52, 78, 124, 0.1);
        }

        .address-autocomplete-input::placeholder {
            color: var(--text-muted);
        }

        .address-autocomplete-input:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .address-suggestions {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--bg-primary);
            border: 1px solid var(--border-glass);
            border-top: none;
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            max-height: 240px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .address-suggestions.show {
            display: block;
        }

        .address-suggestion {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            font-size: 12px;
            color: var(--text-primary);
            cursor: pointer;
            transition: background 0.15s ease;
            line-height: 1.4;
        }

        .address-suggestion:hover,
        .address-suggestion.active {
            background: var(--gradient-glow);
        }

        .address-suggestion svg {
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .address-suggestion:not(:last-child) {
            border-bottom: 1px solid var(--border-glass);
        }

        .address-suggestion.no-results {
            color: var(--text-muted);
            cursor: default;
            font-style: italic;
        }

        .address-suggestion.no-results:hover {
            background: none;
        }

        /* Same Address Checkbox */
        .same-address-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--bg-glass);
            border-radius: var(--radius-sm);
            cursor: pointer;
            margin-bottom: 10px;
            transition: all 0.2s ease;
        }

        .same-address-option:hover {
            background: var(--gradient-glow);
        }

        .same-address-option.checked {
            background: rgba(58, 157, 79, 0.1);
            border: 1px solid rgba(58, 157, 79, 0.2);
        }

        .same-address-checkbox {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border-glass);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .same-address-option.checked .same-address-checkbox {
            background: var(--brand-green);
            border-color: var(--brand-green);
        }

        .same-address-checkbox svg {
            width: 12px;
            height: 12px;
            stroke: white;
            stroke-width: 3;
            opacity: 0;
        }

        .same-address-option.checked .same-address-checkbox svg {
            opacity: 1;
        }

        .same-address-label {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .same-address-option.checked .same-address-label {
            color: var(--brand-green);
        }

        .manual-address-section {
            display: block;
        }

        .manual-address-section.hidden {
            display: none;
        }

        /* Booking Sidebar */
        .booking-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .booking-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-xl);
            padding: 32px;
            position: relative;
            overflow: visible;
        }

        .booking-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 28px;
            text-align: center;
        }

        .applicants-section {
            margin-bottom: 28px;
        }

        .applicants-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .applicants-control {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            padding: 16px;
            background: var(--bg-glass);
            border-radius: var(--radius-md);
        }

        .applicant-btn {
            width: 44px;
            height: 44px;
            background: var(--gradient-brand);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .applicant-btn:hover {
            transform: scale(1.1);
        }

        .applicant-count {
            font-size: 32px;
            font-weight: 800;
            font-family: 'JetBrains Mono', monospace;
            min-width: 60px;
            text-align: center;
        }

        .processing-badge-booking {
            padding: 14px;
            background: rgba(58, 157, 79, 0.1);
            border: 1px solid rgba(58, 157, 79, 0.2);
            border-radius: var(--radius-md);
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-green);
            margin-bottom: 28px;
        }

        .price-display {
            text-align: center;
            margin-bottom: 28px;
            padding: 24px;
            background: var(--bg-glass);
            border-radius: var(--radius-md);
        }

        .price-label-booking {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .price-value-booking {
            font-size: 48px;
            font-weight: 900;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'JetBrains Mono', monospace;
        }

        .price-breakdown {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .apply-main-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient-brand);
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 25px rgba(52, 78, 124, 0.25);
        }

        .apply-main-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(52, 78, 124, 0.4);
        }

        /* Tabs */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeUp 0.3s ease;
        }

        .faq-item {
            margin-bottom: 10px;
            background: var(--bg-secondary);
            border-radius: 14px;
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: inherit;
            gap: 12px;
            margin-bottom: 0;
        }

        .faq-answer {
            display: none;
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            padding: 0 20px 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .visa-details-page {
                width: 100% !important;
                max-width: 100vw !important;
                overflow-x: hidden !important;
            }

            .visa-details-content {
                grid-template-columns: 1fr !important;
                padding: 24px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .booking-sidebar {
                position: static;
                order: -1;
                max-width: 100%;
                margin: 0 auto 24px;
                width: 100%;
                box-sizing: border-box;
            }

            .booking-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .visa-info-panel {
                width: 100%;
                max-width: 100%;
            }

            .info-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-grid .review-card {
                flex: 0 0 calc(50% - 7px);
                max-width: calc(50% - 7px);
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .documents-list {
                gap: 6px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 16px 20px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 80px 24px 24px;
                transition: right 0.4s ease, background-color 0.4s ease;
                border-left: 1px solid var(--border-glass);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-link, .nav-cta {
                width: 100%;
                text-align: center;
            }

            /* Hide desktop theme toggle on mobile (mobile version is in mobile-header-actions) */
            .nav-theme-toggle {
                display: none;
            }

            .theme-toggle-switch {
                margin: 10px 0;
                align-self: center;
            }

            .menu-toggle {
                display: flex;
            }

            .hero {
                padding: 100px 20px 50px;
                min-height: auto;
            }

            .hero h1,
            .hero-title {
                font-size: clamp(32px, 9vw, 48px);
                letter-spacing: -1px;
                margin-bottom: 20px;
            }

            .hero-subtitle {
                font-size: 17px;
                margin-bottom: 36px;
                padding: 0 10px;
            }

            .search-box {
                flex-direction: column;
                padding: 16px;
                gap: 12px;
            }

            .search-field {
                padding: 12px 16px;
            }

            .search-field-label {
                font-size: 10px;
            }

            .search-field-input,
            .passport-name,
            .destination-name {
                font-size: 15px;
            }

            .passport-selector,
            .destination-selector {
                padding: 24px 16px 10px;
            }

            .search-divider {
                width: 100%;
                height: 1px;
                margin: 0;
            }

            .search-btn {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
                font-size: 16px;
            }

            /* Fix destination dropdown overflow on mobile */
            .destination-dropdown {
                position: fixed !important;
                top: auto !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                max-height: 70vh !important;
                border-radius: 20px 20px 0 0 !important;
                border: none !important;
                border-top: 2px solid var(--brand-green) !important;
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2) !important;
                transform: translateY(100%) !important;
            }

            .destination-field.dropdown-open .destination-dropdown {
                transform: translateY(0) !important;
            }

            .destination-dropdown-search {
                padding: 18px 20px;
            }

            .destination-dropdown-search input {
                font-size: 16px;
            }

            .destination-dropdown-list {
                max-height: calc(70vh - 70px);
            }

            /* Fix location dropdown overflow on mobile */
            .location-dropdown-menu {
                position: fixed !important;
                top: auto !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                min-width: 100% !important;
                transform: translateX(0) translateY(100%) !important;
                border-radius: 20px 20px 0 0 !important;
                border: none !important;
                border-top: 2px solid var(--brand-green) !important;
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2) !important;
            }

            .location-wrapper.dropdown-open .location-dropdown-menu {
                transform: translateX(0) translateY(0) !important;
            }

            .stats {
                gap: 24px;
                margin-top: 48px;
            }

            .stat-value {
                font-size: 28px;
            }

            .stat-label {
                font-size: 13px;
            }

            .destinations, .features, .about-section, .cta {
                padding: 50px 16px;
            }

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

            .section-title {
                font-size: clamp(28px, 7vw, 36px);
            }

            .section-subtitle {
                font-size: 15px;
                padding: 0 10px;
            }

            .filter-pill {
                padding: 10px 18px;
                font-size: 14px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 22px;
            }

            .card-flag {
                width: 56px;
                height: 38px;
                border-radius: 6px;
            }

            .card-name {
                font-size: 20px;
            }

            .card-region {
                font-size: 13px;
            }

            .card-specs {
                gap: 8px;
                padding: 14px 0;
            }

            .card-spec {
                padding: 8px 2px;
                border-radius: 8px;
            }

            .card-spec-icon {
                width: 24px;
                height: 24px;
            }

            .card-spec-icon svg {
                width: 12px;
                height: 12px;
            }

            .card-spec-value {
                font-size: 13px;
            }

            .card-spec-label {
                font-size: 9px;
            }

            .card-price-value {
                font-size: 26px;
            }

            .card-btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .feature-card {
                padding: 28px 24px;
            }

            .feature-icon {
                width: 52px;
                height: 52px;
            }

            .feature-title {
                font-size: 17px;
            }

            .feature-desc {
                font-size: 14px;
            }

            .cta-box {
                padding: 36px 20px;
            }

            .cta-title {
                font-size: clamp(24px, 6vw, 32px);
            }

            .cta-desc {
                font-size: 15px;
            }

            .cta-btn {
                padding: 16px 32px;
                font-size: 15px;
                width: 100%;
                justify-content: center;
            }

            .pre-footer-stats {
                padding: 40px 16px;
            }

            .pre-footer-stats .stats {
                gap: 20px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            /* Visa Details Page Mobile */
            .visa-details-page {
                width: 100%;
                max-width: 100vw;
                overflow-x: hidden;
            }

            .visa-details-header {
                width: 100%;
                max-width: 100vw;
                overflow: hidden;
            }

            .visa-details-nav {
                padding: 12px 16px;
                grid-template-columns: auto 1fr auto;
                gap: 8px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .nav-left {
                gap: 8px;
                flex-shrink: 0;
            }

            .header-logo {
                display: none;
            }

            .back-btn {
                padding: 8px 12px;
                font-size: 12px;
                gap: 4px;
            }

            .back-btn svg {
                width: 14px;
                height: 14px;
            }

            .visa-details-title-section {
                gap: 8px;
                justify-content: flex-start;
                min-width: 0;
                flex: 1;
                overflow: hidden;
            }

            .visa-details-flag {
                width: 30px;
                height: 22px;
                border-radius: 4px;
            }

            .visa-details-name {
                font-size: 14px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 100%;
            }

            .nav-right {
                gap: 6px;
                flex-shrink: 0;
            }

            /* Details Header Action Buttons Mobile */
            .details-header-actions {
                gap: 6px;
            }

            .details-action-btn {
                width: 36px;
                height: 36px;
                border-radius: 8px;
                flex-shrink: 0;
            }

            .details-action-btn svg {
                width: 16px;
                height: 16px;
            }

            .details-phone-pulse {
                width: 10px;
                height: 10px;
                top: -1px;
                right: -1px;
            }

            .theme-toggle {
                width: 36px;
                height: 36px;
                border-radius: 10px;
            }

            .theme-toggle svg {
                width: 16px;
                height: 16px;
            }

            .visa-details-badge-header {
                display: none;
            }

            .visa-details-content {
                padding: 16px;
                gap: 20px;
                grid-template-columns: 1fr;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .visa-info-panel {
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            .booking-sidebar {
                width: 100%;
                max-width: 100%;
            }

            .booking-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .info-card {
                padding: 18px;
                border-radius: 16px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .info-card-title {
                font-size: 13px;
                margin-bottom: 16px;
            }

            .specs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                width: 100%;
            }

            .spec-item {
                padding: 14px 10px;
                min-width: 0;
            }

            .spec-icon {
                width: 42px;
                height: 42px;
            }

            .spec-icon svg {
                width: 20px;
                height: 20px;
            }

            .spec-value {
                font-size: 14px;
                word-break: break-word;
            }

            .spec-label {
                font-size: 10px;
            }

            /* Tabs Mobile */
            .info-tabs {
                padding: 4px;
                border-radius: 12px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                flex-wrap: nowrap;
            }

            .info-tab {
                padding: 10px 14px;
                font-size: 13px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .process-step {
                padding: 14px;
            }

            .step-number {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }

            .step-content h4 {
                font-size: 16px;
            }

            .step-content p {
                font-size: 14px;
                line-height: 1.5;
            }

            .document-item {
                padding: 14px;
            }

            .document-icon {
                width: 36px;
                height: 36px;
            }

            .document-text {
                font-size: 15px;
            }

            /* Reviews Mobile */
            .reviews-section {
                margin-top: 24px;
            }

            .reviews-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .reviews-grid .review-card {
                flex: 0 0 85%;
                max-width: 85%;
                padding: 18px;
            }

            .review-text {
                font-size: 14px;
                line-height: 1.6;
            }

            .reviewer-name {
                font-size: 14px;
            }

            /* Booking Card Mobile */
            .booking-card {
                border-radius: 22px;
            }

            .booking-route {
                padding: 14px 16px 0;
            }

            .booking-route-text {
                font-size: 14px;
            }

            .booking-main-content,
            .traveller-form,
            .passport-upload-form {
                padding: 14px 16px 16px;
            }

            .booking-price-header {
                padding: 16px;
                border-radius: 14px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .booking-price-main {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            .booking-price-divider {
                display: none;
            }

            .booking-processing {
                width: 100%;
                justify-content: center;
                padding: 12px 16px;
                background: rgba(58, 157, 79, 0.12);
                border-radius: 10px;
            }

            .booking-processing-text {
                align-items: center;
                text-align: center;
            }

            .booking-processing-value {
                font-size: 14px;
            }

            .booking-price-amount {
                font-size: 28px;
            }

            .booking-price-per {
                font-size: 12px;
            }

            .booking-form-label {
                font-size: 13px;
            }

            .booking-form-section input,
            .booking-form-section select {
                font-size: 15px;
                padding: 14px;
            }

            .visa-type-btn {
                padding: 12px 16px;
                font-size: 14px;
            }

            .addon-item {
                padding: 14px;
            }

            .addon-name {
                font-size: 14px;
            }

            .addon-price {
                font-size: 15px;
                padding: 3px 10px;
            }

            .addon-toggle {
                width: 36px;
                height: 20px;
            }

            .addon-toggle::after {
                width: 14px;
                height: 14px;
            }

            .addon-item.selected .addon-toggle::after {
                transform: translateX(16px);
            }

            .addon-icon {
                width: 32px;
                height: 32px;
            }

            .addon-icon svg {
                width: 16px;
                height: 16px;
            }

            .apply-btn {
                padding: 16px 24px;
                font-size: 16px;
            }

            .booking-processing-tag {
                padding: 6px 12px;
                font-size: 12px;
            }

            .booking-form-label {
                font-size: 11px;
            }

            .booking-form-display {
                padding: 10px 12px;
            }

            .booking-form-display .display-flag {
                width: 24px;
                height: 24px;
            }

            .booking-form-display .display-value {
                font-size: 14px;
            }

            .booking-date-input {
                padding: 10px 12px;
                font-size: 14px;
            }

            .visa-type-buttons {
                gap: 6px;
            }

            .visa-type-btn {
                padding: 10px 8px;
                font-size: 12px;
            }

            .addon-item {
                padding: 12px 14px;
            }

            .addon-icon {
                width: 32px;
                height: 32px;
            }

            .addon-name {
                font-size: 13px;
            }

            .addon-desc {
                font-size: 12px;
            }

            .addon-desc .addon-features {
                gap: 4px;
            }

            .addon-desc .addon-features li {
                font-size: 12px;
                padding: 5px 8px 5px 22px;
            }
            
            .addon-desc .addon-features li::before {
                left: 8px;
                font-size: 11px;
                top: 50%;
                transform: translateY(-50%);
            }

            .addon-price {
                font-size: 14px;
            }

            .applicants-compact {
                padding: 12px;
                gap: 10px;
            }

            .applicants-compact-icon {
                width: 34px;
                height: 34px;
                border-radius: 10px;
            }

            .applicants-compact-icon svg {
                width: 15px;
                height: 15px;
            }

            .applicants-compact {
                padding: 10px 12px;
            }

            .applicants-compact-label {
                font-size: 13px;
            }

            .applicant-btn-sm {
                width: 32px;
                height: 32px;
            }

            .applicant-count-sm {
                font-size: 16px;
                min-width: 28px;
            }

            .apply-main-btn {
                padding: 14px;
                font-size: 14px;
            }

            /* Traveller Form Mobile */
            .traveller-form-title {
                font-size: 18px;
            }

            .form-label {
                font-size: 11px;
            }

            .form-input {
                padding: 12px 14px;
                font-size: 15px;
            }

            .form-summary {
                padding: 14px;
            }

            .form-summary-row {
                font-size: 13px;
            }

            .submit-btn {
                padding: 16px;
                font-size: 15px;
            }

            /* Passport Upload Mobile */
            .passport-question {
                padding: 16px;
            }

            .passport-question-text {
                font-size: 14px;
                line-height: 1.5;
            }

            .passport-option-btn {
                padding: 10px 14px;
                font-size: 14px;
            }

            .passport-warning {
                font-size: 13px;
                padding: 12px;
            }

            .applicant-card {
                padding: 16px;
            }

            .applicant-card-title {
                font-size: 15px;
            }

            .applicant-number {
                width: 26px;
                height: 26px;
                font-size: 13px;
            }

            .applicant-status {
                font-size: 12px;
                padding: 5px 12px;
            }

            .passport-upload-area {
                padding: 20px;
            }

            .upload-icon {
                width: 36px;
                height: 36px;
            }

            .upload-text {
                font-size: 14px;
            }

            .upload-hint {
                font-size: 12px;
            }

            .uploaded-file-name {
                font-size: 13px;
            }

            .applicant-input {
                padding: 12px;
                font-size: 15px;
            }

            /* Preloader Mobile */
            .preloader-logo {
                font-size: 36px;
            }

            .skeleton-cards {
                grid-template-columns: 1fr;
            }

            .skeleton-card {
                height: 150px;
            }

            .preloader-text {
                font-size: 12px;
            }
        }

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

            /* Global mobile overflow fix */
            html, body {
                overflow-x: hidden !important;
                width: 100% !important;
                max-width: 100vw !important;
            }

            .visa-details-page {
                width: 100% !important;
                max-width: 100vw !important;
                left: 0 !important;
                right: 0 !important;
            }

            .visa-details-header {
                width: 100% !important;
                padding: 0 !important;
            }

            .visa-details-nav {
                padding: 10px 12px !important;
                gap: 6px !important;
            }

            .back-btn {
                padding: 6px 10px !important;
                font-size: 11px !important;
            }

            .visa-details-flag {
                width: 26px !important;
                height: 19px !important;
                border-radius: 3px !important;
            }

            .visa-details-name {
                font-size: 13px !important;
            }

            .details-action-btn {
                width: 34px !important;
                height: 34px !important;
            }

            .visa-details-content {
                padding: 12px !important;
                gap: 16px !important;
            }

            .info-card {
                padding: 14px !important;
            }

            .hero-badge {
                font-size: 11px;
            }

            .hero h1 {
                font-size: 26px;
            }

            .hero p {
                font-size: 14px;
            }

            .stats {
                flex-direction: column;
                gap: 24px;
            }

            .card {
                padding: 20px;
            }

            .card-specs {
                gap: 6px;
            }

            .card-footer {
                flex-direction: column;
                gap: 16px;
            }

            .card-btn {
                width: 100%;
                justify-content: center;
            }

            .specs-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
            }

            .spec-item {
                padding: 12px 8px !important;
            }

            .spec-icon {
                width: 36px !important;
                height: 36px !important;
            }

            .spec-value {
                font-size: 12px !important;
            }

            .spec-label {
                font-size: 9px !important;
            }

            .visa-type-buttons {
                grid-template-columns: 1fr 1fr;
            }

            .visa-type-btn:nth-child(3) {
                grid-column: span 2;
            }

            .booking-form-display .change-icon {
                width: 12px;
                height: 12px;
            }

            .address-section-title {
                font-size: 10px;
            }

            .postcode-input {
                font-size: 12px;
            }

            .lookup-btn {
                padding: 8px 12px;
                font-size: 11px;
            }

            .faq-question {
                font-size: 15px;
            }

            .faq-answer {
                font-size: 14px;
            }

            /* Header 480px */
            .visa-details-nav {
                padding: 10px 12px;
                gap: 8px;
            }

            .back-btn {
                padding: 6px 10px;
                font-size: 12px;
            }

            .back-btn span {
                display: none;
            }

            .visa-details-flag {
                width: 30px;
                height: 22px;
                border-radius: 4px;
            }

            .visa-details-name {
                font-size: 14px;
            }

            .theme-toggle {
                width: 32px;
                height: 32px;
            }
        }

        @media (max-width: 360px) {
            .visa-details-nav {
                padding: 8px 10px;
                gap: 6px;
            }

            .back-btn {
                padding: 5px 8px;
                font-size: 11px;
            }

            .visa-details-name {
                font-size: 13px;
            }

            .visa-details-flag {
                width: 26px;
                height: 19px;
                border-radius: 3px;
            }

            .theme-toggle {
                width: 30px;
                height: 30px;
                border-radius: 8px;
            }

            .booking-price-amount {
                font-size: 22px;
            }

            .spec-item {
                padding: 12px 8px;
            }

            .spec-icon {
                width: 38px;
                height: 38px;
            }

            .spec-value {
                font-size: 13px;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border-glass);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-muted);
        }

        /* Mobile Touch Improvements */
        @media (hover: none) and (pointer: coarse) {
            .card:hover,
            .spec-item:hover,
            .review-card:hover,
            .process-step:hover,
            .document-item:hover {
                transform: none;
            }

            .spec-item:hover .spec-icon {
                background: var(--bg-primary);
                color: var(--brand-navy);
                transform: none;
            }

            .apply-main-btn:active {
                transform: scale(0.98);
            }

            .visa-type-btn:active,
            .addon-item:active {
                transform: scale(0.98);
            }
        }

        /* Prevent zoom on input focus for iOS */
        @media screen and (max-width: 768px) {
            input, select, textarea {
                font-size: 16px !important;
            }
        }

        /* WhatsApp Floating Button - Ultra Modern */
        .whatsapp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 9000;
        }

        /* Expandable card - compact by default */
        .whatsapp-card {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 32px;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            text-decoration: none;
            padding: 6px;
        }

        .whatsapp-card:hover {
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
            transform: translateY(-4px);
        }

        /* Icon wrapper */
        .whatsapp-icon-wrapper {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .whatsapp-card:hover .whatsapp-icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .whatsapp-icon {
            width: 26px;
            height: 26px;
            fill: white;
        }

        /* Online status dot */
        .whatsapp-status-ring {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 16px;
            height: 16px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }

        .whatsapp-status-dot {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            animation: status-pulse 2s ease-in-out infinite;
        }

        @keyframes status-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.15); opacity: 0.85; }
        }

        /* Text content - hidden by default, show on hover */
        .whatsapp-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 0;
            white-space: nowrap;
            max-width: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .whatsapp-card:hover .whatsapp-content {
            max-width: 150px;
            opacity: 1;
            padding: 0 16px 0 14px;
        }

        .whatsapp-title {
            font-size: 15px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
        }

        .whatsapp-subtitle {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .whatsapp-live-dot {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Arrow button - hidden by default */
        .whatsapp-arrow-btn {
            width: 0;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            overflow: hidden;
            opacity: 0;
            margin-right: 0;
        }

        .whatsapp-card:hover .whatsapp-arrow-btn {
            width: 44px;
            opacity: 1;
            margin-right: 4px;
        }

        .whatsapp-card:hover .whatsapp-arrow-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .whatsapp-arrow {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 2.5;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .whatsapp-card:hover .whatsapp-arrow-btn:hover .whatsapp-arrow {
            transform: translateX(3px);
        }

        /* Ripple effect on click */
        .whatsapp-card:active {
            transform: translateY(-2px) scale(0.98);
        }

        /* Mobile adjustments - always compact */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 24px;
                right: 24px;
            }

            .whatsapp-card:hover .whatsapp-content {
                max-width: 0;
                opacity: 0;
                padding: 0;
            }

            .whatsapp-card:hover .whatsapp-arrow-btn {
                width: 0;
                opacity: 0;
                margin-right: 0;
            }

            .whatsapp-icon-wrapper {
                width: 48px;
                height: 48px;
            }

            .whatsapp-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* Smooth transitions for all themed elements */
        .card, .info-card, .booking-card, .feature-card, .about-card, .about-service, .about-stat, .cta-box, .modal,
        .search-box, .filter-pill, .nav-link, .back-btn, .card-btn,
        .applicants-control, .price-display, .spec-item, .process-step,
        .document-item, .faq-item {
            transition: all 0.3s ease, background-color 0.4s ease, border-color 0.4s ease;
        }

        /* ============================================
           CUSTOM CALENDAR PICKER
           ============================================ */
        .calendar-picker {
            position: relative;
            z-index: 50;
        }

        .calendar-picker-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-solid);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .calendar-picker-trigger:hover {
            border-color: var(--brand-green);
        }

        .calendar-picker-trigger.active {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(58, 157, 79, 0.15);
        }
        
        /* Error state for calendar picker */
        .calendar-picker-trigger.error {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
        }
        
        /* Shake animation */
        .calendar-picker-trigger.shake,
        .shake {
            animation: shake 0.5s ease-in-out;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        /* Error state for form inputs */
        .applicant-input.error,
        .postcode-input.error,
        .visa-center-select.error,
        .contact-input.error {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
            background: rgba(239, 68, 68, 0.03) !important;
        }
        
        .passport-upload-area.error {
            border-color: #ef4444 !important;
            background: rgba(239, 68, 68, 0.03) !important;
        }

        .calendar-picker-icon {
            width: 18px;
            height: 18px;
            color: var(--text-muted);
        }

        .calendar-picker-text {
            flex: 1;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            min-width: 0;
        }

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

        .calendar-picker-arrow {
            width: 14px;
            height: 14px;
            color: var(--text-muted);
            transition: transform 0.2s;
        }

        .calendar-picker-trigger.active .calendar-picker-arrow {
            transform: rotate(180deg);
        }

        .calendar-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--bg-primary);
            border: 1px solid var(--border-solid);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s;
        }

        .calendar-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .calendar-dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-solid);
        }

        .calendar-nav-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            color: var(--text-primary);
            transition: all 0.2s;
        }

        .calendar-nav-btn:hover {
            background: var(--brand-green);
            color: white;
        }

        .calendar-nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .calendar-month-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            padding: 8px 12px;
            gap: 2px;
        }

        .calendar-weekday {
            text-align: center;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            padding: 4px 0;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            padding: 4px 12px 12px;
            gap: 3px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.15s;
            position: relative;
        }

        .calendar-day:hover:not(.disabled):not(.other-month) {
            background: var(--bg-secondary);
        }

        .calendar-day.other-month {
            color: var(--text-muted);
            opacity: 0.4;
            cursor: default;
        }

        .calendar-day.today {
            font-weight: 700;
            color: var(--brand-green);
        }

        .calendar-day.today::after {
            content: '';
            position: absolute;
            bottom: 3px;
            width: 4px;
            height: 4px;
            background: var(--brand-green);
            border-radius: 50%;
        }

        .calendar-day.selected {
            background: var(--brand-green) !important;
            color: white !important;
        }

        .calendar-day.selected::after {
            display: none;
        }

        .calendar-day.disabled {
            color: var(--text-muted);
            opacity: 0.35;
            cursor: not-allowed;
            text-decoration: line-through;
        }
        
        /* PAST DATE - Always disabled, grayed out */
        .calendar-day.past-date {
            color: var(--text-muted);
            opacity: 0.3;
            cursor: not-allowed;
            text-decoration: line-through;
            background: transparent;
        }

        .calendar-day.available {
            color: var(--text-primary);
        }

        /* RED ZONE - Cannot book (disabled) */
        .calendar-day.red-zone {
            color: #dc2626;
            background: rgba(239, 68, 68, 0.12);
            text-decoration: line-through;
        }

        /* YELLOW ZONE - Possible but not guaranteed */
        .calendar-day.possible-zone {
            color: #b45309;
            background: rgba(245, 158, 11, 0.18);
            cursor: pointer;
        }

        .calendar-day.possible-zone:hover:not(.disabled) {
            background: rgba(245, 158, 11, 0.3);
        }

        .calendar-day.possible-zone::before {
            content: '';
            position: absolute;
            top: 3px;
            right: 3px;
            width: 5px;
            height: 5px;
            background: #f59e0b;
            border-radius: 50%;
        }

        /* GREEN ZONE - Confirmed */
        .calendar-day.confirmed-zone {
            color: #047857;
            background: rgba(16, 185, 129, 0.15);
            cursor: pointer;
        }

        .calendar-day.confirmed-zone:hover:not(.disabled) {
            background: rgba(16, 185, 129, 0.28);
        }

        .calendar-day.confirmed-zone::before {
            content: '';
            position: absolute;
            top: 3px;
            right: 3px;
            width: 5px;
            height: 5px;
            background: #10b981;
            border-radius: 50%;
        }

        .calendar-day.limited {
            color: #d97706;
            background: rgba(245, 158, 11, 0.1);
        }

        .calendar-day.limited::before {
            content: '';
            position: absolute;
            top: 3px;
            right: 3px;
            width: 5px;
            height: 5px;
            background: #f59e0b;
            border-radius: 50%;
        }

        .calendar-day.unavailable,
        .calendar-day.holiday,
        .calendar-day.blocked {
            color: #dc2626;
            background: rgba(239, 68, 68, 0.08);
            cursor: not-allowed;
        }

        .calendar-day.unavailable::before,
        .calendar-day.holiday::before {
            content: '';
            position: absolute;
            top: 3px;
            right: 3px;
            width: 5px;
            height: 5px;
            background: #ef4444;
            border-radius: 50%;
        }

        .calendar-warning {
            padding: 10px 14px;
            margin: 0 12px 12px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            font-size: 12px;
            color: #d97706;
            display: none;
        }

        .calendar-warning.show {
            display: block;
        }
        
        /* Travel date hint text */
        .travel-date-hint {
            font-size: 12px;
            color: var(--text-muted);
            margin: 8px 0 0 0;
            line-height: 1.4;
        }
        
        /* Calendar warning displayed outside/below the travel date field */
        .calendar-warning-outside {
            padding: 10px 14px;
            margin-top: 10px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            font-size: 12px;
            line-height: 1.5;
            color: #d97706;
            display: none;
        }
        
        .calendar-warning-outside.show {
            display: block;
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Green confirmed style for warning */
        .calendar-warning-outside.confirmed {
            background: rgba(16, 185, 129, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
            color: #059669;
        }

        /* Red warning style for unavailable dates */
        .calendar-warning-outside.red-warning {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
            color: #dc2626;
        }

        .calendar-legend {
            display: flex;
            justify-content: center;
            gap: 16px;
            padding: 10px 12px;
            border-top: 1px solid var(--border-glass);
            font-size: 11px;
            color: var(--text-muted);
        }

        .calendar-legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .calendar-legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .calendar-legend-dot.available {
            background: var(--brand-green);
        }

        .calendar-legend-dot.limited {
            background: #f59e0b;
        }

        .calendar-legend-dot.unavailable {
            background: #ef4444;
        }

        /* Loading state for calendar */
        .calendar-loading {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s;
        }

        .calendar-loading.show {
            opacity: 1;
            visibility: visible;
        }

        .calendar-loading-spinner {
            width: 24px;
            height: 24px;
            border: 2px solid var(--border-glass);
            border-top-color: var(--brand-green);
            border-radius: 50%;
            animation: calendarSpin 0.8s linear infinite;
        }

        @keyframes calendarSpin {
            to { transform: rotate(360deg); }
        }

        /* Country Description Card */
        .country-description-card {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-left: 4px solid var(--brand-green);
        }

        .country-description-content {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-primary);
        }

        .country-description-content p {
            margin: 0 0 12px 0;
        }

        .country-description-content p:last-child {
            margin-bottom: 0;
        }

        /* ── Share Strip ─────────────────────────────── */
        .share-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 11px 14px;
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-sm);
            margin-bottom: 14px;
        }

        .share-strip-left {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            min-width: 0;
        }

        .share-strip-left svg {
            flex-shrink: 0;
        }

        .share-strip-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .share-strip-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 13px;
            background: var(--gradient-brand);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .share-strip-btn:hover {
            opacity: 0.88;
            transform: translateY(-1px);
        }

        .share-strip-btn.copied {
            background: var(--gradient-green);
        }

        [data-theme="dark"] .country-description-card {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
            border-color: rgba(34, 197, 94, 0.3);
        }