*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial;
background:linear-gradient(135deg,#0f172a,#1e293b,#020617);
background-size:400% 400%;
animation:gradientMove 15s ease infinite;
color:#222;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

header{
background:black;
color:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
z-index:1000;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-size:16px;
}

nav a:hover{
color:#ddd;
}

.logo img{
height:50px;
}

.menu-icon{
font-size:28px;
cursor:pointer;
color:white;
}

#mobileMenu{
position:absolute;
top:70px;
right:20px;
background:white;
display:none;
flex-direction:column;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
z-index:1000;
border-radius:8px;
min-width:180px;
}

#mobileMenu a{
padding:12px 20px;
text-decoration:none;
color:black;
border-bottom:1px solid #eee;
font-weight:500;
}

#mobileMenu a:hover{
background:#f4f4f4;
}

.section{
padding:80px 20px;
text-align:center;
}

.section h2{
font-size:28px;
margin-bottom:20px;
}

.section p{
font-size:16px;
margin:10px 0;
}

.brand{
display:flex;
align-items:center;
gap:12px;
}

.brand img{
height:50px;
width:50px;
border-radius:50%;
object-fit:cover;
background:white;
padding:3px;
}

.brand-text h1{
font-size:20px;
margin:0;
font-weight:bold;
}

.brand-text p{
font-size:12px;
margin:0;
color:#ddd;
}

.hero{
position:relative;
height:500px;

display:flex;
flex-direction:column;   /* ADD THIS */

align-items:center;
justify-content:center;

text-align:center;
color:white;

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:1;
}

.hero h2{
font-size:42px;
font-weight:bold;
margin-bottom:12px;
}

.hero p{
font-size:20px;
margin:5px 0;
}

.hero h2,
.hero p{
text-shadow:0 3px 10px rgba(0,0,0,0.7);
}

.booking{
padding:60px;
text-align:center;
background:rgba(255,255,255,0.9);
}

.booking-form{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-top:30px;
}

.booking-form select,
.booking-form input{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
min-width:160px;
}

.booking-form button{
padding:12px 25px;
background:black;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
font-size:15px;
}

#booking-result{

margin-top:30px;
font-size:18px;
color:green;

}


.cars{
padding:70px;
text-align:center;
}

.car-list{
display:flex;
justify-content:center;
gap:25px;
margin-top:30px;
flex-wrap:wrap;
}

