/* ============================================================
   WA-BOOKING – WhatsApp Booking Widget
   PuriTaxi · Bhubaneswar Airport → Puri
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --wa-primary: #1E4B8B;
    --wa-accent: #FFA500;
    --wa-green: #25D366;
    --wa-green-dark: #1DA851;
    --wa-bg: #FDFCF8;
    --wa-surface: #ffffff;
    --wa-text: #1c1917;
    --wa-text-muted: #78716c;
    --wa-border: #e7e5e4;
    --wa-radius: 1.5rem;
    --wa-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    --wa-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Overlay ---------- */
.wa-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--wa-transition), visibility 0.35s var(--wa-transition);
}

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

/* ---------- Modal ---------- */
.wa-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    max-height: 95vh;
    height: auto;
    display: flex;
    flex-direction: column;
    background: var(--wa-surface);
    border-radius: var(--wa-radius) var(--wa-radius) 0 0;
    box-shadow: var(--wa-shadow);
    transform: translateY(100%);
    transition: transform 0.4s var(--wa-transition);
    overflow: hidden;
}

.wa-modal.active {
    transform: translateY(0);
}

/* Modal Content Wrapper (Two columns on desktop) */
.wa-modal-content-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
    height: 100%;
}

/* Side Panel (Desktop Only) */
.wa-side-panel {
    display: none;
    width: 320px;
    background: var(--wa-bg);
    border-right: 1px solid var(--wa-border);
    flex-direction: column;
    padding: 2.5rem 1.75rem;
    overflow-y: auto;
}

@media (min-width: 900px) {
    .wa-side-panel {
        width: 340px;
    }
}

@media (min-width: 1200px) {
    .wa-side-panel {
        width: 360px;
    }
}

/* Main Content Area */
.wa-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--wa-surface);
}

@media (min-width: 768px) {
    .wa-modal {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%);
        max-width: 900px;
        width: 95vw;
        max-height: min(700px, 85vh);
        height: auto;
        border-radius: var(--wa-radius);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s var(--wa-transition), opacity 0.3s, visibility 0.3s;
    }

    .wa-modal.active {
        transform: translate(-50%, -50%);
        opacity: 1;
        visibility: visible;
    }

    .wa-side-panel {
        display: flex;
    }

    .wa-modal-header {
        display: none;
        /* Header is inside main content or not needed on desktop */
    }
}

/* Desktop Header (Alternative for Desktop) */
.wa-desktop-header {
    display: none;
    padding: 0 0 1.5rem 0;
    border-bottom: 2px solid var(--wa-border);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .wa-desktop-header {
        display: block;
    }
}

.wa-desktop-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--wa-primary);
}

/* ---------- Modal Header (Mobile) ---------- */
.wa-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--wa-primary) 0%, #163b6e 100%);
    color: #fff;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .wa-modal-header {
        display: none;
    }
}

/* ---------- Steps Progress ---------- */
.wa-steps-bar {
    display: flex;
    gap: 0.35rem;
    padding: 0 1.5rem;
    margin-top: 1.25rem;
}

/* Inside Side Panel on Desktop */
.wa-side-panel .wa-steps-bar {
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Hide steps bar in main content on desktop */
@media (min-width: 768px) {
    .wa-main-content .wa-steps-bar {
        display: none;
    }
}

/* ---------- Form Body ---------- */
.wa-body {
    padding: 1.5rem;
    flex: 1;
    overflow-x: hidden;
    position: relative;
}

/* Step panels */
.wa-step {
    display: none;
    height: 100%;
}

.wa-step.active {
    display: block;
    animation: waStepEnter 0.4s var(--wa-transition) forwards;
}

@keyframes waStepEnter {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sticky Bottom Actions */
.wa-actions {
    position: sticky;
    bottom: 0;
    background: var(--wa-surface);
    padding: 1rem 1.5rem 2rem;
    z-index: 20;
    border-top: 1px solid var(--wa-border);
}

@media (min-width: 768px) {
    .wa-actions {
        padding: 1.5rem;
    }
}


@keyframes waFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Step Header ---------- */
.wa-step-header {
    margin-bottom: 1.25rem;
}

.wa-step-header h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--wa-text);
    font-weight: 700;
}

