body {
    background: #f4f7fc;
    font-family: 'Barlow',sans-serif;
}

/* VEHICLE CARD */
.booking-top {
    padding: 40px 20px; /* Top-Bottom 25px | Left-Right 20px */
}
.vehicle-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    border: 1px solid #ececec;
}

.vehicle-img {
    text-align: center;
    padding: 35px;
}

    .vehicle-img img {
        max-width: 150px;
    }

.vehicle-content {
    padding: 18px 22px;
}

.top-badge {
    display: flex;
    gap: 10px;
}

    .top-badge span {
        background: #eef2f7;
        padding: 6px 16px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
    }
.vehicle-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin: 15px 0;
}

.vehicle-title {
    flex: 1;
    margin: 0;
}

    .vehicle-title h4 {
        margin: 0;
        font-size: 16px;
        color: #ff6600;
        font-weight: 600;
        line-height: 1.5;
    }

    .vehicle-title small {
        font-size: 12px;
        color: #00b050;
        font-weight: 500;
    }

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    flex-shrink: 0;
}

    .vehicle-feature div {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
    }

    .vehicle-feature i {
        font-size: 14px;
    }

@media(max-width:768px) {

    .vehicle-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .vehicle-feature {
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 15px;
    }
}

.route-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .route-row h6 {
        font-size: 16px;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .route-row p {
        font-size: 12px;
        color: #4a46ff;
        margin: 0;
    }

.route-icon {
    font-size: 20px;
}

.cancel-text {
    text-align: center;
    color: #d88600;
    font-size: 12px;
    margin-top: 12px;
}

/* TOTAL FARE */

.fare-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

    .fare-card div {
        font-size: 16px;
        color: #5148ff;
        font-weight: 600;
    }

    .fare-card h5 {
        margin: 0;
        font-size: 16px;
        color: #5148ff;
        font-weight: 700;
    }

/* CUSTOMIZE */

.ride-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.ride-header {
    background: #2d356a;
    color: #fff;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

.ride-body {
    padding: 16px;
}

.ride-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

    .ride-item div {
        font-size: 12px;
        font-weight: 500;
    }

    .ride-item span {
        color: #00b341;
        font-size: 12px;
        font-weight: 600;
    }

    .ride-item input {
        margin-right: 8px;
    }

hr {
    margin: 16px 0;
}

@media(max-width:991px) {

    .route-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .vehicle-feature {
        flex-wrap: wrap;
        gap: 15px;
    }

    .vehicle-img {
        padding: 20px;
    }
}

.booking-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.booking-header {
    background: #2d356a;
    color: #fff;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
}

.booking-body {
    padding: 24px;
}

.form-label {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

    .form-label span {
        color: red;
    }

.alternate-link {
    float: right;
    font-size: 12px;
    text-decoration: none;
}

.custom-input {
    height: 48px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #ddd;
}

    .custom-input:focus {
        box-shadow: none;
        border-color: #2d356a;
    }

.custom-textarea {
    height: 82px;
    resize: none;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #ddd;
}

    .custom-textarea:focus {
        box-shadow: none;
        border-color: #2d356a;
    }

.gender-box {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 0 18px;
}

    .gender-box label {
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

    .check-label a {
        color: #3b3bff;
        text-decoration: none;
        margin: 0 4px;
    }

    .check-label input {
        width: 18px;
        height: 18px;
    }

@media(max-width:768px) {

    .booking-body {
        padding: 18px;
    }

    .alternate-link {
        float: none;
        display: block;
        margin-top: 5px;
    }

    .gender-box {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 18px;
    }
}

/*=========================
CAB SECTION
==========================*/

.cab-info-section {
    margin-top: 30px;
}

.cab-heading {
    background: #2f396f;
    color: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.cab-info-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

/* Tabs */

.custom-tabs {
    border-bottom: 1px solid #ececec;
}

    .custom-tabs .nav-item {
        width: 33.333%;
    }

    .custom-tabs .nav-link {
        width: 100%;
        text-align: center;
        border: none;
        border-radius: 0;
        background: #fff;
        color: #111;
        font-size: 16px;
        font-weight: 500;
        padding: 18px 10px;
        transition: .3s;
    }

        .custom-tabs .nav-link:hover {
            color: #ff6900;
        }

        .custom-tabs .nav-link.active {
            color: #ff6900;
            border-bottom: 3px solid #ff6900;
            background: #fff;
        }

/* Content */

.tab-content {
    padding: 28px;
}

    .tab-content h5 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 25px;
    }

        .tab-content h5 i {
            margin-right: 8px;
        }

.list-style {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list-style li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 16px;
        font-size: 14px;
    }

        .list-style li::before {
            content: "₹";
            position: absolute;
            left: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #cfd8e3;
            border-radius: 50%;
            text-align: center;
            line-height: 17px;
            font-size: 11px;
            color: #2f396f;
            font-weight: 600;
        }

.red li::before {
    content: "!";
    color: #d9534f;
    border-color: #f5c2c7;
}

.tab-text {
    max-height: 420px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.8;
}

    .tab-text h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
    }

@media(max-width:768px) {

    .custom-tabs .nav-item {
        width: 100%;
    }

    .tab-content {
        padding: 18px;
    }
}

/*=====================
 PAYMENT CARD
======================*/

.payment-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    border: 1px solid #ececec;
}

    .payment-card h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 18px;
    }

.payment-option {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    cursor: pointer;
    transition: .3s;
}

.active-option {
    border: 1px solid #00b341;
}

.payment-left h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.payment-left p {
    margin: 0;
    font-size: 12px;
    color: #444;
}

.active-option h5,
.active-option p {
    color: #00b341;
}

.payment-option i {
    color: #111;
    font-size: 22px;
}

.active-option i {
    color: #00b341;
}

.pay-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #ff6900;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

    .pay-btn:hover {
        background: #ea6100;
    }

/*=====================
 BENEFITS
======================*/

.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    border: 1px solid #ececec;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

    .benefit-item:last-child {
        margin-bottom: 0;
    }

    .benefit-item span {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #ff6900;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        flex-shrink: 0;
    }

.booking-sidebar {
    position: sticky;
    top: 20px;
}