/* ===== MODAL VEHICLE SELECTION (PROFESSIONAL LUXURY STYLE) ===== */
.wptb-modal-large {
    max-width: 700px !important;
}

.wptb-modal-step-header {
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding-bottom: 20px !important;
    border-bottom: 2px solid #004B68 !important;
}

.wptb-modal-step-header h3 {
    color: #F5F5F5 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    flex: 1 !important;
}

.wptb-back-btn {
    background: transparent !important;
    border: 2px solid #004B68 !important;
    color: #004B68 !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.wptb-back-btn:hover {
    background: #004B68 !important;
    color: #fff !important;
    transform: translateX(-3px) !important;
}

/* Trip Type Selector */
.trip-type-selector {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
    justify-content: center !important;
}

.trip-type-btn-modal {
    padding: 12px 30px !important;
    background: transparent !important;
    border: 2px solid #444 !important;
    color: #999 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.trip-type-btn-modal:hover {
    border-color: #004B68 !important;
    color: #004B68 !important;
}

.trip-type-btn-modal.active {
    background: linear-gradient(135deg, #004B68 0%, #005c80 100%) !important;
    border-color: #004B68 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 75, 104, 0.3) !important;
}

/* Vehicles Grid */
.wptb-modal-vehicles-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 20px !important;
    max-height: 420px !important;
    overflow-y: auto !important;
    padding-right: 5px !important;
}

/* Custom Scrollbar */
.wptb-modal-vehicles-grid::-webkit-scrollbar {
    width: 8px !important;
}

.wptb-modal-vehicles-grid::-webkit-scrollbar-track {
    background: #1E1E1E !important;
    border-radius: 10px !important;
}

.wptb-modal-vehicles-grid::-webkit-scrollbar-thumb {
    background: #004B68 !important;
    border-radius: 10px !important;
}

/* Vehicle Button - Professional Card Style */
.wptb-modal-vehicle-btn {
    background: linear-gradient(135deg, #003f59 0%, #002a3d 100%) !important;
    border: 2px solid #004B68 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}



.wptb-modal-vehicle-btn:hover {
    border-color: #004B68 !important;
    background: linear-gradient(135deg, #004B68 0%, #003f59 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 75, 104, 0.2) !important;
}

.wptb-modal-vehicle-btn.selected {
    border-color: #004B68 !important;
    background: linear-gradient(135deg, #004B68 0%, #003f59 100%) !important;
    box-shadow: 0 0 0 3px rgba(0, 75, 104, 0.3), 0 8px 25px rgba(0, 75, 104, 0.4) !important;
    transform: scale(1.02) !important;
}

/* Vehicle Icon */
.vehicle-icon {
    width: 70px !important;
    height: 70px !important;
    flex-shrink: 0 !important;
    background: #004B68 !important;
    /* Blue background for images */
    border: 2px solid #003f59 !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 8px !important;
}

.vehicle-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: brightness(1.1) !important;
}

/* Vehicle Info */
.vehicle-info-compact {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.vehicle-info-compact strong {
    color: #F5F5F5 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}

.vehicle-capacity {
    color: #B8B8B8 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.vehicle-price-compact {
    color: #004B68 !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    margin-top: 4px !important;
    text-shadow: 0 2px 4px rgba(0, 75, 104, 0.3) !important;
}

/* Loading State */
.loading-spinner {
    text-align: center !important;
    padding: 40px 20px !important;
    color: #004B68 !important;
    font-size: 16px !important;
}

/* Responsive */
@media (max-width: 600px) {
    .wptb-modal-vehicle-btn {
        padding: 15px !important;
        gap: 12px !important;
    }

    .vehicle-icon {
        font-size: 32px !important;
    }

    .vehicle-info-compact strong {
        font-size: 16px !important;
    }

    .wptb-modal-step-header h3 {
        font-size: 18px !important;
    }
}