.wa-step-header p {
    margin: 0.25rem 0 0;
    font-size: 0.82rem;
    color: var(--wa-text-muted);
}

/* ---------- Vehicle Selector ---------- */
.wa-vehicle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 400px) {
    .wa-vehicle-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.wa-vehicle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border: 2px solid var(--wa-border);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--wa-transition);
    background: var(--wa-surface);
}

.wa-vehicle-card:hover {
    border-color: var(--wa-primary);
    box-shadow: 0 4px 20px rgba(30, 75, 139, 0.08);
    transform: translateY(-2px);
}

.wa-vehicle-card.selected {
    border-color: var(--wa-primary);
    background: rgba(30, 75, 139, 0.04);
    box-shadow: 0 4px 20px rgba(30, 75, 139, 0.12);
}

.wa-vehicle-card .wa-popular-tag {
    position: absolute;
    top: -8px;
    right: -4px;
    background: var(--wa-accent);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
}

.wa-vehicle-card img {
    width: 72px;
    height: 48px;
    object-fit: contain;
}

.wa-vehicle-card .wa-v-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--wa-text);
    text-align: center;
}

.wa-vehicle-card .wa-v-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--wa-primary);
}

.wa-vehicle-card .wa-v-meta {
    font-size: 0.65rem;
    color: var(--wa-text-muted);
    text-align: center;
}

.wa-vehicle-card .wa-check-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--wa-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s, transform 0.25s;
}

.wa-vehicle-card.selected .wa-check-icon {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Form Controls ---------- */
.wa-field {
    margin-bottom: 1rem;
}

.wa-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wa-text-muted);
    margin-bottom: 0.4rem;
}

.wa-field input,
.wa-field select,
.wa-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--wa-border);
    border-radius: 0.85rem;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    color: var(--wa-text);
    background: var(--wa-bg);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    box-sizing: border-box;
}

.wa-field input:focus,
.wa-field select:focus,
.wa-field textarea:focus {
    border-color: var(--wa-primary);
    box-shadow: 0 0 0 3px rgba(30, 75, 139, 0.08);
}

.wa-field input::placeholder,
.wa-field textarea::placeholder {
    color: #a8a29e;
}

.wa-field textarea {
    resize: none;
    min-height: 70px;
}

.wa-field .wa-field-hint {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.7rem;
    color: var(--wa-text-muted);
}

.wa-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* ---------- Section Label ---------- */
.wa-section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wa-text-muted);
    margin-bottom: 0.6rem;
}

.wa-section-label svg {
    width: 15px;
    height: 15px;
    opacity: 0.55;
}

/* ---------- Smart Date Selector ---------- */
.wa-date-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wa-date-scroll::-webkit-scrollbar {
    display: none;
}

.wa-date-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.7rem 1rem;
    min-width: 88px;
    border: 2px solid var(--wa-border);
    border-radius: 0.9rem;
    cursor: pointer;
    background: var(--wa-surface);
    transition: all 0.25s var(--wa-transition);
    scroll-snap-align: start;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}

.wa-date-card:hover {
    border-color: var(--wa-primary);
    background: rgba(30, 75, 139, 0.02);
}

.wa-date-card.selected {
    border-color: var(--wa-primary);
    background: var(--wa-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 75, 139, 0.2);
    transform: scale(1.02);
}

.wa-date-card .wa-dc-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wa-date-card.selected .wa-dc-label {
    color: rgba(255, 255, 255, 0.85);
}

.wa-date-card .wa-dc-day {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.wa-date-card .wa-dc-month {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wa-text-muted);
}

.wa-date-card.selected .wa-dc-month {
    color: rgba(255, 255, 255, 0.7);
}

.wa-date-card .wa-dc-weekday {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--wa-text-muted);
    margin-top: 0.1rem;
}

