/* ============================================================
   FREIGHT TRANS LOGISTICS — Universal Stylesheet v3
   Palette: Navy #1A2636 | Crimson #C0272D | Gold #E8A020
   ============================================================ */

/* Fonts are loaded via <link> tags in each page's <head> — using @import here
   would delay the font request until this file had been fetched and parsed. */

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

/* ─── FIX: Force scrollbar always visible to prevent layout
         shift (stutter/shake) when navigating between pages ── */
html {
  scroll-behavior: smooth;
  overflow-y: scroll;          /* prevents CLS from scrollbar appearing */
  scrollbar-gutter: stable;    /* modern browsers: reserve space always  */
}

:root {
  --navy:       #1A2636;
  --navy-dark:  #0F1A26;
  --navy-mid:   #1E2F42;
  --crimson:    #C0272D;
  --crimson-dk: #9B1E23;
  --crimson-lt: #D94248;
  --gold:       #E8A020;
  --gold-lt:    #F5C060;
  --white:      #FFFFFF;
  --off-white:  #F6F7F9;
  --grey-lt:    #E4E7EB;
  --grey-mid:   #94A3B8;
  --grey-dk:    #475569;
  --text:       #1A2636;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow:    0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.18);
  --shadow-xl: 0 28px 72px rgba(0,0,0,0.22);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --container:  1200px;
  --nav-h:      70px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* FIX: prevent horizontal overflow on any page */
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
svg { display: block; flex-shrink: 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p  { color: var(--grey-dk); max-width: 66ch; line-height: 1.82; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

.section       { padding: clamp(60px, 8vw, 100px) 0; }
.section--alt  { background: var(--off-white); }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.58); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px, 2.5vw, 28px); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(14px, 2vw, 24px); }

/* ── Section Labels ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title { margin-bottom: 16px; }
.divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 3px;
  margin-bottom: 28px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.centered { text-align: center; }
.centered p { margin: 0 auto; }

/* ── Icon Wrappers ──────────────────────────────────────────── */
.iw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background var(--transition);
}
.iw--cr  { background: rgba(192,39,45,0.09); }
.iw--cr svg  { color: var(--crimson); }
.iw--gold{ background: rgba(232,160,32,0.12); }
.iw--gold svg{ color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.btn-primary:hover { background: var(--crimson-dk); border-color: var(--crimson-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,39,45,0.36); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-weight: 800; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,160,32,0.32); }

.btn-outline { background: transparent; color: var(--crimson); border-color: var(--crimson); }
.btn-outline:hover { background: var(--crimson); color: var(--white); transform: translateY(-2px); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,20,30,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow var(--transition), border-color var(--transition);
  /* FIX: promote to own layer to prevent repaint stutter */
  will-change: transform;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  border-bottom-color: rgba(192,39,45,0.28);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(16px,4vw,28px);
  max-width: var(--container);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.navbar__logo:hover { opacity: 0.85; }
.navbar__logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.navbar__nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.navbar__nav a.active { color: var(--white); }
.navbar__nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.navbar__cta.btn { padding: 9px 18px; font-size: 0.75rem; margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ── Nav overlay (mobile backdrop) ─────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* Close button inside mobile nav */
.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}
.nav-close:hover { background: rgba(192,39,45,0.3); }
.nav-close svg { width: 18px; height: 18px; }

/* Nav divider inside mobile panel */
.nav-divider {
  display: none;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 12px 0;
}



/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;     /* svh = safe viewport height on mobile */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* FIX: no background-attachment:fixed — causes iOS glitch & page stutter */
  background-image:
    linear-gradient(128deg, rgba(10,20,30,0.95) 0%, rgba(26,38,54,0.82) 55%, rgba(192,39,45,0.12) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.hero__geo {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 1px solid rgba(232,160,32,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero__geo::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(192,39,45,0.08);
  border-radius: 50%;
}
.hero__stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: clamp(40px,6vh,80px) 0;
  animation: slideUp 0.85s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.22);
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.2vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  max-width: 100%;
}
.hero__pill-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.7); }
}

