/**
 * Rushxo Booking Form Styles - Dark Theme
 * Rushxo - Booking System
 *
 * FIX: Map tidak muncul di desktop - added explicit dimensions
 * FIX: Font Awesome icons not rendering
 *
 * @version 4.0.0
 * @package Rushxo Booking System
 */

/* ========================================
   RESET & BASE
======================================== */
.rushxo-booking-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rushxo-booking-wrapper {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: #0D0D0D;
    line-height: 1.5;
    color: #FFFFFF;
}

/* ========================================
   MAIN LAYOUT - Desktop: Side by Side
======================================== */
.rushxo-booking-wrapper .app-container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    height: 100vh; /* FIXED: Added explicit height */
    width: 100%;
}

/* FORM PANEL - Left Side */
.rushxo-booking-wrapper .form-panel {
    width: 420px;
    min-width: 420px;
    max-width: 420px;
    height: 100vh;
    background: #111111;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    z-index: 10;
    position: sticky;
    top: 0;
    left: 0;
    flex-shrink: 0; /* FIXED: Prevent shrinking */
}

/* MAP CONTAINER - Right Side - FIXED */
.rushxo-booking-wrapper .map-container {
    flex: 1;
    height: 100vh; /* Explicit height */
    min-height: 100vh; /* FIXED: Added min-height */
    width: calc(100% - 420px); /* FIXED: Explicit width calculation */
    position: relative; /* CHANGED: from sticky to relative */
    background: #1A1A1A;
}

/* MAP ELEMENT - FIXED */
.rushxo-booking-wrapper #rushxo-map {
    width: 100% !important; /* FIXED: Added !important */
    height: 100% !important; /* FIXED: Added !important */
    position: absolute !important; /* FIXED: Added absolute positioning */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Map Loading State */
.rushxo-booking-wrapper .map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #999999;
    z-index: 5;
}

.rushxo-booking-wrapper .map-loading i {
    font-size: 48px;
    color: #F5C518;
    margin-bottom: 16px;
    animation: rushxo-pulse 1.5s infinite;
}

@keyframes rushxo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   FORM PANEL STRUCTURE
======================================== */

/* Header - Desktop Only */
.rushxo-booking-wrapper .panel-header {
    background: #000;
    color: #fff;
    padding: 20px 24px;
    flex-shrink: 0;
    display: block;
}

.rushxo-booking-wrapper .panel-header h1 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    margin: 0;
}

.rushxo-booking-wrapper .panel-header h1 i {
    color: #F5C518;
}

/* Mobile Drag Handle - Hidden on Desktop */
.rushxo-booking-wrapper .mobile-drag-handle {
    display: none;
    width: 40px;
    height: 4px;
    background: #333333;
    border-radius: 2px;
    margin: 12px auto 8px;
}

/* ========================================
   PROGRESS BAR - HORIZONTAL
======================================== */
.rushxo-booking-wrapper .progress-bar {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 24px;
    background: #0D0D0D;
    border-bottom: 1px solid #2A2A2A;
    flex-shrink: 0;
    gap: 0;
}

.rushxo-booking-wrapper .progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Horizontal line between steps */
.rushxo-booking-wrapper .progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 3px;
    background: #333333;
    z-index: 0;
}

.rushxo-booking-wrapper .progress-step.completed:not(:last-child)::after {
    background: #4CAF50;
}

.rushxo-booking-wrapper .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333333;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.rushxo-booking-wrapper .progress-step.active .step-number {
    background: #F5C518;
    color: #000000;
}

.rushxo-booking-wrapper .progress-step.completed .step-number {
    background: #4CAF50;
    color: #fff;
}

.rushxo-booking-wrapper .step-label {
    font-size: 12px;
    color: #999999;
    font-weight: 600;
    white-space: nowrap;
}

.rushxo-booking-wrapper .progress-step.active .step-label,
.rushxo-booking-wrapper .progress-step.completed .step-label {
    color: #FFFFFF;
}

/* Form Content Area - Scrollable */
.rushxo-booking-wrapper .form-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    min-height: 0;
}

/* Step Containers */
.rushxo-booking-wrapper .step-content {
    display: none;
}

.rushxo-booking-wrapper .step-content.active {
    display: block;
    animation: rushxo-fadeIn 0.3s ease;
}

@keyframes rushxo-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   STEP 1: ADDRESS INPUT
======================================== */
.rushxo-booking-wrapper .address-group {
    background: #1A1A1A;
    border-radius: 12px;
    border: 2px solid #333333;
    overflow: hidden;
    margin-bottom: 20px;
}

.rushxo-booking-wrapper .address-input-wrapper {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #2A2A2A;
    background: #1A1A1A;
}

