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

body{
font-family:'Poppins',sans-serif;
background:#0f0f0f;
color:#ffffff;
line-height:1.6;
}

a{
text-decoration:none;
color:white;
}

img{
max-width:100%;
display:block;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(0,0,0,0.95);
z-index:1000;
padding:15px 0;
backdrop-filter:blur(10px);
}

nav{
width:90%;
max-width:1300px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:70px;
width:auto;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav ul li a{
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:#d4af37;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('../images/1.jpg');
background-size:cover;
background-position:center;
}

.hero h1{
font-size:64px;
font-weight:800;
margin-bottom:15px;
}

.hero h2{
font-size:28px;
font-weight:400;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:700px;
margin-bottom:30px;
}

.btn{
background:#d4af37;
color:#000;
padding:15px 35px;
border-radius:50px;
font-weight:700;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}
section{
padding:100px 20px;
}

section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#d4af37;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.service-card{
background:#1a1a1a;
padding:30px;
border-radius:20px;
text-align:center;
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card h3{
margin-bottom:15px;
color:#d4af37;
}

.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1300px;
margin:auto;
}

.fleet-card{
background:#1a1a1a;
border-radius:20px;
overflow:hidden;
transition:.3s;
}

.fleet-card:hover{
transform:translateY(-8px);
}

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

.fleet-card h3{
padding:20px 20px 10px;
color:#d4af37;
}

.fleet-card p{
padding:0 20px 20px;
}

/* GALLERY */

.slider{
position:relative;
max-width:1200px;
height:650px;
margin:auto;
overflow:hidden;
border-radius:20px;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease;
}

.slide.active{
opacity:1;
}
/* REVIEWS */

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.review-card{
background:#1a1a1a;
padding:30px;
border-radius:20px;
text-align:center;
}

.review-card p{
margin-bottom:20px;
}

.review-card h4{
color:#d4af37;
font-size:22px;
}

/* BOOKING */

#booking form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

#booking input,
#booking textarea{
padding:15px;
border:none;
border-radius:12px;
font-size:16px;
font-family:'Poppins',sans-serif;
}

#booking textarea{
min-height:140px;
resize:vertical;
}

#booking button{
background:#d4af37;
color:#000;
border:none;
padding:15px;
border-radius:50px;
font-weight:700;
cursor:pointer;
font-size:16px;
transition:.3s;
}

#booking button:hover{
transform:translateY(-3px);
}

/* CONTACT */

.contact-box{
max-width:800px;
margin:auto;
text-align:center;
font-size:20px;
display:flex;
flex-direction:column;
gap:20px;
}

/* FOOTER */

footer{
padding:30px;
text-align:center;
background:#000;
margin-top:50px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
font-weight:700;
z-index:9999;
box-shadow:0 5px 20px rgba(0,0,0,.3);
}

/* MOBILE */

@media(max-width:900px){

nav{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

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

.hero h2{
font-size:22px;
}

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

.slider{
height:400px;
}

section h2{
font-size:34px;
}

}

@media(max-width:480px){

.logo img{
height:55px;
}

.hero{
padding-top:120px;
}

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

.hero h2{
font-size:18px;
}

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

.slider{
height:250px;
}

section{
padding:70px 15px;
}

section h2{
font-size:28px;
}

.contact-box{
font-size:16px;
}

.whatsapp{
bottom:15px;
right:15px;
padding:12px 16px;
}

}