.wa-date-card.selected .wa-dc-weekday {
    color: rgba(255, 255, 255, 0.6);
}

/* Pick-a-date special card */
.wa-date-card.wa-date-custom {
    border-style: dashed;
    background: var(--wa-bg);
    gap: 0.25rem;
    justify-content: center;
}

.wa-date-card.wa-date-custom.selected {
    border-style: solid;
    background: var(--wa-primary);
    justify-content: flex-start;
}

.wa-date-card.wa-date-custom svg {
    width: 20px;
    height: 20px;
    color: var(--wa-text-muted);
    transition: color 0.25s;
}

.wa-date-card.wa-date-custom:hover svg {
    color: var(--wa-primary);
}

.wa-date-card.wa-date-custom.selected {
    border-style: solid;
}

.wa-date-card.wa-date-custom.selected svg {
    color: #fff;
}

/* Hidden native date input for calendar fallback */
.wa-hidden-date {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ---------- Smart Time Selector ---------- */
.wa-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

@media (max-width: 380px) {
    .wa-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wa-time-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.65rem 0.5rem;
    border: 2px solid var(--wa-border);
    border-radius: 0.85rem;
    cursor: pointer;
    background: var(--wa-surface);
    transition: all 0.25s var(--wa-transition);
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    min-height: 56px;
    justify-content: center;
}

.wa-time-chip:hover {
    border-color: var(--wa-primary);
    background: rgba(30, 75, 139, 0.02);
}

.wa-time-chip.selected {
    border-color: var(--wa-primary);
    background: var(--wa-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 75, 139, 0.2);
}

.wa-time-chip .wa-tc-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.wa-time-chip .wa-tc-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wa-time-chip .wa-tc-range {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--wa-text-muted);
}

.wa-time-chip.selected .wa-tc-range {
    color: rgba(255, 255, 255, 0.7);
}

/* Custom time special chip */
.wa-time-chip.wa-time-custom {
    border-style: dashed;
    background: var(--wa-bg);
}

.wa-time-chip.wa-time-custom.selected {
    border-style: solid;
    background: var(--wa-primary);
    justify-content: center;
    /* Keep for time chips as they reflect only one label */
}

/* ---------- Custom Picker Popups ---------- */
.wa-picker-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s var(--wa-transition);
}

.wa-picker-popup.active {
    display: flex;
    opacity: 1;
}

.wa-picker-container {
    background: var(--wa-surface);
    width: 100%;
    max-width: 360px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s var(--wa-transition);
}

.wa-picker-popup.active .wa-picker-container {
    transform: translateY(0) scale(1);
}

.wa-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--wa-border);
}

.wa-picker-header h5 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.wa-picker-close {
    background: var(--wa-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--wa-text-muted);
}

.wa-picker-body {
    padding: 1.25rem;
}

/* Calendar Styles */
.wa-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.wa-calendar-month-year {
    font-weight: 700;
    font-size: 0.95rem;
}

.wa-calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.wa-cal-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--wa-border);
    background: var(--wa-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wa-cal-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wa-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.wa-cal-weekday {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--wa-text-muted);
    text-align: center;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.wa-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.wa-cal-day:hover:not(.disabled):not(.selected) {
    background: var(--wa-bg);
    color: var(--wa-primary);
}

.wa-cal-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.wa-cal-day.selected {
    background: var(--wa-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(30, 75, 139, 0.25);
}

.wa-cal-day.today:not(.selected) {
    color: var(--wa-primary);
    position: relative;
}

.wa-cal-day.today:not(.selected)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: var(--wa-primary);
    border-radius: 50%;
}

/* Time Picker Custom Styles */
.wa-time-wheel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.wa-time-select-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.wa-time-select-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--wa-text-muted);
}

.wa-time-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--wa-bg);
    border: 2px solid var(--wa-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--wa-text);
    text-align: center;
    width: 65px;
    outline: none;
    cursor: pointer;
}

.wa-time-select:focus {
    border-color: var(--wa-primary);
}

.wa-time-colon {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1rem;
}