.rushxo-booking-wrapper .address-input-wrapper:last-child {
    border-bottom: none;
}

.rushxo-booking-wrapper .address-input-wrapper.waypoint-row {
    display: none;
    background: #1A1A1A;
}

.rushxo-booking-wrapper .address-input-wrapper.waypoint-row.show {
    display: flex;
}

.rushxo-booking-wrapper .address-icon {
    width: 32px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.rushxo-booking-wrapper .address-icon i {
    font-size: 16px;
    color: #F5C518;
}

.rushxo-booking-wrapper .address-icon .dot-pickup {
    width: 12px;
    height: 12px;
    background: #F5C518;
    border-radius: 50%;
}

.rushxo-booking-wrapper .address-icon .dot-dropoff {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-radius: 3px;
}

.rushxo-booking-wrapper .address-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 8px 12px;
    background: transparent;
    color: #FFFFFF;
}

.rushxo-booking-wrapper .address-input-wrapper input::placeholder {
    color: #666666;
}

.rushxo-booking-wrapper .btn-location {
    background: none;
    border: none;
    color: #F5C518;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: transform 0.2s;
}

.rushxo-booking-wrapper .btn-location:hover {
    transform: scale(1.1);
}

/* Toggle Options */
.rushxo-booking-wrapper .toggle-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rushxo-booking-wrapper .toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #1A1A1A;
    border: 2px solid #333333;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    transition: all 0.2s;
    user-select: none;
}

.rushxo-booking-wrapper .toggle-pill:hover {
    border-color: #555555;
}

.rushxo-booking-wrapper .toggle-pill.active {
    background: #F5C518;
    border-color: #F5C518;
    color: #000000;
}

.rushxo-booking-wrapper .toggle-pill i {
    font-size: 14px;
}

/* Distance Info */
.rushxo-booking-wrapper .distance-info {
    display: none;
    background: linear-gradient(135deg, #F5C518 0%, #D4A017 100%);
    color: #000000;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.rushxo-booking-wrapper .distance-info.show {
    display: flex;
}

.rushxo-booking-wrapper .distance-info i {
    margin-right: 6px;
}

/* Vehicle Cards */
.rushxo-booking-wrapper .vehicle-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.rushxo-booking-wrapper .vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.rushxo-booking-wrapper .vehicle-card {
    background: #1A1A1A;
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.rushxo-booking-wrapper .vehicle-card:hover {
    background: #222222;
    border-color: #555555;
}

.rushxo-booking-wrapper .vehicle-card.selected {
    border-color: #F5C518;
    background: #1A1A1A;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.2);
}

.rushxo-booking-wrapper .vehicle-card .v-image {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.rushxo-booking-wrapper .vehicle-card .v-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.rushxo-booking-wrapper .vehicle-card .v-name {
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.rushxo-booking-wrapper .vehicle-card .v-pax {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}

.rushxo-booking-wrapper .vehicle-card .v-price {
    font-size: 22px;
    font-weight: 700;
    color: #F5C518;
}

.rushxo-booking-wrapper .vehicle-card .v-original {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
    margin-top: 2px;
}

.rushxo-booking-wrapper .vehicle-card .v-promo {
    background: #4CAF50;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 6px;
}

/* London Fee Notice */
.rushxo-booking-wrapper .vehicle-card .v-london-fee {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #333333;
}

.rushxo-booking-wrapper .vehicle-card .v-london-fee small {
    color: #999999;
    font-size: 11px;
    font-style: italic;
}

/* ========================================
   STEP 2: CUSTOMER DETAILS
======================================== */
.rushxo-booking-wrapper .booking-notice {
    background: #1A1A1A;
    border: 1px solid #F5C518;
    color: #F5C518;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rushxo-booking-wrapper .booking-notice i {
    font-size: 18px;
}

.rushxo-booking-wrapper .form-group {
    margin-bottom: 18px;
}

.rushxo-booking-wrapper .form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #CCCCCC;
    margin-bottom: 8px;
}

.rushxo-booking-wrapper .form-group label i {
    color: #F5C518;
    margin-right: 6px;
}

.rushxo-booking-wrapper .form-group input,
.rushxo-booking-wrapper .form-group select,
.rushxo-booking-wrapper .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #333333;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #1A1A1A;
    color: #FFFFFF;
}

.rushxo-booking-wrapper .form-group input::placeholder,
.rushxo-booking-wrapper .form-group textarea::placeholder {
    color: #666666;
}

.rushxo-booking-wrapper .form-group select option {
    background: #1A1A1A;
    color: #FFFFFF;
}

.rushxo-booking-wrapper .form-group input:focus,
.rushxo-booking-wrapper .form-group select:focus,
.rushxo-booking-wrapper .form-group textarea:focus {
    outline: none;
    border-color: #F5C518;
}

.rushxo-booking-wrapper .form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.rushxo-booking-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ========================================
   STEP 3: PAYMENT
======================================== */
.rushxo-booking-wrapper .summary-card {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.rushxo-booking-wrapper .summary-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2A2A2A;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
}

.rushxo-booking-wrapper .summary-card h3 i {
    color: #F5C518;
}

.rushxo-booking-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2A2A2A;
    font-size: 14px;
}

.rushxo-booking-wrapper .summary-row:last-child {
    border-bottom: none;
}

.rushxo-booking-wrapper .summary-row .label {
    color: #999999;
}

.rushxo-booking-wrapper .summary-row .value {
    font-weight: 600;
    color: #FFFFFF;
    text-align: right;
    max-width: 60%;
}

.rushxo-booking-wrapper .summary-row.total {
    background: #000;
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.rushxo-booking-wrapper .summary-row.total .label {
    color: #fff;
    font-weight: 700;
}

.rushxo-booking-wrapper .summary-row.total .value {
    color: #F5C518;
    font-size: 20px;
}

/* Coupon */
.rushxo-booking-wrapper .coupon-section {
    margin-bottom: 20px;
}

.rushxo-booking-wrapper .coupon-input-group {
    display: flex;
    gap: 10px;
}

.rushxo-booking-wrapper .coupon-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #333333;
    border-radius: 10px;
    font-size: 14px;
    text-transform: uppercase;
    background: #1A1A1A;
    color: #FFFFFF;
}

.rushxo-booking-wrapper .coupon-input-group input::placeholder {
    color: #666666;
}

.rushxo-booking-wrapper .coupon-input-group input:focus {
    outline: none;
    border-color: #F5C518;
}

.rushxo-booking-wrapper .btn-apply-coupon {
    padding: 12px 20px;
    background: #F5C518;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.rushxo-booking-wrapper .btn-apply-coupon:hover {
    background: #FFD54F;
}

.rushxo-booking-wrapper .btn-apply-coupon:disabled {
    background: #333333;
    color: #666666;
    cursor: not-allowed;
}

.rushxo-booking-wrapper .coupon-message {
    margin-top: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    display: none;
}

.rushxo-booking-wrapper .coupon-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.rushxo-booking-wrapper .coupon-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Payment Buttons */
.rushxo-booking-wrapper .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rushxo-booking-wrapper .btn-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    min-height: 56px;
}

