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

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


/* ===================== */
/* NAVBAR */
/* ===================== */

nav{

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

padding:20px 80px;

background:#111;

position:fixed;
top:0;

width:100%;

z-index:1000;

}

.logo{

color:white;
font-size:22px;
font-weight:600;

}

.nav-links{

display:flex;
gap:35px;
list-style:none;

}

nav a{

color:white;
text-decoration:none;
font-size:16px;

}

.turo-btn{

background:#c9a45c;

padding:10px 22px;

border-radius:6px;

font-weight:500;

}



/* ===================== */
/* HERO */
/* ===================== */

/* HERO SECTION */

.hero{
min-height:95vh;

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

text-align:center;
color:white;

background-size:cover;
background-repeat:no-repeat;
background-position:center 60%;

animation:heroSlider 18s infinite;
}

/* HERO BOX */

.hero-content{
background:rgba(0,0,0,0.45);
backdrop-filter:none;
padding:35px 45px;
border-radius:20px;
max-width:700px;
margin:auto;
box-shadow:0 25px 60px rgba(0,0,0,0.55);
}

/* TITLE */

.hero h1{
font-size:66px;
font-weight:700;
letter-spacing:2px;
margin-bottom:12px;
text-shadow:0 8px 30px rgba(0,0,0,0.8);
}

/* LOCATION TEXT */

.hero-tagline{
font-size:35px;
font-weight:600;
letter-spacing:1px;
margin-bottom:4px;
color:#ffffff;
}

.hero-tagline2{
font-size:20px;
font-weight:400;
letter-spacing:1px;
margin-bottom:25px;
color:#f4c542;
}

/* BUTTON */

.hero-btn{

background:linear-gradient(135deg,#e6c15a,#c9a45c);

color:white;

padding:16px 38px;

border-radius:15px;

text-decoration:none;

font-weight:600;

font-size:18px;

display:inline-block;

transition:0.3s;

box-shadow:0 8px 25px rgba(0,0,0,0.4);

margin-bottom:25px;

}

.hero-btn:hover{

transform:translateY(-3px) scale(1.03);

box-shadow:0 12px 35px rgba(0,0,0,0.6);

}

/* BACKGROUND SLIDER */

@keyframes heroSlider{

0%{
background-image:url("images/charger/charger1.jpg");
}

33%{
background-image:url("images/challenger/challenger1.jpg");
}

66%{
background-image:url("images/wrangler2021/wrangler20211.jpg");
}

100%{
background-image:url("images/cadillac/cadillac1.jpg");
}

}


/* ===================== */
/* FLEET SECTION */
/* ===================== */

.fleet{

padding:120px 80px;

text-align:center;

background:
radial-gradient(circle at 20% 20%, rgba(0,0,0,0.04), transparent 40%),
radial-gradient(circle at 80% 80%, rgba(0,0,0,0.04), transparent 40%),
#f7f7f7;

}

.fleet h2{

font-size:40px;

margin-bottom:70px;

}

.fleet{
padding:80px 20px;
text-align:center;
background:#fafafa;
}

.fleet h2{
font-size:32px;
margin-bottom:40px;
}

.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:35px;
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

.car-card{
background:white;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.06);
transition:all 0.3s ease;
width:100%;
}

.car-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.car-card img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.car-info{
padding:22px 28px;
text-align:center;
}

.car-info h3{
margin-bottom:10px;
}

.car-info p{
color:#888;
font-size:15px;
margin-top:12px !important;
}

.view-btn{
font-weight:600;
color:#111;
}



/* ===================== */
/* CAR CARD */
/* ===================== */

.car-card{

background:white;

border-radius:14px;

overflow:hidden;

text-decoration:none;

color:#222;

box-shadow:0 15px 35px rgba(0,0,0,0.12);

transition:all 0.35s ease;

}

.car-card:hover{

transform:translateY(-12px) scale(1.03);

box-shadow:0 25px 50px rgba(0,0,0,0.25);

}

.car-card img{

width:100%;

height:200px;

object-fit:cover;

}

.car-card h3{

margin-top:15px;

font-size:20px;

}

.car-card p{

color:#c9a45c;

margin-bottom:20px;

}