.wa-ampm-toggle {
    display: flex;
    background: var(--wa-bg);
    border: 2px solid var(--wa-border);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: 1.4rem;
}

.wa-ampm-btn {
    border: none;
    background: none;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.wa-ampm-btn.active {
    background: var(--wa-primary);
    color: #fff;
}

.wa-picker-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--wa-border);
}

.wa-picker-confirm {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 0.75rem;
    background: var(--wa-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
}

.wa-picker-confirm:hover {
    background: #163b6e;
}

/* ---------- Late Night Suggestion ---------- */
.wa-suggestion-banner {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), rgba(255, 165, 0, 0.04));
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: #92400e;
    font-weight: 600;
    animation: waFadeIn 0.3s var(--wa-transition);
}

.wa-suggestion-banner.visible {
    display: flex;
}

.wa-suggestion-banner .wa-sb-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---------- Pickup Preview Banner ---------- */
.wa-pickup-preview {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(30, 75, 139, 0.06), rgba(30, 75, 139, 0.02));
    border: 1.5px solid rgba(30, 75, 139, 0.12);
    border-radius: 0.85rem;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 0.78rem;
    color: var(--wa-primary);
    font-weight: 700;
    animation: waFadeIn 0.3s var(--wa-transition);
}

.wa-pickup-preview.visible {
    display: flex;
}

.wa-pickup-preview .wa-pp-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.wa-pickup-preview .wa-pp-text {
    flex: 1;
}

.wa-pickup-preview .wa-pp-text strong {
    font-weight: 800;
}

/* ---------- Date/Time Validation Highlight ---------- */
.wa-date-scroll.error .wa-date-card,
.wa-time-grid.error .wa-time-chip {
    border-color: rgba(239, 68, 68, 0.3);
}

.wa-dt-error-msg {
    display: none;
    margin-top: 0.3rem;
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 600;
}

.wa-dt-error-msg.visible {
    display: block;
}

/* Helper text under time selector */
.wa-time-helper {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: var(--wa-text-muted);
    font-weight: 500;
}

.wa-time-helper svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

/* ---------- Spacing for Step 2 subsections ---------- */
.wa-dt-section {
    margin-bottom: 1.25rem;
}

.wa-dt-section:last-child {
    margin-bottom: 0;
}

/* ---------- Passenger Counter ---------- */
.wa-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--wa-bg);
    border: 2px solid var(--wa-border);
    border-radius: 0.85rem;
    padding: 0.4rem;
}

.wa-counter button {
    width: 40px;
    height: 40px;
    border-radius: 0.6rem;
    border: none;
    background: var(--wa-surface);
    color: var(--wa-primary);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.wa-counter button:hover {
    background: var(--wa-primary);
    color: #fff;
}

.wa-counter .wa-counter-value {
    flex: 1;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--wa-text);
}

/* ---------- Summary Card ---------- */
.wa-summary-card {
    background: var(--wa-bg);
    border: 2px solid var(--wa-border);
    border-radius: 1.2rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.wa-summary-card .wa-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--wa-border);
}

.wa-summary-card .wa-summary-row:last-child {
    border-bottom: none;
}

.wa-summary-row .wa-label {
    font-size: 0.75rem;
    color: var(--wa-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wa-summary-row .wa-value {
    font-size: 0.88rem;
    color: var(--wa-text);
    font-weight: 700;
}

.wa-summary-row.total .wa-label {
    color: var(--wa-primary);
    font-weight: 800;
}

.wa-summary-row.total .wa-value {
    font-size: 1.15rem;
    color: var(--wa-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* ---------- Side Summary (Desktop) ---------- */
.wa-side-summary {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wa-side-summary-item {
    display: flex;
    gap: 1rem;
    animation: waStepEnter 0.4s var(--wa-transition) forwards;
}

.wa-side-summary-item .wa-ssi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.wa-side-summary-item .wa-ssi-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wa-side-summary-item .wa-ssi-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wa-text-muted);
}

.wa-side-summary-item .wa-ssi-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--wa-text);
    line-height: 1.4;
}

.wa-side-summary-item .wa-ssi-value strong {
    color: var(--wa-primary);
}

.wa-side-total {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--wa-border);
}

