/* ── VARIABLES ── */
:root{
  --yellow:#f5a623;
  --yellow-dark:#e09510;
  --dark:#12131f;
  --dark2:#1e1f2e;
  --cream:#fdf6ec;
  --text:#333;
  --muted:#777;
  --border:#e5e5e5;
  --radius:10px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;font-size:15px;color:#1a1a2e;background:#fff;overflow-x:hidden}

/* ── TOP BAR ── */
.topbar{
  background:var(--dark);color:#ccc;
  display:flex;justify-content:space-between;align-items:center;
  padding:0.55rem 5%;font-size:0.78rem;
}
.topbar-left{display:flex;gap:1.8rem;align-items:center}
.topbar-left span{display:flex;align-items:center;gap:0.4rem}
.topbar-right{display:flex;gap:1rem;align-items:center}
.topbar-right a{color:#ccc;text-decoration:none;font-size:0.78rem}
.topbar-right a:hover{color:var(--yellow)}
.social-icons{display:flex;gap:0.5rem;margin-left:0.8rem}
.social-icons a{
  width:26px;height:26px;border:1px solid #444;border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  color:#ccc;text-decoration:none;font-size:0.7rem;transition:all 0.2s;
}
.social-icons a:hover{border-color:var(--yellow);color:var(--yellow)}

/* ── NAV ── */
nav{
  background:#fff;border-bottom:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
  padding:0.9rem 5%;position:sticky;top:0;z-index:200;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo{display:flex;align-items:center;gap:0.3rem}
.logo-icon{
  background:var(--yellow);border-radius:8px;
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;font-weight:900;color:#fff;letter-spacing:-1px;
}
.logo-text{font-size:1.2rem;font-weight:800;color:var(--dark)}
.logo-sub{font-size:0.6rem;color:var(--muted);font-weight:400;display:block;letter-spacing:1px}
.nav-links{display:flex;gap:0.2rem;list-style:none;align-items:center}
.nav-links a{
  color:var(--dark);text-decoration:none;font-size:0.88rem;font-weight:500;
  padding:0.5rem 0.9rem;border-radius:6px;transition:all 0.2s;
  display:flex;align-items:center;gap:0.3rem;
}
.nav-links a:hover,.nav-links a.active{color:var(--yellow)}
.nav-links a.active{border-bottom:2px solid var(--yellow);border-radius:0;padding-bottom:0.4rem}
.nav-actions{display:none;align-items:center;gap:0.8rem}
.nav-icon-btn{
  background:none;border:none;cursor:pointer;color:var(--dark);
  font-size:1.1rem;padding:0.4rem;position:relative;
}
.cart-badge{
  position:absolute;top:-2px;right:-2px;
  background:var(--yellow);color:#fff;
  width:16px;height:16px;border-radius:50%;
  font-size:0.6rem;display:flex;align-items:center;justify-content:center;font-weight:700;
}
.hamburger{
  background:none;border:1px solid var(--border);padding:0.4rem 0.6rem;
  border-radius:6px;cursor:pointer;color:var(--dark);font-size:1.1rem;
}

/* ── HERO ── */
#hero{
  position:relative;height:88vh;min-height:580px;
  background:url('https://images.unsplash.com/photo-1563720360172-67b8f3dce741?w=1800&q=85') center/cover no-repeat;
  display:flex;align-items:center;overflow:hidden;
}
#hero::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(10,10,20,0.82) 0%,rgba(10,10,20,0.4) 60%,transparent 100%);
}
.hero-content{position:relative;z-index:2;padding:0 5%;max-width:600px}
.hero-label{
  color:var(--yellow);font-size:0.8rem;font-weight:600;letter-spacing:0.15em;
  text-transform:uppercase;margin-bottom:1rem;
}
.hero-title{
  font-size:clamp(2.5rem,5vw,4.2rem);font-weight:900;color:#fff;
  line-height:1.05;margin-bottom:1.5rem;text-transform:uppercase;
}
.hero-title .yellow{color:var(--yellow)}
.hero-actions{display:flex;align-items:center;gap:1.5rem;margin-top:1.5rem}
.btn-yellow{
  background:var(--yellow);color:#fff;border:none;
  padding:0.85rem 2rem;border-radius:8px;font-weight:700;font-size:0.88rem;
  cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:0.5rem;
  transition:background 0.2s,transform 0.15s;
}
.btn-yellow:hover{background:var(--yellow-dark);transform:translateY(-1px)}
.watch-video{
  display:flex;align-items:center;gap:0.8rem;
  color:#fff;text-decoration:none;font-size:0.88rem;font-weight:500;
}
.play-btn{
  width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,0.15);border:2px solid rgba(255,255,255,0.4);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;color:#fff;transition:background 0.2s;
  backdrop-filter:blur(4px);
}
.play-btn:hover{background:rgba(245,166,35,0.4)}
.hero-nav-btns{
  position:absolute;right:3%;top:50%;transform:translateY(-50%);
  display:flex;flex-direction:column;gap:0.6rem;z-index:2;
}
.hero-nav-btn{
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.3);
  color:#fff;display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:1rem;transition:background 0.2s;backdrop-filter:blur(4px);
}
.hero-nav-btn:hover{background:var(--yellow)}
.hero-dots{
  position:absolute;bottom:2rem;left:5%;
  display:flex;gap:0.5rem;z-index:2;
}
.hero-dot{
  width:28px;height:6px;border-radius:3px;
  background:rgba(255,255,255,0.35);cursor:pointer;transition:background 0.2s;
}
.hero-dot.active{background:var(--yellow)}

