

.booking-section{
    background:#f5f7fb;
    min-height:100vh;
}

.booking-container{
    max-width:1280px;
}

/* HEADER */

.booking-header{
    margin-bottom:50px;
        margin-top: 4%;
}

.booking-badge{
    background:#111827;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.booking-title{
    font-size:clamp(34px,5vw,62px);
    font-weight:800;
    margin-top:25px;
    color:#111827;
}

.booking-subtitle{
    color:#6b7280;
    max-width:700px;
    margin:auto;
    margin-top:20px;
    font-size:17px;
}

/* CARDS */

.booking-card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    border:none;
}

/* VEHICLE CARD */

.vehicle-card{
    padding:0;
    overflow:hidden;
}

.vehicle-card-header{
    background:linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    color:#fff;

    padding:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.vehicle-icon-box{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(255,255,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    margin-right:18px;
}

.vehicle-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:4px;
    color:#fff;
}

.vehicle-subtitle{
    margin:0;
    color:rgba(255,255,255,.7);
}

.vehicle-price{
    color:#d4af37;
    font-size:42px;
    font-weight:800;
}

/* FEATURES */

.vehicle-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    padding:25px 28px;
}

.vehicle-features span{
    background:#f3f4f6;
    padding:10px 16px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
}

/* SECTION TITLE */

.card-title-area{
    display:flex;
    align-items:center;
    margin-bottom:28px;
}

.card-title-area i{
    font-size:22px;
    margin-right:12px;
    color:#111827;
}

.card-title-area h4{
    margin:0;
    font-size:26px;
    font-weight:700;
}

/* LABEL */

.booking-label{
    font-weight:600;
    margin-bottom:12px;
    display:block;
    color:#111827;
}

/* INPUTS */

.booking-input-group{
    position:relative;
}

.booking-input-group i{
    position:absolute;
    top:50%;
    left:18px;
    transform:translateY(-50%);
    z-index:2;
}

.booking-input-group .form-control{
    padding-left:50px;
}

.booking-input,
.booking-input-group .form-control{
    height:60px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    font-size:15px;
    box-shadow:none;
}

.booking-input:focus,
.booking-input-group .form-control:focus{
    border-color:#111827;
    box-shadow:0 0 0 4px rgba(17,24,39,.08);
}

textarea.booking-input{
    min-height:140px;
    padding-top:18px;
}

/* SUMMARY */

.booking-summary-card{
    position:sticky;
    top:110px;

    background:#fff;

    border-radius:24px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    overflow:hidden;
}

.summary-header{
    padding:28px;
    border-bottom:1px solid #eee;
}

.summary-header h4{
    margin:0;
    font-weight:700;
}

.summary-body{
    padding:28px;
}

.summary-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:15px;
}

.summary-total{
    margin-top:30px;
    background:#111827;
    color:#fff;
    border-radius:18px;
    padding:25px;
}

.summary-total small{
    color:#d1d5db;
}

.summary-total h2{
    color:#d4af37;
    font-size:42px;
    font-weight:800;
    margin:5px 0 0;
}

.summary-note{
    margin-top:20px;
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
}

/* TRUST */

.trust-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.trust-box div{
    background:#fff;
    padding:18px;
    border-radius:16px;
    font-weight:600;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
}

.trust-box i{
    color:#16a34a;
    margin-right:8px;
}

/* BUTTON */

.booking-submit-btn{
    width:100%;
    height:65px;
    border-radius:18px;
    background:#111827;
    color:#fff;
    font-size:18px;
    font-weight:700;
    border:none;
    transition:.3s;
}

.booking-submit-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-2px);
}

/* FLATPICKR */

.flatpickr-input[readonly]{
    background:#fff;
}

.flatpickr-calendar{
    border:none;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.flatpickr-day.selected{
    background:#111827;
    border-color:#111827;
}

.flatpickr-day:hover{
    background:#f3f4f6;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover{
    background:#f3f4f6;
}

/* RESPONSIVE */

@media(max-width:991px){

    .booking-summary-card{
        position:relative;
        top:auto;
    }

    .vehicle-card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
}

@media(max-width:768px){

    .booking-card{
        padding:24px;
    }

    .trust-box{
        grid-template-columns:1fr;
    }

    .vehicle-features{
        flex-direction:column;
    }

    .booking-title{
        font-size:42px;
    }

    .vehicle-price{
        font-size:34px;
    }
}



 .required-star {
        color: #dc3545;
        margin-left: 3px;
    }

    .is-invalid {
        border-color: #dc3545 !important;
        box-shadow: none !important;
    }

    .flatpickr-input[readonly] {
        background-color: #fff !important;
        cursor: pointer;
    }

    body {
        background-color: hsl(var(--background));
    }