.wa-side-total-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--wa-text-muted);
    letter-spacing: 0.1em;
}

.wa-side-total-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--wa-primary);
    font-family: 'Outfit', sans-serif;
    margin-top: 0.25rem;
}

.wa-side-total-gst {
    font-size: 0.65rem;
    color: var(--wa-text-muted);
    margin-top: 0.1rem;
}

/* ---------- Action Buttons ---------- */
.wa-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
}

.wa-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.2rem;
    border: none;
    border-radius: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s var(--wa-transition);
}

.wa-btn-back {
    background: var(--wa-bg);
    color: var(--wa-text-muted);
    border: 2px solid var(--wa-border);
    flex: 0 0 auto;
    padding: 0.95rem 1.2rem;
}

.wa-btn-back:hover {
    border-color: var(--wa-text-muted);
    color: var(--wa-text);
}

.wa-btn-next {
    background: var(--wa-primary);
    color: #fff;
}

.wa-btn-next:hover {
    background: #163b6e;
    box-shadow: 0 8px 25px rgba(30, 75, 139, 0.3);
    transform: translateY(-1px);
}

.wa-btn-send {
    background: var(--wa-green);
    color: #fff;
    font-size: 0.9rem;
}

.wa-btn-send:hover {
    background: var(--wa-green-dark);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}

/* ---------- Floating Trigger Button ---------- */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    background: var(--wa-green);
    color: #fff;
    border: none;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--wa-transition);
    animation: waFabPulse 2.5s infinite;
}

.wa-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.wa-fab svg {
    width: 22px;
    height: 22px;
}

@keyframes waFabPulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

/* Hide FAB when modal is open */
.wa-overlay.active~.wa-fab,
.wa-modal.active~.wa-fab {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* ---------- Trust Strip ---------- */
.wa-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.65rem;
    color: var(--wa-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wa-trust-strip span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ---------- Validation ---------- */
.wa-field.error input,
.wa-field.error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.wa-field .wa-error-msg {
    display: none;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 600;
}

.wa-field.error .wa-error-msg {
    display: block;
}

/* ---------- Inline CTA hook ---------- */
.wa-book-trigger {
    cursor: pointer;
}

/* ---------- Location Picker ---------- */

/* Confirmed location card */
.wa-location-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(30, 75, 139, 0.05), rgba(30, 75, 139, 0.02));
    border: 1.5px solid rgba(30, 75, 139, 0.15);
    border-radius: 0.9rem;
    animation: waFadeIn 0.3s var(--wa-transition);
}

.wa-location-card .wa-loc-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}

.wa-location-card .wa-loc-info {
    flex: 1;
    min-width: 0;
}

.wa-location-card .wa-loc-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--wa-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-location-card .wa-loc-addr {
    display: block;
    font-size: 0.68rem;
    color: var(--wa-text-muted);
    font-weight: 500;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-loc-change {
    background: none;
    border: 1.5px solid var(--wa-border);
    color: var(--wa-primary);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.65rem;
    border-radius: 99px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s var(--wa-transition);
}

.wa-loc-change:hover {
    background: var(--wa-primary);
    border-color: var(--wa-primary);
    color: #fff;
}

/* Quick-select location chips */
.wa-loc-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.wa-loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.75rem;
    background: var(--wa-bg);
    border: 1.5px solid var(--wa-border);
    border-radius: 99px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--wa-text);
    cursor: pointer;
    transition: all 0.2s var(--wa-transition);
    white-space: nowrap;
}

.wa-loc-chip:hover {
    border-color: var(--wa-primary);
    background: rgba(30, 75, 139, 0.04);
    color: var(--wa-primary);
}

.wa-loc-chip.selected {
    border-color: var(--wa-primary);
    background: var(--wa-primary);
    color: #fff;
}

/* Location autocomplete input wrapper */
.wa-loc-input-wrap {
    position: relative;
}