/* ── MARQUEE ── */
.marquee-bar{
  background:var(--yellow);padding:0.85rem 0;
  overflow:hidden;white-space:nowrap;
}
.marquee-track{display:inline-flex;animation:mq 25s linear infinite}
.marquee-item{
  font-size:0.88rem;font-weight:800;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--dark);
  padding:0 1.5rem;display:inline-flex;align-items:center;gap:1.5rem;
}
.mq-car{font-size:1.1rem}
@keyframes mq{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── SECTION COMMON ── */
section{padding:5rem 5%}
.sec-tag{
  display:inline-flex;align-items:center;gap:0.6rem;
  font-size:0.72rem;font-weight:600;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--yellow);margin-bottom:0.7rem;
}
.sec-tag svg{width:28px;opacity:0.8}
.sec-title{
  font-size:clamp(1.8rem,3vw,2.6rem);font-weight:800;color:var(--dark);
  margin-bottom:0.5rem;text-transform:uppercase;
}
.sec-title .ghost{
  color:transparent;-webkit-text-stroke:1.5px #ccc;
  font-size:clamp(1.8rem,3vw,2.6rem);
}
.sec-sub{color:var(--muted);font-size:0.88rem;max-width:520px;margin-bottom:2.5rem;line-height:1.7}

/* ── SERVICES ── */
#services{background:var(--cream)}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.service-card{
  background:var(--dark);border-radius:var(--radius);padding:2rem 1.5rem;
  position:relative;overflow:hidden;transition:transform 0.25s;cursor:pointer;
}
.service-card:hover{transform:translateY(-4px)}
.service-card.active,.service-card:nth-child(3){background:var(--yellow)}
.service-card::before{
  content:'';position:absolute;bottom:-20px;right:-20px;
  width:80px;height:80px;border-radius:50%;
  background:rgba(255,255,255,0.05);
}
.service-card::after{
  content:'';position:absolute;bottom:-40px;right:-40px;
  width:110px;height:110px;border-radius:50%;
  background:rgba(255,255,255,0.04);
}
.service-icon{font-size:1.8rem;margin-bottom:1.5rem;display:block}
.service-num{
  position:absolute;top:1rem;right:1.2rem;
  font-size:0.75rem;font-weight:700;
  background:rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.6);
  padding:0.2rem 0.5rem;border-radius:4px;
}
.service-card.active .service-num,.service-card:nth-child(3) .service-num{
  background:rgba(0,0,0,0.15);color:rgba(0,0,0,0.5);
}
.service-card h3{
  font-size:1rem;font-weight:700;color:#fff;margin-bottom:0.6rem;
}
.service-card.active h3,.service-card:nth-child(3) h3{color:var(--dark)}
.service-card p{font-size:0.8rem;color:rgba(255,255,255,0.55);line-height:1.6}
.service-card.active p,.service-card:nth-child(3) p{color:rgba(0,0,0,0.55)}

