/* ==========================================================================
   Book a Cab Page Stylesheet - Silvassa to Mumbai Taxi / Patel Tours & Travels
   ========================================================================== */

/* Main Booking Section Container */
.book-cab-section {
    background: #fdfdfd;
    padding: 70px 0 100px 0;
}

.booking-wrapper-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

/* ==========================================================================
   LEFT COLUMN: BOOKING SUMMARY CARD
   ========================================================================== */
.booking-summary-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.booking-summary-header {
    background-color: #d9534f;
    background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
    color: #ffffff;
    text-align: center;
    padding: 14px 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.booking-summary-body {
    border: 2px dashed #b0b0b0;
    border-top: none;
    padding: 24px 20px 20px 20px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #ffffff;
}

.summary-car-preview {
    text-align: center;
    margin-bottom: 22px;
    padding: 10px 0;
}

.summary-car-preview svg,
.summary-car-preview img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.summary-car-preview:hover svg,
.summary-car-preview:hover img {
    transform: translateY(-3px) scale(1.02);
}

.summary-info-table {
    width: 100%;
    margin-bottom: 0;
}

.summary-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid #f2f2f2;
    font-size: 15px;
}

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

.summary-label {
    color: #4a4a4a;
    font-weight: 500;
    padding-right: 15px;
    flex: 1;
}

.summary-value {
    color: #111111;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.summary-total-row {
    border-top: 2px dashed #b0b0b0;
    margin-top: 8px;
    padding-top: 14px;
    font-size: 16px;
}

.summary-total-row .summary-label {
    font-weight: 700;
    color: #111111;
    font-size: 16px;
}

.summary-total-row .summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

.advance-pill-box {
    margin-top: 15px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    color: #334155;
}

.advance-pill-box .pay-now-badge {
    font-weight: 700;
    color: #d9534f;
}

/* ==========================================================================
   RIGHT COLUMN: BOOKING FORM
   ========================================================================== */
.booking-form-wrap {
    padding-left: 10px;
}

.cab-input {
    border: 1.5px dashed #9e9e9e !important;
    border-radius: 5px !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    color: #222222 !important;
    background-color: #ffffff !important;
    margin-bottom: 16px;
    transition: all 0.25s ease-in-out;
    height: 48px;
}

.cab-input:focus {
    border: 1.5px solid #2e719c !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(46, 113, 156, 0.15) !important;
    outline: none !important;
}

.cab-input::placeholder {
    color: #757575 !important;
    font-weight: 400;
}

.highlighted-cab-input {
    background-color: #e8f0fe !important;
    border: 1.5px dashed #8ab4f8 !important;
    color: #1a73e8 !important;
    font-weight: 500;
}

.highlighted-cab-input:focus {
    background-color: #ffffff !important;
    border-color: #2e719c !important;
    color: #111111 !important;
}

.cab-input-group {
    position: relative;
    margin-bottom: 16px;
}

.cab-input-group .form-control {
    margin-bottom: 0;
}

.cab-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
}

.payment-method-title {
    font-size: 15px;
    font-weight: 700;
    color: #18191d;
    margin-top: 6px;
    margin-bottom: 12px;
}

.payment-radios {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
}

.custom-radio-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-radio-wrap input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #777;
    border-radius: 50%;
    margin-right: 8px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.custom-radio-wrap input[type="radio"]:checked {
    border-color: #d9534f;
}

.custom-radio-wrap input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #d9534f;
    border-radius: 50%;
}

.custom-radio-wrap label {
    font-size: 14.5px;
    color: #333333;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
}

.btn-booking-coral {
    background-color: #d9534f;
    background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 34px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px rgba(217, 83, 79, 0.35);
    display: inline-block;
    text-transform: capitalize;
}

.btn-booking-coral:hover {
    background: linear-gradient(135deg, #c9302c 0%, #ac2925 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 83, 79, 0.45);
}

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

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.modal-confirm-header {
    background: linear-gradient(135deg, #2e719c 0%, #1e4f6f 100%);
    color: #ffffff;
}

.confirm-summary-list {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
    .booking-form-wrap {
        padding-left: 0;
        margin-top: 35px;
    }
}

@media (max-width: 576px) {
    .booking-wrapper-box {
        padding: 20px 15px;
    }
    .payment-radios {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn-booking-coral {
        width: 100%;
        text-align: center;
    }
}
