        /* ── Section visibility ── */
        #booking-entry-section { display: none;  }
        #itinerary-section     { display: block; }
        /* BOOKING ENTRY CSS */

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

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

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
        }

        /* ── cus-tab (matches site styles.css) ── */
        /* Tab switching handled by Bootstrap data-bs-toggle */

        /* ── Map with search overlay ── */
        .map-wrap {
            position: relative;
        }
        #map, #map2, #be-map, #be-map2 {
            height: 420px;
            width: 100%;
        }
        /* pac-container (Google autocomplete dropdown) must be ABOVE everything */
        .pac-container { z-index: 99999 !important; }

        /* Clear (X) button inside inputs */
        .search-row .clear-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: #555;
            border: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3;
            padding: 0;
            line-height: 1;
            font-size: 11px;
            color: #fff;
            font-weight: bold;
        }
        .search-row .clear-btn.visible { display: flex; }
        .search-row .clear-btn:hover { background: #222; }
        /* When there's also a live-location button, push X further left */
        .search-row .row-btn ~ .clear-btn,
        .search-row .clear-btn:has(~ .row-btn) {
            right: 36px;
        }
        /* Simpler approach — just target pickup rows by ID */
        #pickup-row .clear-btn,
        #pickup-row-schedule .clear-btn { right: 36px; }

        /* Popular attractions dropdown */
        /* ── Main form Google suggestions list ── */
        .main-suggestions {
            display: none; position: absolute;
            top: calc(100% + 4px); left: 0; right: 0;
            background: #fff; border: 1px solid #e5e5e5; border-radius: 12px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.13); z-index: 99999;
            list-style: none; margin: 0; padding: 4px;
            max-height: 220px; overflow-y: auto;
        }
        .main-suggestions li {
            padding: 10px 14px; font-size: 13.5px; color: #333;
            cursor: pointer; border-radius: 8px; line-height: 1.4;
        }
        .main-suggestions li:hover { background: #fff4e6; color: #E59032; }
        .main-suggestions li.sugg-empty { color: #aaa; cursor: default; font-style: italic; }
        .main-suggestions li.sugg-empty:hover { background: transparent; }

        .attraction-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.18);
            z-index: 9500;
            overflow: hidden;
            display: none;
        }
        .attraction-dropdown.visible { display: block; }
        .attraction-dropdown-header {
            padding: 8px 12px 4px;
            font-size: 11px;
            font-weight: 600;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .attraction-dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 12px;
            cursor: pointer;
            transition: background 0.15s;
        }
        .attraction-dropdown-item:hover { background: #FFF9F5; }
        .attraction-dropdown-item img {
            width: 38px;
            height: 38px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .attraction-dropdown-item .adr-name {
            font-size: 13px;
            font-weight: 600;
            color: #333;
        }
        .attraction-dropdown-item .adr-price {
            font-size: 12px;
            color: #FF6B35;
        }

        /* All slides must be above search-overlay (9000) */

        .search-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            z-index: 9000;
            background: transparent;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        /* Each row is independent — no overlapping */
        .search-row {
            position: relative;
            width: 100%;
        }
        /* Icon inside input on the left */
        .search-row .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            z-index: 2;
            pointer-events: none;
        }
        .search-row input[type="text"] {
            width: 100%;
            padding: 12px 32px 12px 40px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            background: rgba(255,255,255,0.97);
            outline: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: box-shadow 0.2s;
            box-sizing: border-box;
        }
        /* Pickup rows have both clear + location btn — need more right space */
        #pickup-row input[type="text"],
        #pickup-row-schedule input[type="text"] {
            padding-right: 64px;
        }
        .search-row input:focus {
            box-shadow: 0 2px 14px rgba(255,107,53,0.35);
            background: #fff;
        }
        .search-row input::placeholder { color: #aaa; }
        /* Live-location button inside input on the right */
        .search-row .row-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            z-index: 2;
        }
        .search-row .row-btn img { width: 20px; height: 20px; }

        /* Info Tabs */
        .info-tabs {
            display: flex;
            background: white;
            padding: 0 16px;
            gap: 24px;
            border-bottom: 1px solid #e0e0e0;
        }

        .info-tab {
            padding: 16px 0;
            background: none;
            border: none;
            color: #999;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }

        .info-tab.active {
            color: #333;
        }

        .info-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #FF6B35;
        }

        /* Service Highlights */
        .service-highlights {
            background: white;
            padding: 24px 16px;
            display: none;
        }

        .service-highlights.active {
            display: block;
        }

        .service-highlights h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            padding: 16px;
            background: #FFF9F5;
            border-radius: 12px;
        }

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

        .highlight-icon {
            width: 44px;
            height: 44px;
            background: #FF6B35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .highlight-icon i {
            color: white;
            font-size: 20px;
        }

        .highlight-content h4 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .highlight-content p {
            font-size: 13px;
            color: #666;
            margin: 0;
        }

        /* Cancellation Policy */
        .cancellation-policy {
            background: white;
            padding: 24px 16px;
            display: none;
        }

        .cancellation-policy.active {
            display: block;
        }

        .cancellation-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }

        .policy-item {
            margin-bottom: 16px;
            padding-left: 24px;
            position: relative;
        }

        .policy-item::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: #FF6B35;
            font-size: 20px;
            font-weight: bold;
        }

        .policy-item h4 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .policy-item p {
            font-size: 13px;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        .note-box {
            background: #FFF3E0;
            border-left: 4px solid #FF6B35;
            padding: 12px 16px;
            border-radius: 8px;
            margin-top: 16px;
        }

        .note-box p {
            font-size: 13px;
            color: #E65100;
            margin: 0;
            line-height: 1.5;
        }

        /* Terms & Conditions */
        .terms-conditions {
            background: white;
            padding: 24px 16px;
            display: none;
        }

        .terms-conditions.active {
            display: block;
        }

        .terms-conditions h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }

        .terms-section {
            margin-bottom: 20px;
        }

        .terms-section h4 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        .terms-list {
            list-style: none;
            padding: 0;
        }

        .terms-list li {
            padding-left: 24px;
            position: relative;
            margin-bottom: 8px;
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        .terms-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FF6B35;
            font-weight: bold;
        }

        .cancellation-policy > *:last-child,
        .terms-conditions > *:last-child,
        .service-highlights > *:last-child {
            margin-bottom: 0;
        }
        .cab-selection {
            background: white;
            padding: 24px 16px;
            display: none;
        }

        .cab-selection.visible {
            display: block;
        }

        .cab-selection h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }

        .cab-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .cab-card {
            position: relative;
        }

        .cab-card input[type="radio"] {
            display: none;
        }

        .cab-card label {
            display: block;
            padding: 16px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cab-card label:hover {
            border-color: #FF6B35;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
        }

        .cab-card input[type="radio"]:checked + label {
            border-color: #FF6B35;
            background: #FFF9F5;
        }

        .cab-card img {
            width: 100%;
            height: 80px;
            object-fit: contain;
            margin-bottom: 8px;
        }

        .cab-seats {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        /* Primary Button */
        .btn-primary-modern {
            width: calc(100% - 32px);
            margin: 0 16px 20px;
            padding: 16px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .btn-primary-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
        }

        .btn-primary-modern:active {
            transform: translateY(0);
        }

        /* Date/Time Slide-up */
        .datetime-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 19000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .datetime-overlay.active {
            display: block;
            opacity: 1;
        }

        .datetime-slide {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            max-height: 90%;
            background: white;
            border-radius: 24px 24px 0 0;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
            z-index: 19001;
            transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* On desktop: cap width and center */
        @media (min-width: 600px) {
            .datetime-slide {
                left: 50%;
                transform: translateX(-50%);
                width: 480px;
                border-radius: 24px 24px 0 0;
            }
        }

        .datetime-slide.active {
            bottom: 0;
        }

        /* Drag handle pill */
        .datetime-slide::before {
            content: '';
            display: block;
            width: 36px;
            height: 4px;
            background: #ddd;
            border-radius: 2px;
            margin: 10px auto 0;
            flex-shrink: 0;
        }

        .datetime-header {
            padding: 10px 16px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .datetime-header h3 {
            font-size: 15px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.2px;
        }

        .close-btn {
            background: #f0f0f0;
            border: none;
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #555;
            transition: background 0.2s;
            flex-shrink: 0;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .close-btn:hover, .close-btn:active { background: #e0e0e0; }

        .datetime-content {
            flex: 1;
            overflow-y: auto;
            padding: 14px 16px 20px;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }

        /* ── Date Slider (horizontal scroll blocks) ── */
        .date-slider {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 4px 0 12px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .date-slider::-webkit-scrollbar { height: 3px; }
        .date-slider::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

        .date-item {
            min-width: 72px;
            padding: 12px 8px;
            background: #e2e2e2;
            border: 1.5px solid #d4d4d4;
            border-radius: 14px;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }
        .date-item:hover { border-color: #F5A623; background: #fdefd4; }
        .date-item.selected {
            border-color: #F5A623;
            background: #F5A623;
            box-shadow: 0 2px 10px rgba(245,166,35,0.35);
        }
        .date-day {
            font-size: 11px;
            color: #888;
            font-weight: 600;
            margin-bottom: 4px;
            text-transform: uppercase;
        }
        .date-item.selected .date-day { color: rgba(255,255,255,0.90); }
        .date-number {
            font-size: 22px;
            font-weight: 700;
            color: #555;
            margin-bottom: 2px;
            line-height: 1;
        }
        .date-item.selected .date-number { color: #fff; }
        .date-month { font-size: 11px; color: #999; font-weight: 500; }
        .date-item.selected .date-month { color: rgba(255,255,255,0.90); }

        /* ── Selected date label above slider ── */
        .selected-date-label {
            text-align: center;
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
            min-height: 22px;
            transition: color 0.2s;
        }
        .selected-date-label span {
            color: #F5A623;
            font-weight: 600;
        }

        /* ── "Select from calendar" button ── */
        .cal-open-btn {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #F5A623;
            border-radius: 12px;
            background: white;
            color: #F5A623;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 12px 0 0;
            transition: background 0.2s;
        }
        .cal-open-btn:hover { background: #FFFBF0; }

        /* ── Calendar Modal (slide-up inside slide-up) ── */
        .cal-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 20000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .cal-modal-overlay.active { display: block; opacity: 1; }

        .cal-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 24px 24px 0 0;
            z-index: 20001;
            transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
            transform: translateY(110%);
            padding: 0 0 24px;
            box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
        }
        .cal-modal.active { transform: translateY(0); }

        /* On desktop: cap width and center */
        @media (min-width: 600px) {
            .cal-modal {
                left: 50%;
                transform: translateX(-50%) translateY(110%);
                width: 480px;
                border-radius: 24px 24px 0 0;
            }
            .cal-modal.active { transform: translateX(-50%) translateY(0); }
        }

        /* Header */
        .cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px 16px;
            border-bottom: 1px solid #f0f0f0;
        }
        .cal-header-title {
            font-size: 18px;
            font-weight: 600;
            color: #222;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .cal-nav-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            color: #555;
            font-size: 18px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: background 0.2s;
        }
        .cal-nav-btn:hover { background: #f5f5f5; }
        .cal-close-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font-size: 18px;
            color: #555;
            width: 44px;
            height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .cal-close-btn:hover, .cal-close-btn:active { background: #f5f5f5; }

        /* Sub-header: select your date */
        .cal-subheader {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 16px 20px 12px;
        }
        .cal-subheader-text h4 {
            font-size: 17px;
            font-weight: 700;
            color: #222;
            margin: 0 0 2px;
        }
        .cal-subheader-text p {
            font-size: 13px;
            color: #aaa;
            margin: 0;
        }
        .cal-radio-indicator {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #F5A623;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cal-radio-indicator::after {
            content: '';
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #F5A623;
        }

        /* Month nav row */
        .cal-month-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 0 20px 10px;
        }
        .cal-month-label {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            min-width: 130px;
            text-align: center;
        }

        /* Grid */
        .cal-grid-wrap { padding: 0 12px; }
        .cal-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            margin-bottom: 4px;
        }
        .cal-weekday {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #aaa;
            padding: 4px 0;
        }
        .cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
        }
        .cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 500;
            color: #333;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
            margin: 1px;
        }
        .cal-day:hover:not(.disabled):not(.empty) { background: #FFF3D6; }
        .cal-day.today {
            background: #FFE8A8;
            color: #222;
            font-weight: 600;
        }
        .cal-day.selected {
            background: #F5A623;
            color: white;
            font-weight: 700;
        }
        .cal-day.disabled {
            color: #ccc;
            cursor: not-allowed;
        }
        .cal-day.empty { cursor: default; }

        /* Confirm button inside calendar */
        .cal-confirm-btn {
            width: calc(100% - 40px);
            margin: 16px 20px 0;
            padding: 16px;
            background: linear-gradient(135deg, #F5A623 0%, #F7C05A 100%);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(245,166,35,0.35);
        }
        .cal-confirm-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,166,35,0.45); }
        .cal-confirm-btn:disabled { background: #ccc; box-shadow: none; cursor: not-allowed; }

        /* Time Grid */
        .time-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .time-btn {
            padding: 14px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .time-btn:hover {
            border-color: #FF6B35;
        }

        .time-btn.selected {
            border-color: #FF6B35;
            background: linear-gradient(135deg, #FFE5D9 0%, #FFD4BA 100%);
            color: #FF6B35;
        }

        /* Custom Time Picker */
        .custom-time {
            background: #f8f9fa;
            padding: 16px;
            border-radius: 12px;
            margin: 16px 0;
        }

        .custom-time label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
        }

        .custom-time input[type="time"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
        }

        .custom-time input[type="time"]:focus {
            outline: none;
            border-color: #FF6B35;
        }

        /* Confirm Button */
        .confirm-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
        }

        .confirm-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .confirm-btn:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        /* Scheduled Info */
        .scheduled-info {
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
            padding: 16px;
            border-radius: 12px;
            margin: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .scheduled-info i {
            color: #1976D2;
            font-size: 24px;
        }

        /* Two-block date / time display */
        .scheduled-info-blocks {
            display: flex;
            align-items: center;
            flex: 1;
            gap: 0;
        }

        .scheduled-info-block {
            flex: 1;
            padding: 8px 12px;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s;
            text-align: center;
        }

        .scheduled-info-block:hover {
            background: rgba(21, 101, 192, 0.12);
        }

        .scheduled-info-block strong {
            display: block;
            font-size: 11px;
            color: #1565C0;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .scheduled-info-block span {
            font-size: 14px;
            font-weight: 600;
            color: #0D47A1;
        }

        .scheduled-info-divider {
            width: 1px;
            height: 36px;
            background: rgba(21, 101, 192, 0.25);
            flex-shrink: 0;
        }

        /* Hide sections */
        .time-selection {
            display: none;
        }

        .time-selection.active {
            display: flex;
            flex-direction: column;
            max-height: 60vh;
        }

        .time-selection .time-grid {
            overflow-y: auto;
            flex: 1;
            min-height: 0;
        }

        .time-selection .confirm-btn {
            flex-shrink: 0;
            position: sticky;
            bottom: 0;
            margin-top: 12px;
        }

        /* Alert */
        .alert {
            padding: 12px 16px;
            margin: 16px;
            border-radius: 12px;
            font-size: 14px;
        }

        .alert-danger {
            background: #FFEBEE;
            color: #C62828;
            border: 1px solid #EF9A9A;
        }

        /* Hidden content */
        .tab-content-item {
            display: none;
        }

        .tab-content-item.active {
            display: block;
        }

        /* Attraction Overlay */
        .attraction-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 19000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .attraction-overlay.active {
            display: block;
            opacity: 1;
        }

        .attraction-slide {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            max-height: 80%;
            background: white;
            border-radius: 24px 24px 0 0;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
            z-index: 19001;
            transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .attraction-slide.active {
            bottom: 0;
        }

        @media (min-width: 600px) {
            .attraction-slide {
                left: 50%;
                transform: translateX(-50%);
                width: 480px;
            }
        }

        .attraction-slide-content {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }

        .attraction-item {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: #f8f9fa;
            border-radius: 12px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .attraction-item:hover {
            background: #FFF9F5;
            transform: translateX(4px);
        }

        .attraction-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .attraction-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .attraction-info p {
            font-size: 14px;
            color: #FF6B35;
            font-weight: 600;
            margin: 0;
        }

        /* Recommendation Slide-up */
        .recommendation-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 19000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .recommendation-overlay.active {
            display: block;
            opacity: 1;
        }

        .recommendation-slide {
            position: fixed;
            bottom: -100%;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 400px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
            z-index: 19001;
            transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 32px 24px 24px;
        }

        .recommendation-slide.active {
            bottom: 32px;
        }

        .recommendation-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #FFE5D9 0%, #FFD4BA 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .recommendation-icon i {
            font-size: 40px;
            color: #FF6B35;
        }

        .recommendation-text {
            text-align: center;
            margin-bottom: 24px;
        }

        .recommendation-text p {
            font-size: 15px;
            color: #333;
            line-height: 1.6;
            margin: 0;
        }

        .recommendation-text strong {
            color: #FF6B35;
            font-weight: 600;
        }

        .recommendation-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-schedule-it {
            width: 100%;
            padding: 16px;
            background: white;
            border: 2px solid #FF6B35;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: #FF6B35;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-schedule-it:hover {
            background: #FFF9F5;
        }

        .btn-book-now-confirm {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .btn-book-now-confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
        }
        /* ── Floating Submit Button ── */
        .float-submit-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 18000;
            padding: 12px 16px 20px;
            background: linear-gradient(to top, rgba(248,249,250,1) 60%, rgba(248,249,250,0));
            pointer-events: none;
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .float-submit-bar.visible {
            transform: translateY(0);
            pointer-events: all;
        }
        /* Body padding — only when floater is on screen */
        .float-submit-bar.visible ~ * { /* handled via JS class on body */ }
        .float-submit-btn {
            width: 100%;
            max-width: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 0 auto;
            padding: 16px 24px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 17px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            box-shadow: 0 6px 24px rgba(255, 107, 53, 0.45);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .float-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(255, 107, 53, 0.5);
        }
        .float-submit-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
        }
        .float-submit-btn:disabled {
            background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }
        /* Add bottom padding to page so content isn't hidden behind floater — only when floater visible */
        body.floater-active { padding-bottom: 88px; }
            /* TRIP ITINERARY CSS */

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

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
            padding-bottom: 90px;
        }

        /* Header Alert */
        .itinerary-header {
            background: linear-gradient(135deg, #D1F2EB 0%, #A9DFBF 100%);
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Back button inside header */
        .itinerary-back-btn {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: rgba(255,255,255,0.65);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a7a48;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s;
            flex-shrink: 0;
        }
        .itinerary-back-btn:hover { background: rgba(255,255,255,0.9); }

        .header-icon {
            width: 32px;
            height: 32px;
            background: #27AE60;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .header-icon i {
            color: white;
            font-size: 16px;
        }

        .header-content h3 {
            font-size: 16px;
            font-weight: 600;
            color: #27AE60;
            margin-bottom: 2px;
        }

        .header-content p {
            font-size: 13px;
            color: #229954;
            margin: 0;
        }

        /* Map Section — full bleed, no side margins */
        .map-container {
            position: relative;
            margin: 0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        #map {
            width: 100%;
            height: 260px;
        }

        /* A / B location labels — shown as Google Maps custom markers (see JS) */

        .map-badge {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: white;
            padding: 8px 16px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .map-badge i {
            color: #27AE60;
            font-size: 14px;
        }

        .map-badge span {
            font-size: 13px;
            font-weight: 500;
            color: #333;
        }

        /* legacy marker stubs removed — see .map-ab-overlay above */

        /* Date Section — compact horizontal pill chips */
        .date-section {
            padding: 10px 16px 6px;
        }

        .date-cards {
            display: flex;
            gap: 8px;
            margin-bottom: 4px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        /* Date chip — matches .date-item style from Schedule slider exactly */
        .date-card {
            flex: 0 0 auto;
            min-width: 72px;
            padding: 12px 8px;
            background: #e2e2e2;
            border: 1.5px solid transparent;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            position: relative;
            font-family: 'Poppins', sans-serif;
            box-shadow: none;
        }
        .date-card:hover { background: #fdefd4; border-color: #F5A623; }
        /* Selected = orange (same as .date-item.selected) */
        .date-card.active {
            background: #F5A623;
            border-color: #F5A623;
            box-shadow: 0 2px 10px rgba(245,166,35,0.35);
        }

        /* Hide the left icon tab — not in date-item style */
        .date-card-left { display: none; }

        /* Right section fills entire card, centered */
        .date-card-right {
            background: transparent;
            padding: 0;
            border-radius: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            width: 100%;
        }
        .date-card-right-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
        }

        /* Icon — hidden (not used in date-item style) */
        .date-card-icon { display: none; }

        /* Date text — matches .date-number style */
        .date-card .date-num {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            margin-bottom: 0;
            line-height: 1.2;
        }
        .date-card.active .date-num { color: #fff; }

        /* Sub-label (Now / Scheduled) — matches .date-month style */
        .date-card .date-label {
            font-size: 10px;
            font-weight: 500;
            color: #999;
            line-height: 1.2;
        }
        .date-card.active .date-label { color: rgba(255,255,255,0.90); }

        /* × close button — top-right corner */
        .date-card-close {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 14px; height: 14px;
            background: rgba(0,0,0,0.15);
            border: none;
            border-radius: 50%;
            color: #666;
            font-size: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            transition: all 0.2s ease;
            flex-shrink: 0;
            z-index: 1;
        }
        .date-card.active .date-card-close { background: rgba(0,0,0,0.20); color: #fff; }
        .date-card-close:hover { background: rgba(0,0,0,0.30); }
        .date-card.first-date .date-card-close { display: none; }

        /* Edit (pencil) button — hidden */
        .date-card-edit { display: none !important; }

        /* Add Date — matches date chip design language */
        .add-date-btn {
            background: #fff;
            border: 1.5px dashed #e0e0e0;
            border-radius: 10px;
            padding: 7px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #bbb;
            font-size: 13px;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            min-width: auto;
            order: 99;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .add-date-btn:hover {
            border-color: #F5A623;
            color: #F5A623;
        }

        .add-date-btn i {
            font-size: 10px;
        }

        .tip-text {
            font-size: 12px;
            color: #999;
            margin-top: 8px;
            padding-left: 4px;
        }

        /* Trip Info Card */
        .trip-info-card {
            background: #FFF9F5;
            border-radius: 12px;
            padding: 16px;
            margin: 0 16px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trip-info-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #FFE5D9 0%, #FFD4BA 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trip-info-icon i {
            color: #FF6B35;
            font-size: 20px;
        }

        .trip-info-content {
            flex: 1;
        }

        .trip-info-date {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .trip-info-time {
            font-size: 13px;
            color: #666;
        }

        .trip-info-cab {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .change-btn {
            background: none;
            border: none;
            color: #FF6B35;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            padding: 4px 8px;
        }

        /* Trip Details */
        .trip-details {
            background: white;
            padding: 20px 16px;
            margin: 0 16px 16px;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .trip-details h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .trip-point {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            position: relative;
        }

        .trip-point:last-child {
            margin-bottom: 0;
        }

        .point-number {
            width: 32px;
            height: 32px;
            background: #27AE60;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            flex-shrink: 0;
            z-index: 1;
        }

        .point-line {
            position: absolute;
            left: 15px;
            top: 32px;
            width: 2px;
            height: calc(100% + 24px);
            background: linear-gradient(180deg, #27AE60 0%, #ddd 100%);
        }

        .trip-point:last-child .point-line {
            display: none;
        }

        .point-content {
            flex: 1;
        }

        .point-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .point-header i {
            color: #27AE60;
            font-size: 14px;
        }

        .point-label {
            font-size: 13px;
            color: #999;
            font-weight: 500;
        }

        .point-name {
            font-size: 15px;
            font-weight: 400;
            color: #333;
            margin-bottom: 4px;
        }
        .point-name strong { font-weight: 700; color: #1a1a1a; }
        .point-name .point-name-sub { font-weight: 400; color: #888; font-size: 13px; }

        .point-info {
            font-size: 13px;
            color: #666;
        }

        .point-price {
            font-size: 16px;
            font-weight: 600;
            color: #27AE60;
            flex-shrink: 0;
        }

        /* Add Attraction Button */
        .add-attraction-btn {
            width: calc(100% - 32px);
            margin: 0 16px 16px;
            background: white;
            border: 2px dashed #ddd;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
            font-size: 14px;
            font-weight: 500;
        }

        .add-attraction-btn:hover {
            border-color: #27AE60;
            color: #27AE60;
        }

        /* Add Attraction Button */
        .ti-add-attraction-btn {
            width: calc(100% - 32px);
            margin: 8px 16px 4px;
            padding: 13px 16px;
            border: 1.5px dashed #E59032;
            border-radius: 14px;
            background: transparent;
            color: #E59032;
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.2s;
            font-family: 'Poppins', sans-serif;
        }
        .ti-add-attraction-btn:hover { background: #fff4e6; }

        /* Add Destination Button — shown when drop point is missing */
        .add-destination-btn {
            width: calc(100% - 32px);
            margin: 0 16px 12px;
            background: #FFF5F2;
            border: 2px dashed #FF6B35;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #FF6B35;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .add-destination-btn:hover {
            background: #FFE8DF;
            border-color: #e85d2a;
            color: #e85d2a;
        }

        .add-destination-btn i {
            font-size: 16px;
        }

        /* Hidden by default — JS toggles visibility */
        .add-destination-btn.hidden { display: none; }

        /* Grand Total */
        .grand-total {
            background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
            padding: 20px 16px;
            margin: 0 16px 16px;
            border-radius: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
        }

        .grand-total-label {
            font-size: 14px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 4px;
        }

        .grand-total-amount {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .grand-total-right {
            text-align: right;
        }

        .grand-total-taxes {
            font-size: 12px;
            color: rgba(255,255,255,0.9);
        }

        /* ── Trip Booking Card (screenshot style) ── */
        .ti-booking-card {
            background: #fff;
            border-radius: 16px;
            margin: 0 16px 16px;
            padding: 20px 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .ti-order-id {
            font-size: 18px;
            font-weight: 700;
            color: #FF6B35;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }
        .ti-card-divider {
            height: 1px;
            background: #f0f0f0;
            margin: 14px 0;
        }
        .ti-cab-row-card {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .ti-cab-row-card {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ti-cab-row-card img {
            width: 28px;
            height: 20px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .ti-cab-name-card {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
        }
        .ti-cab-days {
            font-size: 13px;
            color: #888;
        }
        .ti-loc-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .ti-remove-btn {
            margin-left: auto;
            flex-shrink: 0;
            background: none;
            border: none;
            padding: 4px 6px;
            cursor: pointer;
            color: #bbb;
            font-size: 13px;
            line-height: 1;
            border-radius: 6px;
            transition: color 0.15s, background 0.15s;
        }
        .ti-remove-btn:hover { color: #e53e3e; background: #fff0f0; }
        .ti-loc-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 3px;
        }
        .ti-dot-green { background: #27AE60; }
        .ti-dot-red   { background: #E74C3C; }
        .ti-dot-pin   { background: #E59032; }
        .ti-vline-wrap {
            padding-left: 6px;
            margin: 3px 0;
        }
        .ti-loc-vline {
            width: 2px;
            height: 18px;
            background: #ddd;
        }
        .ti-loc-label {
            font-size: 11px;
            font-weight: 600;
            color: #aaa;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 3px;
        }
        .ti-loc-addr {
            font-size: 14px;
            font-weight: 400;
            color: #1a1a1a;
            line-height: 1.4;
        }
        .ti-loc-addr strong { font-weight: 700; color: #1a1a1a; }
        .ti-loc-addr .point-name-sub { font-weight: 400; color: #999; font-size: 12px; }
        .ti-date-fare-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .ti-date-val {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 4px 0 2px;
        }
        .ti-time-val {
            font-size: 13px;
            color: #888;
        }
        .ti-date-inline-fare {
            font-size: 20px;
            font-weight: 700;
            color: #F5A623;
        }
        .ti-fare-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #444;
            padding: 4px 0;
        }
        .ti-fare-total {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
        }

        /* ── Per-day cost breakdown block ── */
        .ti-day-block {
            margin-bottom: 12px;
        }
        .ti-day-block:last-child { margin-bottom: 0; }

        /* Day header: "Day 1 · 21 Mar" */
        .ti-day-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }
        .ti-day-header-label {
            font-size: 13px;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .ti-day-header-total {
            font-size: 14px;
            font-weight: 700;
            color: #F5A623;
        }

        /* Sub-rows: approach / leg / return */
        .ti-day-sub-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 3px 0 3px 10px;
            font-size: 12px;
            color: #777;
            border-left: 2px solid #f0f0f0;
        }
        .ti-day-sub-row .ti-sub-amt {
            font-weight: 600;
            color: #555;
            white-space: nowrap;
            margin-left: 8px;
        }
        .ti-day-sub-row.ti-sub-approach { border-left-color: #4CAF50; }
        .ti-day-sub-row.ti-sub-leg      { border-left-color: #F5A623; }
        .ti-day-sub-row.ti-sub-return   { border-left-color: #2196F3; }
        .ti-day-divider {
            border: none;
            border-top: 1px dashed #ebebeb;
            margin: 10px 0 12px;
        }

        .confirm-btn {
            background: white;
            color: #27AE60;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .confirm-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Continue to Booking Summary Button — Fixed floating bar */
        .continue-booking-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            background: white;
            padding: 12px 16px 20px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
            /* Safe area for notched phones */
            padding-bottom: max(20px, env(safe-area-inset-bottom));
        }

        .continue-booking-btn {
            width: 100%;
            background: linear-gradient(135deg, #FF6B35 0%, #ff5722 100%);
            color: white;
            border: none;
            border-radius: 14px;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
            transition: all 0.3s ease;
        }

        .continue-booking-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255, 107, 53, 0.45);
        }

        .continue-booking-btn:active {
            transform: translateY(0);
        }

        /* Disabled state — shown when drop location is missing */
        .continue-booking-btn:disabled,
        .continue-booking-btn.btn-disabled {
            background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
            box-shadow: none;
            cursor: not-allowed;
            opacity: 0.75;
            transform: none !important;
        }

        .continue-booking-btn i {
            font-size: 16px;
        }

        /* Desktop: constrain the floating continue bar */
        @media (min-width: 600px) {
            .continue-booking-bar {
                left: 50%;
                transform: translateX(-50%);
                width: 480px;
            }
        }

        /* Sliding Window Overlay */
        .slide-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .slide-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Sliding Window */
        .slide-window {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            max-height: 85vh;
            background: white;
            border-radius: 24px 24px 0 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
        }

        .slide-window.active {
            transform: translateY(0);
        }

        .slide-header {
            padding: 20px 16px 16px;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            background: white;
            z-index: 10;
        }

        .slide-handle {
            width: 40px;
            height: 4px;
            background: #ddd;
            border-radius: 2px;
            margin: 0 auto 16px;
        }

        .slide-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .slide-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .slide-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-body {
            padding: 20px 16px;
        }

        /* Form Styles */
        .form-section {
            margin-bottom: 22px;
        }

        .form-section-title {
            font-size: 11px;
            font-weight: 700;
            color: #aaa;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .location-input {
            position: relative;
            margin-bottom: 12px;
        }

        .location-input input {
            width: 100%;
            padding: 14px 14px 14px 40px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .location-input input:focus {
            outline: none;
            border-color: #FF6B35;
        }

        .location-input i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .location-input.pickup i { color: #27AE60; }
        .location-input.drop i   { color: #FF6B35; }

        /* ── Modern route card for slide window ── */
        .slide-route-card {
            background: #fff;
            border: 1.5px solid #e8e8e8;
            border-radius: 14px;
            display: flex;
            align-items: stretch;
            overflow: visible; /* MUST NOT be hidden — pac-container dropdown renders outside */
            box-shadow: 0 1px 6px rgba(0,0,0,0.05);
        }
        .slide-route-track {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 14px 8px 14px 14px;
            flex-shrink: 0;
        }
        .slide-rdot {
            width: 10px; height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .slide-rdot-green  { background: #27AE60; box-shadow: 0 0 0 3px rgba(39,174,96,0.15); }
        .slide-rdot-orange { background: #FF6B35; box-shadow: 0 0 0 3px rgba(255,107,53,0.15); }
        .slide-rline {
            width: 2px; flex: 1; min-height: 14px;
            background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
            margin: 5px 0;
        }
        .slide-route-fields { flex: 1; display: flex; flex-direction: column; }
        .slide-route-field  { display: flex; align-items: center; flex: 1; position: relative; }
        .slide-route-sep    { height: 1px; background: #f0f0f0; margin: 0; }
        .slide-route-input  {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            color: #222;
            padding: 14px 12px 14px 6px;
            width: 100%;
        }
        .slide-route-input::placeholder { color: #bbb; }

        /* ── Slide autocomplete suggestions dropdown ── */
        .slide-suggestions {
            display: none; position: absolute;
            top: calc(100% + 4px); left: -14px; right: -14px;
            background: #fff; border: 1px solid #e5e5e5; border-radius: 12px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.13); z-index: 99999;
            list-style: none; margin: 0; padding: 4px;
            max-height: 210px; overflow-y: auto;
        }
        .slide-suggestions li {
            padding: 10px 12px; font-size: 13px; color: #333;
            cursor: pointer; border-radius: 8px; line-height: 1.4;
        }
        .slide-suggestions li:hover { background: #fff4e6; color: #E59032; }
        .slide-suggestions li strong { font-weight: 700; color: #0a0a0a; }
        .slide-suggestions li:hover strong { color: #E59032; }
        .slide-suggestions li.sugg-empty { color: #aaa; cursor: default; font-style: italic; }
        .slide-suggestions li.sugg-empty:hover { background: transparent; }

        /* ── Slide popular places ── */
        .slide-popular-section { margin-top: 0; }
        .slide-popular-title {
            font-size: 10px; font-weight: 700; color: #b0b0b0;
            text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
        }
        .slide-popular-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 8px 10px; border-radius: 8px;
            cursor: pointer; transition: background 0.15s; margin: 0 -10px;
        }
        .slide-popular-row:hover { background: #fff4e6; }
        .slide-popular-row.sp-sel { background: #fff4e6; }
        .slide-popular-name { font-size: 13px; color: #444; font-weight: 500; }
        .slide-popular-row.sp-sel .slide-popular-name { color: #E59032; font-weight: 600; }
        .slide-popular-row.sp-loading .slide-popular-name { color: #ddd; }
        .slide-popular-fare { font-size: 13px; font-weight: 700; color: #0a0a0a; flex-shrink: 0; }
        .slide-popular-row.sp-sel .slide-popular-fare { color: #E59032; }
        .slide-popular-row.sp-loading .slide-popular-fare { color: #e0e0e0; }

        /* ── Slide fare preview ── */
        .slide-route-tip {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            background: #fff8ee;
            border: 1px solid #ffe0a0;
            border-radius: 10px;
            padding: 9px 12px;
            font-size: 12px;
            color: #7a5500;
            line-height: 1.5;
            margin-top: 10px;
        }
        .slide-route-tip i { color: #E59032; flex-shrink: 0; margin-top: 2px; }
        .slide-fare-preview {
            display: flex; align-items: center; justify-content: space-between;
            padding: 12px 14px; margin-top: 4px;
            background: #f8fdf9; border-radius: 12px;
            border: 1px solid rgba(39,174,96,0.18);
        }
        .slide-fare-preview .sfp-route { font-size: 12px; font-weight: 600; color: #0a0a0a; margin-bottom: 2px; line-height: 1.3; }
        .slide-fare-preview .sfp-label { font-size: 10px; font-weight: 700; color: #27AE60; text-transform: uppercase; letter-spacing: 0.07em; }
        .slide-fare-preview .sfp-amount { font-size: 1.4rem; font-weight: 700; color: #E59032; flex-shrink: 0; padding-left: 10px; }

        /* ── Slide island modals ── */
        .slide-modal-backdrop {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.55); z-index: 999999;
            align-items: center; justify-content: center; padding: 1rem;
        }
        .slide-modal-backdrop.open { display: flex; }
        .slide-modal-box {
            background: #fff; border-radius: 1rem; padding: 1.75rem;
            max-width: 320px; width: 100%; text-align: center;
            box-shadow: 0 8px 40px rgba(0,0,0,0.2);
        }
        .slide-modal-icon { font-size: 2rem; margin-bottom: 0.5rem; }
        .slide-modal-box h3 { font-size: 1rem; font-weight: 700; color: #0a0a0a; margin: 0 0 0.5rem; }
        .slide-modal-box p { font-size: 0.875rem; color: #555; line-height: 1.5; margin: 0 0 1.25rem; }
        .slide-modal-btn {
            background: #E59032; color: #fff; border: none; border-radius: 0.5rem;
            padding: 0.625rem 1.75rem; font-size: 0.9rem; font-weight: 700;
            cursor: pointer; width: 100%;
        }

        /* Date Selection — legacy styles removed; see itin-date-slider below */

        /* Legacy date-grid styles (kept for backward compatibility) */
        .date-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }

        .date-option {
            padding: 12px 8px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .date-option.selected {
            border-color: #FF6B35;
            background: #FFF9F5;
        }

        .date-option .day {
            font-size: 12px;
            color: #999;
            margin-bottom: 2px;
        }

        .date-option .date {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .date-option .month {
            font-size: 11px;
            color: #666;
        }

        .calendar-btn {
            width: 100%;
            padding: 12px;
            background: #FFF9F5;
            border: 2px dashed #FF6B35;
            border-radius: 10px;
            color: #FF6B35;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Time Selection */
        .time-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .time-option {
            padding: 10px 6px;
            border: 1.5px solid #ebebeb;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.22s ease;
            background: #f8f8f8;
        }

        .time-option:hover { border-color: #FF6B35; background: #fff; }

        .time-option.selected {
            border-color: #FF6B35;
            background: linear-gradient(135deg, #FFF3EE 0%, #FFE5D6 100%);
            box-shadow: 0 2px 6px rgba(255,107,53,0.15);
        }

        .time-option .time {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 1px;
        }

        .time-option.selected .time { color: #E8541F; }

        .time-option .badge {
            font-size: 9px;
            color: #FF6B35;
            font-weight: 600;
        }

        /* Cab Selection */
        .cab-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .cab-option {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cab-option.selected {
            border-color: #FF6B35;
            background: #FFF9F5;
        }

        .cab-option img {
            width: 60px;
            height: 40px;
            object-fit: contain;
            margin-bottom: 8px;
        }

        .cab-option .cab-name {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .cab-option .cab-seats {
            font-size: 11px;
            color: #999;
        }

        /* Add / Update Itinerary Button */
        .add-itinerary-btn {
            width: 100%;
            padding: 15px;
            background: #ddd;
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: not-allowed;
            transition: all 0.3s ease;
            margin-top: 20px;
            letter-spacing: 0.3px;
        }

        .add-itinerary-btn.active {
            background: linear-gradient(135deg, #FF6B35 0%, #FF9256 100%);
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(255,107,53,0.3);
        }

        .add-itinerary-btn.active:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255,107,53,0.4);
        }

        /* Remove Button */
        .remove-point {
            background: none;
            border: none;
            color: #ff4444;
            font-size: 12px;
            cursor: pointer;
            padding: 4px;
            margin-left: 8px;
        }

        /* Point right column (price + delete) */
        .point-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
            flex-shrink: 0;
        }

        .point-delete-btn {
            width: 26px;
            height: 26px;
            background: #fff0f0;
            border: 1.5px solid #ffcdd2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #e53935;
            font-size: 12px;
            transition: all 0.2s ease;
            padding: 0;
        }

        .point-delete-btn:hover {
            background: #ffebee;
            border-color: #e53935;
            transform: scale(1.1);
        }

        /* ============================================================
           ADD DESTINATION SLIDE-UP WINDOW
        ============================================================ */
        .add-dest-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1100;
        }

        .add-dest-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .add-dest-window {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            max-height: 90vh;
            background: #fff;
            border-radius: 24px 24px 0 0;
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
            z-index: 1101;
            display: flex;
            flex-direction: column;
            /* overflow:visible so pac-container dropdown renders outside bounds */
            overflow: visible;
        }

        .add-dest-window.active {
            transform: translateY(0);
        }

        /* Header */
        .add-dest-header {
            padding: 16px 16px 12px;
            border-bottom: 1px solid #f0f0f0;
            background: #fff;
            flex-shrink: 0;
            border-radius: 24px 24px 0 0;
        }

        .add-dest-header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .add-dest-title {
            font-size: 17px;
            font-weight: 700;
            color: #222;
            margin-bottom: 2px;
        }

        .add-dest-subtitle {
            font-size: 12px;
            color: #999;
            margin: 0;
        }

        .add-dest-close {
            width: 32px;
            height: 32px;
            background: #f5f5f5;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: #666;
            cursor: pointer;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .add-dest-close:hover {
            background: #ffe0d5;
            color: #FF6B35;
        }

        /* Search box */
        .add-dest-search-wrapper {
            padding: 12px 16px;
            background: #fff;
            flex-shrink: 0;
        }

        .add-dest-search-box {
            position: relative;
            display: flex;
            align-items: center;
            background: #f7f7f7;
            border: 2px solid #e8e8e8;
            border-radius: 14px;
            overflow: visible; /* Must NOT be hidden — pac-container drops below this */
            transition: border-color 0.2s;
        }

        .add-dest-search-box:focus-within {
            border-color: #FF6B35;
            background: #fff;
        }

        .add-dest-search-box > i {
            position: absolute;
            left: 14px;
            color: #aaa;
            font-size: 15px;
            pointer-events: none;
            z-index: 1;
        }

        .add-dest-search-box:focus-within > i {
            color: #FF6B35;
        }

        #add-dest-input {
            width: 100%;
            padding: 13px 40px 13px 42px;
            background: transparent;
            border: none;
            outline: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        #add-dest-input::placeholder {
            color: #bbb;
        }

        .add-dest-input-clear {
            position: absolute;
            right: 12px;
            background: none;
            border: none;
            color: #bbb;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0;
            z-index: 1;
        }

        .add-dest-input-clear:hover {
            color: #FF6B35;
        }

        /* Map container */
        .add-dest-map-container {
            position: relative;
            flex-shrink: 0;
            height: 220px;
            margin: 0 16px 12px;
            border-radius: 16px;
            overflow: hidden; /* Map itself needs this, but pac-container is on body so it's fine */
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
        }

        #addDestMap {
            width: 100%;
            height: 100%;
        }

        .add-dest-map-label {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.95);
            padding: 6px 14px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #666;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .add-dest-map-label.hidden {
            opacity: 0;
        }

        .add-dest-map-pin-overlay {
            display: none; /* only show when pin-drop mode is active */
        }

        /* Selected preview card */
        .add-dest-selected-preview {
            margin: 0 16px 12px;
            background: #f0fff4;
            border: 1.5px solid #a8e6bc;
            border-radius: 14px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .add-dest-preview-icon {
            width: 36px;
            height: 36px;
            background: #27AE60;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .add-dest-preview-icon i {
            color: #fff;
            font-size: 16px;
        }

        .add-dest-preview-info {
            flex: 1;
            min-width: 0;
        }

        .add-dest-preview-name {
            font-size: 14px;
            font-weight: 600;
            color: #1a6e3c;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .add-dest-preview-address {
            font-size: 12px;
            color: #4caf50;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 2px;
        }

        .add-dest-preview-clear {
            background: none;
            border: none;
            color: #999;
            font-size: 16px;
            cursor: pointer;
            padding: 4px;
            flex-shrink: 0;
        }

        .add-dest-preview-clear:hover { color: #e53935; }

        /* Footer confirm button */
        .add-dest-footer {
            padding: 12px 16px 20px;
            background: #fff;
            flex-shrink: 0;
        }

        .add-dest-confirm-btn {
            width: 100%;
            padding: 15px;
            background: #ccc;
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: not-allowed;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .add-dest-confirm-btn:not(:disabled) {
            background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(39,174,96,0.3);
        }

        .add-dest-confirm-btn:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(39,174,96,0.4);
        }
        /* ============================================================ */

        /* Cab Change Popup */
        .cab-change-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .cab-change-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cab-change-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            max-height: 70vh;
            background: white;
            border-radius: 24px 24px 0 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 1002;
            overflow-y: auto;
        }

        .cab-change-popup.active {
            transform: translateY(0);
        }

        .cab-change-header {
            padding: 20px 16px 16px;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            background: white;
            z-index: 10;
        }

        .cab-change-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-align: center;
        }

        .cab-change-close {
            position: absolute;
            right: 16px;
            top: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cab-change-body {
            padding: 20px 16px;
        }

        .cab-change-option {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .cab-change-option.selected {
            border-color: #FF6B35;
            background: #FFF9F5;
        }

        .cab-change-option img {
            width: 80px;
            height: 50px;
            object-fit: contain;
        }

        .cab-change-info {
            flex: 1;
        }

        .cab-change-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .cab-change-seats {
            font-size: 13px;
            color: #666;
        }

        .cab-change-price {
            font-size: 18px;
            font-weight: 600;
            color: #27AE60;
        }

        .cab-change-confirm {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
        }

        .cab-change-confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        /* Popular Attractions Popup */
        .attractions-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1003;
        }

        .attractions-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .attractions-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 90%;
            max-width: 400px;
            max-height: 80vh;
            background: white;
            border-radius: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1004;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .attractions-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .attractions-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .attractions-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .attractions-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .attractions-search {
            padding: 16px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .attractions-search input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 14px;
        }

        .attractions-search input:focus {
            outline: none;
            border-color: #27AE60;
        }

        .pac-container {
            font-family: 'Poppins', sans-serif;
            border-radius: 12px;
            margin-top: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999 !important; /* Must be above all slide windows */
            border: 1px solid #e0e0e0;
        }

        /* Extra rule: pac-container must never be clipped */
        body > .pac-container {
            z-index: 9999 !important;
        }

        .pac-item {
            padding: 12px 16px;
            cursor: pointer;
            border: none;
            border-top: 1px solid #f0f0f0;
            line-height: 1.5;
        }

        .pac-item:first-child {
            border-top: none;
        }

        .pac-item:hover {
            background: #f0fff4;
        }

        .pac-icon {
            margin-top: 8px;
        }

        .pac-item-query {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .pac-matched {
            font-weight: 700;
            color: #27AE60;
        }

        .attractions-map {
            width: 100%;
            height: 200px;
            background: #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        #attractionsMap {
            width: 100%;
            height: 100%;
        }

        .attractions-body {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }

        .attraction-item {
            display: flex;
            gap: 12px;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .attraction-item:hover {
            border-color: #27AE60;
            background: #f0fff4;
        }

        .attraction-item.selected {
            border-color: #27AE60;
            background: #e6f7ed;
        }

        .attraction-img {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .attraction-info {
            flex: 1;
        }

        .attraction-name {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .attraction-price {
            font-size: 14px;
            font-weight: 600;
            color: #27AE60;
        }

        .attractions-add-btn {
            width: calc(100% - 32px);
            margin: 16px;
            padding: 16px;
            background: #ccc;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: not-allowed;
            transition: all 0.3s ease;
        }

        .attractions-add-btn.active {
            background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
            cursor: pointer;
        }

        /* ============================================================
           ITINERARY DATE SLIDER (matching single-trip.php style)
        ============================================================ */

        /* Selected date label */
        .itin-selected-date-label {
            text-align: center;
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
            min-height: 20px;
            transition: color 0.2s;
        }
        .itin-selected-date-label span {
            color: #F5A623;
            font-weight: 600;
        }

        /* Horizontal scrollable date blocks */
        .itin-date-slider {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 4px 0 12px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .itin-date-slider::-webkit-scrollbar { height: 3px; }
        .itin-date-slider::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

        .itin-date-item {
            min-width: 62px;
            padding: 10px 8px;
            background: #e2e2e2;
            border: 1.5px solid #d4d4d4;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.22s ease;
            flex-shrink: 0;
        }
        .itin-date-item:hover { border-color: #F5A623; background: #fdefd4; }
        .itin-date-item.selected {
            border-color: #F5A623;
            background: #F5A623;
            box-shadow: 0 2px 10px rgba(245,166,35,0.35);
        }
        .itin-date-item .itin-date-day {
            font-size: 9px;
            color: #888;
            font-weight: 600;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .itin-date-item.selected .itin-date-day { color: rgba(255,255,255,0.90); }
        .itin-date-item .itin-date-number {
            font-size: 20px;
            font-weight: 700;
            color: #555;
            margin-bottom: 2px;
            line-height: 1;
        }
        .itin-date-item.selected .itin-date-number { color: #fff; }
        .itin-date-item .itin-date-month {
            font-size: 9px;
            color: #999;
            font-weight: 500;
        }
        .itin-date-item.selected .itin-date-month { color: rgba(255,255,255,0.90); }

        /* "Select from calendar" button */
        .itin-cal-open-btn {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid #F5A623;
            border-radius: 12px;
            background: white;
            color: #F5A623;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 4px;
            transition: background 0.2s;
        }
        .itin-cal-open-btn:hover { background: #FFFBF0; }

        /* ── Calendar Modal ── */
        .itin-cal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1200;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .itin-cal-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .itin-cal-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 24px 24px 0 0;
            z-index: 1201;
            transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
            transform: translateY(110%);
            padding: 0 0 24px;
            box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
        }
        .itin-cal-modal.active { transform: translateY(0); }

        /* On desktop: cap width and center — must come AFTER base rule */
        @media (min-width: 600px) {
            .itin-cal-modal {
                left: 50%;
                transform: translateX(-50%) translateY(110%);
                width: 480px;
                border-radius: 24px 24px 0 0;
            }
            .itin-cal-modal.active { transform: translateX(-50%) translateY(0); }
        }

        /* Header */
        .itin-cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px 16px;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }
        .itin-cal-header-title {
            font-size: 18px;
            font-weight: 600;
            color: #222;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .itin-cal-nav-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            color: #555;
            font-size: 18px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: background 0.2s;
        }
        .itin-cal-nav-btn:hover { background: #f5f5f5; }
        .itin-cal-close-x {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            font-size: 18px;
            color: #555;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .itin-cal-close-x:hover { background: #f5f5f5; }

        /* Sub-header */
        .itin-cal-subheader {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 16px 20px 12px;
        }
        .itin-cal-subheader-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: #222;
            margin: 0 0 2px;
        }
        .itin-cal-subheader-text p {
            font-size: 12px;
            color: #aaa;
            margin: 0;
        }
        .itin-cal-radio-indicator {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #F5A623;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .itin-cal-radio-indicator::after {
            content: '';
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #F5A623;
        }

        /* Month nav */
        .itin-cal-month-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 0 20px 10px;
        }
        .itin-cal-month-label {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            min-width: 140px;
            text-align: center;
        }

        /* Grid */
        .itin-cal-grid-wrap { padding: 0 12px; }
        .itin-cal-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            margin-bottom: 4px;
        }
        .itin-cal-weekday {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #aaa;
            padding: 4px 0;
        }
        .itin-cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
        }
        .itin-cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 500;
            color: #333;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
            margin: 1px;
        }
        .itin-cal-day:hover:not(.disabled):not(.empty) { background: #FFF3D6; }
        .itin-cal-day.today { background: #FFE8A8; color: #222; font-weight: 600; }
        .itin-cal-day.selected { background: #F5A623; color: white; font-weight: 700; }
        .itin-cal-day.disabled { color: #ccc; cursor: not-allowed; }
        .itin-cal-day.empty { cursor: default; }

        /* Confirm button */
        .itin-cal-confirm-btn {
            width: calc(100% - 40px);
            margin: 16px 20px 0;
            padding: 15px;
            background: linear-gradient(135deg, #F5A623 0%, #F7C05A 100%);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(245,166,35,0.35);
        }
        .itin-cal-confirm-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,166,35,0.45); }
        .itin-cal-confirm-btn:disabled { background: #ccc; box-shadow: none; cursor: not-allowed; transform: none; }
        /* ============================================================ */

        /* ═══════════════════════════════════════════════════════
           TI BOOKING PANEL — integrated booking header styles
        ═══════════════════════════════════════════════════════ */
        /* ── Pills wrapper — normal flow, above map ── */
        .ti-pill-wrap {
            background: #fff;
            padding: 6px 16px 0;
        }
        /* ── Map wrapper ── */
        .ti-map-booking-wrap {
            position: relative;
        }
        .ti-map-booking-wrap::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 40px;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.97));
            pointer-events: none;
            z-index: 9;
        }
        #map {
            height: 420px !important;
        }
        /* Search card panel — absolute over the map */
        #ti-booking-panel {
            position: absolute;
            top: 0; left: 0; right: 0;
            z-index: 10;
            background: transparent;
            padding-bottom: 6px;
        }
        /* ── Modern unified search card ── */
        .ti-search-card {
            background: #fff;
            border-radius: 14px;
            margin: 6px 10px 6px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
            overflow: visible;
        }
        .ti-search-body {
            display: flex;
            align-items: stretch;
        }
        .ti-search-track {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 8px 10px 12px;
        }
        .ti-sdot {
            width: 11px; height: 11px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .ti-sdot-green  { background: #27AE60; box-shadow: 0 0 0 3px rgba(39,174,96,0.15); }
        .ti-sdot-orange { background: #FF6B35; box-shadow: 0 0 0 3px rgba(255,107,53,0.15); }
        .ti-sline {
            width: 2px; flex: 1; min-height: 16px;
            background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
            margin: 5px 0;
        }
        .ti-search-fields {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .ti-field-wrap {
            display: flex;
            align-items: center;
            position: relative;
            padding-right: 10px;
            min-width: 0;
        }
        /* Extend suggestions to full card width (covers the dot/track column) */
        #ti-pickup-row .main-suggestions,
        #ti-destination-row .main-suggestions {
            left: -37px;
        }
        .ti-field-input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            color: #1a1a1a;
            padding: 9px 0;
            min-width: 0;
        }
        .ti-field-input::placeholder { color: #bbb; font-size: 12px; }
        .ti-field-sep { height: 1px; background: #f2f2f2; }
        .ti-gps-btn {
            background: #FFF5F0;
            border: 1.5px solid #FFD5C5;
            width: 33px; height: 33px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            color: #FF6B35;
            font-size: 13px;
            flex-shrink: 0;
            transition: background 0.2s;
        }
        .ti-gps-btn:hover { background: #FFE8DC; }
        /* Clear btn in field-wrap — inline, JS controls display none/flex */
        #ti-pickup-row .clear-btn,
        #ti-destination-row .clear-btn {
            position: static !important;
            transform: none !important;
            right: auto !important;
            top: auto !important;
            background: #eee;
            border: none;
            width: 22px; height: 22px;
            border-radius: 50%;
            align-items: center; justify-content: center;
            cursor: pointer;
            color: #666;
            font-size: 11px;
            font-weight: bold;
            flex-shrink: 0;
            margin-right: 6px;
            line-height: 1;
            padding: 0;
        }
        #ti-pickup-row .clear-btn:hover,
        #ti-destination-row .clear-btn:hover { background: #ddd; color: #111; }
        /* Schedule datetime chip */
        #ti-sched-chip {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0 12px 6px;
            padding: 9px 14px;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 10px;
            color: #1a1a1a;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 1px 6px rgba(0,0,0,0.07);
        }
        #ti-sched-chip { cursor: pointer; }
        #ti-sched-chip i { font-size: 12px; color: #E59032; }
        #ti-sched-chip .ti-sched-chip-sep { opacity: 0.4; }
        #ti-sched-chip-date, #ti-sched-chip-time { letter-spacing: 0.2px; }
        /* Empty/prompt state — when no date selected yet (Add Date mode) */
        #ti-sched-chip.ti-sched-chip-empty {
            border: 1.5px dashed #E59032;
            background: #fffaf4;
        }
        #ti-sched-chip.ti-sched-chip-empty #ti-sched-chip-date,
        #ti-sched-chip.ti-sched-chip-empty #ti-sched-chip-time {
            color: #E59032;
            font-weight: 500;
            opacity: 0.85;
        }

        /* ── Toast notification ── */
        @keyframes lcToastIn {
            from { opacity: 0; transform: translate(-50%, 12px) scale(0.96); }
            to   { opacity: 1; transform: translate(-50%, 0)     scale(1);    }
        }
        @keyframes lcToastOut {
            from { opacity: 1; transform: translate(-50%, 0)      scale(1);    }
            to   { opacity: 0; transform: translate(-50%, -10px)  scale(0.95); }
        }
        #lc-toast {
            position: fixed;
            bottom: calc(env(safe-area-inset-bottom, 0px) + 96px);
            left: 50%;
            transform: translate(-50%, 0);
            background: #1a1a2e;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            border-radius: 50px;
            font-size: 13.5px;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            box-shadow: 0 6px 28px rgba(0,0,0,0.22);
            pointer-events: none;
            opacity: 0;
            z-index: 9999999;
        }
        #lc-toast i {
            color: #E59032;
            font-size: 14px;
        }
        #lc-toast.lc-toast-show {
            animation: lcToastIn 0.28s cubic-bezier(0.34,1.56,0.64,1) forwards;
        }
        #lc-toast.lc-toast-hide {
            animation: lcToastOut 0.25s ease-in forwards;
        }

        /* ── Popular from here grid (Book Now) ── */
        #ti-popular-section {
            background: #fff;
            border-radius: 16px;
            margin: 0 12px 8px;
            padding: 14px 12px 12px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
        }
        .ti-popular-heading {
            font-size: 11px; font-weight: 700; color: #b0b0b0;
            text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 10px;
        }
        .ti-popular-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 6px 10px;
        }
        .ti-popular-card {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 4px 0;
        }
        .ti-popular-card:hover .ti-popular-card-name, .ti-popular-card.tp-sel .ti-popular-card-name { color: #E59032; }
        .ti-popular-card-name { font-size: 11.5px; font-weight: 600; color: #a0a0a0; line-height: 1.3; }
        .ti-popular-card-fare { font-size: 11px; font-weight: 700; color: #1a1a1a; }
        .ti-popular-card.sp-loading .ti-popular-card-name { color: #e0e0e0; }
        .ti-popular-card.sp-loading .ti-popular-card-fare { color: #e0e0e0; }
        .ti-sched-chip-edit {
            margin-left: auto;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 6px;
            color: #fff;
            padding: 3px 7px;
            cursor: pointer;
            font-size: 11px;
            line-height: 1;
        }
        .ti-sched-chip-edit:hover { background: rgba(255,255,255,0.35); }

        /* Summary bar floats over map when booking launched */
        #ti-booking-summary {
            position: absolute;
            top: 0; left: 0; right: 0;
            z-index: 10;
        }
        /* ── Pill tabs — matches home page .tab-button style ── */
        .ti-pill-track {
            display: flex;
            align-items: stretch;
            justify-content: center;
            background: transparent;
            padding: 0;
            margin: 0;
            gap: 0;
            border-bottom: 2px solid #fde3c2;
        }
        .ti-pill {
            flex: 0 0 auto;
            min-width: 130px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.6rem 1.8rem;
            border-radius: 10px 10px 0 0;
            border-top: 2px solid transparent;
            border-left: 2px solid transparent;
            border-right: 2px solid transparent;
            border-bottom: none;
            margin-bottom: -2px;
            background: transparent;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s ease, border-color 0.2s ease;
            outline: none;
            position: relative;
        }
        .ti-pill:focus { outline: none; }
        .ti-pill:focus-visible { outline: none; }
        .ti-pill img {
            width: 28px;
            height: 28px;
            opacity: 0.45;
            transition: opacity 0.2s;
            flex-shrink: 0;
        }
        .ti-pill span {
            font-weight: 700;
            font-size: 0.82rem;
            color: #0a0a0a;
            opacity: 0.45;
            transition: opacity 0.2s;
        }
        .ti-pill.active {
            background: linear-gradient(to bottom, #fde3c2, white);
            border-top-color: #fde3c2;
            border-left-color: #fde3c2;
            border-right-color: #fde3c2;
        }
        .ti-pill.active img {
            opacity: 1;
        }
        .ti-pill.active span {
            opacity: 1;
        }
        .ti-search-row {
            margin: 0 10px 6px !important;
        }
        .ti-cab-label {
            padding: 10px 16px 4px;
            font-size: 12px;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        #ti-cab-grid {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 4px 16px 12px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        #ti-cab-grid::-webkit-scrollbar { display: none; }
        .ti-cab-pill {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 74px;
            padding: 10px 8px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
        .ti-cab-pill img { width: 50px; height: 34px; object-fit: contain; }
        .ti-cab-pill span {
            font-size: 11px; color: #666; font-weight: 500;
            font-family: 'Poppins', sans-serif;
        }
        .ti-cab-pill.selected { border-color: #FF6B35; background: #FFF9F5; }
        .ti-cab-pill.selected span { color: #FF6B35; font-weight: 600; }

        /* ── Cab selector — inline row below Trip Preview heading ── */
        #ti-cab-section {
            display: none;
            padding: 0 0 4px;
        }
        #ti-cab-section .ti-cab-label { padding: 0 0 6px; font-size: 11px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
        #ti-cab-section #ti-cab-grid { gap: 8px; }
        #ti-submit-row { padding: 4px 16px 16px; }
        .ti-submit-btn {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            width: 100%; padding: 16px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
            border: none; border-radius: 14px; color: white;
            font-size: 16px; font-weight: 600; font-family: 'Poppins', sans-serif;
            cursor: pointer; box-shadow: 0 4px 15px rgba(255,107,53,0.3);
            transition: all 0.2s ease;
        }
        .ti-submit-btn:active { transform: scale(0.98); }
        .ti-submit-btn:disabled, .ti-submit-btn.btn-disabled {
            background: #e0e0e0; color: #aaa;
            box-shadow: none; cursor: not-allowed;
        }
        #ti-booking-summary {
            background: linear-gradient(135deg, #1a4a2e 0%, #27AE60 100%);
            padding: 12px 16px;
        }
        .ti-summary-inner {
            display: flex; align-items: center;
            justify-content: space-between; gap: 12px;
        }
        .ti-summary-route {
            display: flex; align-items: center; gap: 6px;
            flex: 1; overflow: hidden; color: white;
            font-size: 13px; font-family: 'Poppins', sans-serif;
        }
        .ti-summary-route span {
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 40%;
        }
        .ti-change-btn {
            background: rgba(255,255,255,0.2);
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 8px; color: white; padding: 7px 16px;
            font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif;
            cursor: pointer; flex-shrink: 0; transition: background 0.2s;
        }
        .ti-change-btn:hover { background: rgba(255,255,255,0.3); }
        #ti-trip-content { display: none; }

        #ti-trip-content { display: none; }

        /* ── Offcanvas: cap to viewport width so it never overflows on narrow phones ── */
        .sidemenu.offcanvas {
            max-width: 100vw !important;
        }
