/*====================================*/
/*=========== GLOBAL =================*/
/*====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#edf1f7;
    font-family:'Poppins',sans-serif;

    display:flex;
    justify-content:center;
}

.wrapper{
    width:100%;
    max-width:500px;
    min-height:100vh;
    position:relative;
    overflow:hidden;
}

/*====================================*/
/*=========== BOOKING PAGE ===========*/
/*====================================*/

.booking-page{
    background:linear-gradient(135deg, #906729, #d4af37);;
}

/*====================================*/
/*=========== TOP AREA ===============*/
/*====================================*/

.booking-top{
    position:fixed;
    top:0;

    width:100%;
    max-width:500px;

    background:linear-gradient(135deg, #906729, #d4af37);;

    padding:15px;

    z-index:10;
}

.booking-navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.back-btn{
    width:45px;
    height:45px;

    border:none;
    border-radius:14px;

    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:18px;

    cursor:pointer;
}

.booking-title{
    flex:1;

    text-align:center;

    color:white;
    font-size:24px;
    font-weight:700;

    padding:0 10px;
}

.booking-image{
    margin-top:20px;
    text-align:center;
}

.booking-image img{
    width:100%;
    height:auto;
    object-fit:contain;
}

/*====================================*/
/*============= SPEC =================*/
/*====================================*/

.booking-spec{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:15px;

    margin-top:20px;
}

.spec-box{
    height:90px;

    border-radius:22px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:12px;
    text-align:center;
}

.spec-box i{
    font-size:20px;
    margin-bottom:10px;
}

/*====================================*/
/*=========== CONTENT ================*/
/*====================================*/

.booking-content{
    position:relative;
    z-index:99;

    margin-top:430px;

    background:#f7f8fc;

    border-radius:35px 35px 0 0;

    padding:25px 15px 140px;

    min-height:100vh;
}

.drag-line{
    width:80px;
    height:6px;

    background:#ddd;

    border-radius:20px;

    margin:0 auto 25px;
}

/*====================================*/
/*=========== GROUP ==================*/
/*====================================*/

.booking-group{
    margin-bottom:28px;
}

.booking-group h3{
    font-size:17px;
    margin-bottom:15px;
    font-weight: 600;
}

/*====================================*/
/*=========== DURASI =================*/
/*====================================*/

.duration-wrap{
    display:flex;
    gap:10px;

    overflow-x:auto;
    scrollbar-width:none;

    padding-bottom:5px;
}

.duration-wrap::-webkit-scrollbar{
    display:none;
}

.duration-item{
    min-width:90px;
    height:45px;

    border-radius:14px;

    border:1px solid linear-gradient(135deg, #906729, #d4af37);;

    background:white;
    color:linear-gradient(135deg, #906729, #d4af37);;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:500;

    flex-shrink:0;

    cursor:pointer;
}

.active-duration{
    background:linear-gradient(135deg, #906729, #d4af37);;
    color:white;
}

/*====================================*/
/*=========== DRIVER =================*/
/*====================================*/

.driver-wrap{
    display:flex;
    gap:15px;
}

.driver-item{
    flex:1;

    height:60px;

    border-radius:18px;

    border:1px solid linear-gradient(135deg, #906729, #d4af37);;

    background:white;
    color:linear-gradient(135deg, #906729, #d4af37);;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    font-size:14px;
    font-weight:600;

    cursor:pointer;
}

.driver-item i{
    font-size:18px;
}

.active-driver{
    background:linear-gradient(135deg, #906729, #d4af37);;
    color:white;
}

/*====================================*/
/*============= INPUT ================*/
/*====================================*/

.booking-input{
    width:100%;
    height:58px;

    border:none;
    outline:none;

    border-radius:18px;

    background:white;

    padding:0 18px;

    font-size:15px;
    font-family:'Poppins',sans-serif;

    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

/*====================================*/
/*========== PRICE DETAIL ============*/
/*====================================*/

.price-detail{
    background:white;

    border-radius:24px;

    padding:20px;

    margin-bottom:25px;

    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.price-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #f1f1f1;
}

.price-item:last-child{
    border-bottom:none;
}

.price-item span{
    font-size:14px;
    color:#666;
}

.price-item strong{
    color:linear-gradient(135deg, #906729, #d4af37);;
    font-size:15px;
}

/*====================================*/
/*============= NOTE =================*/
/*====================================*/

.booking-note{
    background:#f1edff;

    border-radius:22px;

    padding:18px;

    display:flex;
    gap:14px;
    align-items:flex-start;
}

.booking-note i{
    color:linear-gradient(135deg, #906729, #d4af37);;
    font-size:22px;

    margin-top:2px;
}

.booking-note p{
    font-size:13px;
    line-height:24px;
    color:#555;
}

/*====================================*/
/*=========== BOTTOM =================*/
/*====================================*/

.booking-bottom{
    position:fixed;
    bottom:0;

    width:100%;
    max-width:500px;

    background:white;

    padding:15px 18px 10px;

    border-radius:30px 30px 0 0;

    box-shadow:0 -5px 20px rgba(0,0,0,0.08);

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:0px;

    z-index:999;
}

.total-area small{
    font-size:12px;
    color:#888;
}

.total-area h2{
    color:linear-gradient(135deg, #906729, #d4af37);;
    font-size:22px;
}

.booking-btn{
    height:55px;

    border:none;
    border-radius:18px;

    background:linear-gradient(135deg, #906729, #d4af37);;
    color:white;

    padding:0 25px;

    font-size:15px;
    font-weight:600;

    font-family:'Poppins',sans-serif;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    cursor:pointer;
}

.booking-btn i{
    font-size:18px;
}

/*====================================*/
/*============= MOBILE ===============*/
/*====================================*/

@media(max-width:500px){

    .booking-title{
        font-size:20px;
    }

    .spec-box{
        height:75px;
        font-size:11px;
    }

    .booking-content{
        margin-top:410px;
    }

    .booking-btn{
        padding:0 20px;
        font-size:14px;
    }

}


/*====== Label =====*/
.booking-image{
    margin-top:20px;
    text-align:center;
    position:relative;
}

.booking-label{
    position:absolute;
    top:10px;
    right:5px;

    background:#e9d6ff;
    color:linear-gradient(135deg, #906729, #d4af37);;

    padding:7px 14px;

    border-radius:12px;

    font-size:12px;
    font-weight:700;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}