/* ===================== */
/* STATS */
/* ===================== */

.stats{

display:flex;

justify-content:center;

gap:120px;

padding:100px;

background:#111;

color:white;

text-align:center;

}

.stat h2{

font-size:50px;

}



/* ===================== */
/* REVIEWS */
/* ===================== */

.reviews{

padding:120px 80px;

text-align:center;

background:#f5f5f5;

}

.reviews h2{

font-size:36px;

margin-bottom:60px;

}

.review-grid{

display:flex;

gap:40px;

justify-content:center;

flex-wrap:wrap;

}

.review{

background:white;

padding:35px;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,0.1);

max-width:300px;

}



/* ===================== */
/* MAP */
/* ===================== */

.location{

padding:120px 80px;

text-align:center;

background:white;

}

.location h2{

font-size:36px;

margin-bottom:40px;

}

.map iframe{

width:100%;

height:400px;

border-radius:12px;

border:none;

box-shadow:0 10px 30px rgba(0,0,0,0.2);

}



/* ===================== */
/* FOOTER */
/* ===================== */

footer{

background:#111;

color:white;

text-align:center;

padding:50px;

line-height:1.8;

}



/* =========================
CAR PAGE FULL SCREEN GALLERY
========================= */

.gallery{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
background:black;
}

.slide{
display:none;
position:relative;
}

.slide img{
width:100%;
height:100vh;
object-fit:cover;
}

.slide{
display:none;
position:relative;
}

/* =========================
SLIDER ARROWS
========================= */

.prev,.next{

cursor:pointer;

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:60px;

color:white;

padding:22px;

background:rgba(0,0,0,0.5);

border-radius:50%;

user-select:none;

transition:0.3s;

}


/* left arrow */

.prev{
left:30px;
}


/* right arrow */

.next{
right:30px;
}


/* hover effect */

.prev:hover,.next:hover{
background:rgba(0,0,0,0.85);
transform:translateY(-50%) scale(1.1);
}


/* =========================
BOOK BUTTON
========================= */

.book-btn{

font-size:22px;

padding:18px 45px;

background:#ff4d4d;

color:white;

border:none;

border-radius:10px;

cursor:pointer;

transition:0.3s;

box-shadow:0 6px 15px rgba(0,0,0,0.3);

}


.book-btn:hover{

background:#e33c3c;

transform:scale(1.05);





/* ===================== */
/* SLIDER ARROWS */
/* ===================== */

.prev,
.next{

cursor:pointer;

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:70px;

color:white;

padding:20px 25px;

background:rgba(0,0,0,0.45);

border-radius:50%;

transition:0.3s;

z-index:10;

}

.prev{

left:30px;

}

.next{

right:30px;

}

.prev:hover,
.next:hover{

background:rgba(0,0,0,0.8);

}



/* ===================== */
/* BOOK BUTTON */
/* ===================== */

.book-btn{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);

font-size:22px;

padding:18px 45px;

background:#c9a45c;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

font-weight:600;

letter-spacing:1px;

box-shadow:0 8px 25px rgba(0,0,0,0.35);

transition:0.3s;

}

.book-btn:hover{

background:#a08347;

transform:translateX(-50%) scale(1.05);

}}
/* ================================= */
/* TABLET RESPONSIVE (iPad) */
/* ================================= */

@media (max-width:1024px){

nav{
padding:20px 40px;
}

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

.stats{
gap:60px;
padding:80px 40px;
}

.fleet{
padding:100px 40px;
}

.reviews{
padding:100px 40px;
}

.location{
padding:100px 40px;
}

}


/* ================================= */
/* MOBILE RESPONSIVE */
/* ================================= */

@media (max-width:768px){

nav{
flex-direction:column;
align-items:flex-start;
padding:20px;
}

.logo{
margin-bottom:10px;
}

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

.hero{
height:75vh;
}

.hero-content{
padding:30px;
}

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

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

.fleet{
padding:80px 20px;
}

.fleet h2{
font-size:32px;
}

.stats{
flex-direction:column;
gap:40px;
padding:60px 20px;
}

.stat h2{
font-size:40px;
}

.reviews{
padding:80px 20px;
}

.review-grid{
flex-direction:column;
align-items:center;
}

.location{
padding:80px 20px;
}

.map iframe{
height:300px;
}

.prev,.next{
font-size:40px;
padding:12px;
}

.book-btn{
font-size:18px;
padding:14px 28px;
}

}

