/* =========================
   TOUR7 WORLDS V6
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f4f5f7;
color:#222;
}

header{
background:#ffffff;
padding:18px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 4px 18px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo h1{
font-size:32px;
font-weight:700;
}

.logo span{
color:#ff0066;
}

.header-right{
font-size:16px;
font-weight:600;
text-align:right;
}

.booking{
margin:25px auto;
padding:22px;
background:#fff;
border-radius:20px;
box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.booking h2{
font-size:38px;
margin-bottom:28px;
}

.trip-buttons{
display:flex;
gap:10px;
margin-bottom:28px;
}

.trip-buttons button{
flex:1;
height:56px;
border:none;
border-radius:40px;
background:#ececec;
font-size:20px;
font-weight:700;
font-weight:bold;
cursor:pointer;
}

.trip-buttons .active{
background:#ff0066;
color:#fff;
font-weight:700;
border-radius:40px;
box-shadow:0 6px 18px rgba(255,0,102,.25);
}

.input-box{
display:flex;
align-items:center;
background:#fff;
border:2px solid #ddd;
border-radius:20px;
padding:18px;
margin-bottom:15px;
}

.input-box span{
font-size:22px;
margin-right:10px;
}

.input-box input{
flex:1;
border:none;
outline:none;
font-size:18px;
background:none;
}

.swap{
text-align:center;
font-size:28px;
margin:12px 0;
color:#ff0066;
font-weight:bold;
cursor:pointer;
}

.row{
display:flex;
gap:12px;
margin-bottom:20px;
}

.row input,
.row select{
flex:1;
padding:15px;
font-size:18px;
border:2px solid #ddd;
border-radius:12px;
}

#searchBtn{
width:100%;
height:64px;
background:#ff0066;
color:white;
border:none;
border-radius:20px;
font-size:26px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

#searchBtn:hover{
background:#d80059;
}

.distance{
margin:25px 20px;
font-size:34px;
font-weight:bold;
}
/* =========================
   CAB CARDS
========================= */

.cab-card{
background:#fff;
margin:20px;
padding:20px;
border-radius:20px;
box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.cab-top{
display:flex;
justify-content:space-between;
align-items:flex-start;
}

.cab-top h3{
font-size:28px;
margin-bottom:8px;
}

.cab-top p{
color:#666;
font-size:17px;
}

.rating{
background:#FFF3CD;
padding:4px 10px;
border-radius:8px;
font-size:15px;
margin-left:8px;
}

.price{
font-size:34px;
font-weight:bold;
color:#222;
}

.cab-middle{
display:flex;
justify-content:space-between;
align-items:center;
margin:20px 0;
}

.car-image{
width:170px;
height:auto;
}

.selectBtn{
background:#ff0066;
color:white;
border:none;
padding:14px 32px;
border-radius:12px;
font-size:20px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

.selectBtn:hover{
background:#d80059;
}

.features{
display:flex;
gap:10px;
margin-bottom:18px;
flex-wrap:wrap;
}

.features div{
background:#f2f2f2;
padding:10px 15px;
border-radius:10px;
font-size:16px;
}

.offer-box{
background:#EAF8EA;
border:2px dashed #4CAF50;
padding:16px;
border-radius:12px;
font-size:24px;
font-weight:bold;
color:#2E7D32;
text-align:center;
margin-bottom:15px;
}

.offer-box small{
background:#ff0066;
color:#fff;
padding:4px 8px;
border-radius:6px;
font-size:14px;
margin-left:8px;
}

.breakdown{
text-align:center;
font-size:18px;
font-weight:bold;
color:#666;
cursor:pointer;
}

.breakdown:hover{
color:#ff0066;
}

@media(max-width:768px){

header{
flex-direction:column;
text-align:center;
gap:10px;
}

.booking{
margin:15px;
}

.booking h2{
font-size:30px;
}

.row{
flex-direction:column;
}

.cab-card{
    width:94%;
    max-width:700px;
    margin:24px auto;
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:24px;
    padding:30px 22px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    overflow:hidden;
}
margin:15px;
}

.cab-middle{
flex-direction:column;
gap:20px;
}

.car-image{
width:220px;
}

.price{
font-size:30px;
text-align:center;
}

.selectBtn{
width:100%;
}

}/* ===== Loading Screen ===== */

.loading-screen{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.95);
    z-index:9999;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:20px;
}
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,.95);
z-index:9999;
justify-content:center;
align-items:center;
flex-direction:column;
}

