/* ============================================================
   SHEPHERD LOGISTICS & HIRE — DESIGN SYSTEM
   Palette: Deep Navy / White / Safety Orange / Charcoal
   Type: Plus Jakarta Sans (display) / Inter (body) / JetBrains Mono (data)
   ============================================================ */

:root{
  /* Colour */
  --navy-900: #071427;
  --navy-800: #0B1F3A;
  --navy-700: #142c4e;
  --navy-600: #1f3f68;
  --white: #ffffff;
  --grey-50: #f6f7f9;
  --grey-100: #eceef2;
  --grey-300: #c9cdd6;
  --grey-500: #838a99;
  --charcoal: #202124;
  --orange: #F58220;
  --orange-600: #d96e0f;
  --orange-100: #fdeadb;
  --green-ok: #1b7a4d;

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 3px;
  --radius-md: 6px;
  --nav-h: 84px;

  /* Motion */
  --ease: cubic-bezier(.16,.8,.24,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy-800);
  margin:0 0 .5em;
  line-height:1.08;
  letter-spacing:-.01em;
}
h1{ font-weight:800; }
h2{ font-weight:800; }
h3,h4{ font-weight:700; }
p{ margin:0 0 1em; color:var(--charcoal); }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }

::selection{ background:var(--orange); color:var(--white); }

:focus-visible{
  outline:2.5px solid var(--orange);
  outline-offset:3px;
  border-radius:2px;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

.section{ padding:clamp(64px,9vw,120px) 0; }
.section--tight{ padding:clamp(40px,6vw,72px) 0; }
.bg-grey{ background:var(--grey-50); }
.bg-navy{ background:var(--navy-800); color:var(--white); }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4,.bg-navy p{ color:var(--white); }
.bg-navy .eyebrow{ color:var(--orange); }

/* ---------- Eyebrow / manifest-style labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange-600);
  font-weight:600;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:var(--orange);
  display:inline-block;
}

/* ---------- Section headers ---------- */
.section-head{
  max-width:640px;
  margin-bottom:48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); }
.section-head .lede{ color:var(--grey-500); font-size:17px; }
.bg-navy .section-head .lede{ color:#b9c3d4; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.01em;
  border-radius:2px;
  border:1.5px solid transparent;
  transition:transform .35s var(--ease), background-color .25s, border-color .25s, color .25s;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--orange); color:var(--white); }
.btn-primary:hover{ background:var(--orange-600); }
.btn-outline{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.5); }
.btn-outline:hover{ border-color:var(--white); background:rgba(255,255,255,.08); }
.btn-navy{ background:var(--navy-800); color:var(--white); }
.btn-navy:hover{ background:var(--navy-700); }
.btn-ghost{ background:transparent; color:var(--navy-800); border-color:var(--grey-300); }
.btn-ghost:hover{ border-color:var(--navy-800); }
.btn-block{ width:100%; }
.btn-sm{ padding:11px 20px; font-size:13px; }

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:14.5px;
  color:var(--navy-800);
  border-bottom:1.5px solid var(--orange);
  padding-bottom:2px;
  transition:gap .25s var(--ease), color .25s;
}
.text-link:hover{ gap:12px; color:var(--orange-600); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  transition:background-color .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav-inner-border{
  position:absolute; left:0; right:0; bottom:0; height:1px;
  background:rgba(255,255,255,.14);
  transition:background-color .4s;
}
.nav.is-scrolled{ background:var(--navy-800); box-shadow:0 8px 30px rgba(7,20,39,.18); height:72px; }
.nav.is-scrolled .nav-inner-border{ background:rgba(255,255,255,.08); }

.logo{ display:flex; align-items:center; gap:11px; }
.logo-img{ height:34px; width:auto; display:block; }
.footer-brand .logo-img{ height:30px; }

.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{
  font-family:var(--font-display);
  font-weight:600;
  font-size:14px;
  color:#dde3ec;
  position:relative;
  padding:6px 0;
  transition:color .25s;
}
.nav-links a:hover, .nav-links a.active{ color:var(--white); }
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--orange);
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:13px; color:#dde3ec; }
.nav-phone svg{ width:15px; height:15px; stroke:var(--orange); }