.wa-loc-input-wrap input {
    padding-left: 2.5rem !important;
}

.wa-loc-input-wrap .wa-loc-search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--wa-text-muted);
    pointer-events: none;
}

.wa-loc-input-wrap .wa-loc-spinner {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--wa-border);
    border-top-color: var(--wa-primary);
    border-radius: 50%;
    animation: waLocSpin 0.7s linear infinite;
    display: none;
}

.wa-loc-input-wrap.loading .wa-loc-spinner {
    display: block;
}

@keyframes waLocSpin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Reset button (for pickup) */
.wa-loc-reset {
    background: none;
    border: none;
    color: var(--wa-primary);
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.35rem 0;
    margin-top: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.wa-loc-reset:hover {
    color: #163b6e;
}

/* Drop confirmed card (hidden by default) */
.wa-drop-confirmed {
    display: none;
}

.wa-drop-confirmed.visible {
    display: flex;
}

/* Drop input field (hidden when confirmed) */
.wa-drop-input-section.hidden {
    display: none;
}

/* Google Places Autocomplete dropdown overrides */
.pac-container {
    z-index: 10010 !important;
    border-radius: 0.85rem !important;
    border: 2px solid var(--wa-border) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    margin-top: 4px !important;
    font-family: 'Outfit', sans-serif !important;
    overflow: hidden !important;
}

.pac-item {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.82rem !important;
    cursor: pointer !important;
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: background 0.15s !important;
    line-height: 1.4 !important;
}

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

.pac-item:hover {
    background: rgba(30, 75, 139, 0.04) !important;
}

.pac-item-selected {
    background: rgba(30, 75, 139, 0.07) !important;
}

.pac-item .pac-icon {
    margin-right: 0.5rem !important;
}

.pac-item .pac-item-query {
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    color: var(--wa-text) !important;
}

.pac-matched {
    font-weight: 800 !important;
    color: var(--wa-primary) !important;
}

/* Places API attribution (required by ToS) */
.pac-container::after {
    padding: 0.3rem 0.85rem !important;
    font-size: 0.55rem !important;
}

/* ---------- Vehicle Upgrade Suggestion ---------- */
.wa-upgrade-banner {
    display: none;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.07), rgba(245, 158, 11, 0.03));
    border: 1.5px solid rgba(245, 158, 11, 0.22);
    border-radius: 1rem;
    margin-top: 0.75rem;
    animation: waFadeIn 0.3s var(--wa-transition);
}

.wa-upgrade-banner.visible {
    display: flex;
}

.wa-upgrade-banner .wa-ub-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.wa-upgrade-banner .wa-ub-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.wa-upgrade-banner .wa-ub-text {
    font-size: 0.78rem;
    color: #92400e;
    font-weight: 600;
    line-height: 1.45;
}

.wa-upgrade-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wa-upgrade-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    background: var(--wa-surface);
    border: 2px solid var(--wa-primary);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--wa-primary);
    cursor: pointer;
    transition: all 0.25s var(--wa-transition);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.wa-upgrade-btn:hover {
    background: var(--wa-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 75, 139, 0.2);
    transform: translateY(-1px);
}

.wa-upgrade-btn.recommended {
    background: var(--wa-primary);
    color: #fff;
    border-color: var(--wa-primary);
}

.wa-upgrade-btn.recommended:hover {
    background: #163b6e;
}

.wa-upgrade-btn svg {
    width: 13px;
    height: 13px;
}

.wa-override-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--wa-text-muted);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.2rem 0;
    transition: color 0.2s;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
}

.wa-override-link:hover {
    color: var(--wa-text);
}

/* Comfort warning (shown when user overrides) */
.wa-comfort-note {
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 0.6rem;
    margin-top: 0.5rem;
    font-size: 0.68rem;
    color: #b45309;
    font-weight: 600;
    animation: waFadeIn 0.25s var(--wa-transition);
}

.wa-comfort-note.visible {
    display: flex;
}

