        /* ── Hero ── */
        .intl-hero {
            position: relative;
            overflow: hidden;
            margin-top: 110px;
            max-height: 450px;
        }
        .intl-hero img.hero-bg {
            width: 100%;
            height: 340px;
            max-height: 500px;
            object-fit: cover;
        }
        @media (min-width: 640px) { .intl-hero img.hero-bg { height: 440px; } }
        @media (min-width: 1024px) { .intl-hero img.hero-bg { height: 500px; } }

        .hero-text-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 5%;
        }
        .hero-text-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,30,60,0.55) 0%, rgba(0,30,60,0.25) 50%, transparent 100%);
        }

        /* ── Search Card ── */
        .intl-search-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
            overflow: visible;
            position: relative;
            padding-bottom: 32px;
        }

        /* Trip type row */
        .intl-trip-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 12px 24px;
            border-bottom: 1px solid #f0f0f0;
        }
        .intl-trip-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #4b5563;
            cursor: pointer;
            padding: 6px 18px;
            border-radius: 20px;
            border: 1.5px solid #e5e7eb;
            background: #fff;
            transition: all 0.2s ease;
        }
        .intl-trip-pill:hover { border-color: #1B60C1; color: #1B60C1; }
        .intl-trip-pill:has(input:checked) {
            background: #1B60C1;
            color: #fff;
            border-color: #1B60C1;
        }
        .intl-trip-pill input[type="radio"] {
            display: none;
        }
        .intl-fare-sep {
            width: 1px;
            height: 20px;
            background: #d1d5db;
        }
        .intl-fare-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: #4b5563;
            cursor: pointer;
            padding: 6px 16px;
            border-radius: 20px;
            border: 1.5px solid #e5e7eb;
            background: #fff;
            transition: all 0.2s ease;
        }
        .intl-fare-pill:hover { border-color: #16a34a; color: #16a34a; }
        .intl-fare-pill:has(input:checked) {
            background: #ecfdf5;
            color: #15803d;
            border-color: #16a34a;
        }
        .intl-fare-pill input[type="checkbox"] {
            display: none;
        }

        /* Main body: two halves */
        .intl-search-body {
            display: flex;
            flex-direction: column;
            padding: 16px 24px 0;
        }
        @media (min-width: 1024px) {
            .intl-search-body {
                flex-direction: row;
            }
        }

        /* Left half: airports */
        .intl-airports {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            flex: 1;
            padding-bottom: 20px;
        }
        @media (min-width: 1024px) {
            .intl-airports {
                border-right: 1px solid #e5e7eb;
                padding-right: 32px;
                padding-bottom: 0;
            }
        }
        .intl-airport-block {
            text-align: center;
            flex: 1;
        }
        .intl-airport-code {
            font-size: 32px;
            font-weight: 900;
            color: #1a2744;
            letter-spacing: 2px;
            line-height: 1;
        }
        .intl-airport-city {
            font-size: 13px;
            color: #6b7280;
            margin-top: 4px;
        }
        .intl-swap-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            padding: 0 16px;
            position: relative;
        }
        .intl-swap-dot-line {
            width: 1px;
            height: 16px;
            border-left: 2px dashed #d1d5db;
        }

        /* Airport search dropdown */
        .airport-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 320px;
            max-height: 280px;
            overflow-y: auto;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            z-index: 200;
            scrollbar-width: thin;
        }
        .airport-dropdown.open { display: block; width: 480px; }
        #fromDropdown { top: 121%; left: 0%; transform: none; }
        #toDropdown { top: 121%; left: 0%; right: 0; transform: none; }
        .airport-dropdown-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 16px;
            cursor: pointer;
            transition: background 0.15s;
            border-bottom: 1px solid #f5f5f5;
        }
        .airport-dropdown-item:last-child { border-bottom: none; }
        .airport-dropdown-item:hover { background: #f0f6ff; }
        .airport-dropdown-item .ad-code {
            font-size: 18px;
            font-weight: 800;
            color: #1a2744;
            min-width: 44px;
        }
        .airport-dropdown-item .ad-info {
            flex: 1;
            min-width: 0;
        }
        .airport-dropdown-item .ad-name {
            font-size: 13px;
            font-weight: 600;
            color: #374151;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .airport-dropdown-item .ad-city {
            font-size: 12px;
            color: #9ca3af;
        }
        .airport-dropdown-empty {
            padding: 16px;
            text-align: center;
            font-size: 13px;
            color: #9ca3af;
        }

        /* Flatpickr fare price in day cells */
        .flatpickr-day .fare-price {
            display: block;
            font-size: 8px;
            font-weight: 600;
            color: #16a34a;
            line-height: 1;
            margin-top: 1px;
        }
        .flatpickr-day.selected .fare-price,
        .flatpickr-day.startRange .fare-price,
        .flatpickr-day.endRange .fare-price {
            color: #fff;
        }
        .flatpickr-day {
            height: 42px !important;
            line-height: 28px !important;
        }
        .flatpickr-calendar {
            z-index: 9999 !important;
        }

        /* Search error toast */
        .search-toast {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 50;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #dc2626;
            box-shadow: 0 4px 12px rgba(220,38,38,0.1);
            animation: toastIn 0.3s ease;
            max-width: 450px;
        }
        .search-toast i.toast-icon {
            font-size: 14px;
            flex-shrink: 0;
        }
        .search-toast .toast-close {
            margin-left: 4px;
            cursor: pointer;
            font-size: 16px;
            color: #dc2626;
            opacity: 0.6;
            transition: opacity 0.2s;
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
            flex-shrink: 0;
        }
        .search-toast .toast-close:hover { opacity: 1; }
        @keyframes toastIn {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .intl-swap-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #1B60C1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
            color: #1B60C1;
        }
        .intl-swap-btn:hover {
            background: #1B60C1;
            color: #fff;
        }

        /* Right half: dates + meta */
        .intl-dates-meta {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 16px;
        }
        @media (min-width: 1024px) {
            .intl-dates-meta {
                padding-left: 28px;
                padding-top: 0;
            }
        }
        .intl-dates-row {
            display: flex;
            gap: 16px;
        }
        .intl-date-field {
            flex: 1;
        }
        .intl-date-field label {
            font-size: 12px;
            font-weight: 500;
            color: #6b7280;
            display: block;
            margin-bottom: 4px;
        }
        .intl-date-field input[type="text"] {
            width: 100%;
            font-size: 15px;
            font-weight: 600;
            color: #111827;
            background: transparent;
            border: none;
            border-bottom: 1px solid #d1d5db;
            outline: none;
            padding: 6px 0;
            cursor: pointer;
            transition: border-color 0.2s;
        }
        .intl-date-field input[type="text"]:focus { border-color: #1B60C1; }
        .intl-date-field input[type="text"]::placeholder { color: #9ca3af; font-weight: 400; }
        .intl-date-field .flatpickr-input { cursor: pointer; }

        .intl-meta-row {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .intl-meta-row span.meta-label { font-size: 13px; color: #6b7280; }
        .intl-meta-row span.meta-value { font-size: 14px; font-weight: 700; color: #111827; }
        .intl-meta-row select {
            font-size: 14px; font-weight: 700; color: #111827;
            background: transparent; border: none; outline: none; cursor: pointer;
        }

        /* Search button — floating on bottom border */
        .intl-search-btn-wrap {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 50%);
            z-index: 10;
        }
        .intl-search-btn {
            background: linear-gradient(135deg, #155db2 0%, #1a6fd4 100%);
            color: #fff;
            font-weight: 800;
            font-size: 16px;
            padding: 13px 52px;
            border-radius: 32px;
            letter-spacing: 0.08em;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(21, 93, 178, 0.35);
        }
        .intl-search-btn:hover {
            box-shadow: 0 8px 28px rgba(21, 93, 178, 0.45);
            transform: translateY(-2px);
        }

        /* ── Travellers dropdown ── */
        .intl-pax-trigger {
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            position: relative;
        }
        .intl-pax-trigger:hover .meta-value { color: #1B60C1; }
        .intl-pax-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
            padding: 24px;
            z-index: 100;
            display: none;
            min-width: 420px;
        }
        .intl-pax-dropdown.open { display: flex; }
        .intl-pax-dropdown .pax-left {
            flex: 1;
            padding-right: 24px;
            border-right: 1px solid #e5e7eb;
        }
        .intl-pax-dropdown .pax-right {
            flex: 1;
            padding-left: 24px;
        }
        .intl-pax-dropdown h4 {
            font-size: 13px;
            font-weight: 800;
            color: #1a2744;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
        }
        .pax-type {
            margin-bottom: 14px;
        }
        .pax-type:last-child { margin-bottom: 0; }
        .pax-type-label {
            font-size: 13px;
            font-weight: 500;
            color: #4b5563;
            margin-bottom: 6px;
        }
        .pax-stepper {
            display: flex;
            align-items: center;
            gap: 0;
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            width: fit-content;
        }
        .pax-stepper button {
            width: 40px; height: 38px;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 700; color: #16a34a;
            background: #f9fafb; border: none; cursor: pointer;
            transition: background 0.15s;
        }
        .pax-stepper button:hover { background: #ecfdf5; }
        .pax-stepper input {
            width: 44px; height: 38px; text-align: center;
            font-size: 16px; font-weight: 700; color: #111827;
            border: none; border-left: 1.5px solid #e5e7eb; border-right: 1.5px solid #e5e7eb;
            background: #fff; outline: none;
        }
        .class-option {
            display: flex; align-items: center; gap: 10px;
            padding: 6px 0; cursor: pointer; font-size: 14px; color: #374151;
        }
        .class-option input[type="radio"] {
            accent-color: #16a34a;
            width: 17px; height: 17px; margin: 0;
        }
        .class-option:hover { color: #111827; }
        .pax-close-btn {
            background: #16a34a;
            color: #fff; font-size: 12px; font-weight: 700;
            padding: 8px 24px; border-radius: 6px;
            border: none; cursor: pointer;
            letter-spacing: 0.04em;
            transition: background 0.2s;
            float: right;
            margin-top: 12px;
        }
        .pax-close-btn:hover { background: #15803d; }

        /* ── Nationality Dropdown ── */
        .intl-nationality-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
            padding: 20px;
            z-index: 100;
            display: none;
            width: 320px;
        }
        .intl-nationality-dropdown.open { display: block; }
        .nationality-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.15s;
        }
        .nationality-item:hover { background: #f0f6ff; }
        .nationality-item.active { background: #e8f0fe; }
        .ni-nationality { font-size: 14px; font-weight: 600; color: #111827; }
        .ni-country { font-size: 12px; color: #6b7280; }

        /* ── Flatpickr overrides ── */
        .flatpickr-calendar { z-index: 9999 !important; }

        /* ── Section Title ── */
        .section-title { font-size: 28px; font-weight: 800; color: #111827; letter-spacing: -0.02em; }
        @media (min-width: 1024px) { .section-title { font-size: 34px; } }
        .section-subtitle { font-size: 15px; color: #6b7280; margin-top: 6px; }
        .section-accent {
            width: 40px; height: 3px;
            background: linear-gradient(90deg, #1B60C1, #3b82f6);
            border-radius: 2px;
            margin: 12px auto 0;
        }

        /* ── Popular Destinations — horizontal scroll carousel ── */
        .dest-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 8px;
            scrollbar-width: none;
        }
        .dest-scroll::-webkit-scrollbar { display: none; }
        .dest-item {
            flex: 0 0 340px;
            scroll-snap-align: start;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            background: #000;
        }
        @media (min-width: 768px) { .dest-item { flex: 0 0 calc(33.333% - 16px); } }
        .dest-item img {
            width: 100%; height: 360px;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(.25,.46,.45,.94), opacity 0.4s;
            opacity: 0.85;
        }
        .dest-item:hover img { transform: scale(1.1); opacity: 1; }
        .dest-item .dest-content {
            position: absolute; inset: 0;
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 28px;
            background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
            transition: background 0.3s;
        }
        .dest-item:hover .dest-content {
            background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
        }
        .dest-item .dest-badge {
            position: absolute; top: 20px; left: 20px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 6px 14px; border-radius: 30px;
            font-size: 11px; font-weight: 600; color: #fff;
            display: flex; align-items: center; gap: 5px;
        }
        .dest-item .dest-cta {
            display: inline-flex; align-items: center; gap: 8px;
            color: #fff; font-size: 13px; font-weight: 600;
            margin-top: 14px;
            opacity: 0; transform: translateY(8px);
            transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
        }
        .dest-item:hover .dest-cta { opacity: 1; transform: translateY(0); }
        .dest-cta-arrow {
            width: 30px; height: 30px;
            background: #1B60C1; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .dest-item:hover .dest-cta-arrow { background: #2563eb; }
        .dest-item .dest-flights {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(27,96,193,0.3);
            border: 1px solid rgba(27,96,193,0.4);
            padding: 4px 12px; border-radius: 8px;
            font-size: 11px; color: #93c5fd; font-weight: 600;
            margin-top: 8px; width: fit-content;
        }

        /* ── Explore Nepal — bento grid ── */
        .explore-bento {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto;
            gap: 16px;
        }
        @media (min-width: 768px) {
            .explore-bento {
                grid-template-columns: repeat(12, 1fr);
                grid-template-rows: 320px 240px;
            }
            .explore-bento .eb-1 { grid-column: 1 / 8; grid-row: 1 / 2; }
            .explore-bento .eb-2 { grid-column: 8 / 13; grid-row: 1 / 2; }
            .explore-bento .eb-3 { grid-column: 1 / 5; grid-row: 2 / 3; }
            .explore-bento .eb-4 { grid-column: 5 / 9; grid-row: 2 / 3; }
            .explore-bento .eb-5 { grid-column: 9 / 13; grid-row: 2 / 3; }
        }
        .eb-card {
            position: relative; border-radius: 20px; overflow: hidden;
            min-height: 220px; cursor: pointer;
        }
        .eb-card img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
        }
        .eb-card:hover img { transform: scale(1.08); }
        .eb-card .eb-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 35%, rgba(0,12,24,0.88) 100%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 24px;
            color: #fff;
            transition: background 0.4s;
        }
        .eb-card:hover .eb-overlay {
            background: linear-gradient(180deg, rgba(27,96,193,0.08) 0%, rgba(0,12,24,0.92) 100%);
        }
        .eb-card .eb-props {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px;
        }
        .eb-card .eb-price {
            display: inline-flex; align-items: center; gap: 6px;
            background: linear-gradient(135deg, rgba(22,163,74,0.25), rgba(22,163,74,0.1));
            border: 1px solid rgba(22,163,74,0.35);
            padding: 5px 14px; border-radius: 10px;
            font-size: 12px; color: #86efac; font-weight: 700;
            margin-top: 10px; width: fit-content;
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        }
        .eb-card .eb-name {
            font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
        }
        .eb-card.eb-1 .eb-name { font-size: 28px; }

        /* ── Why Us Card ── */
        .why-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            padding: 40px 28px 36px;
            text-align: center;
            transition: all 0.4s cubic-bezier(.25,.8,.25,1);
            position: relative;
            overflow: hidden;
        }
        .why-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #1B60C1, #16a34a);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .why-card:hover::before { transform: scaleX(1); }
        .why-card:hover {
            box-shadow: 0 20px 40px rgba(27,96,193,0.08);
            border-color: transparent;
            transform: translateY(-6px);
        }
        .why-icon-wrap {
            width: 72px; height: 72px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 18px;
            display: flex;
            align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }
        .why-card:hover .why-icon-wrap {
            background: linear-gradient(135deg, #1B60C1, #2563eb);
            transform: scale(1.08);
        }
        .why-icon-wrap i { font-size: 28px; color: #1B60C1; transition: color 0.3s; }
        .why-card:hover .why-icon-wrap i { color: #fff; }

        /* ── Download App ── */
        .download-section {
            background: linear-gradient(135deg, #0c2244 0%, #155db2 50%, #1a6fd4 100%);
            position: relative; overflow: hidden;
        }
        .download-section::before {
            content: '';
            position: absolute; top: -200px; right: -100px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        .download-section::after {
            content: '';
            position: absolute; bottom: -150px; left: -80px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(21,93,178,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        .app-store-btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 12px 24px; border-radius: 12px;
            font-weight: 600; font-size: 14px;
            transition: all 0.3s ease;
        }
        .app-store-btn:hover { transform: translateY(-2px); }

        /* ═══════════════════════════════════════════
           MULTI-CITY SEGMENT ROWS
        ═══════════════════════════════════════════ */
        #intlMultiCityBody {
            padding: 20px 24px 0 !important;
        }
        #intlMcSegments {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .mc-row {
            position: relative;
            display: grid;
            grid-template-columns: auto 1fr auto 1fr auto 200px auto;
            align-items: stretch;
            gap: 0;
            padding: 0;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            background: #fff;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .mc-row:hover { border-color: #cbd5e1; box-shadow: 0 2px 12px -4px rgba(27, 96, 193, 0.08); }
        .mc-row .mc-flag { border-top-left-radius: 13px; border-bottom-left-radius: 13px; }
        .mc-row .mc-remove-col:last-child { border-top-right-radius: 13px; border-bottom-right-radius: 13px; }

        @media (max-width: 1023px) {
            .mc-row {
                grid-template-columns: 1fr;
                padding: 16px;
            }
            .mc-row .mc-flag { border-right: none; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
            .mc-row .mc-arrow-col { display: none; }
            .mc-row .mc-divider { display: none; }
            .mc-row .mc-date { border-left: none; border-top: 1px solid #f1f5f9; padding-top: 14px; }
        }

        .mc-flag {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            background: linear-gradient(180deg, #f0f6ff 0%, #e8f1fd 100%);
            border-right: 1px solid #f1f5f9;
            min-width: 110px;
        }
        .mc-flag-num {
            width: 32px; height: 32px;
            border-radius: 50%;
            background: #1B60C1;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(27, 96, 193, 0.25);
        }
        .mc-flag-label {
            font-size: 10px;
            font-weight: 700;
            color: #1B60C1;
            text-transform: uppercase;
            letter-spacing: .08em;
            line-height: 1.2;
        }
        .mc-flag-label .mc-flag-sub {
            display: block;
            font-size: 9.5px;
            color: #64748b;
            font-weight: 500;
            letter-spacing: .02em;
            text-transform: none;
            margin-top: 1px;
        }

        .mc-field {
            padding: 14px 18px;
            position: relative;
            min-width: 0;
        }
        .mc-field-label {
            font-size: 10px;
            font-weight: 700;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 6px;
        }
        .mc-code-input {
            width: 100%;
            font-size: 26px;
            font-weight: 900;
            color: #1a2744;
            letter-spacing: 2px;
            line-height: 1;
            padding: 2px 0;
            border: none;
            outline: none;
            background: transparent;
            text-transform: uppercase;
        }
        .mc-code-input::placeholder { color: #d1d5db; letter-spacing: 1px; }
        .mc-city {
            font-size: 11.5px;
            color: #6b7280;
            margin-top: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mc-arrow-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 6px;
            position: relative;
        }
        .mc-arrow-line {
            width: 1px;
            height: 14px;
            border-left: 2px dashed #d1d5db;
        }
        .mc-arrow-btn {
            width: 32px; height: 32px;
            border-radius: 50%;
            border: 1.5px solid #e5e7eb;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #1B60C1;
            font-size: 12px;
        }

        .mc-divider {
            width: 1px;
            background: #f1f5f9;
            margin: 12px 0;
        }

        .mc-date {
            padding: 14px 18px;
            min-width: 0;
        }
        .mc-date .flatpickr-input,
        .mc-date input[type="text"] {
            width: 100%;
            font-size: 15px;
            font-weight: 700;
            color: #1a2744;
            padding: 4px 0;
            border: none;
            outline: none;
            background: transparent;
            cursor: pointer;
        }
        .mc-date input[type="text"]::placeholder { color: #9ca3af; font-weight: 500; }

        .mc-remove-col {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 14px;
            border-left: 1px solid #f1f5f9;
        }
        .mc-remove-btn {
            width: 32px; height: 32px;
            border-radius: 50%;
            border: 1.5px solid #fee2e2;
            background: #fff;
            color: #ef4444;
            font-size: 13px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all .15s ease;
        }
        .mc-remove-btn:hover { background: #fef2f2; border-color: #fecaca; transform: scale(1.05); }
        .mc-remove-spacer {
            width: 32px;
            display: inline-block;
        }

        .mc-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            gap: 12px;
            flex-wrap: wrap;
        }
        .mc-add-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border: 1.5px dashed #1B60C1;
            color: #1B60C1;
            background: #fff;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all .15s ease;
        }
        .mc-add-btn:hover { background: #f0f6ff; }
        .mc-add-btn:disabled { opacity: .4; cursor: not-allowed; }
        .mc-hint {
            font-size: 11.5px;
            color: #94a3b8;
            font-weight: 500;
        }
        .mc-hint strong { color: #1B60C1; font-weight: 700; }

        /* Airport dropdown anchored inside multicity row field */
        .mc-field { z-index: 1; }
        .mc-field:focus-within { z-index: 30; }
        .mc-field .airport-dropdown {
            left: 12px;
            top: calc(100% - 4px);
            transform: none;
            width: 360px;
            max-width: 92vw;
        }
        .mc-field .airport-dropdown.open { width: 360px; max-width: 92vw; }

        /* (footer removed — uses layout.html footer) */