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


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


header{

background:#111;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;

}


.logo img{

height:70px;

}


.contact a{

color:white;
text-decoration:none;
margin:5px;

}



.hero{

min-height:90vh;

background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url("../images/hero-car.jpg");

background-size:cover;
background-position:center;

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

text-align:center;
color:white;

}



.hero-content h1{

font-size:45px;
margin-bottom:15px;

}


.hero-content p{

font-size:20px;
margin-bottom:20px;

}



.booking-box{

background:white;
color:#111;

width:350px;
padding:25px;

border-radius:10px;

margin:auto;

}



.booking-box h3{

color:#d4af37;
margin-bottom:15px;

}



.booking-box input,
.booking-box select{

width:100%;
padding:12px;
margin:8px 0;

border:1px solid #ccc;
border-radius:5px;

}



.booking-box button{

width:100%;
padding:12px;

background:#d4af37;

border:none;

font-weight:bold;

cursor:pointer;

}



section{

padding:60px 8%;
text-align:center;

}



h2{

font-size:35px;
margin-bottom:35px;

}



.cards{

display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;

}



.card,
.car-card{

background:#f7f7f7;

padding:25px;

width:300px;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,.15);

}



.card h3,
.car-card h3{

color:#d4af37;

margin-bottom:15px;

}



.car-card{

padding:0 0 25px;

overflow:hidden;

}



.car-card img{

width:100%;
height:200px;

object-fit:cover;

}



.car-card p,
.car-card h4{

margin:15px;

}



.car-card h4{

color:#d4af37;
font-size:22px;

}



.routes{

background:#f5f5f5;

}



.reviews{

background:#f8f8f8;

}




.whatsapp{

position:fixed;

right:20px;
bottom:20px;

background:#25D366;

color:white;

padding:15px 20px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

}



.call-btn{

position:fixed;

left:20px;
bottom:20px;

background:#d4af37;

color:#111;

padding:15px 20px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

}



footer{

background:#000;

color:white;

text-align:center;

padding:30px;

}




@media(max-width:768px){


.hero-content h1{

font-size:32px;

}


header{

justify-content:center;

text-align:center;

}


.booking-box{

width:90%;

}


}