/* =========================================================
   ALLLOAD COURIER SOLUTIONS
   Global stylesheet
   Brand: navy #0A1B4D / blue #1B4DE4 / white
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #050f2e;
  --navy-800: #0a1b4d;
  --navy-700: #0f2668;
  --navy-600: #16357f;

  --blue-600: #0038c4;
  --blue-500: #0046ee;   /* exact brand blue from the AL logo */
  --blue-400: #3b6bff;
  --blue-100: #e8eeff;
  --blue-050: #f4f7ff;

  --ink-900: #0b1220;
  --ink-700: #2a3550;
  --ink-500: #5a6684;
  --ink-300: #98a2b8;

  --line: #e4e9f4;
  --line-strong: #cfd7ea;
  --surface: #ffffff;
  --surface-alt: #f6f8fd;

  --green-500: #25d366;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(10, 27, 77, .06), 0 2px 8px rgba(10, 27, 77, .04);
  --shadow-md: 0 10px 30px rgba(10, 27, 77, .10);
  --shadow-lg: 0 26px 60px rgba(10, 27, 77, .18);

  --container: 1200px;
  --gutter: 22px;

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue-500); text-decoration: none; }
a:hover { color: var(--blue-600); }
button { font: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.15rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 8vw, 112px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }
.section--alt { background: var(--surface-alt); }
.section--navy { background: var(--navy-800); color: #c8d3f0; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

/* Full-bleed photographic section. Declared after .section--navy so its
   background shorthand does not reset the image. */
.section--photo {
  position: relative; overflow: hidden;
  --photo-img: url("../img/hero-fleet-1920.jpg");
  background-color: #00072f;
  background-image: var(--photo-img);
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
}
/* Weighted to the left where the copy sits, clearing to the right so the
   artic — the largest vehicle in the shot — stays readable. */
.section--photo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(95deg, rgba(2,8,30,.95) 0%, rgba(2,8,30,.88) 36%,
                              rgba(2,8,30,.55) 62%, rgba(2,8,30,.22) 100%);
}
.section--photo > .container { position: relative; z-index: 2; }
.section--photo__inner { max-width: 620px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue-500); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section--navy .eyebrow { color: var(--blue-400); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--ink-500); margin-bottom: 0; }
.section--navy .section-head p { color: #a9b7dd; }

.lead { font-size: 1.12rem; color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-500);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-sm);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27, 77, 228, .28); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); box-shadow: none; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-800); border-color: var(--line-strong); }
.btn--outline:hover { background: var(--blue-050); border-color: var(--blue-400); box-shadow: none; }
.btn--whatsapp { --btn-bg: var(--green-500); --btn-fg: #06331a; }
.btn--whatsapp:hover { box-shadow: 0 12px 26px rgba(37, 211, 102, .3); }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .93rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 13px; color: inherit; }
/* Two files rather than one recoloured: the L is black in the supplied
   artwork, so dark surfaces need the white-L variant. */
.logo__mark { width: auto; height: 30px; flex: none; }
.footer .logo__mark { height: 38px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1.16rem;
  letter-spacing: -.02em; color: currentColor;
}
.logo__text small {
  font-family: var(--font-head); font-weight: 600; font-size: .58rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--blue-500); margin-top: 4px;
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; }

.topbar { background: var(--navy-900); color: #a9b7dd; font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.topbar__tag { display: inline-flex; align-items: center; gap: 9px; }
.topbar__tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(37, 211, 102, .18); }
.topbar__contact { display: flex; align-items: center; gap: 22px; }
.topbar__contact a { color: #dbe4ff; display: inline-flex; align-items: center; gap: 8px; }
.topbar__contact a:hover { color: #fff; }
.topbar__contact svg { width: 14px; height: 14px; opacity: .75; }

.nav { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease; }
.site-header.is-stuck .nav { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; gap: 26px; min-height: var(--header-h); color: var(--navy-800); }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  position: relative; padding: 10px 13px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 600; font-size: .94rem; color: var(--navy-800);
}
.nav__links a:hover { background: var(--blue-050); color: var(--blue-600); }
.nav__links a.is-active { color: var(--blue-500); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--blue-500); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__actions .btn { padding: 12px 20px; font-size: .9rem; }

.nav__toggle {
  display: none; width: 46px; height: 42px; flex: none; border: 1px solid var(--line-strong);
  background: #fff; border-radius: var(--radius-sm); cursor: pointer; position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px; border-radius: 2px;
  background: var(--navy-800); transform: translateX(-50%); transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { top: -6px; left: 0; transform: none; }
.nav__toggle span::after { top: 6px; left: 0; transform: none; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #c3d0f2;
  /* Fit the photo to the full width so the entire fleet line-up stays visible —
     `cover` would crop the outer vehicles away on a tall hero. The gradient behind
     it is sampled from the photo's own top edge (dark left, blue glow right) so the
     join is seamless. */
  --hero-img: url("../img/hero-fleet-1920.jpg");
  background-color: #00072f;
  background-image: var(--hero-img);
  /* The section carries the photograph's own 1915:821 ratio, so `cover` fills it
     exactly — no letterboxing and no colour band above the image. min-height is
     the floor that stops the copy overflowing on shorter desktop widths, where
     `cover` then crops the sides rather than leaving a gap. */
  aspect-ratio: 1915 / 821;
  min-height: 640px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex; align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
}
/* Gentle lift under the copy only; the photo's sky is already near-black. */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(0,3,26,.90) 0%, rgba(0,4,28,.86) 32%,
                              rgba(0,6,38,.64) 52%, rgba(0,8,45,.22) 74%, transparent 100%);
}
/* .container centres itself; the copy must not inherit that or it floats to the
   middle of the page instead of lining up with every other section's left edge. */
