:root{
  --dark:#f5f5f6;
  --accent-2:#25d366;
  --gold:#d4af37;
  --panel:#141414;
  --panel-border:#262626;
  --car-color:#c8102e;
  --car-color-dark:#7a0c1c;
  --grey:#000;
  --text:#e5e7eb;
  --muted:#9aa0ab;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: "Segoe UI", Arial, sans-serif;
  background:var(--grey);
  color:var(--text);
}
a{color:inherit;}

/* ---------- HEADER ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 28px;
  background:#000;
  border-bottom:1px solid #1f1f1f;
}
@media (max-width:420px){
  .site-header{ padding:10px 16px; }
  .logo{ height:46px; }
  .header-contact{ padding:8px 14px; font-size:.8rem; }
}
.logo{
  height:64px;
  width:auto;
  display:block;
}
.logo-link{ display:flex; align-items:center; }
.header-right{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.site-nav{ display:flex; gap:20px; }
.site-nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:.92rem;
}
.site-nav a:hover{ color:var(--gold); }
.site-nav a.active{ color:var(--gold); }
.header-contact{
  display:inline-block;
  background:var(--accent-2);
  color:#fff;
  text-decoration:none;
  padding:10px 20px;
  border-radius:30px;
  font-weight:600;
  font-size:.9rem;
  white-space:nowrap;
}
.header-contact:hover{opacity:.9;}

/* ---------- HERO / ANIMATED CAR ---------- */
.hero{
  position:relative;
  height:78vh;
  min-height:460px;
  max-height:640px;
  overflow:hidden;
  background:radial-gradient(ellipse at 50% 32%, #1b1b1b 0%, #0a0a0a 55%, #000 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero-text{ z-index:2; margin-bottom:18px; padding:0 20px; }
.hero-text h2{ font-size:clamp(1.6rem,4vw,2.4rem); color:var(--dark); }
.hero-text p{ margin-top:8px; color:var(--muted); font-size:1.05rem; }

.car-stage{
  position:relative;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  height:260px;
}
.road{
  position:absolute;
  bottom:58px;
  left:0; right:0;
  height:5px;
  background:repeating-linear-gradient(90deg,#3a3a3a 0 46px, transparent 46px 80px);
}
.speed-line{
  position:absolute;
  bottom:118px;
  height:3px;
  width:120px;
  left:50%;
  border-radius:2px;
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.55), transparent);
  opacity:0;
  animation:speedStreak 1.5s ease-out forwards;
  pointer-events:none;
}
.speed-line:nth-child(1){ bottom:104px; animation-delay:.05s; }
.speed-line:nth-child(2){ bottom:126px; animation-delay:.15s; }
.speed-line:nth-child(3){ bottom:148px; animation-delay:.02s; }
@keyframes speedStreak{
  0%   { transform:translateX(0); opacity:0; }
  15%  { opacity:1; }
  100% { transform:translateX(-820px); opacity:0; }
}
.car-scene{
  width:min(520px, 78vw);
  transform:translateX(-140vw);
  animation:driveIn 1.5s cubic-bezier(.22,.85,.3,1) forwards;
  filter:drop-shadow(0 14px 18px rgba(0,0,0,.55));
}
@keyframes driveIn{
  0%   { transform:translateX(-140vw); }
  100% { transform:translateX(0); }
}
.wheel{
  transform-box:fill-box;
  transform-origin:50% 50%;
  animation:wheelSpin 1.5s linear forwards;
}
@keyframes wheelSpin{
  from{ transform:rotate(0deg); }
  to  { transform:rotate(900deg); }
}
/* car stays fully parked — doors do not open */

.scroll-hint{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  font-size:.8rem;
  color:var(--muted);
  text-decoration:none;
  opacity:0;
  animation:fadeIn .6s ease-out 2.4s forwards;
}
@keyframes fadeIn{ to{ opacity:1; } }

/* ---------- PAGE HERO (used on secondary pages like Our Fleet) ---------- */
.page-hero{
  background:radial-gradient(ellipse at 50% 20%, #1b1b1b 0%, #0a0a0a 55%, #000 100%);
  padding:56px 24px 40px;
  text-align:center;
}
.page-hero h1{ font-size:clamp(1.8rem,4vw,2.6rem); color:var(--dark); }
.page-hero p{ margin-top:10px; color:var(--muted); font-size:1rem; }

/* ---------- FLEET SLIDER (homepage teaser) ---------- */
#fleet{ padding:56px 0 64px; background:#000; }
.fleet-header{
  max-width:1200px;
  margin:0 auto 22px;
  padding:0 28px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.fleet-header h2{ font-size:1.6rem; color:var(--dark); }
.fleet-header p{ color:var(--muted); font-size:.9rem; margin-top:4px; }
.slider-arrows{ display:flex; gap:10px; flex-shrink:0; }
.arrow-btn{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid #2e2e2e;
  background:#141414;
  cursor:pointer;
  font-size:1.1rem;
  color:var(--dark);
  display:flex; align-items:center; justify-content:center;
}
.arrow-btn:hover{ background:var(--gold); color:#111; border-color:var(--gold); }

.fleet-track-wrap{ max-width:1200px; margin:0 auto; padding:0 28px; }
.fleet-track{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  padding:6px 4px 22px;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
}
.fleet-track.dragging{ cursor:grabbing; scroll-snap-type:none; }
.fleet-track::-webkit-scrollbar{ height:7px; }
.fleet-track::-webkit-scrollbar-thumb{ background:#3a3a3a; border-radius:10px; }
.fleet-track::-webkit-scrollbar-track{ background:transparent; }

.fleet-card{
  flex:0 0 220px;
  scroll-snap-align:start;
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  user-select:none;
}
.fleet-photo{
  width:100%;
  aspect-ratio:4/3;
  background:linear-gradient(135deg,#1c1c1c,#0d0d0d);
  display:flex; align-items:center; justify-content:center;
}
.fleet-photo img{ width:100%; height:100%; object-fit:cover; }
.fleet-photo svg{ width:56%; opacity:.85; pointer-events:none; }
.fleet-body{ padding:14px 16px 18px; display:flex; flex-direction:column; flex:1; }
.fleet-body h3{ font-size:1rem; margin-bottom:12px; color:var(--dark); }
.contact-btn{
  margin-top:auto;
  background:var(--accent-2);
  color:#fff;
  text-decoration:none;
  text-align:center;
  padding:10px;
  border-radius:8px;
  font-weight:600;
  font-size:.85rem;
}
.contact-btn:hover{ background:var(--gold); color:#111; }

/* ---------- FULL FLEET GRID (Our Fleet page) ---------- */
#all-fleet{ padding:16px 0 64px; background:#000; }
.all-fleet-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(230px,1fr));
  gap:22px;
}
.all-fleet-grid .fleet-card{ flex:none; }

/* ---------- FOOTER ---------- */
footer{ background:#000; color:#fff; padding:46px 24px 24px; }
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:36px;
}
.footer-col h4{
  font-size:.78rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#9aa0ab;
  margin-bottom:14px;
}
.footer-col p, .footer-col a{
  color:#fff;
  font-size:.95rem;
  line-height:1.8;
  text-decoration:none;
  display:block;
}
.footer-col a:hover{ color:var(--accent-2); }
.footer-map{
  width:100%;
  max-width:220px;
  height:130px;
  margin-top:10px;
  border:1px solid var(--panel-border);
  border-radius:8px;
  overflow:hidden;
  background:var(--panel);
}
.footer-map iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.2) contrast(1.05); }
.footer-directions{
  display:inline-block;
  margin-top:8px;
  font-size:.82rem !important;
  color:var(--gold) !important;
  text-decoration:underline !important;
}
.footer-directions:hover{ color:#fff !important; }
.footer-brand{ height:48px; width:auto; display:block; margin-bottom:10px; }
.footer-tagline{ color:#9aa0ab !important; font-size:.88rem !important; max-width:240px; }
.social-row{ display:flex; gap:10px; margin-top:14px; }
.social-row a{
  width:34px; height:34px;
  border:1px solid #2b2f38;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ border-color:var(--accent-2); }
.social-row svg{ width:16px; height:16px; fill:#fff; }
.footer-bottom{
  max-width:1100px;
  margin:34px auto 0;
  padding-top:18px;
  border-top:1px solid #262b34;
  text-align:center;
  color:#6b7280;
  font-size:.8rem;
}