.hero h1 { color: var(--white); margin-bottom: 20px; text-transform: uppercase; }
.hero h1 em { color: var(--crimson); font-style: normal; }

.hero__lead {
  color: rgba(255,255,255,0.6);
  font-size: clamp(0.95rem, 1.8vw, 1.06rem);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 52ch;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats row inside hero */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 0;
  margin-top: clamp(40px,6vh,72px);
  padding-top: clamp(24px,4vh,48px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat {
  padding-right: clamp(20px,3.5vw,44px);
  margin-right: clamp(20px,3.5vw,44px);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Feature Bar ─────────────────────────────────────────────── */
.feature-bar { background: var(--crimson); }
.feature-bar__inner {
  display: grid;
  /* Column count follows the number of items, so removing or adding a
     service never leaves an empty column. */
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,28px);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  position: relative;
  transition: background var(--transition);
}
/* Align the first item flush with the container edge so the bar reads as a
   row rather than three floating blocks. */
.feature-item:first-child { padding-left: 0; }
/* Divider drawn as a pseudo-element so it never appears on a row's first
   item, whatever the column count resolves to at a given width. */
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(255,255,255,0.22);
}
.feature-item:first-child::before { display: none; }
.feature-item:hover { background: rgba(0,0,0,0.1); }
.feature-item > svg { width: 24px; height: 24px; color: rgba(255,255,255,0.9); flex-shrink: 0; }
.feature-item__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature-item__text span { font-size: 0.74rem; color: rgba(255,255,255,0.65); }

/* Stack the bar only once three columns genuinely stop fitting. */
@media (max-width: 760px) {
  .feature-bar__inner { grid-template-columns: 1fr; }
  .feature-item { justify-content: flex-start; padding: 18px 4px; }
  .feature-item::before { display: none; }
  .feature-item + .feature-item { border-top: 1px solid rgba(255,255,255,0.16); }
}

/* ── About Intro ─────────────────────────────────────────────── */
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-visual img {
  height: clamp(320px, 45vw, 560px);
  width: 100%;
  border-radius: var(--radius-xl);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--crimson);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
}
.about-badge strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge span   { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; }

/* Badge: compact and pinned to the top-right on every non-desktop width.
   At full size it covered ~30% of the photo on a phone and sat over the
   truck. Breakpoint is 1024px so tablets get the compact treatment too. */
@media (max-width: 1024px) {
  .about-badge {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    max-width: 42%;
    padding: 7px 11px;
    border-radius: 10px;
  }
  .about-badge strong { font-size: 1.15rem; line-height: 1.05; }
  .about-badge span {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
    display: block;
    margin-top: 1px;
  }
}

@media (max-width: 420px) {
  .about-badge {
    top: 8px;
    right: 8px;
    max-width: 46%;
    padding: 6px 9px;
    border-radius: 8px;
  }
  .about-badge strong { font-size: 1rem; }
  .about-badge span   { font-size: 0.46rem; letter-spacing: 0.04em; }
}

.checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.94rem; color: var(--grey-dk); }
.check-icon {
  width: 20px; height: 20px;
  background: rgba(192,39,45,0.09);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 11px; height: 11px; color: var(--crimson); }