.hero > .container { position: relative; z-index: 2; }
.hero__inner { max-width: 680px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue-400); }
.hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: #b4c3ea; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; color: #b8c6ec; }
.hero__trust svg { width: 17px; height: 17px; color: var(--blue-400); flex: none; }


/* ---------- Image placeholders ---------- */
.ph {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-color: var(--navy-700);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 50%,
                    rgba(255,255,255,.05) 50%, rgba(255,255,255,.05) 75%, transparent 75%);
  background-size: 22px 22px;
  color: rgba(255,255,255,.72); overflow: hidden; isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59,107,255,.4), transparent 60%);
}
.ph__label {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  letter-spacing: .13em; text-transform: uppercase;
  background: rgba(5,15,46,.55); border: 1px solid rgba(255,255,255,.2);
  padding: 9px 15px; border-radius: 100px; backdrop-filter: blur(4px); text-align: center;
}
.ph__label svg { width: 15px; height: 15px; flex: none; }
.ph--light { background-color: var(--blue-100); color: var(--navy-700); }
.ph--light::before { background: radial-gradient(circle at 30% 20%, rgba(27,77,228,.18), transparent 60%); }
.ph--light .ph__label { background: rgba(255,255,255,.75); border-color: var(--line-strong); }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--3x4 { aspect-ratio: 3 / 4; }
.ph--wide { aspect-ratio: 21 / 9; }
.ph--rounded { border-radius: var(--radius); }

/* ---------- Feature strip ---------- */
.strip { background: #fff; border-bottom: 1px solid var(--line); }
.strip__grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.strip__item {
  padding: 30px 18px; text-align: center; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  transition: background .2s ease;
}
.strip__item:last-child { border-right: 0; }
.strip__item:hover { background: var(--blue-050); }
.strip__item svg { width: 30px; height: 30px; color: var(--blue-500); }
.strip__item span {
  font-family: var(--font-head); font-weight: 700; font-size: .84rem;
  color: var(--navy-800); line-height: 1.35;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transition: width .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card:hover::after { width: 100%; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-050); color: var(--blue-500); margin-bottom: 18px;
  border: 1px solid var(--blue-100);
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-500); font-size: .96rem; margin-bottom: 16px; }
.card p:last-child { margin-bottom: 0; }
.card--dark { background: var(--navy-700); border-color: rgba(255,255,255,.12); }
.card--dark h3 { color: #fff; }
.card--dark p { color: #a9b7dd; }
.card--dark .card__icon { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--blue-400); }

.card__num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--blue-100); margin-bottom: 14px;
}