/* =========================
MOBILE MENU
========================= */

.menu-toggle{
display:none;
font-size:30px;
color:white;
cursor:pointer;
}

/* =========================
TABLET FIX
========================= */

@media (max-width:1024px){

nav{
justify-content:center;
flex-wrap:wrap;
gap:20px;
text-align:center;
}

.logo{
width:100%;
text-align:center;
margin-bottom:10px;
}

.gallery{
height:80vh;
}

.slide img{
height:80vh;
object-fit:cover;
}

}


/* =========================
PHONE FIX
========================= */

@media (max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:48px;
left:0;
width:100%;
background:rgba(20,20,20,0.95);
backdrop-filter: blur(6px);
z-index:1000;

/* ADD THESE */
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease;
}

.nav-links.active{
max-height:300px;
}

.nav-links li{
padding:15px;
}

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

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

.gallery{
height:65vh;
}

.slide img{
height:65vh;
object-fit:cover;
}

.prev,.next{
font-size:40px;
padding:12px;
}

.book-btn{
font-size:18px;
padding:14px 30px;
bottom:40px;
}

}

/* =========================
FIX CAR GALLERY MOBILE
========================= */

@media (max-width:768px){

.gallery{
height:60vh !important;
}

.slide img{
height:60vh !important;
object-fit:cover;
}

}

/* =========================
CAR PAGE TITLE
========================= */

.gallery h1{

position:absolute;
top:20px;
left:50%;
transform:translateX(-50%);

color:white;
font-size:28px;
font-weight:600;

text-shadow:0 4px 15px rgba(0,0,0,0.9);

z-index:20;

}

/* =========================
CAR TITLE FIX
========================= */

.gallery h1{

position:absolute;
top:25px;
left:50%;

transform:translateX(-50%);

color:white;

font-size:34px;
font-weight:600;

text-shadow:0 4px 18px rgba(0,0,0,0.9);

z-index:10;

}

/* =========================
CAR PAGE TITLE FIX
========================= */

.car-title{

position:absolute;
top:25px;
left:50%;

transform:translateX(-50%);

color:#ffffff;

font-size:34px;

font-weight:700;

letter-spacing:1px;

text-shadow:0 5px 25px rgba(0,0,0,0.95);

z-index:20;

}

/* ===================== */
/* CAR PAGE TOP TITLE FIX */
/* ===================== */

body h1{
color:white;
text-align:center;
font-size:32px;
font-weight:600;
margin-top:10px;
}

/* REMOVE SPACE ABOVE GALLERY */

body{
margin:0;
padding:0;
}

.gallery{
margin-top:0;
}

/* =========================
CAR TITLE OVER IMAGE
========================= */

.car-title{

position:absolute;

top:30px;

left:50%;

transform:translateX(-50%);

color:white;

font-size:42px;

font-weight:700;

letter-spacing:2px;

text-shadow:0 6px 25px rgba(0,0,0,0.9);

z-index:10;

}

/* TOP BOOK BUTTON */

.top-book{

position:absolute;

top:30px;

right:40px;

background:#ff4d4d;

font-size:16px;

padding:12px 25px;

border-radius:8px;

z-index:20;

}

/* =========================
CAR TITLE VISIBILITY FIX
========================= */

.car-title{

position:absolute;
top:30px;
left:50%;

transform:translateX(-50%);

color:white;

font-size:42px;
font-weight:700;
letter-spacing:2px;

z-index:20;

/* strong shadow for bright images */

text-shadow:
0 2px 10px rgba(0,0,0,0.9),
0 4px 25px rgba(0,0,0,0.8),
0 0 40px rgba(0,0,0,0.7);

}

/* DARK GRADIENT FOR IMAGE TOP */

.gallery::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:120px;

background:linear-gradient(to bottom,
rgba(0,0,0,0.8),
rgba(0,0,0,0));

z-index:5;

}

/* =========================
CAR OVERLAY INFO
========================= */