/* ── ABOUT ── */
#about{background:#fff;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;padding:5rem 5%}
.about-img-wrap{position:relative}
.about-main-img{
  width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:12px;
  background:url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80') center/cover;
}
.about-float-img{
  position:absolute;right:-1.5rem;bottom:2rem;
  width:55%;aspect-ratio:4/3;object-fit:cover;border-radius:10px;border:5px solid #fff;
  background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=600&q=80') center/cover;
}
.about-badge{
  position:absolute;left:1.5rem;bottom:4rem;
  background:var(--yellow);border-radius:10px;
  padding:1.2rem 1.5rem;text-align:center;z-index:5;
}
.about-badge-num{font-size:2.2rem;font-weight:900;color:#fff;display:block;line-height:1}
.about-badge-label{font-size:0.68rem;font-weight:600;color:rgba(255,255,255,0.85);text-transform:uppercase;letter-spacing:0.05em}
.about-right{}
.about-body{color:var(--muted);font-size:0.88rem;line-height:1.8;margin-bottom:1.5rem}
.skill-item{margin-bottom:1.2rem}
.skill-label{display:flex;justify-content:space-between;font-size:0.85rem;font-weight:600;color:var(--dark);margin-bottom:0.4rem}
.skill-bar{height:5px;background:#eee;border-radius:3px;overflow:hidden}
.skill-fill{height:100%;background:var(--yellow);border-radius:3px}
.about-actions{display:flex;align-items:center;gap:1.5rem;margin-top:1.8rem}
.call-widget{display:flex;align-items:center;gap:0.7rem}
.call-icon{
  width:42px;height:42px;border-radius:50%;
  background:rgba(245,166,35,0.12);display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;color:var(--yellow);
}
.call-label{font-size:0.68rem;color:var(--muted)}
.call-num{font-size:0.9rem;font-weight:700;color:var(--dark)}

/* ── STEPS ── */
#steps{background:var(--cream);text-align:center}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:2rem}
.step-card{
  background:var(--dark);border-radius:var(--radius);
  padding:2rem 1.5rem;position:relative;text-align:left;
  transition:transform 0.25s;cursor:pointer;
}
.step-card:hover{transform:translateY(-4px)}
.step-icon-wrap{
  width:52px;height:52px;border-radius:50%;
  background:rgba(245,166,35,0.15);display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin-bottom:1.5rem;border:1px solid rgba(245,166,35,0.3);
}
.step-arrow{
  position:absolute;top:2rem;right:2rem;
  color:rgba(255,255,255,0.15);font-size:1.5rem;font-weight:300;
}
.step-num-big{
  position:absolute;top:1.2rem;right:1.5rem;
  font-size:1.8rem;font-weight:900;color:rgba(255,255,255,0.07);
}
.step-card h3{font-size:1rem;font-weight:700;color:var(--yellow);margin-bottom:0.5rem}
.step-card p{font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.6}

/* ── BOOK A CAR ── */
#book{
  padding:0;position:relative;
  background:url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1600&q=80') center/cover;
  min-height:480px;display:flex;align-items:stretch;
}
#book::before{
  content:'';position:absolute;inset:0;
  background:rgba(10,10,20,0.75);
}
.book-person{
  width:50%;position:relative;z-index:1;display:flex;align-items:flex-end;justify-content:center;
  overflow:hidden;
}
.book-person-img{
  position:absolute;bottom:0;
  width:100%;max-width:480px;
  background:url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=80') top/cover no-repeat;
  height:100%;opacity:0.85;
}
.book-arrow-overlay{
  position:absolute;top:50%;left:60%;transform:translate(-50%,-50%);
  font-size:5rem;color:rgba(255,255,255,0.12);font-weight:900;z-index:2;
  transform:rotate(-20deg);font-style:italic;
}
.book-form-wrap{
  width:50%;position:relative;z-index:2;
  padding:3rem 3rem 3rem 2rem;display:flex;flex-direction:column;justify-content:center;
}
.book-card{
  background:#fff;border-radius:14px;padding:2.5rem;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.book-title{
  font-size:1.4rem;font-weight:900;text-transform:uppercase;
  color:var(--dark);margin-bottom:1.8rem;text-align:center;letter-spacing:0.05em;
}
.book-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.form-field label{
  display:block;font-size:0.72rem;font-weight:600;color:var(--muted);
  text-transform:uppercase;letter-spacing:0.1em;margin-bottom:0.4rem;
}
.form-field label span{margin-right:0.3rem}
.form-field select,.form-field input{
  width:100%;padding:0.8rem 1rem;border:1px solid var(--border);
  border-radius:8px;font-family:'Inter',sans-serif;font-size:0.88rem;
  color:var(--text);outline:none;background:#f9f9f9;
  transition:border-color 0.2s;-webkit-appearance:none;
}
.form-field select:focus,.form-field input:focus{border-color:var(--yellow);background:#fff}

/* ── WHY CHOOSE ── */
#why{background:var(--cream)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.why-card{
  background:var(--dark);border-radius:var(--radius);
  padding:2.2rem 1.8rem;position:relative;transition:transform 0.25s;
}
.why-card:hover{transform:translateY(-4px)}
.why-icon-wrap{
  width:56px;height:56px;border-radius:50%;
  background:rgba(245,166,35,0.12);border:1px solid rgba(245,166,35,0.25);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin-bottom:1.5rem;position:relative;
}
.why-icon-badge{
  position:absolute;top:-4px;right:-4px;
  width:18px;height:18px;border-radius:50%;
  background:var(--yellow);display:flex;align-items:center;justify-content:center;
  font-size:0.55rem;font-weight:700;color:#fff;
}
.why-card h3{font-size:1rem;font-weight:700;color:#fff;margin-bottom:0.6rem}
.why-card p{font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.7}
.why-card .rent-link{
  display:inline-flex;align-items:center;gap:0.4rem;
  color:var(--yellow);font-size:0.8rem;font-weight:600;
  margin-top:1.2rem;text-decoration:none;
}

/* ── STATS ── */
#stats{background:#fff;padding:4rem 5%;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.stat-card{
  border-radius:12px;padding:2rem;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:0.6rem;
  transition:transform 0.2s;cursor:pointer;
}
.stat-card:hover{transform:scale(1.03)}
.stat-card.dark{background:var(--dark);border:1px solid #2a2b3a}
.stat-card.yellow{background:var(--yellow)}
.stat-card.yellow-border{background:var(--dark);border:2px solid var(--yellow)}
.stat-icon{font-size:1.6rem;margin-bottom:0.3rem}
.stat-card.dark .stat-icon,.stat-card.yellow-border .stat-icon{color:var(--yellow)}
.stat-card.yellow .stat-icon{color:#fff}
.stat-num{font-size:2.2rem;font-weight:900;line-height:1}
.stat-card.dark .stat-num,.stat-card.yellow-border .stat-num{color:#fff}
.stat-card.yellow .stat-num{color:#fff}
.stat-label{font-size:0.75rem;font-weight:500}
.stat-card.dark .stat-label{color:rgba(255,255,255,0.5)}
.stat-card.yellow-border .stat-label{color:var(--yellow)}
.stat-card.yellow .stat-label{color:rgba(255,255,255,0.8)}
.stats-right .sec-title{margin-bottom:1rem}
.stats-imgs{display:grid;grid-template-columns:1fr 1fr;gap:0.8rem;border-radius:12px;overflow:hidden}
.stats-img1{
  grid-row:span 2;
  background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=600&q=80') center/cover;
  min-height:300px;border-radius:10px;
}
.stats-img2{
  background:url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=500&q=80') center/cover;
  border-radius:10px;
}
.stats-img3{
  background:url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=500&q=80') center/cover;
  border-radius:10px;
}

/* ── CARS EXPLORE ── */
#explore{background:var(--cream);text-align:center}
.brand-tabs{display:flex;gap:0.6rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.5rem}
.brand-tab{
  padding:0.55rem 1.4rem;border-radius:7px;font-size:0.82rem;font-weight:600;
  cursor:pointer;border:1px solid var(--border);color:var(--dark);background:#fff;
  transition:all 0.2s;
}
.brand-tab:hover,.brand-tab.active{background:var(--yellow);color:#fff;border-color:var(--yellow)}
.cars-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;text-align:left}
.car-card{background:#fff;border-radius:12px;overflow:hidden;border:1px solid var(--border);transition:transform 0.25s,box-shadow 0.25s}
.car-card:hover{transform:translateY(-5px);box-shadow:0 12px 40px rgba(0,0,0,0.1)}
.car-card-img{
  width:100%;aspect-ratio: 1/1;object-fit:cover;position:relative;overflow:hidden;
}
.car-card-img-bg{width:100%;height:100%;object-fit:cover;transition:transform 0.4s}
.car-card:hover .car-card-img-bg{transform:scale(1.06)}
.car-brand-tag{
  position:absolute;top:0.8rem;left:0.8rem;
  background:var(--yellow);color:#fff;
  padding:0.25rem 0.7rem;border-radius:5px;font-size:0.68rem;font-weight:700;
}
.car-info{padding:1.2rem}
.car-name{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:0.6rem}
.car-specs-row{display:flex;flex-wrap:wrap;gap:0.5rem 1rem;margin-bottom:1rem}
.car-spec{display:flex;align-items:center;gap:0.3rem;font-size:0.72rem;color:var(--muted)}
.car-price-row{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:0.8rem;border-top:1px solid var(--border);
}
.car-price{font-size:0.82rem;color:var(--dark);font-weight:500}
.car-price strong{color:var(--yellow);font-size:1rem}
.btn-details{
  background:var(--yellow);color:#fff;border:none;
  padding:0.55rem 1.1rem;border-radius:7px;font-size:0.78rem;font-weight:700;
  cursor:pointer;display:flex;align-items:center;gap:0.4rem;transition:background 0.2s;
  text-decoration:none;
}
.btn-details:hover{background:var(--yellow-dark)}

/* ── VIDEO SECTION ── */
#video-sec{
  padding:0;position:relative;min-height:400px;
  background:url('https://images.unsplash.com/photo-1563720360172-67b8f3dce741?w=1800&q=80') center/cover;
  display:flex;align-items:center;justify-content:center;
}
#video-sec::before{content:'';position:absolute;inset:0;background:rgba(10,10,20,0.72)}
.video-inner{position:relative;z-index:1;text-align:center;padding:5rem 5%}
.video-inner h2{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;color:#fff;margin-bottom:2rem}
.video-play-btn{
  width:72px;height:72px;border-radius:50%;
  background:var(--yellow);display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;color:#fff;cursor:pointer;margin:0 auto;
  border:4px solid rgba(255,255,255,0.25);transition:transform 0.2s,background 0.2s;
  box-shadow:0 0 0 12px rgba(245,166,35,0.15);
}
.video-play-btn:hover{transform:scale(1.08);background:var(--yellow-dark)}

/* ── PRICING ── */
#pricing{background:var(--cream)}
.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.price-card{
  background:#fff;border-radius:14px;padding:2.2rem;
  border:1.5px solid var(--border);transition:transform 0.25s,box-shadow 0.25s;
}
.price-card:hover{transform:translateY(-5px);box-shadow:0 16px 50px rgba(0,0,0,0.1)}
.price-card.featured{border-color:var(--yellow);border-width:2px}
.price-card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.5rem}
.price-plan{font-size:1.3rem;font-weight:800;color:var(--dark)}
.price-plan-sub{font-size:0.8rem;color:var(--muted);font-weight:400;margin-top:0.3rem}
.price-icon{
  width:50px;height:50px;border-radius:50%;
  background:rgba(245,166,35,0.12);border:1px solid rgba(245,166,35,0.25);
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;
}
.price-amount{margin-bottom:1.5rem}
.price-amount strong{font-size:2.2rem;font-weight:900;color:var(--dark)}
.price-amount span{font-size:0.82rem;color:var(--muted)}
.price-features{border-top:1px solid var(--border);padding-top:1.2rem;display:flex;flex-direction:column;gap:0.5rem;margin-bottom:1.5rem}
.price-feature-row{display:flex;justify-content:space-between;font-size:0.82rem}
.price-feature-row .label{color:var(--muted)}
.price-feature-row .val{color:var(--dark);font-weight:500}

/* ── CTA STRIP ── */
.cta-strip{
  background:linear-gradient(90deg,var(--yellow) 60%,var(--dark) 60%);
  padding:2.2rem 5%;
  display:flex;justify-content:space-between;align-items:center;
  gap:2rem;flex-wrap:wrap;
}
.cta-left .sub{font-size:0.72rem;font-weight:600;color:rgba(0,0,0,0.5);text-transform:uppercase;letter-spacing:0.1em;margin-bottom:0.3rem}
.cta-left h2{font-size:1.4rem;font-weight:900;color:var(--dark);text-transform:uppercase}
.cta-right{display:flex;align-items:center;gap:1rem}
.call-cta{display:flex;align-items:center;gap:0.7rem}
.call-cta-icon{
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;
  font-size:1rem;color:#fff;
}
.call-cta-label{font-size:0.65rem;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:0.1em}
.call-cta-num{font-size:0.95rem;font-weight:700;color:#fff}
.btn-dark{
  background:var(--dark);color:#fff;border:none;
  padding:0.85rem 2rem;border-radius:8px;font-weight:700;font-size:0.85rem;
  cursor:pointer;display:inline-flex;align-items:center;gap:0.5rem;
  text-decoration:none;transition:background 0.2s;
}
.btn-dark:hover{background:#2a2b3a}

/* ── POPULAR CATEGORIES ── */
#categories{background:var(--dark);padding:5rem 5%}
#categories .sec-tag{color:var(--yellow)}
#categories .sec-title{color:#fff}
#categories .sec-title .ghost{-webkit-text-stroke-color:#333}
.cat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;margin-top:2rem}
.cat-card{
  background:#1e1f2e;border-radius:10px;padding:1.5rem 1rem;
  display:flex;flex-direction:column;align-items:flex-start;gap:0.5rem;
  border:1px solid #2a2b3a;transition:border-color 0.2s,transform 0.2s;cursor:pointer;
}
.cat-card:hover{border-color:var(--yellow);transform:translateY(-3px)}
.cat-icon{font-size:1.5rem;color:var(--yellow)}
.cat-name{font-size:0.9rem;font-weight:700;color:#fff}
.cat-count{font-size:0.75rem;color:rgba(255,255,255,0.4)}

/* ── TESTIMONIALS ── */
#testimonials{background:#fff}
.testimonials-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2.5rem}
.test-nav{display:flex;gap:0.6rem}
.test-nav-btn{
  width:40px;height:40px;border-radius:50%;background:var(--yellow);
  border:none;color:#fff;font-size:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background 0.2s;
}
.test-nav-btn:hover{background:var(--yellow-dark)}
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.test-card{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:1.8rem;transition:box-shadow 0.2s;
}
.test-card:hover{box-shadow:0 8px 30px rgba(0,0,0,0.08)}
.test-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1rem}
.test-person{display:flex;align-items:center;gap:0.8rem}
.test-avatar{
  width:48px;height:48px;border-radius:50%;object-fit:cover;
  background:#eee;overflow:hidden;
}
.test-avatar img{width:100%;height:100%;object-fit:cover}
.test-name{font-size:0.9rem;font-weight:700;color:var(--dark)}
.test-role{font-size:0.75rem;color:var(--muted)}
.test-quote-icon{
  width:34px;height:34px;border-radius:50%;background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;color:#fff;font-weight:900;
}
.test-text{font-size:0.83rem;color:var(--muted);line-height:1.7;margin-bottom:1rem}
.test-stars{color:var(--yellow);font-size:0.85rem;letter-spacing:2px}

/* ── FAQ ── */
#faq{background:var(--cream);display:grid;grid-template-columns:1fr 1.4fr;gap:4rem;align-items:start;padding:5rem 5%}
.faq-visual{position:relative}
.faq-img{
  width:100%;aspect-ratio:4/5;border-radius:14px;
  background:url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=700&q=80') center/cover;
}
.faq-badge{
  position:absolute;bottom:2rem;right:-1rem;
  background:var(--yellow);border-radius:12px;
  padding:1.2rem 1.5rem;text-align:center;
  box-shadow:0 10px 30px rgba(245,166,35,0.35);
}
.faq-badge-num{font-size:2.5rem;font-weight:900;color:#fff;display:block;line-height:1}
.faq-badge-sub{font-size:0.7rem;color:rgba(255,255,255,0.8);text-transform:uppercase;letter-spacing:0.05em}
.faq-list{display:flex;flex-direction:column;gap:0.8rem}
.faq-item{
  background:#fff;border-radius:10px;border:1px solid var(--border);overflow:hidden;
}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.1rem 1.3rem;cursor:pointer;
  font-size:0.88rem;font-weight:600;color:var(--dark);
}
.faq-toggle{
  width:30px;height:30px;border-radius:50%;background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:0.9rem;flex-shrink:0;transition:transform 0.2s;
}
.faq-item.open .faq-toggle{transform:rotate(180deg);background:var(--dark)}
.faq-a{
  padding:0 1.3rem;font-size:0.83rem;color:var(--muted);line-height:1.7;
  max-height:0;overflow:hidden;transition:max-height 0.3s,padding 0.3s;
}
.faq-item.open .faq-a{max-height:200px;padding:0 1.3rem 1.1rem}

/* ── INTERESTED STRIP ── */
.interested-strip{
  background:var(--yellow);padding:2.2rem 5%;
  display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap;
}
.interested-strip .sub{font-size:0.72rem;font-weight:600;color:rgba(0,0,0,0.5);text-transform:uppercase;letter-spacing:0.1em}
.interested-strip h2{font-size:1.5rem;font-weight:900;color:var(--dark);text-transform:uppercase}
.interested-btns{display:flex;gap:0.8rem}
.btn-outline-dark{
  background:transparent;color:var(--dark);border:2px solid var(--dark);
  padding:0.75rem 1.5rem;border-radius:7px;font-weight:700;font-size:0.82rem;
  cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:0.5rem;
  transition:all 0.2s;
}
.btn-outline-dark:hover{background:var(--dark);color:#fff}

/* ── DRIVERS ── */
#drivers{background:var(--cream);text-align:center}
.drivers-card{
  background:#fff;border-radius:14px;padding:2rem;
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;
  max-width:900px;margin:2rem auto 0;border:1px solid var(--border);
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
}
.drivers-list{display:flex;flex-direction:column;gap:0.7rem}
.driver-row{
  display:flex;align-items:center;gap:0.8rem;
  padding:0.8rem 1rem;border-radius:9px;border:1px solid var(--border);
  transition:border-color 0.2s;cursor:pointer;
}
.driver-row:first-child,.driver-row.active{
  background:var(--yellow);border-color:var(--yellow);
}
.driver-row:first-child .driver-name,.driver-row.active .driver-name{color:#fff}
.driver-row:first-child .driver-role,.driver-row.active .driver-role{color:rgba(255,255,255,0.75)}
.driver-row:first-child .driver-exp,.driver-row.active .driver-exp{color:#fff}
.driver-avatar{
  width:38px;height:38px;border-radius:50%;background:#ddd;overflow:hidden;flex-shrink:0;
}
.driver-avatar img{width:100%;height:100%;object-fit:cover}
.driver-name{font-size:0.85rem;font-weight:700;color:var(--dark)}
.driver-role{font-size:0.72rem;color:var(--muted)}
.driver-exp{margin-left:auto;font-size:0.72rem;font-weight:700;color:var(--dark)}
.driver-exp span{font-size:1rem;font-weight:900;color:var(--yellow)}
.driver-row.active .driver-exp span{color:#fff}
.driver-row:first-child .driver-exp span{color:#fff}
.driver-feature-img{
  border-radius:12px;overflow:hidden;
  background:url('https://images.unsplash.com/photo-1580489944761-15a19d654956?w=500&q=80') top/cover;
  aspect-ratio:4/5;position:relative;
}
.driver-social{
  position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);
  display:flex;gap:0.5rem;background:rgba(255,255,255,0.9);
  padding:0.5rem 0.8rem;border-radius:30px;
}
.driver-social a{color:var(--dark);text-decoration:none;font-size:0.85rem;transition:color 0.2s}
.driver-social a:hover{color:var(--yellow)}

/* ── APP SECTION ── */
#app-sec{
  background:url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1800&q=80') center/cover;
  position:relative;padding:5rem 5%;
}
#app-sec::before{content:'';position:absolute;inset:0;background:rgba(10,10,20,0.82)}
.app-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.app-tag{font-size:0.72rem;color:var(--yellow);font-weight:700;letter-spacing:0.15em;text-transform:uppercase;margin-bottom:0.5rem}
.app-title{font-size:clamp(2rem,3.5vw,3rem);font-weight:900;color:#fff;margin-bottom:1rem;text-transform:uppercase}
.app-title .yellow{color:var(--yellow)}
.app-sub{font-size:0.88rem;color:rgba(255,255,255,0.6);line-height:1.7;margin-bottom:2rem}
.app-btns{display:flex;gap:1rem;flex-wrap:wrap}
.app-store-btn{
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.2);
  color:#fff;padding:0.7rem 1.4rem;border-radius:8px;
  display:flex;align-items:center;gap:0.6rem;cursor:pointer;transition:all 0.2s;
}
.app-store-btn:hover{background:var(--yellow);border-color:var(--yellow)}
.app-store-icon{font-size:1.3rem}
.app-store-label{font-size:0.65rem;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:0.08em}
.app-store-name{font-size:0.88rem;font-weight:700}
.app-mockup{display:flex;justify-content:center;align-items:center;position:relative}
.phone-mockup{
  width:160px;height:300px;border-radius:24px;border:3px solid rgba(255,255,255,0.2);
  background:var(--dark);overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,0.5);
  position:relative;
}
.phone-mockup-inner{width:100%;height:100%;background:linear-gradient(135deg,#1e1f2e,#12131f);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.5rem}
.phone-bar{width:70%;height:6px;border-radius:3px;background:var(--yellow)}
.phone-bar.thin{width:50%;height:4px;background:rgba(255,255,255,0.1)}
.phone-mockup2{
  width:140px;height:260px;border-radius:20px;border:3px solid rgba(255,255,255,0.15);
  background:var(--dark);position:absolute;right:-30px;top:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.car-mockup-img{
  position:absolute;bottom:-20px;right:0px;width:200px;
  font-size:4rem;filter:drop-shadow(0 10px 30px rgba(245,166,35,0.3));
}

/* ── BRANDS ── */
#brands{background:#fff;padding:2.5rem 5%;text-align:center;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.brands-row{display:flex;justify-content:center;align-items:center;gap:4rem;flex-wrap:wrap}
.brand-logo{font-size:0.9rem;font-weight:800;color:#bbb;letter-spacing:0.1em;text-transform:uppercase;transition:color 0.2s}
.brand-logo:hover{color:var(--yellow)}

/* ── BLOG ── */
#blog{background:#fff;padding:4rem 5%}
.blog-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2.5rem}
.blog-nav{display:flex;gap:0.6rem}
.blog-nav-btn{
  width:36px;height:36px;border-radius:50%;background:var(--yellow);
  border:none;color:#fff;font-size:0.9rem;cursor:pointer;display:flex;align-items:center;justify-content:center;
}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.blog-card{border-radius:12px;overflow:hidden;border:1px solid var(--border);transition:box-shadow 0.2s}
.blog-card:hover{box-shadow:0 10px 35px rgba(0,0,0,0.1)}
.blog-img{height:200px;position:relative;overflow:hidden}
.blog-img-bg{
  width:100%;height:100%;object-fit:cover;transition:transform 0.4s;
}
.blog-card:hover .blog-img-bg{transform:scale(1.05)}
.blog-date{
  position:absolute;top:0.8rem;right:0.8rem;
  background:var(--yellow);color:#fff;
  border-radius:7px;padding:0.4rem 0.6rem;text-align:center;
}
.blog-date-day{font-size:1.1rem;font-weight:900;display:block;line-height:1}
.blog-date-mon{font-size:0.6rem;font-weight:600;text-transform:uppercase;letter-spacing:0.08em}
.blog-info{padding:1.3rem}
.blog-meta{display:flex;gap:1rem;font-size:0.72rem;color:var(--muted);margin-bottom:0.7rem}
.blog-meta span{display:flex;align-items:center;gap:0.3rem}
.blog-title{font-size:0.92rem;font-weight:700;color:var(--dark);margin-bottom:0.6rem;line-height:1.4}
.blog-excerpt{font-size:0.78rem;color:var(--muted);line-height:1.6;margin-bottom:1rem}
.blog-link{font-size:0.78rem;font-weight:700;color:var(--yellow);text-decoration:none;display:inline-flex;align-items:center;gap:0.3rem}
.blog-link:hover{color:var(--yellow-dark)}

/* ── INSTA STRIP ── */
#insta{display:flex;height:160px;overflow:hidden}
.insta-item{flex:1;overflow:hidden;position:relative;cursor:pointer}
.insta-item-bg{width:100%;height:100%;object-fit:cover;transition:transform 0.4s,filter 0.4s;filter:brightness(0.75) saturate(0.9)}
.insta-item:hover .insta-item-bg{transform:scale(1.06);filter:brightness(0.5) saturate(1.2)}
.insta-hover{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity 0.3s;font-size:1.5rem;color:#fff;
}
.insta-item:hover .insta-hover{opacity:1}

/* ── FOOTER ── */
footer{background:var(--dark);color:rgba(255,255,255,0.6);padding:4rem 5% 1.5rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand-wrap .footer-logo{
  font-size:1.3rem;font-weight:900;color:#fff;margin-bottom:1rem;display:flex;align-items:center;gap:0.5rem;
}
.footer-logo-icon{
  background:var(--yellow);border-radius:6px;
  width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;font-weight:900;color:#fff;
}
.footer-desc{font-size:0.8rem;line-height:1.7;margin-bottom:1.5rem;color:rgba(255,255,255,0.45)}
.footer-email{
  display:flex;align-items:center;gap:0;
  background:#1e1f2e;border-radius:8px;overflow:hidden;border:1px solid #2a2b3a;
}
.footer-email input{
  flex:1;background:none;border:none;outline:none;
  padding:0.7rem 1rem;font-size:0.82rem;color:rgba(255,255,255,0.7);
  font-family:'Inter',sans-serif;
}
.footer-email button{
  background:var(--yellow);border:none;
  width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:1rem;color:#fff;transition:background 0.2s;flex-shrink:0;
}
.footer-email button:hover{background:var(--yellow-dark)}
.footer-col h4{font-size:0.78rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:0.12em;margin-bottom:1.2rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.6rem}
.footer-col ul a{color:rgba(255,255,255,0.45);text-decoration:none;font-size:0.82rem;transition:color 0.2s}
.footer-col ul a:hover{color:var(--yellow)}
.footer-contact-item{display:flex;align-items:flex-start;gap:0.6rem;font-size:0.8rem;color:rgba(255,255,255,0.45);margin-bottom:0.7rem}
.footer-contact-icon{color:var(--yellow);margin-top:0.1rem;flex-shrink:0}
.footer-bottom{
  border-top:1px solid #2a2b3a;padding-top:1.5rem;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:0.78rem;color:rgba(255,255,255,0.3)}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{font-size:0.78rem;color:rgba(255,255,255,0.35);text-decoration:none;transition:color 0.2s}
.footer-bottom-links a:hover{color:var(--yellow)}

/* Car image helper classes */
.car-bg-1{background:url('https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?w=500&q=80') center/cover}
.car-bg-2{background:url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?w=500&q=80') center/cover}
.car-bg-3{background:url('https://images.unsplash.com/photo-1617469767434-04c8f0e93f15?w=500&q=80') center/cover}
.car-bg-4{background:url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?w=500&q=80') center/cover}

/* Blog image classes */
.bl-bg-1{background:url('https://images.unsplash.com/photo-1617469767434-04c8f0e93f15?w=600&q=80') center/cover}
.bl-bg-2{background:url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=600&q=80') center/cover}
.bl-bg-3{background:url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=600&q=80') center/cover}

/* Insta strip */
.in-bg-1{background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=400&q=80') center/cover}
.in-bg-2{background:url('https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?w=400&q=80') center/cover}
.in-bg-3{background:url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&q=80') center/cover}
.in-bg-4{background:url('https://images.unsplash.com/photo-1563720360172-67b8f3dce741?w=400&q=80') center/cover}
.in-bg-5{background:url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=400&q=80') center/cover}

/* ── MODAL SYSTEM ── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 19, 31, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}
.modal.active { display: flex; }

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh; 
    border-radius: 20px;
    position: relative;
    overflow-y: auto; 
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: modalSlide 0.3s ease-out;
}
@keyframes modalSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  color: var(--yellow);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.modal-grid .full-width {
  grid-column: span 2;
}

/* ── SLIDER SYSTEM ── */
.car-card-img { position: relative; overflow: hidden; z-index: 1; }
.car-slider, .modal-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    cursor: grab;
    touch-action: pan-y;
    z-index: 1;
}
.car-slider:active, .modal-slider:active { cursor: grabbing; }
.car-slider::-webkit-scrollbar, .modal-slider::-webkit-scrollbar { display: none; }

.car-slide {
    min-width: 100%;
    scroll-snap-align: start;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.package-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 12px;
    cursor: grab;
    touch-action: pan-y;
    z-index: 1;
}
.package-slider::-webkit-scrollbar { display: none; }
.package-slide {
    min-width: 100%;
    scroll-snap-align: start;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.modal-slider {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
}
.dot.active { background: var(--yellow); transform: scale(1.3); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content { padding: 1.5rem; width: 95%; margin: 10px auto; }
    .modal-slider { border-radius: 8px; }
}

@media (max-width: 600px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-grid .full-width {
    grid-column: span 1;
  }
  .modal-content {
    padding: 2rem 1.5rem;
  }
}

@media(max-width:900px){
  .services-grid,.steps-grid,.cars-grid,.pricing-grid,.cat-grid,.why-grid{grid-template-columns:repeat(2,1fr)}
  .test-grid,.blog-grid,.footer-grid{grid-template-columns:1fr}
  #about,#stats,#faq,.app-inner{grid-template-columns:1fr}
  #book{flex-direction:column}
  .book-person{width:100%;height:220px}
  .book-form-wrap{width:100%;padding:2rem}
  .cta-strip,.interested-strip{flex-direction:column;text-align:center}
  nav .nav-links{display:none}
  .nav-actions{display:flex}
  .topbar-left span:nth-child(3){display:none}
  .topbar{flex-direction:column;gap:0.5rem;padding:0.5rem;text-align:center}
  .topbar-left{flex-direction:column;gap:0.3rem}
  .topbar-right{justify-content:center;margin-top:0.3rem}
  .social-icons{margin-left:0}
  .cta-strip { 
    background: linear-gradient(180deg, var(--yellow) 50%, var(--dark) 50%) !important; 
    padding: 3rem 5%;
  }
}

/* ── FLEET STRIP ── */
.fleet-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.fleet-cat-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.fleet-cat-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}
.fleet-cat-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.fleet-cat-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.fleet-cat-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fleet-cat-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fleet-cat-card ul li::before {
  content: '•';
  color: var(--yellow);
  font-weight: bold;
}
@media (max-width: 768px) {
  .fleet-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .fleet-strip { grid-template-columns: 1fr; }
}

/* ── ENHANCED FLEET UI ── */
.fleet-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.fleet-premium-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.fleet-premium-card.highlight {
  border-color: var(--yellow);
  box-shadow: 0 10px 30px rgba(245,166,35,0.1);
}
.fleet-premium-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(245,166,35,0.05), transparent);
}
.fleet-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.f-icon {
  width: 54px;
  height: 54px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.fleet-card-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.fleet-card-header p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.f-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.f-tags span {
  background: var(--cream);
  color: var(--dark);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.fleet-premium-card:hover .f-tags span {
  background: #fff;
  border-color: var(--border);
}
.fleet-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: var(--yellow);
}

/* ── HERO BOOKING OVERLAY ── */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.hero-booking-card {
  flex: 0 0 400px;
}
.hero-form {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}
.hero-form .book-title { color: #fff; }
.hero-form label { color: #fff; opacity: 0.9; }
.hero-form input, .hero-form select {
  background: rgba(255, 255, 255, 0.95);
  border: none;
}
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; gap: 3rem; text-align: center; justify-content: center; height: auto; padding: 10rem 5% 5rem; }
  #hero { height: auto; min-height: 100vh; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-booking-card { flex: 1; width: 100%; max-width: 450px; }
}

/* ── FINAL MOBILE OPTIMIZATIONS ── */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body { overflow-x: hidden; position: relative; width: 100%; }
  
  /* Fix Marquee Overflow */
  .marquee-bar { overflow: hidden; width: 100vw; }
  
  /* Fix Hero Stacking */
  .hero-inner { padding: 8rem 5% 4rem !important; }
  .hero-actions { flex-direction: column; align-items: center; gap: 1rem; }
  .btn-yellow, .watch-video { width: 100%; justify-content: center; }
  
  /* Fix Hero Booking Form Grid */
  .book-grid, .hero-form .book-grid { 
    grid-template-columns: 1fr !important; 
    gap: 1rem !important;
  }
  .hero-booking-card { 
    width: 100%; 
    max-width: 100% !important; 
    flex: none !important;
  }
  
  /* Fix Section Headings */
  .sec-title { font-size: 2rem !important; }
  .sec-title .ghost { font-size: 2rem !important; }
  
  /* Fix Navigation / Topbar */
  .nav-logo { scale: 0.9; transform-origin: left; }
  .topbar { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem !important; }
  section { padding: 4rem 5% !important; }
}

/* Additional Fix for Why Grid */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr !important; }
}

/* ── LUXURY TOUR CARD SYSTEM ── */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--yellow);
}
.tour-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
}
.tour-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img-wrap img {
    transform: scale(1.05);
}
.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--dark);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
}
.tour-gallery-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.tour-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tour-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.4rem 0;
}
.tour-card-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}
.tour-meta-pill {
    background: var(--cream);
    color: var(--dark);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}
.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}
.tour-price-box {
    display: flex;
    flex-direction: column;
}
.tour-price-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.05em;
}
.tour-price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
}
.tour-btn-enquire {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tour-card:hover .tour-btn-enquire {
    background: var(--dark);
    color: #fff;
}

.tour-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    cursor: grab;
    touch-action: pan-y;
    z-index: 1;
}
.tour-slider::-webkit-scrollbar { display: none; }
.tour-slide {
    min-width: 100%;
    scroll-snap-align: start;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}