/* ── Service Cards ───────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-lt);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card__img { height: 200px; overflow: hidden; flex-shrink: 0; }
.service-card__img img { height: 100%; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.svc-icon {
  width: 50px; height: 50px;
  background: rgba(192,39,45,0.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  transition: background var(--transition);
}
.svc-icon svg { width: 24px; height: 24px; color: var(--crimson); transition: color var(--transition); }
.service-card:hover .svc-icon { background: var(--crimson); }
.service-card:hover .svc-icon svg { color: var(--white); }
.service-card__body h3 { margin-bottom: 10px; color: var(--navy); }
.service-card__body p  { font-size: 0.91rem; margin-bottom: 20px; flex: 1; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.service-card__tags span {
  background: var(--off-white);
  border: 1px solid var(--grey-lt);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 0.71rem;
  color: var(--grey-dk);
  font-weight: 600;
}

/* ── Stats Band ──────────────────────────────────────────────── */
.stats-band { background: var(--navy-dark); }
.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,28px);
}
.stat-cell {
  padding: clamp(36px,5vw,56px) clamp(16px,2.5vw,32px);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-cell:last-child { border-right: none; }
.stat-cell__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-cell__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner { background: var(--navy-dark); padding: clamp(56px,8vw,88px) 0; position: relative; }
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p  { color: rgba(255,255,255,0.48); max-width: 48ch; margin-top: 10px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Page Header ─────────────────────────────────────────────── */
.page-header {
  background: var(--navy-dark);
  padding: clamp(120px,15vw,168px) 0 clamp(48px,7vw,96px);
  position: relative;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}
.page-header__content { position: relative; }
.page-header h1 { color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,0.52); font-size: clamp(0.95rem,2vw,1.06rem); font-weight: 300; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb svg { width: 11px; height: 11px; color: rgba(255,255,255,0.22); }

/* ── Value Cards ─────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px,3vw,36px) clamp(20px,2.5vw,30px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-lt);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(192,39,45,0.14); }
.value-card__num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--grey-lt);
  line-height: 1;
  pointer-events: none;
}
.val-icon {
  width: 52px; height: 52px;
  background: rgba(192,39,45,0.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.val-icon svg { width: 26px; height: 26px; color: var(--crimson); }
.value-card:hover .val-icon { background: var(--crimson); }
.value-card:hover .val-icon svg { color: var(--white); }
.value-card h3 { color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: 0.9rem; margin: 0; }

/* ── Founder Card ────────────────────────────────────────────── */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--grey-lt);
  display: grid;
  grid-template-columns: 380px 1fr;
}
.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--navy);
}
.founder-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.founder-photo__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,20,30,0.9), transparent);
}
.founder-photo__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.founder-photo__title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}
.founder-body {
  padding: clamp(32px,5vw,56px) clamp(28px,4vw,52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-body__role {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  display: block;
  margin-bottom: 8px;
}
.founder-body h2 { color: var(--navy); margin-bottom: 14px; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; }
.founder-divider { width: 40px; height: 3px; background: linear-gradient(90deg, var(--crimson), var(--gold)); border-radius: 3px; margin-bottom: 24px; }
.founder-body p { margin-bottom: 14px; }
.founder-stats {
  display: flex;
  gap: clamp(20px,3vw,36px);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-lt);
  flex-wrap: wrap;
}
.f-stat-num { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--crimson); line-height: 1; }
.f-stat-label { display: block; font-size: 0.72rem; color: var(--grey-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.founder-contact-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.founder-contact-row svg { width: 15px; height: 15px; color: var(--crimson); flex-shrink: 0; }
.founder-contact-row a { font-size: 0.9rem; color: var(--grey-dk); transition: color var(--transition); }
.founder-contact-row a:hover { color: var(--crimson); }

/* ── Mission / Vision ─────────────────────────────────────────── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.mv-card { border-radius: var(--radius-xl); padding: clamp(32px,4vw,48px) clamp(24px,3.5vw,40px); position: relative; overflow: hidden; }
.mv-card--mission { background: var(--navy); }
.mv-card--vision  { background: var(--crimson); }
.mv-label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.mv-card h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.4rem,2.5vw,1.8rem); }
.mv-card p  { color: rgba(255,255,255,0.7); max-width: unset; }
.mv-bg-icon { position: absolute; right: 24px; top: 24px; opacity: 0.05; }
.mv-bg-icon svg { width: 80px; height: 80px; color: var(--white); }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 36px; margin-top: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--crimson), var(--gold));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -31px; top: 5px;
  width: 12px; height: 12px;
  background: var(--crimson);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--crimson);
}
.timeline-year { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; color: var(--crimson); text-transform: uppercase; margin-bottom: 2px; }
.timeline-item h4 { color: var(--navy); margin-bottom: 4px; }
.timeline-item p  { font-size: 0.88rem; margin: 0; }

/* ── Coverage Tags ────────────────────────────────────────────── */
.coverage-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.ctag {
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.22);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Why Grid ─────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px,3vw,36px);
  border: 1px solid var(--grey-lt);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--crimson), var(--gold));
  border-radius: var(--radius) 0 0 var(--radius);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 46px; height: 46px;
  background: rgba(192,39,45,0.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.why-icon svg { width: 22px; height: 22px; color: var(--crimson); }
.why-card h4 { color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: 0.9rem; }

/* ── Service Detail ───────────────────────────────────────────── */
.service-detail--alt  { background: var(--off-white); }
.service-detail--dark { background: var(--navy-dark); color: var(--white); }
.service-detail--dark p { color: rgba(255,255,255,0.58); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.svc-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: clamp(300px,35vw,460px);
  position: relative;
}
.svc-img-wrap img { height: 100%; width: 100%; object-fit: cover; }
.svc-img-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 24px 0;
}
.svc-feat { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; color: var(--grey-dk); }
.svc-feat svg { width: 13px; height: 13px; color: var(--crimson); flex-shrink: 0; }