.car-overlay{

position:absolute;

bottom:70px;

left:50%;

transform:translateX(-50%);

background:rgba(0,0,0,0.35);

backdrop-filter:blur(10px);

padding:14px 28px;

border-radius:30px;

color:white;

font-size:16px;

letter-spacing:0.5px;

box-shadow:0 10px 30px rgba(0,0,0,0.4);

}

stats{
display:flex;
justify-content:center;
gap:60px;
padding:60px 20px;
background:#f8f8f8;
text-align:center;
flex-wrap:wrap;
}

.stat{
max-width:200px;
}

.icon{
font-size:32px;
margin-bottom:10px;
}

.stat h2{
font-size:36px;
margin:0;
font-weight:700;
}

.stat p{
margin-top:6px;
color:#666;
font-size:16px;
}

.icon{
font-size:32px;
margin-bottom:10px;
}

.trips{
color:#4CAF50;
}

.rating{
color:#FFD700;
}

.vehicles{
color:#2196F3;
}

.reviews{
background:#f5f7fb;
padding:70px 20px;
text-align:center;
}

.review-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:40px;
}

.review{
background:white;
padding:25px;
max-width:320px;
border-radius:12px;
box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.review p{
font-size:16px;
color:#444;
}

.reviewer{
display:block;
margin-top:10px;
font-weight:600;
color:#666;
}

.stars i{
color:#FFD700;
font-size:18px;
margin-right:3px;
}
.footer{
background:#111;
color:white;
padding:30px 20px;
text-align:center;
margin-top:20px;
}

.footer-content h3{
margin:0;
font-size:22px;
}

.footer-content p{
margin:6px 0;
color:#ccc;
}

.footer-links{
margin:10px 0;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 15px;
font-weight:500;
}

.footer-links a:hover{
text-decoration:underline;
}

.copyright{
font-size:14px;
color:#888;
margin-top:20px;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 10px;
font-weight:500;
}

.footer-links a:not(:last-child)::after{
content:"|";
margin-left:10px;
color:#aaa;
}

@media (max-width:768px){


.hero{
height:60vh;
display:flex;
align-items:center;
justify-content:center;
padding:10px;
}

.hero-content{
width:85%;
max-width:290px;
margin:0 auto;
padding:20px 18px;
text-align:center;
border-radius:16px;
background:rgba(0,0,0,0.45);
backdrop-filter:none;
}

.hero h1{
font-size:34px;
line-height:1.2;
}

.hero .hero-tagLine{
font-size:26px;
font-weight:600;
line-height:1.3;
margin-top:4px;
}

.hero .hero-tagLine2{
font-size:13px;
margin-top:2px;
}

.hero .hero-btn{
margin-top:8px;
}

}

@media (max-width:768px){

.stats{
display:flex;
flex-direction:column;
align-items:center;
gap:40px;
padding:60px 20px;
}

.stat{
text-align:center;
}

}

@media (max-width:768px){

.hero{
display:flex;
align-items:center;
justify-content:center;
}

.hero-content{
width:fit-content;
max-width:90%;
margin:0 auto;
padding:25px 30px;
}

}

@media (min-width:768px) and (max-width:1024px){

.car-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.car-card img{
height:260px;
}

}

@media (min-width:768px) and (max-width:1024px){

.container{
max-width:95%;
padding:0 20px;
}

}

@media (min-width:768px) and (max-width:1024px){

.car-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:35px;
padding:30px 40px;
}

.car-card{
width:100%;
max-width:none;
}

.car-card img{
height:280px;
object-fit:cover;
}

}

@media (max-width:768px){

.hero{
min-height:100vh;
background-size: cover;
background-repeat: no-repeat;
background-position: center bottom;
}

}

@media (max-width:768px){

nav{
padding:12px 16px;
}

.logo{
font-size:18px;
}

}

/* MOBILE NAVBAR FIX */
@media (max-width:768px){

nav{
display:flex;
align-items:center;
justify-content:center;
height:48px;
padding:0px 16px;
position:relative;
}

nav h1{
font-size:18px;
margin:0;
}

.menu-toggle{
position:absolute;
left:16px;
top:50%;
transform:translateY(-50%);
font-size:22px;
color:white;
line-height:1;
}}