/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#333;
overflow-x:hidden;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#111;
z-index:999;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-size:28px;
font-weight:800;
color:#f7b500;
}

.header-call-btn{
background:#f7b500;
color:#000;
padding:10px 20px;
border-radius:30px;
text-decoration:none;
font-weight:700;
}

/* HERO */

.heronew{
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80');

background-size:cover;
background-position:center;
min-height:100vh;
padding:100px 0 60px;
color: #000;
text-align:center;
}

.hero{
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80');

background-size:cover;
background-position:center;
min-height:100vh;
padding:100px 0 60px;
color: #000;
text-align:center;
}

.hero h1{
font-size:55px;
font-weight:800;
margin-bottom:10px;
}

.hero p{
font-size:20px;
margin-bottom:25px;
}

.features{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:25px;
font-size:18px;
font-weight:600;
}

/* BUTTONS */

.btn{
display:inline-block;
padding:14px 30px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.btn-call{
background:#f7b500;
color:#000;
}

.btn-whatsapp{
background:#25D366;
color:#333;
}

/* FARE CALCULATOR */

.fare-calculator{
background:#fff;
padding:25px;
border-radius:25px;
color: #111;
max-width:1100px;
margin:30px auto;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.fare-calculator h3{
text-align:center;
font-size:40px;
font-weight:800;
color:#111;
margin-bottom:25px;
}

.fare-table{
width:100%;
border-collapse:collapse;
}

.fare-table td{
padding:8px;
}

.fare-table input,
.fare-table select{
width:100%;
height:60px;
padding:0 18px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
font-family:'Poppins',sans-serif;
}

.calc-btn{
width:100%;
height:60px;
background:#f7b500;
border:none;
border-radius:12px;
font-size:20px;
font-weight:700;
cursor:pointer;
}

/* RESULT */

.result{
display:none;
margin-top:20px;
}

.result-card{
background:#fff;
padding:25px;
border-radius:25px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
max-width:700px;
margin:auto;
}

.vehicle-title{
text-align:center;
font-size:34px;
font-weight:800;
margin-bottom:10px;
}

.vehicle-rate{
text-align:center;
font-size:18px;
color:#666;
margin-bottom:20px;
}

.fare-box{
background:#f7b500;
padding:25px;
border-radius:20px;
text-align:center;
margin-bottom:20px;
}

.fare-box small{
display:block;
font-size:18px;
margin-bottom:10px;
}

.fare-box h2{
font-size:60px;
font-weight:800;
margin:0;
}

.breakdown-row{
display:flex;
justify-content:space-between;
align-items:right;
padding:15px 0;
border-bottom:1px solid #eee;
gap:15px;
}

.breakdown-row span:first-child{
font-weight:600;
width:130px;
}

.breakdown-row span:last-child{
flex:1;
text-align:right;
word-break:break-word;
}

.total-row{
display:flex;
justify-content:space-between;
align-items:center;
padding-top:20px;
font-size:32px;
font-weight:800;
color:#f7b500;
}

.action-buttons{
display:flex;
gap:12px;
margin-top:25px;
}

.action-buttons a{
flex:1;
padding:15px;
border-radius:12px;
text-align:center;
text-decoration:none;
font-weight:700;
}

.result-call-btn{
background:#f7b500;
color:#333;
}

.wa-btn{
background:#25D366;
color:#333;
}

.note{
margin-top:15px;
font-size:13px;
color:#777;
text-align:center;
line-height:1.7;
}

/* SECTIONS */

section{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:40px;
font-weight:800;
margin-bottom:15px;
}

.section-subtitle{
text-align:center;
color:#777;
margin-bottom:40px;
}

/* SERVICES */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* FLEET */

.fleet{
background:#f8f8f8;
}

.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.vehicle-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.vehicle-card img{
width:100%;
height:220px;
object-fit:cover;
}

.vehicle-info{
padding:20px;
}

/* CONTACT */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.contact-box{
background:#f8f8f8;
padding:25px;
border-radius:15px;
}

/* FOOTER */

footer{
background:#111;
color:#333;
padding:50px 0;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:25px;
}

.copyright{
text-align:center;
margin-top:20px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.1);
}

/* MOBILE */

@media(max-width:768px){

.logo{
font-size:20px;
}

.header-call-btn{
font-size:13px;
padding:8px 15px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.features{
font-size:14px;
gap:10px;
}

.fare-calculator{
padding:15px;
}

.fare-calculator h3{
font-size:26px;
}

.fare-table,
.fare-table tbody,
.fare-table tr,
.fare-table td{
display:block;
width:100%;
}

.fare-table td{
padding:6px 0;
}

.vehicle-title{
font-size:26px;
}

.vehicle-rate{
font-size:16px;
}

.fare-box h2{
font-size:42px;
}

.breakdown-row{
font-size:14px;
}

.breakdown-row span:first-child{
width:90px;
}

.total-row{
font-size:24px;
}

.action-buttons{
flex-direction:row;
}

.action-buttons a{
font-size:14px;
padding:12px;
}

.contact-grid,
.footer-grid{
grid-template-columns:1fr;
}


.breakdown-row span{
color:#333 !important;
}

.breakdown-row span:first-child{
color:#333 !important;
font-weight:600;
}

.breakdown-row span:last-child{
color:#333 !important;
text-align:right;
flex:1;
word-break:break-word;
}

.vehicle-title,
.vehicle-rate,
.total-row,
.note{
color:#333 !important;
}

}
.action-buttons{
display:flex;
gap:15px;
margin-top:25px;
}

.result-call-btn,
.wa-btn{
flex:1;
height:60px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
border-radius:15px;
text-decoration:none;
font-size:20px;
font-weight:700;
transition:.3s;
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.result-call-btn{
background:linear-gradient(135deg,#111,#333);
color:#fff;
}

.result-call-btn:hover{
transform:translateY(-3px);
}

.wa-btn{
background:linear-gradient(135deg,#25D366,#1ebe5d);
color:#fff;
}

.wa-btn:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.action-buttons{
gap:10px;
}

.result-call-btn,
.wa-btn{
font-size:18px;
height:55px;
}
.result-car-image{
display:block;
width:100%;
max-width:260px;
height:auto;
margin:0 auto 15px;
object-fit:contain;
}

.vehicle-title{
font-size:42px;
font-weight:800;
text-align:center;
color:#333;
margin-bottom:8px;
}

.vehicle-rate{
text-align:center;
font-size:24px;
color:#666;
margin-bottom:20px;
}

}