*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    background:#f5f7fb;
    font-family:Arial,Helvetica,sans-serif;
    color:#222;
}

.airport-page{
    padding:15px 0 40px;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}


/* ================= SEARCH SUMMARY ================= */

.search-summary{
    background:#fff;
    border-radius:14px;
    padding:20px 25px;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.summary-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.route{
    display:flex;
    align-items:center;
    gap:25px;
}

.city label{
    display:block;
    color:#888;
    font-size:12px;
    margin-bottom:5px;
}

.city h3{
    margin:0;
    font-size:22px;
}

.route-arrow{
    font-size:30px;
    color:#ff6b00;
}


.trip-info{
    display:flex;
    gap:30px;
    align-items:center;
}

.trip-info div{
    text-align:center;
}

.trip-info span{
    display:block;
    color:#777;
    font-size:13px;
}

.modify-btn{
    background:#ff6b00;
    color:#fff;
    padding:12px 20px;
    border-radius:7px;
    text-decoration:none;
    font-weight:bold;
}


/* ================= CAB CARD ================= */


.cab-card{

    background:#fff;
    border-radius:16px;
    margin-bottom:25px;
    overflow:hidden;
    border:1px solid #eee;
    box-shadow:0 5px 18px rgba(0,0,0,.08);

}


.cab-header{

    display:grid;

    grid-template-columns:
    220px
    minmax(250px,1fr)
    160px
    220px;

    gap:20px;

    align-items:center;

    padding:25px;

}



/* IMAGE */

.cab-image{

    display:flex;
    justify-content:center;

}


.cab-image img{

    width:200px;
    height:120px;
    object-fit:contain;

}




/* CAB INFO */


.cab-info h2{

    margin:0;
    font-size:26px;

}


.cab-info p{

    margin:8px 0 15px;
    color:#777;

}



.cab-specs{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}



.cab-specs span{

    font-size:15px;
    color:#555;

}


.cab-specs i{

    color:#ff6b00;
    margin-right:5px;

}




/* DISTANCE */


.cab-distance{

    text-align:center;

}


.cab-distance h3{

    margin:0;
    font-size:25px;

}


.cab-distance span{

    color:#777;
    font-size:13px;

}



/* PRICE */

.cab-price{

    text-align:center;

}


.old-price{

    color:#999;
    text-decoration:line-through;

}



.new-price{

    font-size:36px;
    color:#07963b;
    font-weight:800;

}


.cab-price small{

    display:block;
    margin:5px 0 15px;
    color:#777;

}


.book-btn{

    width:170px;
    height:50px;

    display:inline-flex;
    justify-content:center;
    align-items:center;

    background:#ff6b00;
    color:white;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

}




/* FOOTER */


.cab-footer{

    height:60px;

    display:flex;
    align-items:center;

    padding:0 25px;

    background:#fafafa;

    border-top:1px solid #eee;

}



.view-details{

    border:0;
    background:none;

    color:#0969d8;

    font-size:16px;
    font-weight:600;

}



/* DETAILS */


.cab-details{

    background:white;
    border-top:1px solid #eee;

}


.detail-tabs{

    display:flex;

}


.tab-btn{

    flex:1;

    padding:15px;

    border:0;

    background:#f5f5f5;

    cursor:pointer;

}


.tab-btn.active{

    background:#fff;
    color:#ff6b00;

    border-bottom:3px solid #ff6b00;

}


.tab-pane{

    display:none;
    padding:20px;

}


.tab-pane.active{

    display:block;

}



.fare-table{

    width:100%;
    border-collapse:collapse;

}


.fare-table td{

    padding:12px;
    border-bottom:1px solid #eee;

}


.fare-total td{

    color:#07963b;
    font-size:20px;
    font-weight:bold;

}



/* ================= TABLET ================= */


@media(max-width:1100px){


.cab-header{

    grid-template-columns:180px 1fr;

}




.cab-price{

    margin-top:15px;

}



}



/* ================= SMALL MOBILE ================= */

/*==========================
MOBILE
==========================*/
@media(max-width:768px){

.cab-header{

    display:grid;

    grid-template-columns:90px 1fr 110px;

    gap:10px;

    align-items:center;

    padding:12px;

}

.cab-image img{

    width:85px;

    height:60px;

}

.cab-info{

    text-align:left;

}

.cab-info h2{

    font-size:18px;

    margin:0;

}

.cab-info p{

    margin:2px 0;

    font-size:12px;

}

.cab-specs{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:6px;

}

.cab-specs span{

    font-size:11px;

}

.mobile-distance{

    margin-top:8px;

    font-size:12px;

    color:#666;

}

.cab-distance{

    display:none;

}

.cab-price{

    text-align:right;

}

.new-price{

    font-size:24px;

}

.old-price{

    font-size:11px;

}

.book-btn{

    width:95px;

    height:34px;

    font-size:11px;

}

.cab-footer{

    padding:10px;

    height:auto;

}

.view-details{

    width:100%;

    text-align:left;

    font-size:13px;

}
}

/* ================= MOBILE ONLY ================= */

@media only screen and (max-width:768px){

.cab-header{

    display:flex !important;

    align-items:flex-start;

    justify-content:space-between;

    gap:10px;

    padding:12px;

}

/* Image */

.cab-image{

    width:80px;

    flex:0 0 80px;

}

.cab-image img{

    width:75px;

    height:55px;

    object-fit:contain;

}

/* Details */

.cab-info{

    flex:1;

    text-align:left;

}

.cab-info h2{

    font-size:18px;

    margin:0;

    line-height:22px;

}

.cab-info p{

    margin:3px 0 8px;

    font-size:12px;

}

.cab-specs{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.cab-specs span{

    font-size:11px;

}

.mobile-distance{

    margin-top:8px;

    font-size:12px;

    color:#666;

}

/* Hide desktop distance */

.cab-distance{

    display:none !important;

}

/* Price */

.cab-price{

    width:95px;

    text-align:right;

}

.new-price{

    font-size:24px;

}

.old-price{

    font-size:11px;

}

.cab-price small{

    font-size:10px;

}

.book-btn{

    width:90px;

    height:34px;

    font-size:11px;

}

/* Footer */

.cab-footer{

    padding:8px 12px;

    height:auto;

}

.view-details{

    width:100%;

    text-align:left;

    font-size:13px;

}

}