.car{
background:white;
padding:20px;
border-radius:10px;
width:180px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.car:hover{
transform:scale(1.05);
transition:0.3s;
}

.booking-form button:hover{
background:#333;
}

.about-section{
padding:80px 20px;
background:rgba(255,255,255,0.92);
text-align:center;
}

.about-title{
font-size:32px;
margin-bottom:40px;
}

.about-container{
max-width:800px;
margin:auto;
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:left;
line-height:1.7;
}

.about-container h3{
font-size:24px;
margin-bottom:15px;
}

.brand-color{
color:#ff6b00;
font-weight:bold;
}

.about-container p{
margin-bottom:20px;
color:#444;
}

.focus-list{
margin:15px 0 25px 20px;
}

.focus-list li{
margin:8px 0;
font-weight:500;
color:#333;
}

.about-ending{
font-weight:500;
color:#222;
}

.services-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.service-card{
background:white;
padding:25px;
border-radius:10px;
width:230px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
text-align:center;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-card h3{
margin-bottom:10px;
font-size:18px;
}

.service-card p{
font-size:14px;
color:#555;
}

.contact{
background:linear-gradient(135deg,#dcdcdc,#f1f1f1);
padding:60px 20px;
border-radius:20px;
margin:20px;
}
.contact-box{
background:white;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
border-radius:15px;
}

.faq-item{
max-width:800px;
margin:15px auto;
border-bottom:1px solid #ddd;
padding:10px;
}

.faq-question{
display:flex;
justify-content:space-between;
cursor:pointer;
font-weight:bold;
font-size:16px;
}

.faq-answer{
display:none;
padding-top:10px;
font-size:15px;
color:#555;
}

.arrow{
font-size:18px;
}

.contact-info{
display:flex;
justify-content:center;
gap:40px;
margin-top:20px;
flex-wrap:wrap;
}

.contact-item{
display:flex;
align-items:center;
gap:10px;
font-size:18px;
font-weight:500;
}

.icon{
font-size:22px;
}

.contact-box{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-row{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
color:#444;
}

.contact-icon{
font-size:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

footer{
background:black;
color:white;
text-align:center;
padding:20px;
}


.stars{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:transparent url("https://www.transparenttextures.com/patterns/stardust.png") repeat;

z-index:-1;

animation:starsMove 60s linear infinite;
opacity:0.5;
}

@keyframes starsMove{

from{
background-position:0 0;
}

to{
background-position:1000px 1000px;
}

}


.star-background{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;

background:#0b1120;
overflow:hidden;
}

.star-background::before{
content:"";
position:absolute;
top:0;
left:0;
width:200%;
height:200%;

background-image:
radial-gradient(2px 2px at 50px 60px, white, transparent),
radial-gradient(2px 2px at 200px 150px, white, transparent),
radial-gradient(2px 2px at 350px 300px, white, transparent),
radial-gradient(2px 2px at 500px 500px, white, transparent),
radial-gradient(2px 2px at 650px 200px, white, transparent);

animation:starsMove 120s linear infinite;
opacity:0.6;
}

@keyframes starsMove{
from{
transform:translateY(0);
}
to{
transform:translateY(-1000px);
}
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

header{
padding:12px 15px;
}

.brand img{
height:40px;
width:40px;
}

.brand-text h1{
font-size:18px;
}

.brand-text p{
font-size:11px;
}

.menu-icon{
font-size:26px;
}

/* HERO SECTION */

.hero{
height:420px;
padding:20px;
}

.hero h2{
font-size:26px;
}

.hero p{
font-size:16px;
}

/* BOOKING FORM */

.booking{
padding:30px 15px;
}

.booking-form{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-top:30px;
}

/* MOBILE FIX */

@media (max-width:768px){

/* .booking-form{
flex-direction:column;
align-items:center;
width:100%;
} */

.booking-form{
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
}

.booking-form label{
width:90%;
text-align:left;
font-weight:600;
font-size:14px;
}

/* .booking-form select,
.booking-form input{
width:90%;
height:50px;
font-size:16px;
padding:10px;
border-radius:8px;
border:1px solid #ccc;
background:white;
} */

.booking-form select,
.booking-form input{
height:50px;
width:90%;
max-width:320px;
padding:10px;
font-size:16px;
border-radius:8px;
}

.booking-form input[type="date"]{
background:white url("https://cdn-icons-png.flaticon.com/512/747/747310.png") no-repeat right 10px center;
background-size:18px;
}

.booking-form input[type="time"]{
background:white url("https://cdn-icons-png.flaticon.com/512/992/992700.png") no-repeat right 10px center;
background-size:18px;
}

.booking-form button{
width:90%;
padding:15px;
font-size:18px;
}

}

/* VEHICLES */

.car-list{
gap:15px;
}

.car{
width:90%;
}

/* SERVICES */

.services-container{
flex-direction:column;
align-items:center;
}

.service-card{
width:90%;
}

/* ABOUT / FAQ / LEGAL */

.about-container{
padding:25px;
}

.about-title{
font-size:26px;
}

.about-container h3{
font-size:20px;
}

/* CONTACT */

.contact-info{
flex-direction:column;
gap:15px;
}

.contact-item{
font-size:16px;
}

/* WHATSAPP BUTTON */

.whatsapp{
padding:12px 16px;
font-size:14px;
}

}
@media (max-width:768px){

.booking-form select,
.booking-form input{
width:90%;
height:55px;
font-size:17px;
}

.booking-form input[type="date"],
.booking-form input[type="time"]{
color:#333;
background:white;
}

}



.input-group{
position:relative;
width:90%;
max-width:320px;
}

.input-group input{
width:100%;
height:50px;
padding:12px;
font-size:16px;
border:1px solid #ccc;
border-radius:8px;
background:white;
}


.booking-form select,
.booking-form input{
width:220px;
height:50px;
padding:12px;
font-size:16px;
border-radius:8px;
border:1px solid #ccc;
background:white;
}

/* Mobile */
@media (max-width:768px){
.booking-form select,
.booking-form input{
width:90%;
}
}

/* Make placeholder bold & dark */
.booking-form input::placeholder{
color:#000;
font-weight:600;
opacity:1;
}

.booking-form input{
font-weight:600;
color:#000;
}
.booking-form select{
font-weight:600;
color:#000;
}