.loader{
width:70px;
height:70px;
border:8px solid #eee;
border-top:8px solid #ff0066;
border-radius:50%;
animation:spin 1s linear infinite;
margin-bottom:20px;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

.loading-screen h2{
font-size:48px;
margin-bottom:15px;
}

.loading-screen p{
font-size:22px;
color:#555;
text-align:center;
}
.review-header{
    background:#1f1f25;
    color:#fff;
    padding:40px 25px 90px;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;
}

.review-header h1{
    font-size:42px;
    font-weight:700;
    margin:0;
}

.review-header p{
    margin-top:10px;
    font-size:22px;
    color:#d8d8d8;
}
/* REVIEW PAGE HEADER */

.review-header{
    background:#1f1f25;
    color:#fff;
    padding:40px 25px 90px;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;
}

.review-header h1{
    font-size:42px;
    margin:0;
}

.review-header p{
    margin-top:10px;
    color:#dcdcdc;
    font-size:22px;
}
.review-card{
    width:90%;
    margin:-80px auto 30px;
    background:#fff;
    border-radius:28px;
    padding:24px;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
    position:relative;
    z-index:10;
}
/* ===== REVIEW PAGE ===== */

.review-header{
    background:#232129;
    color:#fff;
    padding:50px 25px 140px;
    border-radius:0 0 40px 40px;
}

.review-header h1{
    font-size:46px;
    margin:0;
    font-weight:700;
}

.review-header p{
    margin-top:10px;
    font-size:20px;
    color:#ddd;
}

.review-card{
    width:90%;
    margin:-90px auto 30px;
    background:#fff;
    border-radius:28px;
    padding:28px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    position:relative;
    z-index:5;
}

.review-card h2{
    font-size:22px;
    line-height:1.4;
    margin-bottom:18px;
}

.review-top{
    display:flex;
    gap:15px;
    color:#666;
    margin-bottom:18px;
    font-size:16px;
}

.pickup-drop{
    padding:18px 0;
}

.pickup,
.drop{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.pickup small,
.drop small{
    color:#999;
    font-size:12px;
    font-weight:700;
}

.pickup h3,
.drop h3{
    margin-top:4px;
    font-size:28px;
}

.fare-row{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    font-size:17px;
}

.total-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:25px 0;
}

.total-row h1{
    font-size:40px;
    margin:0;
}

.app-price{
    background:#eefbe8;
    border:2px dashed #59b95d;
    border-radius:16px;
    padding:18px;
    text-align:center;
    color:#2d7d32;
    font-size:22px;
    font-weight:700;
}

.continue-btn{
    width:100%;
    margin-top:20px;
    padding:18px;
    border:none;
    border-radius:16px;
    background:#ff0066;
    color:#fff;
    font-size:22px;
    font-weight:700;
}
/* Customer Page */

.customer-page{
    background:#f5f5f7;
    min-height:100vh;
    padding:25px;
}

.customer-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.customer-card h2{
    font-size:34px;
    margin-bottom:25px;
    color:#222;
}

.customer-card label{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#444;
    margin-top:18px;
    margin-bottom:8px;
}

.customer-card input,
.customer-card textarea{
    width:100%;
    padding:16px;
    border:2px solid #e6e6e6;
    border-radius:16px;
    font-size:17px;
    box-sizing:border-box;
    outline:none;
}

.customer-card textarea{
    height:120px;
    resize:none;
}

.customer-card input:focus,
.customer-card textarea:focus{
    border-color:#ff0066;
}

.continue-btn{
    width:100%;
    margin-top:30px;
    padding:18px;
    border:none;
    border-radius:18px;
    background:#ff0066;
    color:#fff;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
}
/* Success Page */

.success-page{
    min-height:100vh;
    background:#f5f5f7;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
}

.success-card{
    background:#fff;
    width:100%;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.success-icon{
    font-size:70px;
    margin-bottom:20px;
}

.success-card h2{
    font-size:32px;
    color:#222;
    margin-bottom:15px;
}

.success-card p{
    color:#666;
    font-size:18px;
    margin:8px 0;
}

.success-card h3{
    margin:25px 0;
    color:#ff0066;
    font-size:24px;
    font-weight:700;
}
.support-btn{
 .support-btn{
    width:100%;
    margin-top:15px;
    padding:18px;
    border:none;
    border-radius:16px;
    background:#25D366;
    color:white;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
}
}