.wa-comfort-note .wa-cn-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* "Best for your group" dynamic badge on vehicle cards */
.wa-vehicle-card .wa-best-badge {
    position: absolute;
    top: -8px;
    right: -4px;
    background: linear-gradient(135deg, var(--wa-green), #1DA851);
    color: #fff;
    font-size: 0.52rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
}

.wa-vehicle-card.wa-recommended .wa-best-badge {
    opacity: 1;
    transform: scale(1);
}

/* When a vehicle card is recommended, give it a subtle glow */
.wa-vehicle-card.wa-recommended {
    border-color: var(--wa-green);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1), 0 4px 16px rgba(37, 211, 102, 0.08);
}

/* Step 1 passenger section */
.wa-step1-pax {
    margin-bottom: 1rem;
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

    .wa-modal,
    .wa-overlay,
    .wa-step,
    .wa-fab {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Add-On Stops ---------- */
.wa-stops-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--wa-border);
}

.wa-addons-subtitle {
    margin: -0.25rem 0 0.75rem;
    font-size: 0.75rem;
    color: var(--wa-text-muted);
}

.wa-stops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 450px) {
    .wa-stops-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wa-stop-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.6rem;
    border: 2px dashed var(--wa-border);
    border-radius: 0.75rem;
    background: var(--wa-bg);
    cursor: pointer;
    transition: all 0.25s var(--wa-transition);
    text-align: left;
    outline: none;
}

.wa-stop-chip:hover {
    border-color: rgba(30, 75, 139, 0.4);
    background: rgba(30, 75, 139, 0.02);
}

.wa-stop-chip.selected {
    border-style: solid;
    border-color: var(--wa-primary);
    background: rgba(30, 75, 139, 0.04);
}

.wa-stop-icon {
    font-size: 1rem;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.25s;
}

.wa-stop-chip.selected .wa-stop-icon {
    filter: none;
}

.wa-stop-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--wa-text);
    line-height: 1.2;
}

.wa-stops-warning {
    animation: waShake 0.4s ease;
}

/* ---------- Smart Upgrade System ---------- */
.wa-upgrade-popup {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: all 0.4s var(--wa-transition);
}

.wa-upgrade-popup.active {
    display: flex;
    opacity: 1;
}

.wa-upgrade-container {
    background: var(--wa-surface);
    width: 100%;
    max-width: 850px;
    border-radius: 2.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .wa-upgrade-container {
        max-height: 85vh;
    }
}

.wa-upgrade-popup.active .wa-upgrade-container {
    transform: translateY(0) scale(1);
}

.wa-upgrade-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    color: var(--wa-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
}

@media (min-width: 768px) {
    .wa-upgrade-close {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }
}

.wa-upgrade-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .wa-upgrade-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

.wa-upgrade-split {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

@media (min-width: 768px) {
    .wa-upgrade-split {
        flex-direction: row;
        min-height: 520px;
    }
}

/* Left Column (Hero) */
.wa-upgrade-left {
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .wa-upgrade-left {
        width: 40%;
        padding: 3rem 2.5rem;
    }
}

@keyframes waGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wa-upgrade-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.12) 0%, transparent 70%);
    animation: waGlow 15s infinite linear;
}

.wa-best-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--wa-accent);
    color: #fff;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.wa-upgrade-hero-content {
    position: relative;
    z-index: 5;
}

.wa-upgrade-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.wa-upgrade-left p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Comparison within Left Column */
.wa-upgrade-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .wa-upgrade-comparison {
        margin-bottom: 1rem;
    }
}

.wa-comp-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wa-comp-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wa-comp-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.wa-comp-val.highlight {
    color: var(--wa-accent);
}

.wa-comp-info {
    font-size: 0.65rem;
    opacity: 0.6;
}

.wa-comp-info.highlight {
    color: var(--wa-accent);
    opacity: 1;
    font-weight: 600;
}