.wh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.wh-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(20px,2.5vw,28px) clamp(16px,2vw,22px);
  transition: background var(--transition);
}
.wh-item:hover { background: rgba(255,255,255,0.09); }
.wh-icon { width: 42px; height: 42px; background: rgba(232,160,32,0.12); border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 12px; }
.wh-icon svg { width: 20px; height: 20px; color: var(--gold); }
.wh-item h4 { font-family: var(--font-display); font-size: 0.9rem; color: var(--white); margin-bottom: 5px; }
.wh-item p  { font-size: 0.8rem; color: rgba(255,255,255,0.52); margin: 0; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px,5vw,64px); align-items: start; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--grey-lt);
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(192,39,45,0.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.ci-icon svg { width: 18px; height: 18px; color: var(--crimson); }
.contact-info-item:hover .ci-icon { background: var(--crimson); }
.contact-info-item:hover .ci-icon svg { color: var(--white); }
.contact-info-item strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 0.86rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-info-item span, .contact-info-item a { font-size: 0.88rem; color: var(--grey-dk); display: block; }
.contact-info-item a:hover { color: var(--crimson); }


.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,52px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-lt);
  border-top: 3px solid var(--crimson);
}
.form-card h3 { margin-bottom: 5px; color: var(--navy); }
.form-card > p { font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--grey-lt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(192,39,45,0.09);
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }

/* ── Office Cards ─────────────────────────────────────────────── */
.office-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.office-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-lt);
  transition: all var(--transition);
}
.office-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.office-card__img { height: 190px; overflow: hidden; }
.office-card__img img { height: 100%; transition: transform 0.6s ease; }
.office-card:hover .office-card__img img { transform: scale(1.05); }
.office-card__body { padding: 24px; }
.office-card__body h3 { color: var(--navy); margin-bottom: 3px; }
.office-card__tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  display: block;
  margin-bottom: 12px;
}
.office-detail { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 9px; font-size: 0.86rem; color: var(--grey-dk); }
.office-detail svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.map-wrap { border-radius: var(--radius-xl); overflow: hidden; height: 360px; box-shadow: var(--shadow); border: 1px solid var(--grey-lt); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Quick Contact ────────────────────────────────────────────── */
.qc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,40px);
  text-align: center;
  transition: all var(--transition);
  display: block;
}
.qc-card:hover { background: rgba(192,39,45,0.1); border-color: rgba(192,39,45,0.22); transform: translateY(-4px); }
.qc-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.07); border-radius: var(--radius-lg); display: grid; place-items: center; margin: 0 auto 14px; }
.qc-icon svg { width: 24px; height: 24px; color: var(--gold); }
.qc-card strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.qc-card span { color: var(--gold); font-size: 0.88rem; }