.rushxo-booking-wrapper .btn-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rushxo-booking-wrapper .btn-payment.hidden {
    display: none !important;
}

.rushxo-booking-wrapper .btn-cash {
    background: #4CAF50;
    color: #fff;
}

.rushxo-booking-wrapper .btn-cash:hover:not(:disabled) {
    background: #43A047;
}

.rushxo-booking-wrapper .btn-stripe {
    background: #635BFF;
    color: #fff;
}

.rushxo-booking-wrapper .btn-stripe:hover:not(:disabled) {
    background: #5851DB;
}

.rushxo-booking-wrapper .btn-paypal {
    background: #FFC439;
    color: #003087;
}

.rushxo-booking-wrapper .btn-paypal:hover:not(:disabled) {
    background: #F0B429;
}

/* ========================================
   NAVIGATION BUTTONS
======================================== */
.rushxo-booking-wrapper .form-navigation {
    padding: 20px 24px;
    background: #111111;
    border-top: 1px solid #2A2A2A;
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-shrink: 0;
}

.rushxo-booking-wrapper .btn-nav {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
}

.rushxo-booking-wrapper .btn-back {
    background: #1A1A1A;
    color: #999999;
    border: 2px solid #333333;
}

.rushxo-booking-wrapper .btn-back:hover {
    background: #222222;
    color: #FFFFFF;
}

.rushxo-booking-wrapper .btn-next {
    background: #F5C518;
    color: #000000;
    border: none;
}

.rushxo-booking-wrapper .btn-next:hover {
    background: #FFD54F;
}

.rushxo-booking-wrapper .btn-next:disabled {
    background: #333333;
    color: #666666;
    cursor: not-allowed;
}

/* ========================================
   LOADING OVERLAY
======================================== */
.rushxo-booking-wrapper .loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.rushxo-booking-wrapper .loading-overlay.show {
    display: flex;
}

.rushxo-booking-wrapper .loading-overlay .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: #F5C518;
    border-radius: 50%;
    animation: rushxo-spin 1s linear infinite;
}

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

.rushxo-booking-wrapper .loading-overlay p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   MAP ERROR STATE
======================================== */
.rushxo-booking-wrapper .map-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #dc3545;
    padding: 20px;
    z-index: 10;
}

.rushxo-booking-wrapper .map-error i {
    font-size: 48px;
    margin-bottom: 16px;
}

