/* ============================================================
   ELIS FLEET SOLUTIONS — styles.css
   Color Palette:
     --bg:        #0A0F1A  (page background)
     --bg-card:   #0F1624  (card backgrounds)
     --bg-card2:  #131D2E  (deeper card backgrounds)
     --orange:    #F97316  (primary accent)
     --orange-dk: #EA580C  (hover state)
     --orange-lt: #FB923C  (light orange / badges)
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0A0F1A;
  --bg-card:   #0F1624;
  --bg-card2:  #131D2E;
  --orange:    #F97316;
  --orange-dk: #EA580C;
  --orange-lt: #FB923C;
  --white:     #FFFFFF;
  --gray-300:  #CBD5E1;
  --gray-400:  #94A3B8;
  --gray-500:  #64748B;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --border:    rgba(255, 255, 255, 0.08);
  --border-md: rgba(255, 255, 255, 0.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── BUTTONS ── */
.btn-orange {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-1px); }

.btn-ghost {
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--border-md);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.nav-logo-text span:first-child { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.nav-logo-text span:last-child  { display: block; font-size: 9px; font-weight: 600; color: var(--gray-500); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--gray-400); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost-sm {
  padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border-md);
  background: transparent; color: #fff; font-size: 14px; font-weight: 500;
  transition: border-color var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost-sm:hover { border-color: rgba(255,255,255,0.25); }
.btn-orange-sm {
  padding: 8px 18px; border-radius: 8px; border: none;
  background: var(--orange); color: #fff; font-size: 14px; font-weight: 600;
  transition: background var(--transition);
}
.btn-orange-sm:hover { background: var(--orange-dk); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px; padding: 8px;
  background: transparent; border: none; cursor: pointer;
}
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link { padding: 12px 0; color: var(--gray-300); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav-cta { margin-top: 8px; text-align: center; padding: 13px 28px; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #050810 0%, #0A0F1A 50%, #0D1520 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange-lt);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero h1 { font-size: 58px; font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 1.25rem; letter-spacing: -1px; }
.hero h1 .hl { color: var(--orange); }
.hero-sub { font-size: 17px; color: var(--gray-400); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.scroll-hint { display: flex; align-items: center; gap: 8px; margin-top: 2.5rem; color: var(--gray-600); font-size: 12px; font-weight: 500; }
.scroll-dot { width: 20px; height: 34px; border: 1.5px solid var(--gray-700); border-radius: 10px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-dot::after { content: ''; width: 4px; height: 8px; background: var(--gray-500); border-radius: 2px; animation: sdot 1.4s ease-in-out infinite; }
@keyframes sdot { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:.3} }

/* Hero truck placeholder — replace with real <img> */
.hero-truck {
  width: 100%; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0F1624, #162035);
  border-radius: 12px; border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 1.5rem;
}
.hero-truck p { font-size: 11px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

/* Hero real photo — used when you replace placeholder with <img> */
.hero-photo {
  width: 100%; aspect-ratio: 16 / 10;
  object-fit: cover; border-radius: 12px;
  border: 1px solid var(--border); margin-bottom: 1.5rem;
}

.hero-stats {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.hstat { text-align: center; padding: 1.25rem; background: var(--bg-card2); border-radius: 10px; border: 1px solid var(--border); }
.hstat-num { font-size: 34px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.hstat-lbl { font-size: 12px; color: var(--gray-400); font-weight: 500; }

/* ── SECTION COMMONS ── */
.section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.stag { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.stag::before { content: ''; width: 16px; height: 2px; background: var(--orange); }
.stitle { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.5px; }
.ssub { font-size: 16px; color: var(--gray-400); max-width: 540px; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── SERVICES ── */
.services-bg { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
  transition: border-color 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.25s; }
.svc-card:hover { border-color: rgba(249,115,22,0.3); background: var(--bg-card2); }
.svc-card:hover::after { background: linear-gradient(90deg, var(--orange), transparent); }
.svc-card.pop { border-color: rgba(249,115,22,0.2); }
.svc-card.pop::after { background: linear-gradient(90deg, var(--orange), transparent); }

.pop-badge { display: inline-block; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.25); color: var(--orange-lt); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; margin-bottom: 1rem; }
.svc-icon { width: 46px; height: 46px; background: rgba(249,115,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.svc-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.svc-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.svc-card p { font-size: 14px; color: var(--gray-400); line-height: 1.65; }

/* ── FLEET ── */
.fleet-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.fleet-features { display: flex; flex-direction: column; gap: 10px; margin: 2rem 0; }
.ffeat { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-card2); border-radius: 8px; border: 1px solid var(--border); font-size: 14px; color: var(--gray-300); }
.ffeat::before { content: '✓'; width: 22px; height: 22px; min-width: 22px; background: rgba(249,115,22,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--orange); text-align: center; line-height: 22px; }
.fleet-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fstat { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-align: center; }
.fstat-num { font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.fstat-lbl { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.fleet-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.fleet-right { display: flex; flex-direction: column; gap: 1.25rem; }
.fleet-photo { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }

/* ── ABOUT ── */
.about-bg { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.about-text p { font-size: 15px; color: var(--gray-400); line-height: 1.8; margin-bottom: 1.25rem; }
.about-why { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-item { display: flex; align-items: flex-start; gap: 14px; padding: 1.25rem; background: var(--bg-card); border-radius: 10px; border: 1px solid var(--border); }
.why-num { font-size: 28px; font-weight: 900; color: var(--orange); opacity: 0.35; line-height: 1; min-width: 36px; }
.why-text h4 { font-size: 15px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.why-text p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: sticky; top: 90px; }
.astat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; text-align: center; }
.astat-num { font-size: 40px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.astat-lbl { font-size: 12px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.about-photos { display: flex; gap: 1.25rem; margin-top: 3rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; scrollbar-width: thin; scrollbar-color: var(--orange) var(--bg-card2); }
.about-photos::-webkit-scrollbar { height: 6px; }
.about-photos::-webkit-scrollbar-track { background: var(--bg-card2); border-radius: 3px; }
.about-photos::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.about-photo { flex: 0 0 420px; height: 340px; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); scroll-snap-align: start; transition: transform 0.2s ease, border-color 0.2s ease; }
.about-photo:hover { transform: scale(1.02); border-color: var(--orange); }
.about-photo-wide, .about-photo-portrait, .about-photo-sm { flex: 0 0 420px; height: 340px; }

/* ── BOOKING ── */
.booking-bg { background: var(--bg-card); border-top: 1px solid var(--border); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.bperks { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; margin-bottom: 2rem; }
.bperk { display: flex; align-items: flex-start; gap: 14px; }
.bperk-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(249,115,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.bperk-icon svg { width: 18px; height: 18px; fill: var(--orange); }
.bperk-text h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.bperk-text p  { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.info-card h4 { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.irow { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.iicon { width: 28px; height: 28px; min-width: 28px; background: rgba(249,115,22,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.iicon svg { width: 13px; height: 13px; fill: var(--orange); }
.itext strong { display: block; font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 1px; }
.itext span   { font-size: 13px; color: var(--gray-400); }

.emerg { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); border-radius: 10px; padding: 1.25rem; text-align: center; }
.emerg-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 4px; }
.ephone { font-size: 26px; font-weight: 800; color: var(--orange); line-height: 1.2; }
.emerg-sub { font-size: 12px; color: var(--gray-600); margin-top: 2px; }

/* Form Card */
.form-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.btabs { display: flex; border-bottom: 1px solid var(--border); }
.btab {
  flex: 1; padding: 16px 20px; border: none; background: transparent;
  color: var(--gray-500); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: 'Inter', sans-serif; display: flex; align-items: center; justify-content: center; gap: 9px;
}
.btab-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btab-icon svg { width: 20px; height: 20px; }
.btab.active { color: var(--orange); border-bottom-color: var(--orange); background: rgba(249,115,22,0.03); }
.btab:hover:not(.active) { color: var(--gray-300); }

.form-body { padding: 2rem; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row-vehicle { display: grid; grid-template-columns: 1fr 1fr 100px; gap: 1rem; margin-bottom: 1rem; }
.fgrp { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fgrp label { font-size: 12px; font-weight: 600; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.5px; }
.fgrp input,
.fgrp select,
.fgrp textarea {
  padding: 11px 14px; border: 1px solid var(--border-md);
  border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: #fff; background: var(--bg-card2);
  transition: border-color 0.2s; outline: none;
}
.fgrp input::placeholder,
.fgrp textarea::placeholder { color: var(--gray-600); }
.fgrp input:focus,
.fgrp select:focus,
.fgrp textarea:focus { border-color: rgba(249,115,22,0.5); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.fgrp input:-webkit-autofill,
.fgrp input:-webkit-autofill:focus,
.fgrp input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px var(--bg-card2) inset, 0 0 0 3px rgba(249,115,22,0.1);
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
}
.fgrp select option { background: #1E293B; }
.fgrp textarea { resize: vertical; }

.loc-wrap { position: relative; }
.loc-wrap input { padding-left: 36px; }
.loc-pin { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); }
.loc-pin svg { width: 14px; height: 14px; fill: var(--gray-600); }

.fsub {
  width: 100%; padding: 14px; border-radius: 10px; border: none;
  background: var(--orange); color: #fff; font-size: 15px; font-weight: 600;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.fsub:hover { background: var(--orange-dk); }
.fsub.road { background: transparent; border: 1px solid var(--orange); color: var(--orange); }
.fsub.road:hover { background: rgba(249,115,22,0.1); }
.fnote { font-size: 12px; color: var(--gray-600); text-align: center; margin-top: 10px; }

/* Success Toast */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: #16a34a; color: #fff;
  padding: 14px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── COVERAGE ── */
.coverage-bg { background: var(--bg); border-top: 1px solid var(--border); }
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.cov-areas { display: flex; flex-direction: column; gap: 8px; }
.ctag { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--gray-300); font-weight: 500; }
.cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; box-shadow: 0 0 6px rgba(249,115,22,0.5); }

/* Coverage map placeholder — replace with <iframe> Google Maps embed */
.cov-map {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.cov-map p { font-size: 11px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

/* Google Maps embed */
.cov-map iframe { width: 100%; height: 100%; border: none; border-radius: 14px; }

/* ── CTA ── */
.cta-wrap { padding: 6rem 2.5rem; background: var(--bg-card); border-top: 1px solid var(--border); }
.cta-box {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: var(--bg); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 20px; padding: 4rem 3rem;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.5px; position: relative; }
.cta-box p  { font-size: 16px; color: var(--gray-400); margin-bottom: 2rem; position: relative; }
.cta-btns   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer { background: #06090F; border-top: 1px solid var(--border); padding: 4rem 2.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.flogo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.flogo-mark { width: 34px; height: 34px; border-radius: 8px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; color: #fff; }
.flogo-text span:first-child { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.flogo-text span:last-child  { display: block; font-size: 9px; font-weight: 600; color: var(--gray-600); letter-spacing: 1.5px; text-transform: uppercase; }
.fdesc { font-size: 13px; color: var(--gray-500); line-height: 1.7; max-width: 260px; margin-bottom: 1.25rem; }
.vet-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; }
.fcol h5 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.fcol a { display: block; font-size: 14px; color: var(--gray-500); margin-bottom: 8px; transition: color var(--transition); }
.fcol a:hover { color: var(--gray-300); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: var(--gray-600); }
.fbl { display: flex; gap: 1.5rem; }
.fbl a { font-size: 13px; color: var(--gray-600); }
.fbl a:hover { color: var(--gray-400); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { position: static; }
  .about-photo { flex: 0 0 300px; height: 260px; }
  .about-photo-wide, .about-photo-portrait, .about-photo-sm { flex: 0 0 300px; height: 260px; }
  .cov-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .section { padding: 4rem 1.25rem; }
  .stitle { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-vehicle { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-box h2 { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-stats { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .btn-orange, .btn-ghost { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================================
   PHASE 2 — BOOKING SYSTEM STYLES
   Time slots, loading states, error states, success screen,
   field validation, form spinners, toast variants
   ============================================================ */

/* ── TIME SLOT CONTAINER ── */
.time-slots-container {
  min-height: 56px;
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 10px;
  background: var(--bg-card2);
  transition: border-color 0.2s;
}
.time-slots-container.field-error { border-color: #ef4444; }

.slots-label-hint {
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── TIME SLOT GRID ── */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 7px;
}

.time-slot-btn {
  padding: 9px 6px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  white-space: nowrap;
}

.time-slot-btn.available {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  color: var(--gray-300);
}
.time-slot-btn.available:hover {
  border-color: rgba(249,115,22,0.4);
  color: var(--orange-lt);
  background: rgba(249,115,22,0.06);
}
.time-slot-btn.available.selected {
  background: rgba(249,115,22,0.15);
  border-color: var(--orange);
  color: var(--orange);
  font-weight: 600;
}
.time-slot-btn.booked {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--gray-700);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ── SLOT STATUS MESSAGES ── */
.slots-msg {
  font-size: 13px;
  color: var(--gray-500);
  padding: 4px 2px;
}
.slots-hint {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 8px;
}

/* ── LOADING STATE ── */
.slots-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  padding: 4px 2px;
}
.slot-spinner {
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FORM FIELD ERRORS ── */
.fgrp input.field-error,
.fgrp select.field-error,
.fgrp textarea.field-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.field-error-msg {
  display: block;
  font-size: 11px;
  color: #f87171;
  margin-top: 4px;
  font-weight: 500;
}

/* ── SUBMIT BUTTON LOADING STATE ── */
.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

/* ── BOOKING SUCCESS STATE ── */
.booking-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34,197,94,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #4ade80;
}
.booking-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.booking-success > p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.success-details {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  text-align: left;
}
.success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.success-row:last-child { border-bottom: none; }
.success-row span { color: var(--gray-500); }
.success-row strong { color: var(--white); }
.success-note {
  font-size: 12px;
  color: var(--gray-600);
}
.success-note a { color: var(--orange); }

/* ── TOAST VARIANTS ── */
.toast.toast-error { background: #7f1d1d; }

/* ── PACKAGE.JSON UPDATE reminder styles ── (no-op, informational) ── */
</style>

/* ============================================================
   TESTIMONIALS / REVIEWS SECTION
   ============================================================ */
.reviews-bg { background: var(--bg-card); border-top: 1px solid var(--border); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(249,115,22,0.25); }
.review-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(249,115,22,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--orange);
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 600; color: var(--white); }
.review-meta { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.review-source { margin-left: auto; display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray-600); flex-shrink: 0; }

.review-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.review-aggregate { display: flex; align-items: center; gap: 12px; }
.aggregate-stars { color: #FBBF24; font-size: 18px; letter-spacing: 2px; }
.aggregate-score { font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; }
.aggregate-label { font-size: 13px; color: var(--gray-500); }
.review-btn { padding: 11px 24px; font-size: 14px; }

/* ============================================================
   MOBILE STICKY CTA BAR
   Fixed bar at bottom on mobile — truckers' most-used feature
   ============================================================ */
.mobile-cta-bar {
  display: none; /* shown only on mobile via media query */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg-card);
  border-top: 1px solid var(--border-md);
  padding: 10px 1rem calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mcta-call {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid rgba(249,115,22,0.5);
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.mcta-call:hover { background: rgba(249,115,22,0.08); }
.mcta-book {
  flex: 1.4;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px;
  border-radius: 10px;
  background: var(--orange);
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.mcta-book:hover { background: var(--orange-dk); }

/* Show mobile CTA on small screens */
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  /* Add bottom padding to body so content isn't hidden behind the bar */
  body { padding-bottom: 80px; }
  footer { padding-bottom: calc(3rem + 80px); }
}

/* ============================================================
   HONEYPOT FIELD — hidden from users, catches bots
   ============================================================ */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  height: 0; width: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LOGO IMAGE IN NAV — replaces the "E" text mark
   ============================================================ */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Slight brightness boost so logo pops on dark nav */
  filter: brightness(1.05) contrast(1.02);
}

/* On very small screens, shrink the logo */
@media (max-width: 480px) {
  .nav-logo-img { height: 36px; }
}

/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}