.nav-toggle{ display:none; background:none; border:none; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--white); margin:5px 0; transition:transform .3s, opacity .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  color:var(--white);
  background-color:var(--navy-900);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(7,20,39,.55) 0%, rgba(7,20,39,.35) 32%, rgba(7,20,39,.55) 68%, rgba(7,20,39,.94) 100%),
    linear-gradient(90deg, rgba(7,20,39,.65) 0%, rgba(7,20,39,.1) 55%);
}
.hero-content{ position:relative; z-index:1; width:100%; padding-bottom:clamp(56px,8vw,96px); padding-top:calc(var(--nav-h) + 40px); }
.hero-eyebrow{
  font-family:var(--font-mono); font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--orange); display:flex; align-items:center; gap:12px; margin-bottom:22px;
}
.hero-eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 4px rgba(245,130,32,.25); }
.hero h1{
  color:var(--white);
  font-size:clamp(40px,6.4vw,84px);
  max-width:16ch;
  margin-bottom:.3em;
}
.hero .sub{ font-size:clamp(16px,1.6vw,19px); max-width:46ch; color:#d6dde8; margin-bottom:40px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }
.hero-meta{
  display:flex; gap:0; border-top:1px solid rgba(255,255,255,.18); padding-top:26px; flex-wrap:wrap;
}
.hero-meta .stat{ padding-right:44px; margin-right:44px; border-right:1px solid rgba(255,255,255,.18); }
.hero-meta .stat:last-child{ border-right:none; margin-right:0; padding-right:0; }
.hero-meta .stat .num{ font-family:var(--font-mono); font-size:26px; font-weight:600; color:var(--white); display:block; }
.hero-meta .stat .lbl{ font-size:12.5px; color:#9fabbe; text-transform:uppercase; letter-spacing:.08em; }

/* ---------- Manifest / route divider — signature element ---------- */
.route-divider{
  display:flex; align-items:center; gap:0;
  padding:22px 0;
  color:var(--grey-500);
}
.route-divider .point{
  width:9px; height:9px; border-radius:50%; background:var(--orange); flex:none;
  box-shadow:0 0 0 4px var(--orange-100);
}
.route-divider .point.end{ background:var(--navy-800); box-shadow:0 0 0 4px var(--grey-100); }
.route-divider .line{
  flex:1; height:0; border-top:1.5px dashed var(--grey-300); margin:0 14px;
}
.route-divider .tag{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap;
  flex:none;
}

/* ============================================================
   CARDS — Who We Are / Services / Why Choose
   ============================================================ */
.grid{ display:grid; gap:28px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

.service-card{
  padding:36px 30px;
  background:var(--white);
  border:1px solid var(--grey-100);
  border-top:3px solid var(--navy-800);
  transition:border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{ border-top-color:var(--orange); transform:translateY(-5px); box-shadow:0 22px 40px -20px rgba(11,31,58,.25); }
.service-card .idx{ font-family:var(--font-mono); color:var(--grey-300); font-size:13px; margin-bottom:22px; display:block; }
.service-card h3{ font-size:19px; margin-bottom:10px; }
.service-card p{ color:var(--grey-500); font-size:14.5px; margin-bottom:0; }

.feature-row{ display:flex; gap:20px; padding:26px 0; border-top:1px solid var(--grey-100); }
.feature-row:last-child{ border-bottom:1px solid var(--grey-100); }
.feature-row .ico{
  flex:none; width:46px; height:46px; border-radius:2px;
  background:var(--navy-800); display:flex; align-items:center; justify-content:center;
}
.feature-row .ico svg{ width:22px; height:22px; stroke:var(--orange); }
.feature-row h4{ font-size:16.5px; margin-bottom:4px; }
.feature-row p{ font-size:14px; color:var(--grey-500); margin:0; }

/* ============================================================
   MANIFEST CARD — Fleet vehicle card (signature component)
   ============================================================ */
.manifest-card{
  background:var(--white);
  border:1px solid var(--grey-100);
  overflow:hidden;
  transition:box-shadow .35s var(--ease), transform .35s var(--ease);
}
.manifest-card:hover{ box-shadow:0 30px 60px -30px rgba(11,31,58,.3); transform:translateY(-4px); }
.manifest-media{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--grey-100); }
.manifest-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.manifest-card:hover .manifest-media img{ transform:scale(1.06); }
.manifest-badge{
  position:absolute; top:16px; left:16px;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 10px; background:rgba(7,20,39,.85); color:var(--white); backdrop-filter:blur(2px);
}
.manifest-status{
  position:absolute; top:16px; right:16px;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 10px; display:flex; align-items:center; gap:6px;
  background:var(--white);
}
.manifest-status .dot{ width:6px; height:6px; border-radius:50%; background:var(--green-ok); }
.manifest-status.booked .dot{ background:var(--grey-500); }

/* ---------- Availability states (soft, non-alarming) ---------- */
.manifest-status.limited .dot{ background:var(--orange); }
.manifest-status.full{ padding-right:12px; }
.manifest-status.full .dot{ background:var(--grey-500); }
.availability-note{
  font-family:var(--font-mono); font-size:12px; color:var(--grey-500);
  margin:-8px 0 18px; display:flex; align-items:center; gap:7px;
}
.availability-note .dot{ width:6px; height:6px; border-radius:50%; background:var(--grey-500); flex:none; }
.availability-note.limited .dot{ background:var(--orange); }
.availability-note strong{ color:var(--navy-800); font-weight:600; }

/* ---------- Simplified fleet card price row ---------- */
.manifest-price{
  font-family:var(--font-display); font-weight:800; font-size:24px; color:var(--navy-800);
  margin-bottom:20px;
}
.manifest-price span{ font-size:13.5px; font-weight:600; color:var(--grey-500); }

.manifest-body{ padding:26px 28px 28px; }
.manifest-unit{ font-family:var(--font-mono); font-size:12px; color:var(--grey-500); letter-spacing:.05em; margin-bottom:6px; }
.manifest-body h3{ font-size:22px; margin-bottom:18px; }
.manifest-specs{ display:grid; grid-template-columns:1fr 1fr; gap:14px 18px; padding:18px 0; border-top:1px dashed var(--grey-300); border-bottom:1px dashed var(--grey-300); margin-bottom:22px; }
.manifest-specs .spec-lbl{ font-size:11px; text-transform:uppercase; letter-spacing:.07em; color:var(--grey-500); margin-bottom:3px; }
.manifest-specs .spec-val{ font-family:var(--font-mono); font-size:14.5px; color:var(--navy-800); font-weight:600; }
.manifest-actions{ display:flex; gap:12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card{
  background:var(--navy-800); color:var(--white);
  padding:34px 32px;
  position:relative;
}
.testimonial-card .quote-mark{ font-family:var(--font-display); font-size:52px; color:var(--orange); line-height:.4; display:block; margin-bottom:18px; }
.testimonial-card p.quote{ font-size:16px; color:#e4e9f1; margin-bottom:26px; }
.testimonial-who{ display:flex; align-items:center; gap:12px; padding-top:18px; border-top:1px solid rgba(255,255,255,.15); }
.testimonial-who .initials{ width:38px; height:38px; border-radius:50%; background:var(--orange); color:var(--navy-900); display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:700; font-size:13px; flex:none; }
.testimonial-who .name{ font-family:var(--font-display); font-weight:700; font-size:14.5px; color:var(--white); }
.testimonial-who .role{ font-size:12.5px; color:#9fabbe; }

/* ============================================================
   CALCULATOR / QUOTE
   ============================================================ */
.calc-shell{
  display:grid; grid-template-columns:1.1fr .9fr; gap:0;
  background:var(--white); border:1px solid var(--grey-100);
  box-shadow:0 40px 80px -40px rgba(11,31,58,.25);
}
.calc-form{ padding:clamp(28px,4vw,48px); }
.calc-result{ background:var(--navy-800); color:var(--white); padding:clamp(28px,4vw,48px); }

.field{ margin-bottom:22px; }
.field label{ display:block; font-family:var(--font-display); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; color:var(--navy-800); }
.field .hint{ font-size:12.5px; color:var(--grey-500); margin-top:6px; }
.field select, .field input[type="number"], .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea{
  width:100%; padding:14px 16px; border:1.5px solid var(--grey-300); background:var(--white);
  font-family:var(--font-body); font-size:15px; color:var(--charcoal);
  transition:border-color .25s;
  border-radius:2px;
}
.field select:focus, .field input:focus, .field textarea:focus{ border-color:var(--navy-800); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }

.vehicle-toggle{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.vehicle-toggle input{ display:none; }
.vehicle-toggle label{
  display:block; padding:16px; border:1.5px solid var(--grey-300); cursor:pointer; text-align:center;
  transition:border-color .25s, background-color .25s;
}
.vehicle-toggle label .yr{ font-family:var(--font-mono); font-size:12px; color:var(--grey-500); display:block; margin-bottom:4px; }
.vehicle-toggle label .nm{ font-family:var(--font-display); font-weight:700; font-size:14.5px; color:var(--navy-800); }
.vehicle-toggle input:checked + label{ border-color:var(--orange); background:var(--orange-100); }

.driver-toggle{ display:flex; gap:12px; }
.driver-toggle input{ display:none; }
.driver-toggle label{ flex:1; padding:14px; border:1.5px solid var(--grey-300); text-align:center; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:14px; color:var(--navy-800); transition:.25s; }
.driver-toggle input:checked + label{ border-color:var(--orange); background:var(--orange-100); }

.result-label{ font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); margin-bottom:6px; }
.result-total{ font-family:var(--font-display); font-size:46px; font-weight:800; margin-bottom:4px; }
.result-total .cur{ font-size:22px; vertical-align:top; margin-right:4px; color:#9fabbe; }
.result-note{ font-size:13px; color:#9fabbe; margin-bottom:30px; }
.breakdown{ border-top:1px solid rgba(255,255,255,.18); padding-top:20px; }
.breakdown-row{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:6px 14px; padding:10px 0; font-size:14px; border-bottom:1px dashed rgba(255,255,255,.15); }
.breakdown-row span:first-child{ color:#b9c3d4; overflow-wrap:break-word; min-width:0; }
.breakdown-row span:last-child{ font-family:var(--font-mono); color:var(--white); overflow-wrap:break-word; }
.breakdown-row.total{ border-bottom:none; padding-top:18px; margin-top:6px; border-top:1px solid rgba(255,255,255,.25); }
.breakdown-row.total span{ font-family:var(--font-display); font-weight:800; font-size:17px; color:var(--white); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-item{ border-bottom:1px solid var(--grey-100); }
.accordion-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  background:none; border:none; padding:24px 0; text-align:left;
  font-family:var(--font-display); font-weight:700; font-size:16.5px; color:var(--navy-800);
}
.accordion-trigger .plus{ position:relative; width:18px; height:18px; flex:none; margin-left:20px; }
.accordion-trigger .plus::before, .accordion-trigger .plus::after{
  content:""; position:absolute; background:var(--orange); transition:transform .3s var(--ease);
}
.accordion-trigger .plus::before{ top:8px; left:0; width:18px; height:2px; }
.accordion-trigger .plus::after{ left:8px; top:0; width:2px; height:18px; }
.accordion-item.open .accordion-trigger .plus::after{ transform:rotate(90deg); opacity:0; }
.accordion-panel{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.accordion-panel .inner{ padding-bottom:24px; max-width:70ch; color:var(--grey-500); font-size:15px; }

/* ============================================================
   FORMS — contact / quote request
   ============================================================ */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-grid .full{ grid-column:1/-1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--navy-900); color:#c7cedb; padding:72px 0 28px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer h4{ color:var(--white); font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:20px; font-family:var(--font-mono); font-weight:600; }
.footer-links li{ margin-bottom:12px; }
.footer-links a{ font-size:14.5px; color:#b9c3d4; transition:color .2s; }
.footer-links a:hover{ color:var(--orange); }
.footer-brand p{ color:#9fabbe; font-size:14.5px; max-width:34ch; margin-top:16px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:12px; }
.footer-bottom small{ font-size:12.5px; color:#7c879b; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:36px; height:36px; border:1px solid rgba(255,255,255,.18); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:border-color .25s, background-color .25s; }
.footer-social a:hover{ border-color:var(--orange); background:rgba(245,130,32,.1); }
.footer-social svg{ width:15px; height:15px; stroke:var(--white); }

/* ============================================================
   FLOATING UI — WhatsApp / back to top
   ============================================================ */
.float-stack{ position:fixed; right:24px; bottom:24px; z-index:900; display:flex; flex-direction:column; gap:14px; align-items:flex-end; }
.fab{
  width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(7,20,39,.4);
  transition:transform .3s var(--ease), opacity .3s;
  border:none;
}
.fab-whatsapp{ background:#25D366; }
.fab-whatsapp svg{ width:26px; height:26px; fill:var(--white); }
.fab-top{ background:var(--navy-800); opacity:0; pointer-events:none; transform:translateY(10px); }
.fab-top.visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.fab-top svg{ width:18px; height:18px; stroke:var(--white); }
.fab:hover{ transform:translateY(-3px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger.in .r-item{ transition-delay:calc(var(--i) * 90ms); }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header{
  position:relative; color:var(--white); padding-top:calc(var(--nav-h) + 90px); padding-bottom:70px; overflow:hidden;
  background:var(--navy-900);
}
.page-header .hero-media{ opacity:.5; }
.page-header .hero-scrim{ background:linear-gradient(180deg, rgba(7,20,39,.5) 0%, rgba(7,20,39,.96) 100%); }
.page-header-content{ position:relative; z-index:1; }
.page-header h1{ color:var(--white); font-size:clamp(34px,4.6vw,58px); max-width:20ch; }
.breadcrumb{ font-family:var(--font-mono); font-size:12.5px; color:#9fabbe; margin-bottom:18px; letter-spacing:.04em; }
.breadcrumb .orange{ color:var(--orange); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.flex{ display:flex; } .items-center{ align-items:center; } .justify-between{ justify-content:space-between; }
.gap-12{ gap:12px; } .gap-20{ gap:20px; }
.text-center{ text-align:center; }
.small{ font-size:13.5px; color:var(--grey-500); }
.stack{ display:flex; flex-direction:column; gap:8px; }

/* ============================================================
   ORDER / CART LIST — cart.html, orders.html
   ============================================================ */
.order-item{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 0; border-bottom:1px solid var(--grey-100);
}
.order-item .oi-main{ min-width:0; flex:1 1 auto; }
.order-item .oi-main h4{ font-size:16.5px; margin-bottom:4px; overflow-wrap:break-word; }
.order-item .oi-main .oi-meta{ font-family:var(--font-mono); font-size:12.5px; color:var(--grey-500); overflow-wrap:break-word; }
.order-item .oi-price{ font-family:var(--font-display); font-weight:800; font-size:18px; color:var(--navy-800); white-space:nowrap; }
.oi-remove{
  background:none; border:1.5px solid var(--grey-300); color:var(--grey-500);
  width:34px; height:34px; border-radius:2px; flex:none;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s, color .2s;
}
.oi-remove:hover{ border-color:#c0392b; color:#c0392b; }
.oi-remove svg{ width:15px; height:15px; }

.empty-state{
  text-align:center; padding:70px 20px; border:1.5px dashed var(--grey-300);
}
.empty-state svg{ width:44px; height:44px; stroke:var(--grey-300); margin:0 auto 18px; }
.empty-state p{ color:var(--grey-500); }

.cart-badge{
  position:absolute; top:-8px; right:-8px;
  background:var(--orange); color:var(--white);
  font-family:var(--font-mono); font-size:11px; font-weight:700;
  width:19px; height:19px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.nav-drawer .cart-badge{ position:static; margin-left:8px; }

.order-confirm{
  text-align:center; padding:56px 30px;
}
.order-confirm .check{
  width:64px; height:64px; border-radius:50%; background:var(--orange-100);
  display:flex; align-items:center; justify-content:center; margin:0 auto 22px;
}
.order-confirm .check svg{ width:30px; height:30px; stroke:var(--orange); }
.order-confirm .ref{ font-family:var(--font-mono); font-size:15px; color:var(--navy-800); background:var(--grey-50); display:inline-block; padding:8px 16px; margin:14px 0 26px; letter-spacing:.04em; }

.lookup-result{
  border:1px solid var(--grey-100); padding:24px 26px; margin-bottom:16px;
}
.lookup-result .lr-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; flex-wrap:wrap; gap:8px; }
.lookup-result .lr-ref{ font-family:var(--font-mono); font-size:14px; color:var(--navy-800); font-weight:600; }
.lookup-result .lr-status{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; padding:5px 10px; background:var(--orange-100); color:var(--orange-600); }
.lookup-result .lr-date{ font-size:12.5px; color:var(--grey-500); }
@media (max-width:1080px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .calc-shell{ grid-template-columns:1fr; }
}
@media (max-width:860px){
  .nav-links, .nav-cta{ display:none; }
  .nav-toggle{ display:block; }
  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .hero-meta .stat{ padding-right:26px; margin-right:26px; }
}
@media (max-width:640px){
  .grid-4{ grid-template-columns:1fr 1fr; }
  .footer-top{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .vehicle-toggle{ grid-template-columns:1fr; }
}

/* ---------- Mobile nav drawer ---------- */
.nav-drawer{
  position:fixed; inset:0; z-index:999; background:var(--navy-900);
  display:flex; flex-direction:column; padding:110px var(--gutter) 40px;
  transform:translateX(100%); transition:transform .45s var(--ease);
}
.nav-drawer.open{ transform:translateX(0); }
.nav-drawer a{ font-family:var(--font-display); font-weight:700; font-size:26px; color:var(--white); padding:14px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.nav-drawer .btn{ margin-top:30px; }


@keyframes footerFadeIn{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:translateY(0); }
}
.syntech-link:hover{ opacity:.7; }