.rushxo-booking-wrapper .map-error p {
    font-size: 14px;
}

/* ========================================
   MOBILE & TABLET RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .rushxo-booking-wrapper .app-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    /* MAP ON TOP - MOBILE - FIXED HEIGHT */
    .rushxo-booking-wrapper .map-container {
        width: 100%;
        height: 35vh !important;
        min-height: 200px;
        max-height: 280px;
        order: -1;
        flex-shrink: 0;
        position: relative;
    }
    
    .rushxo-booking-wrapper #rushxo-map {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    /* FORM PANEL - MOBILE */
    .rushxo-booking-wrapper .form-panel {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        flex: 1;
        border-radius: 20px 20px 0 0;
        margin-top: -20px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    /* HIDE HEADER ON MOBILE/TABLET */
    .rushxo-booking-wrapper .panel-header {
        display: none !important;
    }
    
    /* Show drag handle on mobile */
    .rushxo-booking-wrapper .mobile-drag-handle {
        display: block;
    }
    
    .rushxo-booking-wrapper .progress-bar {
        padding: 8px 16px 16px;
        border-radius: 0;
    }
    
    .rushxo-booking-wrapper .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .rushxo-booking-wrapper .step-label {
        font-size: 10px;
    }
    
    .rushxo-booking-wrapper .progress-step:not(:last-child)::after {
        top: 14px;
        left: calc(50% + 16px);
        width: calc(100% - 32px);
    }
    
    .rushxo-booking-wrapper .form-content {
        padding: 16px;
        padding-bottom: 20px;
        flex: 1;
        overflow-y: visible;
        min-height: auto;
    }
    
    .rushxo-booking-wrapper .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .rushxo-booking-wrapper .vehicle-card {
        padding: 12px;
    }
    
    .rushxo-booking-wrapper .vehicle-card .v-image {
        height: 55px;
    }
    
    .rushxo-booking-wrapper .vehicle-card .v-price {
        font-size: 20px;
    }
    
    .rushxo-booking-wrapper .form-row {
        grid-template-columns: 1fr;
    }
    
    .rushxo-booking-wrapper .form-navigation {
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        flex-shrink: 0;
        background: #111111;
        border-top: 1px solid #2A2A2A;
    }
    
    .rushxo-booking-wrapper .toggle-options {
        gap: 8px;
    }
    
    .rushxo-booking-wrapper .toggle-pill {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .rushxo-booking-wrapper .btn-nav {
        min-height: 48px;
        font-size: 14px;
    }
    
    .rushxo-booking-wrapper .payment-methods {
        padding-bottom: 30px;
    }
}

/* DESKTOP - FIXED */
@media (min-width: 769px) {
    .rushxo-booking-wrapper .mobile-drag-handle {
        display: none;
    }
    
    .rushxo-booking-wrapper .panel-header {
        display: block;
    }
    
    .rushxo-booking-wrapper .form-panel {
        max-height: 100vh;
        overflow: hidden;
    }
    
    .rushxo-booking-wrapper .form-content {
        overflow-y: auto;
        flex: 1;
        min-height: 0;
    }
    
    .rushxo-booking-wrapper .form-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .rushxo-booking-wrapper .form-content::-webkit-scrollbar-track {
        background: #1A1A1A;
    }
    
    .rushxo-booking-wrapper .form-content::-webkit-scrollbar-thumb {
        background: #333333;
        border-radius: 3px;
    }
    
    .rushxo-booking-wrapper .form-content::-webkit-scrollbar-thumb:hover {
        background: #F5C518;
    }
    
    /* CRITICAL FIX FOR DESKTOP MAP */
    .rushxo-booking-wrapper .map-container {
        flex: 1;
        min-width: 0;
        height: 100vh;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .rushxo-booking-wrapper #rushxo-map {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 400px) {
    .rushxo-booking-wrapper .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
    .rushxo-booking-wrapper .form-navigation {
        padding: 12px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}

/* ========================================
   FIX FOR WORDPRESS/ELEMENTOR INTEGRATION
======================================== */
.rushxo-booking-wrapper input:not([type="checkbox"]):not([type="radio"]),
.rushxo-booking-wrapper textarea,
.rushxo-booking-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent Elementor overrides */
.rushxo-booking-wrapper h1,
.rushxo-booking-wrapper h2,
.rushxo-booking-wrapper h3,
.rushxo-booking-wrapper h4,
.rushxo-booking-wrapper h5,
.rushxo-booking-wrapper h6 {
    margin: 0;
    padding: 0;
}

.rushxo-booking-wrapper button {
    font-family: inherit;
}

/* Google Places Autocomplete dropdown fix */
.pac-container {
    z-index: 100000 !important;
}