/* ===========================
   DROP TAXI PREMIUM CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:auto;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
    line-height:1.7;
}

.container{
    width:100%;
    padding:20px;
    margin:0;
}

/* HERO SECTION */

.hero{
    background:linear-gradient(135deg,#7a0000,#b30000);
    color:#fff;
    padding:70px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    margin-bottom:30px;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}

/* BUTTONS */

.hero-btn{
    margin-top:25px;
}

.call-btn,
.wa-btn{
    display:inline-block;
    padding:14px 30px;
    margin:10px;
    border-radius:8px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#ff9800;
}

.wa-btn{
    background:#25d366;
}

.call-btn:hover,
.wa-btn:hover{
    transform:translateY(-3px);
}

/* SECTION */

section{
    background:#fff;
    padding:30px;
    margin-bottom:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

section h2{
    color:#8b0000;
    margin-bottom:20px;
    font-size:28px;
    border-left:5px solid #8b0000;
    padding-left:15px;
}

/* BOOKING FORM */

.booking-card form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.booking-card input,
.booking-card select{
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.booking-card button{
    background:#8b0000;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    grid-column:span 2;
}

.booking-card button:hover{
    background:#a00000;
}
.booking-box{
    width:100%;
    max-width:1000px;
    margin:30px auto;
    padding:30px;
}

.booking-form{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}
/* ROUTE CARDS */

.route-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.route-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 3px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.route-card:hover{
    transform:translateY(-5px);
}

.route-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.route-details{
    padding:20px;
}

.route-details h3{
    color:#8b0000;
    margin-bottom:10px;
}

.price{
    font-size:28px;
    color:#25d366;
    font-weight:700;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#8b0000;
    color:#fff;
    padding:15px;
}

table td{
    padding:15px;
    border-bottom:1px solid #ddd;
    text-align:center;
}

table tr:hover{
    background:#fafafa;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.feature{
    background:#fafafa;
    padding:20px;
    border-radius:10px;
    border-left:5px solid #8b0000;
}

/* FAQ */

.faq-item{
    margin-bottom:20px;
}

.faq-item h3{
    color:#8b0000;
    margin-bottom:10px;
}

/* REVIEW */

.review{
    background:#fff8e1;
    padding:20px;
    border-radius:10px;
    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

.hero{
    padding:50px 20px;
}

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:16px;
}

.booking-card form{
    grid-template-columns:1fr;
}

.booking-card button{
    grid-column:span 1;
}

.call-btn,
.wa-btn{
    display:block;
    width:100%;
    margin:10px 0;
    text-align:center;
}

section h2{
    font-size:22px;
}

table{
    display:block;
    overflow-x:auto;
}

}
/* BOOKING BOX */

.booking-box{
    max-width:700px;
    margin:30px auto;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.booking-box h2{
    text-align:center;
    color:#8B0000;
    margin-bottom:25px;
    font-size:28px;
}

.booking-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.booking-form input,
.booking-form select{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
}

.booking-form input:focus,
.booking-form select:focus{
    border-color:#8B0000;
}

.booking-form button{
    grid-column:span 2;
    background:#8B0000;
    color:#fff;
    border:none;
    padding:15px;
    font-size:18px;
    font-weight:600;
    border-radius:8px;
    cursor:pointer;
}

.booking-form button:hover{
    background:#a00000;
}

/* MOBILE */

@media(max-width:768px){

.booking-form{
    grid-template-columns:1fr;
}

.booking-form button{
    grid-column:span 1;
}

.booking-box{
    padding:20px;
}

}
html,body{
    width:100%;
    overflow-x:hidden;
}

.container{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:15px !important;
}

.hero{
    width:100% !important;
    max-width:100% !important;
}

.booking-box{
    width:100% !important;
    max-width:100% !important;
}

section{
    width:100% !important;
    max-width:100% !important;
}

.booking-form{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

section,
.hero,
.booking-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

* {
    box-sizing: border-box;
}