/* ==========================================
   BOOKING PAGE
========================================== */

.booking-page{
    background:#f5f7fb;
    min-height:100vh;
    padding:45px 0 70px;
    font-family:'Poppins',sans-serif;
}

.booking-container{
    max-width:1320px;
}


/* ==========================================
   STEP
========================================== */

.booking-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:55px;
}

.booking-line{
    width:230px;
    height:2px;
    background:#d7e3f7;
    margin:0 18px;
    margin-top:-30px;
}

.booking-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.booking-circle{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#dce7f7;
    color:#495057;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    border:2px solid #bfd1ea;
    transition:.3s;
}

.booking-step span{
    margin-top:14px;
    font-size:16px;
    color:#5c6470;
    font-weight:500;
}

.booking-step.active .booking-circle{
    background:#003963;
    border-color:#003963;
    color:#fff;
    box-shadow:0 0 0 5px rgba(0,57,99,.12);
}

.booking-step.active span{
    color:#003963;
    font-weight:600;
}


/* ==========================================
   CARD
========================================== */

.booking-card{
    background:#fff;
    border-radius:18px;
    padding:38px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    border:1px solid #edf0f5;
}

.booking-card h2{
    font-size:22px;
    color:#1d2b44;
    font-weight:700;
    margin-bottom:34px;
}


/* ==========================================
   LABEL
========================================== */

.booking-card label{
    display:block;
    margin-bottom:10px;
    color:#5f6773;
    font-size:15px;
    font-weight:500;
}


/* ==========================================
   INPUT
========================================== */

.booking-input{
    width:100%;
    height:50px;
    border:1px solid #d8dee8;
    border-radius:10px;
    background:#fff;
    padding:0 18px;
    font-size:15px;
    color:#273142;
    transition:.25s;
    outline:none;
}

.booking-input::placeholder{
    color:#9aa5b3;
}

.booking-input:focus{
    border-color:#003963;
    box-shadow:0 0 0 .15rem rgba(0,57,99,.12);
}


/* ==========================================
   PHONE
========================================== */

.booking-phone{
    display:flex;
}

.booking-code{
    width:70px;
    height:50px;
    background:#eef3fb;
    border:1px solid #d8dee8;
    border-right:none;
    border-radius:10px 0 0 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    color:#374151;
    font-weight:500;
}

.booking-phone .booking-input{
    border-radius:0 10px 10px 0;
}


/* ==========================================
   SECURITY
========================================== */

.booking-security{
    margin-top:18px;
    background:#eef4ff;
    border:1px solid #d8e4f8;
    border-radius:12px;
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.booking-security-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#dcecff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#003963;
    font-size:22px;
    flex-shrink:0;
}

.booking-security h5{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#003963;
}

.booking-security p{
    margin-top:6px;
    margin-bottom:0;
    color:#626d79;
    font-size:14px;
    line-height:1.7;
}

/* =====================================================
   BOOKING SUMMARY
===================================================== */

.booking-summary{
    background:#fff;
    border-radius:18px;
    padding:32px;
    border:1px solid #edf0f5;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    position:sticky;
    top:100px;
}

.booking-summary h3{
    font-size:28px;
    font-weight:700;
    color:#18253d;
    margin-bottom:28px;
}


/* =====================================================
   PRICE ROW
===================================================== */

.booking-price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.booking-price-row span{
    color:#5d6674;
    font-size:16px;
}

.booking-price-row strong{
    color:#16233d;
    font-size:18px;
    font-weight:700;
}

.booking-price-row.promo span{
    color:#b27b00;
    font-weight:600;
}

.booking-price-row.promo strong{
    color:#b27b00;
}

.booking-price-row i{
    margin-right:6px;
}


/* =====================================================
   LINE
===================================================== */

.booking-summary hr{
    border:none;
    border-top:1px solid #e8edf4;
    margin:28px 0;
}


/* =====================================================
   TOTAL
===================================================== */

.booking-total{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:28px;
}

.booking-total small{
    display:block;
    color:#697586;
    font-size:14px;
    margin-bottom:4px;
}

.booking-total h2{
    margin:0;
    color:#003963;
    font-size:40px;
    font-weight:700;
    line-height:1;
}

.booking-fee{
    background:#fff6dc;
    color:#a47400;
    padding:8px 16px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
}


/* =====================================================
   BUTTON
===================================================== */

.booking-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:10px;
    background:#005a96;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

.booking-btn:hover{
    background:#003963;
}


/* =====================================================
   TERMS
===================================================== */

.booking-terms{
    text-align:center;
    margin:22px 0;
    font-size:14px;
    color:#697586;
    line-height:1.8;
}

.booking-terms a{
    color:#003963;
    text-decoration:none;
    font-weight:600;
}

.booking-terms a:hover{
    text-decoration:underline;
}


/* =====================================================
   FEATURES
===================================================== */