.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--ink-500); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 17px; height: 17px; border-radius: 50%;
  background: var(--blue-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4de4' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
  border: 1px solid var(--blue-100);
}
.section--navy .tick-list li { color: #b6c4e9; }
.section--navy .tick-list li::before { background-color: rgba(59,107,255,.18); border-color: rgba(59,107,255,.35); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media .ph { border-radius: var(--radius-lg); }
.split__img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__img--wide { aspect-ratio: 21 / 9; object-fit: cover; }
.split__stat {
  position: absolute; right: -20px; bottom: -22px; background: #fff; border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); max-width: 220px;
}
.split__stat strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy-800); display: block; line-height: 1; }
.split__stat span { font-size: .82rem; color: var(--ink-500); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 26px 14px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.stat strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: #fff; line-height: 1; margin-bottom: 8px; }
.stat span { font-size: .9rem; color: #a9b7dd; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__n {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-800); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: .96rem; margin: 0; }

/* ---------- Sectors ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px;
  border: 1px solid var(--line); border-radius: 100px; background: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-800);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--blue-400); background: var(--blue-050); color: var(--blue-600); transform: translateY(-2px); }
.chip svg { width: 16px; height: 16px; color: var(--blue-500); }

/* ---------- Fleet table/cards ---------- */
.fleet-card { display: grid; grid-template-columns: 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fleet-card__img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.fleet-card__body { padding: 24px 24px 26px; }
.fleet-card h3 { margin-bottom: 6px; }
.fleet-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.tag {
  font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .04em;
  background: var(--blue-050); color: var(--blue-600); border: 1px solid var(--blue-100);
  padding: 5px 11px; border-radius: 6px;
}
.spec-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.spec-row:last-child { border-bottom: 0; }
.spec-row span:first-child { color: var(--ink-500); }
.spec-row span:last-child { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }

/* ---------- Page header (inner pages) ---------- */
.page-head {
  position: relative; overflow: hidden; padding: clamp(52px, 6vw, 84px) 0 clamp(48px, 6vw, 76px);
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700));
  color: #b8c6ec;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 10%, #000 10%, transparent 72%);
}
.page-head::after {
  content: ""; position: absolute; right: -8%; top: -40%; width: 46%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(59,107,255,.35), transparent 62%);
}
.page-head__inner { position: relative; z-index: 2; max-width: 780px; }
.page-head h1 { color: #fff; margin-bottom: 14px; }
.page-head p { font-size: 1.08rem; color: #b0c0e8; margin: 0; max-width: 62ch; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: #8fa2d4; margin-bottom: 18px; }
.breadcrumb a { color: #b8c6ec; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .55; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--blue-600), var(--blue-500) 55%, var(--blue-400));
  padding: clamp(38px, 5vw, 62px); color: #fff;
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 32px; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; right: -6%; top: -60%; width: 42%; aspect-ratio: 1; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.cta-band::after {
  content: ""; position: absolute; left: -8%; bottom: -70%; width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.88); margin: 0; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn--primary { --btn-bg: #fff; --btn-fg: var(--blue-600); }
.cta-band .btn--primary:hover { box-shadow: 0 12px 26px rgba(0,0,0,.2); }

/* ---------- Contact cards ---------- */
.contact-card {
  display: flex; gap: 18px; padding: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card__icon {
  width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-500); color: #fff;
}
.contact-card__icon svg { width: 23px; height: 23px; }
.contact-card h3 { font-size: 1.06rem; margin-bottom: 4px; }
.contact-card p { font-size: .92rem; color: var(--ink-500); margin: 0 0 6px; }
/* Scales down so the long email address fits its card without breaking mid-word. */
.contact-card a { font-family: var(--font-head); font-weight: 700; font-size: clamp(.82rem, 1.05vw, 1rem); overflow-wrap: anywhere; }

/* ---------- Forms ---------- */
.form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head); font-weight: 700; font-size: .86rem; color: var(--navy-800);
}
.field label .opt { font-weight: 500; color: var(--ink-300); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; color: var(--ink-900); background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6684' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(59,107,255,.14);
}
.field .error { font-size: .8rem; color: #c0263a; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d94a5c; }
.field.has-error .error { display: block; }
.field-consent { display: flex; gap: 11px; align-items: flex-start; grid-column: 1 / -1; }
.field-consent input { width: 19px; height: 19px; flex: none; margin-top: 3px; accent-color: var(--blue-500); }
.field-consent label { font-family: var(--font-body); font-weight: 400; font-size: .88rem; color: var(--ink-500); }
.form-note { font-size: .84rem; color: var(--ink-300); margin: 14px 0 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
  display: none; gap: 12px; padding: 16px 18px; border-radius: var(--radius-sm);
  margin-bottom: 20px; font-size: .93rem; align-items: flex-start;
}
.form-alert svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.form-alert.is-visible { display: flex; }
.form-alert--ok { background: #e9f9f0; border: 1px solid #b6e6cb; color: #10603a; }
.form-alert--err { background: #fdecee; border: 1px solid #f5c2c9; color: #9c2130; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-head); font-weight: 700; font-size: 1.03rem; color: var(--navy-800);
}
.faq__q:hover { color: var(--blue-500); }
.faq__q svg { width: 20px; height: 20px; flex: none; transition: transform .25s ease; color: var(--blue-500); }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 4px 24px; color: var(--ink-500); max-width: 78ch; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__item.is-open .faq__a { display: block; }

/* ---------- Quote box (aside) ---------- */
.aside-box {
  background: var(--navy-800); color: #b6c4e9; border-radius: var(--radius-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
}
.aside-box::after {
  content: ""; position: absolute; right: -30%; top: -40%; width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,107,255,.35), transparent 65%);
}
.aside-box > * { position: relative; z-index: 2; }
.aside-box h3 { color: #fff; }
.aside-box .btn { width: 100%; margin-bottom: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #8fa2d4; padding: clamp(52px, 6vw, 80px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 40px; padding-bottom: 46px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer p { font-size: .93rem; }
.footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 18px; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #9fb0dd; font-size: .93rem; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--blue-400); flex: none; margin-top: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .85rem;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__credit { font-size: .85rem; color: #8fa2d4; }
.footer__credit a { color: #cdd8f5; font-weight: 600; }
.footer__credit a:hover { color: #fff; text-decoration: underline; }
/* .footer a is more specific than .btn, so buttons inside the footer need
   their own rule or they inherit the pale footer link colour. */
.footer .btn { color: var(--btn-fg); }
.footer .btn:hover { color: var(--btn-fg); }

.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: #cdd8f5;
  transition: all .2s ease;
}
.socials a:hover { background: var(--blue-500); color: #fff; border-color: var(--blue-500); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-500); color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--green-500);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
/* Gated on .js so that if scripting is unavailable the content is simply visible. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 26px; }
.narrow { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .strip__grid { grid-template-columns: repeat(3, 1fr); }
  .strip__item:nth-child(3n) { border-right: 0; }
  .strip__item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 1400px) {
  .hero { --hero-img: url("../img/hero-fleet-1280.jpg"); }
  .section--photo { --photo-img: url("../img/hero-fleet-1280.jpg"); }
}

@media (max-width: 960px) {
  .section--photo__inner { max-width: none; }
  .section--photo::before {
    background: linear-gradient(to bottom, rgba(2,8,30,.94) 0%, rgba(2,8,30,.88) 50%, rgba(2,8,30,.72) 100%);
  }
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 12px; border-radius: 8px; font-size: 1rem; }
  .nav__links a.is-active::after { display: none; }
  .nav { position: relative; }
  .nav__inner { gap: 12px; }
  .nav__actions { margin-left: auto; }
  .nav__actions .btn--whatsapp { display: none; }
  .nav__toggle { display: block; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .split__stat { right: 12px; bottom: -18px; }

  .grid--3, .grid--4, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .topbar__contact { gap: 14px; font-size: .82rem; }
  /* Show the phone number only — an icon-only mailto reads as a broken link. */
  .topbar__contact a:last-child { display: none; }
  .logo__text strong, .logo__text small { white-space: nowrap; }
  .logo__text small { letter-spacing: .18em; font-size: .54rem; }
  /* Portrait crops the 2.33:1 photo hard; bias toward the larger vehicles
     and shorten the reserved space so the fleet still reads. */
  .hero {
    /* Portrait crop of the fleet, shot for this orientation — cropping the 2.33:1
       landscape frame to a phone loses most of the line-up. */
    --hero-img: url("../img/hero-fleet-portrait-900.jpg");
    aspect-ratio: auto;
    min-height: 0;
    background-position: center bottom;
    padding: clamp(40px, 8vw, 64px) 0 clamp(240px, 74vw, 420px);
  }
  /* The desktop scrim runs left-to-right and clears on the right, which leaves
     the trust row sitting on bare vehicle. Portrait wants it top-to-bottom. */
  .hero::before {
    /* Stops chosen against the measured layout: the trust row occupies roughly
       56-71% of the hero, so the scrim holds through 72% before clearing for
       the vans in the lower quarter. */
    background: linear-gradient(to bottom, rgba(0,3,26,.93) 0%, rgba(0,4,28,.90) 40%,
                                rgba(0,5,32,.86) 62%, rgba(0,6,38,.76) 72%,
                                rgba(0,8,45,.28) 87%, transparent 100%);
  }
  .grid--2, .grid--3, .grid--4, .steps, .form-grid { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .strip__item:nth-child(2n) { border-right: 0; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .logo__text strong { font-size: 1.02rem; }
  /* Never set both dimensions on the logo: the artwork is 2.74:1 and fixing
     width and height together squashes it. Height only, width auto. */
  .logo__mark { width: auto; height: 30px; }
  .footer .logo__mark { width: auto; height: 34px; }
  .nav__inner { gap: 8px; }
  .nav__actions .btn { padding: 11px 15px; font-size: .85rem; }
  .logo { flex-shrink: 1; min-width: 0; }
  /* Not enough width for the wordmark alongside the CTA and menu button, so the
     mark stands alone. The link keeps its aria-label, so the name is still announced. */
  .nav .logo__text { display: none; }
  .nav .logo__mark { height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .footer, .wa-float, .cta-band { display: none; }
}