/* ── Form Success ─────────────────────────────────────────────── */
.form-success {
  display: none;
  background: #edfaf3;
  border: 1.5px solid #6fcf97;
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #1a7a45;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
  font-size: 0.94rem;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding: clamp(56px,7vw,88px) 0 0; border-top: 3px solid var(--crimson); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: clamp(28px,4vw,48px);
  padding-bottom: clamp(40px,6vw,64px);
}
.footer__brand-logo { display: flex; align-items: center; margin-bottom: 18px; }
.footer__logo-img { height: 42px; width: auto; display: block; object-fit: contain; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 34ch; line-height: 1.82; }

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer__links a svg { width: 11px; height: 11px; color: var(--crimson); }
.footer__links a:hover { color: var(--gold); }

.footer__contact-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; font-size: 0.84rem; }
.footer__contact-row svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact-row span, .footer__contact-row a { color: rgba(255,255,255,0.42); }
.footer__contact-row a:hover { color: var(--gold); }

.social-links { display: flex; gap: 9px; margin-top: 22px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  transition: all var(--transition);
}
.social-link svg { width: 15px; height: 15px; color: rgba(255,255,255,0.48); }
.social-link:hover { background: var(--crimson); border-color: var(--crimson); transform: translateY(-2px); }
.social-link:hover svg { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.26); max-width: unset; margin: 0; }
.footer__bottom a { color: var(--gold); font-weight: 700; transition: opacity var(--transition); }
.footer__bottom a:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablet landscape: 1100px ─────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-band__inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .founder-card { grid-template-columns: 320px 1fr; }
}

/* ── Tablet portrait: 900px ───────────────────────────────── */
@media (max-width: 900px) {

  .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .wh-grid  { grid-template-columns: repeat(2,1fr); }

  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { min-height: 340px; }

  .svc-detail-grid { grid-template-columns: 1fr !important; direction: ltr !important; }

  .contact-layout { grid-template-columns: 1fr; }
  .office-cards   { grid-template-columns: 1fr; }
}

/* ── Mobile: 768px ────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav: full-height slide-in from right */
  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100svh;
    width: min(360px, 88vw);
    background: var(--navy-dark);
    border-left: 1px solid rgba(255,255,255,0.07);
    flex-direction: column;
    padding: 80px 28px 40px;
    gap: 4px;
    z-index: 999;
    display: flex;           /* always in DOM, controlled by transform */
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -8px 0 48px rgba(0,0,0,0.5);
  }
  .navbar__nav.open {
    transform: translateX(0);
  }
  .navbar__nav a {
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .navbar__nav a:last-of-type { border-bottom: none; }
  .navbar__nav a.active {
    color: var(--white);
    background: rgba(192,39,45,0.12);
  }
  .navbar__nav a.active::after { display: none; }
  .navbar__cta.btn {
    width: 100%;
    justify-content: center;
    margin: 16px 0 0;
    padding: 14px;
  }
  .nav-close   { display: flex; }
  .nav-divider { display: block; }
  .hamburger   { display: flex; }

  .section { padding: clamp(48px,7vw,72px) 0; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero__geo { display: none; }
  .hero__content { max-width: 100%; }
  .hero__pill { font-size: 0.6rem; letter-spacing: 0.12em; }

  /* Hero stats: 2x2 grid on mobile */
  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    padding-top: 28px;
  }
  .hero__stat {
    padding: clamp(14px,3vw,20px) clamp(8px,2vw,16px);
    border-right: 1px solid rgba(255,255,255,0.08);
    margin-right: 0;
    padding-right: 0;
  }
  .hero__stat:nth-child(1) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-left: 0; }
  .hero__stat:nth-child(2) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-left: 20px; }
  .hero__stat:nth-child(3) { border-right: none; padding-top: 18px; padding-left: 0; }
  .hero__stat:nth-child(4) { border-right: none; padding-top: 18px; padding-left: 20px; }
  .hero__stat:last-child   { border-right: none; }

  /* Grids */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  /* About image — less tall on mobile */
  .about-visual img { height: clamp(260px,60vw,380px); }

  /* Service cards: 1 col on mobile */
  .grid-3 .service-card { max-width: 100%; }

  /* Stats band 2 col on mobile */
  .stats-band__inner { grid-template-columns: repeat(2,1fr); }

  /* CTA banner stacks */
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner p { margin: 10px auto 0; }
  .cta-banner__actions { justify-content: center; }

  /* Form */
  .form-card { padding: clamp(20px,5vw,32px); }
  .form-row  { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ── Small mobile: 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.85rem,8vw,2.3rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .feature-item { padding: 16px 0; }
  .feature-item > svg { width: 20px; height: 20px; }

  .stats-band__inner { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 30px 16px; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(4) { border-right: none; }

  .wh-grid      { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }

  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }

  .page-header { padding-top: clamp(100px,20vw,140px); }
  .page-header h1 { font-size: clamp(1.7rem,7vw,2.2rem); }

  .founder-body { padding: 24px 20px; }
  .founder-stats { gap: 20px; }

  .mv-card { padding: 28px 22px; }

  /* Footer single col */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }

  .office-cards { grid-template-columns: 1fr; }
}