/* Right Column (Content) */
.wa-upgrade-right {
    background: var(--wa-surface);
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .wa-upgrade-right {
        width: 60%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
}

.wa-upgrade-content {
    padding: 2.5rem 2rem;
    flex: 1;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .wa-upgrade-content {
        padding: 2.5rem 3.5rem;
    }
}

.wa-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 75, 139, 0.05);
    border: 1px solid rgba(30, 75, 139, 0.1);
    border-radius: 99px;
    color: var(--wa-primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.wa-places-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .wa-places-list {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
}

.wa-place-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wa-text);
}

.wa-place-item iconify-icon {
    color: var(--wa-accent);
    flex-shrink: 0;
}

.wa-modal-pricing {
    border: 1px solid var(--wa-border);
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.wa-price-header {
    background: rgba(30, 75, 139, 0.04);
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wa-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--wa-border);
}

.wa-price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--wa-border);
}

.wa-price-row.flex-col {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.wa-price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.wa-price-breakdown span:first-child {
    font-size: 0.72rem;
    color: var(--wa-text-muted);
}

.wa-price-row:last-child {
    border-bottom: none;
}

.wa-price-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--wa-text);
}

.wa-price-val {
    font-weight: 800;
    color: var(--wa-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    line-height: 1;
}

.wa-price-meta {
    padding: 1rem 1.25rem;
    background: #f8fafc;
    font-size: 0.7rem;
    color: var(--wa-text-muted);
    text-align: center;
    line-height: 1.5;
}

.wa-upgrade-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem 2rem;
    background: var(--wa-surface);
    border-top: 1px solid var(--wa-border);
}

@media (min-width: 768px) {
    .wa-upgrade-actions {
        padding: 2rem 3.5rem;
    }
}

@media (min-width: 500px) {
    .wa-upgrade-actions {
        flex-direction: row;
    }

    .wa-btn-upgrade {
        flex: 2;
    }

    .wa-btn-skip {
        flex: 1;
    }
}

.wa-btn-upgrade {
    padding: 1.25rem;
    background: var(--wa-primary);
    color: #fff;
    border: none;
    border-radius: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(30, 75, 139, 0.2);
}

.wa-btn-upgrade:hover {
    background: #163b6f;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30, 75, 139, 0.3);
}

.wa-btn-skip {
    padding: 1rem;
    background: transparent;
    color: var(--wa-text-muted);
    border: 1px solid var(--wa-border);
    border-radius: 1.25rem;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
}

.wa-btn-skip:hover {
    background: var(--wa-bg);
    color: var(--wa-text);
}

/* Mobile Bottom Sheet Specifics */
@media (max-width: 767px) {
    .wa-upgrade-popup {
        align-items: flex-end;
        padding: 0;
    }

    .wa-upgrade-container {
        border-radius: var(--wa-radius) var(--wa-radius) 0 0;
        max-width: none;
        max-height: 82vh;
        height: auto;
        transform: translateY(100%);
    }

    .wa-upgrade-right {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .wa-upgrade-left {
        padding: 2rem 1.75rem 1.5rem;
    }

    .wa-upgrade-left h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .wa-upgrade-left p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }

    .wa-upgrade-content {
        padding: 1.5rem 1.75rem;
        flex: 1;
        overflow-y: auto;
    }

    .wa-upgrade-actions {
        padding: 1.25rem 1.75rem 1.75rem;
    }

    .wa-upgrade-comparison {
        padding: 1rem;
        gap: 1.25rem;
    }

    .wa-package-badge {
        margin-bottom: 1rem;
    }

    .wa-places-list {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .wa-modal-pricing {
        margin-bottom: 1.5rem;
    }

    .wa-price-row {
        padding: 0.65rem 1rem;
    }

    .wa-btn-upgrade {
        padding: 1rem;
    }
}

.wa-stop-chip.wa-explore-more {
    background: rgba(255, 165, 0, 0.05);
    border-color: rgba(255, 165, 0, 0.2);
    border-style: dashed;
}

.wa-stop-chip.wa-explore-more .wa-stop-name {
    color: var(--wa-accent);
    font-weight: 700;
}

.wa-stop-chip.wa-explore-more:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: var(--wa-accent);
    border-style: solid;
    transform: scale(1.05);
}