html, body{
margin:0;
padding:0;
overflow-x:hidden;
}

*{
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:100vh;

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(250px, 1fr));
gap:35px;
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

/* ===== DESKTOP FIX (bigger cards on Mac) ===== */
@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* ===== iPad Mini FIX (force iPad Air layout) ===== */
@media (min-width: 768px) and (max-width: 900px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.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{
background:red;
padding:22px 28px;
text-align:center;
}

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

.car-info p{
color:#888;
font-size:15px;
margin-top:20px !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:white;
z-index:1;
}

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

/* =========================
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:25px;
padding:10px 20px;
background:#ff4d4d;
color:white;
border:none;
border-radius:25px;
cursor:pointer;
transition:0.3s;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
font-weight:600;
display:inline-block;
width:auto;
}


.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:translateY(-2px);
box-shadow:0 12px 26px rgba(0,0,0,0.45);

}}
/* ================================= */
/* 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:767px){

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{
width:100%;
height:auto;
background:#ffffff;
}

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

}


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

@media (max-width:767px){

.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{
width:100%;
height:auto;
background:#ffffff;
}

.slide img{
width:100%;
height:auto;
max-height:75vh;
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:767px){

.gallery{
width:100%;
height:auto;
background:#ffffff;
}

.slide img{
width:100%;
height:auto;
max-height:75vh;
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: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);
}

/* ===================== */
/* 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: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);
}

/* TOP BOOK BUTTON */

.top-book{
position:absolute;

top:34px;   /* move up to align with car title */
right:60px;    /* align with the right edge nicely */

background:linear-gradient(135deg,#ff4d4d,#ff1f1f);
color:white;

font-size:18px;
font-weight:600;
letter-spacing:0.5px;

padding:14px 32px;
border-radius:35px;

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

z-index:100;

transition:all 0.25s ease;
}

/* PHONE + TABLET FIX */

@media (max-width:1024px){

.top-book{
top:30px;
right:20px;
}

}

.top-book:hover{
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(0,0,0,0.45);
}

/* =========================
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:767px){


.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-tagline{
font-size:22px;
font-weight:600;
line-height:1.3;
margin-top:4px;
}

.hero-tagline2{
font-size:18px;
margin-top:2px;
}

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

}

@media (max-width:767px){

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

.stat{
text-align:center;
}

}

@media (max-width:767px){

.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:767px){

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

}

@media (max-width:767px){

nav{
padding:12px 16px;
}

.logo{
font-size:18px;
}

}

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

@media (max-width:767px){

nav{
display:flex;
align-items:center;
justify-content:center;
height:68px;   /* taller black bar */
padding:0 20px;
position:relative;
}

.logo{
font-size:24px;  /* bigger JSA Auto Group text */
font-weight:600;
transform:translateY(20%);
}

.menu-toggle{
position:absolute;
left:18px;
top:45%;
transform:translateY(-50%);
font-size:40px;  /* bigger hamburger */
color:white;
cursor:pointer;
}

}

}

@media (max-width:767px){

.car-title{
font-size:60px;
top:20px;
}

.top-book{
font-size:16px;
padding:12px 24px;
right:20px;
top:20px;
}

.car-specs{
font-size:15px;
padding:10px 18px;
bottom:30px;
}

}

car-page{
background:white;
min-height:100vh;
padding-top:20px;
}

.car-page{
touch-action: pan-y;
}

/* LANDSCAPE FULL SCREEN FIX */
@media (max-width:1024px) and (orientation:landscape){

.car-page{
display:block;
padding:0;
}

.gallery{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
background:white;
z-index:1;
}

.slide{
display:none;
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
}

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

}

@media (max-width:1024px) and (orientation:landscape){

.slide img{
max-height:100vh;
}

}

/* MOBILE + TABLET: hide arrows and enable swipe */
@media (max-width:1024px){

.prev,
.next{
display:none !important;
}

}

.image-counter{
position:absolute;
bottom:20px;
right:20px;
background:rgba(0,0,0,0.6);
color:white;
padding:6px 12px;
border-radius:20px;
font-size:14px;
font-weight:500;
}