/* ── Very small: 360px ────────────────────────────────────── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.75rem; }
  .btn     { padding: 11px 18px; font-size: 0.8rem; }
  .navbar__logo-img { height: 36px; }
}

/* ════════════════════════════════════════════════════════════════
   Fleet carousel  (services.html — Road Freight & Distribution)
   Sits inside .svc-img-wrap, which already supplies the rounded
   corners, shadow and clamped height.
   ════════════════════════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.carousel { position: relative; background: var(--navy); }
.carousel:focus-visible { outline: 3px solid var(--crimson); outline-offset: 3px; }

.carousel__track { position: absolute; inset: 0; }

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.carousel__slide.is-active { opacity: 1; visibility: visible; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; }

/* ── Prev / next ─────────────────────────────────────────────── */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(15, 26, 38, 0.55);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 3;
}
.carousel:hover .carousel__nav,
.carousel:focus-within .carousel__nav { opacity: 1; }
.carousel__nav:hover  { background: var(--crimson); }
.carousel__nav:focus-visible { opacity: 1; outline: 2px solid #fff; outline-offset: 2px; }

.carousel__nav[data-dir="prev"] { left: 14px; }
.carousel__nav[data-dir="next"] { right: 14px; }
.carousel__nav[data-dir="prev"] svg { transform: rotate(180deg); }

/* ── Dots ────────────────────────────────────────────────────── */
.carousel__dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(15, 26, 38, 0.42);
  backdrop-filter: blur(6px);
  z-index: 3;
}
.carousel__dots button {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.carousel__dots button:hover { background: rgba(255, 255, 255, 0.8); }
.carousel__dots button.is-active { background: var(--crimson); width: 22px; border-radius: 100px; }
.carousel__dots button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Keep the "Road Freight" tag above the slides */
.carousel .svc-img-tag { z-index: 3; }

/* Touch devices have no hover — keep the arrows visible */
@media (hover: none) {
  .carousel__nav { opacity: 1; }
}

@media (max-width: 480px) {
  .carousel__nav { width: 34px; height: 34px; }
  .carousel__nav[data-dir="prev"] { left: 8px; }
  .carousel__nav[data-dir="next"] { right: 8px; }
}

/* Respect reduced-motion: JS stops autoplay, CSS drops the fade */
@media (prefers-reduced-motion: reduce) {
  .carousel__slide { transition: none; }
}

/* ── Contact form: inline error + spam honeypot ─────────────── */
.form-error {
  display: none;
  background: #fdf0f0;
  border: 1.5px solid #e88b8b;
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #a32020;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Visually and functionally hidden, but still reachable by bots
   that parse the DOM — do not swap this for display:none, some
   crawlers skip those fields. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