.booking-features{
    display:flex;
    justify-content:space-between;
    text-align:center;
    gap:12px;
}

.booking-features div{
    flex:1;
}

.booking-features i{
    display:block;
    font-size:28px;
    color:#003963;
    margin-bottom:8px;
}

.booking-features span{
    display:block;
    font-size:12px;
    color:#5f6978;
    font-weight:500;
}


/* =====================================================
   CAR CARD
===================================================== */

.booking-car-card{
    margin-top:34px;
    background:#fff;
    border-radius:18px;
    border:1px solid #edf0f5;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    padding:26px;
    display:flex;
    align-items:center;
    gap:28px;
}


/* =====================================================
   IMAGE
===================================================== */

.booking-car-image{
    width:220px;
    min-width:220px;
    height:140px;
    border-radius:14px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.booking-car-image img{
    width:95%;
    object-fit:contain;
}


/* =====================================================
   CONTENT
===================================================== */

.booking-car-content{
    flex:1;
}

.booking-car-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.booking-car-header h3{
    font-size:30px;
    font-weight:700;
    color:#1b2942;
    margin-bottom:16px;
}


/* =====================================================
   BADGES
===================================================== */

.booking-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.booking-badges span{
    background:#edf3fc;
    color:#52606f;
    font-size:14px;
    padding:7px 14px;
    border-radius:8px;
}


/* =====================================================
   VERIFIED
===================================================== */

.booking-verified{
    color:#c78c00;
    font-size:24px;
}


/* =====================================================
   INFO
===================================================== */

.booking-car-info{
    margin-top:24px;
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.booking-car-info span{
    color:#5d6674;
    font-size:15px;
    display:flex;
    align-items:center;
}

.booking-car-info i{
    color:#003963;
    margin-right:8px;
    font-size:16px;
}

/* =====================================================
   HOVER EFFECT
===================================================== */

.booking-card,
.booking-summary,
.booking-car-card{
    transition:all .3s ease;
}

.booking-card:hover,
.booking-summary:hover,
.booking-car-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}


/* =====================================================
   INPUT AUTOFILL
===================================================== */

.booking-input:-webkit-autofill,
.booking-input:-webkit-autofill:hover,
.booking-input:-webkit-autofill:focus{
    -webkit-box-shadow:0 0 0px 1000px #fff inset;
    -webkit-text-fill-color:#273142;
}


/* =====================================================
   BUTTON EFFECT
===================================================== */

.booking-btn{
    position:relative;
    overflow:hidden;
}

.booking-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background:rgba(255,255,255,.15);
    transform:skewX(-20deg);
    transition:.6s;
}

.booking-btn:hover::after{
    left:120%;
}


/* =====================================================
   SMOOTH
===================================================== */

.booking-page *{
    box-sizing:border-box;
}

.booking-page a,
.booking-page button,
.booking-page input{
    transition:.25s;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width:991px){

    .booking-summary{
        position:relative;
        top:auto;
        margin-top:30px;
    }

    .booking-car-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .booking-car-image{
        width:100%;
        height:210px;
    }

    .booking-car-image img{
        max-width:360px;
    }

    .booking-car-header{
        flex-direction:column;
        gap:15px;
    }

    .booking-verified{
        align-self:flex-start;
    }

    .booking-total{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .booking-features{
        flex-wrap:wrap;
        gap:20px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

    .booking-page{
        padding:30px 0 50px;
    }

    .booking-card,
    .booking-summary{
        padding:24px;
    }

    .booking-card h2{
        font-size:24px;
    }

    .booking-summary h3{
        font-size:24px;
    }

    .booking-line{
        width:70px;
    }

    .booking-circle{
        width:42px;
        height:42px;
        font-size:16px;
    }

    .booking-step span{
        font-size:14px;
    }

    .booking-phone{
        flex-direction:column;
    }

    .booking-code{
        width:100%;
        border-right:1px solid #d8dee8;
        border-radius:10px 10px 0 0;
    }

    .booking-phone .booking-input{
        border-radius:0 0 10px 10px;
    }

    .booking-car-header h3{
        font-size:24px;
    }

    .booking-total h2{
        font-size:34px;
    }

    .booking-price-row{
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:576px){

    .booking-container{
        padding-left:15px;
        padding-right:15px;
    }

    .booking-card,
    .booking-summary,
    .booking-car-card{
        border-radius:16px;
    }

    .booking-card{
        padding:20px;
    }

    .booking-summary{
        padding:20px;
    }

    .booking-car-card{
        padding:20px;
    }

    .booking-car-image{
        height:170px;
    }

    .booking-security{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .booking-security-icon{
        margin-bottom:10px;
    }

    .booking-features{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:12px;
    }

    .booking-features span{
        font-size:10px;
    }

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width:1400px){

    .booking-container{
        max-width:1320px;
    }

}