/* Hide arrows on touch devices (phones + tablets) */
@media (hover: none) and (pointer: coarse) {

.prev,
.next{
display:none !important;
}

}

@media (max-width:1024px) and (orientation:landscape){

.car-page{
display:block;
padding:0;
}

.gallery{
width:100%;
height:100vh;
margin:0;
}

}

/* FIX RIGHT SCROLL BAR ON MOBILE & IPAD */
html, body{
width:100%;
max-width:100%;
overflow-x:hidden;
}

.gallery{
width:100%;
max-width:100%;
}

/* MOBILE HERO TEXT FIX */
@media (max-width:767px){

.hero-tagline{
font-size:24px;
font-weight:600;
}

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

}

/* ===== CAR IMAGE PAGE FIX ===== */

/* remove side scrolling */
html, body{
overflow-x:hidden;
}

/* gallery container */
.gallery{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

/* each slide */
.slide{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
display:none;
}

/* slide image */
.slide img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* fix mobile & ipad */
@media (max-width:1024px){

.gallery{
width:100%;
height:100vh;
overflow:hidden;
}

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

}

/* FIX CAR IMAGE WIDTH ON PHONE + IPAD ONLY */

@media (max-width:1024px){

.car-page{
display:block;
width:100%;
height:100vh;
margin:0;
padding:0;
overflow:hidden;
}

.gallery{
width:100vw;
height:100vh;
margin:0;
padding:0;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

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

}

/* FORCE CAR DETAILS ON IMAGE */

@media (max-width:1024px){

.car-overlay{
position:absolute !important;
bottom:80px !important;
left:50% !important;
transform:translateX(-50%) !important;
z-index:20 !important;
}

.image-counter{
position:absolute !important;
bottom:25px !important;
right:20px !important;
z-index:20 !important;
}

}

/* FIX CAR PAGE FOR PHONES & IPADS */
@media (max-width:1024px){

.gallery{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

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

/* overlay on image */
.car-overlay{
position:absolute;
bottom:60px;
left:50%;
transform:translateX(-50%);
z-index:20;
}

/* image counter */
.image-counter{
position:absolute;
bottom:20px;
right:20px;
z-index:20;
}

}

/* MOBILE + TABLET CAR PAGE (TURO STYLE) */
@media (max-width:1024px){

.gallery{
position:static;
height:auto;
display:block;
padding:10px;
}

.slide{
position:static;
display:block;
margin-bottom:14px;
}

.slide img{
width:100%;
height:auto;
object-fit:cover;
border-radius:12px;
}

/* hide slider controls */
.prev,
.next,
.image-counter,
.car-overlay{
display:none;
}

}

/* MOBILE + TABLET CAR PAGE (STACKED IMAGES) */
@media (max-width:1024px){

.gallery{
position:static;
height:auto;
display:block;
padding:10px;
}

/* force all slides visible */
.slide{
position:static !important;
display:block !important;
margin-bottom:14px;
}

/* images */
.slide img{
width:100%;
height:auto;
object-fit:cover;
border-radius:12px;
}

/* hide slider controls */
.prev,
.next,
.image-counter,
.car-overlay{
display:none !important;
}

}

/* MOBILE + TABLET CAR PAGE (STACKED IMAGES) */
@media (max-width:1024px){

.gallery{
position:static;
height:auto;
display:block;
padding:10px;
}

/* force all slides visible */
.slide{
position:static !important;
display:block !important;
margin-bottom:14px;
}

/* images */
.slide img{
width:100%;
height:auto;
object-fit:cover;
border-radius:12px;
}

/* hide slider controls */
.prev,
.next,
.image-counter,
.car-overlay{
display:none !important;
}

}

@media (max-width:1024px){

.gallery{
display:block;
height:auto;
padding:10px;
}

.slide{
display:block !important;
position:static !important;
margin-bottom:14px;
}

.slide img{
width:100%;
height:auto;
border-radius:12px;
cursor:pointer;
}

/* hide desktop slider controls */
.prev,
.next,
.image-counter,
.car-overlay{
display:none;
}

}

@media (max-width:1024px){

.gallery{
display:block;
height:auto;
padding:10px;
}

.slide{
display:block !important;
position:static !important;
margin-bottom:16px;
}

.slide img{
width:100%;
height:auto;
border-radius:12px;
cursor:pointer;
}

.prev,
.next,
.image-counter,
.car-overlay{
display:none !important;
}

}

/* FORCE MOBILE + TABLET STACKED GALLERY */
@media (max-width:1024px){

body{
overflow-y:auto !important;
height:auto !important;
}

.car-page{
display:block !important;
height:auto !important;
min-height:100vh !important;
overflow-y:auto !important;
}

.gallery{
display:block !important;
height:auto !important;
padding:10px !important;
}

.slide{
display:block !important;
position:relative !important;
margin-bottom:16px !important;
}

.slide img{
width:100% !important;
height:auto !important;
border-radius:12px !important;
}

.prev,
.next,
.image-counter,
.car-overlay{
display:none !important;
}

}

.car-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:white;
max-width:900px;
margin:0 auto;
}

.car-title{
font-size:28px;
font-weight:700;
color:#111;
}

.top-book{
background:#ff4d4d;
color:white;
padding:10px 22px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:95%;
max-height:90%;
border-radius:10px;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
}

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:95%;
max-height:90%;
border-radius:10px;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
}

/* ENABLE PINCH ZOOM FOR CAR GALLERY (PHONE + IPAD) */

.slide img{
touch-action: pan-y pinch-zoom;
cursor: zoom-in;
}

.gallery img{
touch-action: pan-y pinch-zoom;
}

.fleet-tagline{
text-align:center;
font-size:25px;
color:#c9a45c;
margin-bottom:12px;
letter-spacing:1px;
font-weight:500;
}


.fleet-header{
max-width:1200px;
margin:0 auto 40px auto;
padding:0 20px;
text-align:center;
}

.fleet-tagline{
font-size:22px;
color:#c9a45c;
letter-spacing:1px;
margin-top:6px;
margin-bottom:8px;
}

.fleet-header h2{
font-size:36px;
font-weight:700;
}

/* FIX spacing for phones */
@media (max-width:600px){

.fleet-header{
margin-top:10px;
padding-top:5px;
}

.fleet-tagline{
font-size:16px;
margin-bottom:4px;
}

}

/* FIX iPad tagline hiding under navbar */
@media (min-width:768px) and (max-width:1024px){

.fleet-header{
margin-top:55px;
}

}

/* PHONE FIX – remove extra space under navbar */
@media (max-width:600px){

.fleet-header{
margin-top:-20px;
padding-top:0;
}

.fleet-tagline{
margin-top:0;
margin-bottom:6px;
font-size:15px;
}

}

/* Reduce space under navbar on phones */
@media (max-width:600px){

.fleet{
padding-top:10px !important;
}

.fleet-header{
margin-top:6px !important;
}

}

.fleet-tagline{
font-weight:700;
letter-spacing:0.5px;
}

/* ===== HERO TEXT (ONLY TABLET + DESKTOP) ===== */
@media (min-width: 768px) {

  .hero h1 {
    color: white;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .hero-tagline2 {
    color: #c9a45c;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 30px;
  }

  .hero-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
  }

}

/* ===== LOCK MOBILE HERO (DO NOT TOUCH) ===== */
@media (max-width: 767px) {

  .hero h1 {
    all: unset;
    font-size: 34px;
    font-weight: 700;
    color: white;
    text-align: center;
  }

  .hero-tagline2 {
    all: unset;
    font-size: 18px;
    color: #f4c542;
    display: block;
    text-align: center;
    margin-top: 5px;
  }

}

/* Hide desktop hero on phones */
@media (max-width: 767px) {
  .desktop-hero {
    display: none;
  }
}

/* ===== HIDE HERO ON PHONES COMPLETELY ===== */
@media (max-width: 767px) {
  .hero {
    display: none;
  }
}

/* ===== REDUCE SPACE AFTER HERO (NOT ON PHONES) ===== */
@media (min-width: 768px) {

  .fleet {
    padding-top: 40px !important;
  }

  .fleet-header {
    margin-top: 0 !important;
  }

}