/* ==========================================================================
   Bojovic Logistics Limited — Global Stylesheet
   Pure CSS. No framework.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #0c1c36;
  --navy-800: #122a4d;
  --navy-700: #1b3a66;
  --navy-600: #244a80;

  --accent: #ff6b2c;
  --accent-600: #e8551a;
  --accent-100: #ffe6da;

  --bg: #ffffff;
  --surface: #f3f6fb;
  --surface-2: #eaeff7;
  --text: #0e1a2b;
  --muted: #5c6b81;
  --muted-light: #8b98ab;
  --border: #e1e7f0;

  --white: #ffffff;

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

  --shadow-sm: 0 1px 3px rgba(12, 28, 54, 0.08);
  --shadow: 0 10px 30px -12px rgba(12, 28, 54, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(12, 28, 54, 0.28);

  --container: 1200px;
  --header-h: 76px;

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 96px;
}

.section--tight {
  padding-block: 72px;
}

.section--surface {
  background: var(--surface);
}

.section--navy {
  background: var(--navy);
  color: #d7e0ee;
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

.section--navy .lead {
  color: #aebbcf;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -10px rgba(255, 107, 44, 0.6);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.btn--outline {
  --btn-bg: transparent;
  --btn-color: var(--navy);
  border-color: var(--border);
}

.btn--outline:hover {
  --btn-bg: var(--navy);
  --btn-color: #fff;
  border-color: var(--navy);
  box-shadow: none;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.text-link:hover {
  gap: 14px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    height 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.brand img {
  height: 40px;
  width: auto;
}

/* logo lockup contrast plate for transparent-over-hero state */
.brand-plate {
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.scrolled .brand-plate {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
}

.scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Inner pages have a light header from the start */
.site-header.solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header.solid .nav-links a {
  color: var(--navy);
}

.site-header.solid .brand-plate {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-header.solid .nav-links a:hover,
.site-header.solid .nav-links a.active {
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      110deg,
      rgba(8, 20, 40, 0.94) 0%,
      rgba(8, 20, 40, 0.78) 42%,
      rgba(8, 20, 40, 0.35) 100%
    ),
    linear-gradient(0deg, rgba(8, 20, 40, 0.5), rgba(8, 20, 40, 0.1));
}

.hero__inner {
  max-width: 760px;
  padding-block: 60px;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero h1 {
  color: #fff;
  margin-bottom: 8px;
}

.hero__title-sub {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.15rem;
  color: #cdd7e6;
  margin-top: 22px;
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll span {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 90px);
  padding-bottom: 90px;
  color: #fff;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(8, 20, 40, 0.95) 0%,
    rgba(8, 20, 40, 0.8) 55%,
    rgba(8, 20, 40, 0.55) 100%
  );
}

.page-hero h1 {
  color: #fff;
  max-width: 16ch;
}

.page-hero p {
  color: #c6d1e2;
  font-size: 1.12rem;
  max-width: 58ch;
  margin-top: 18px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats {
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat {
  background: var(--white);
  padding: 34px 28px;
  text-align: center;
}

.stat__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat__num .accent {
  color: var(--accent);
}

.stat__label {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================================================
   Intro / Who We Are (split)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  bottom: -24px;
  right: -18px;
  background: var(--accent);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
}

.media-badge strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.media-badge span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.prose p + p {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--text);
}

.check-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 2px;
}

.section--navy .check-list li {
  color: #d7e0ee;
}

.mt-32 {
  margin-top: 32px;
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-100);
  color: var(--accent-600);
  margin-bottom: 22px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card__icon {
  background: var(--accent);
  color: #fff;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   Detailed service blocks (Services page)
   ========================================================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-block + .service-block {
  margin-top: 96px;
}

.service-block.reverse .service-block__media {
  order: 2;
}

.service-block__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-block__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-block__media:hover img {
  transform: scale(1.06);
}

.service-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent-600);
  background: var(--accent-100);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 26px;
}

.feature-grid li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 500;
}

.feature-grid svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   Fleet
   ========================================================================== */
.fleet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: center;
}

.fleet__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.fleet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
}

.chip svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--accent);
  margin-bottom: 18px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Process / How we work
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.step__num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
}

.step h3 {
  color: #fff;
  font-size: 1.12rem;
  margin: 16px 0 8px;
}

.step p {
  color: #aebbcf;
  font-size: 0.94rem;
}

.step__line {
  position: absolute;
  top: 52px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Values
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Capabilities
   ========================================================================== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cap__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-100);
  color: var(--accent-600);
  flex-shrink: 0;
}

.cap__icon svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(255, 107, 44, 0.92),
    rgba(232, 85, 26, 0.86)
  );
}

.cta-band h2 {
  color: #fff;
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  margin: 16px auto 32px;
  max-width: 52ch;
}

.cta-band .btn--light {
  --btn-bg: #fff;
  --btn-color: var(--navy);
}

.cta-band .btn--light:hover {
  box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.info-card + .info-card {
  margin-top: 18px;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.info-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  color: var(--muted);
  font-size: 0.97rem;
}

.info-card a:hover {
  color: var(--accent);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-100);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #e7f7ee;
  border: 1px solid #b7e6cb;
  color: #1a7a48;
  font-weight: 500;
  margin-bottom: 22px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.quote-box {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--navy);
  color: #cdd7e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.quote-box h3 {
  color: #fff;
  font-size: 1.4rem;
}

.quote-box p {
  color: #aebbcf;
  margin-top: 6px;
}

.map-wrap {
  margin-top: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: #a9b6ca;
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-brand img {
  height: 44px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 34ch;
  color: #9aa8bd;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #cdd7e6;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease),
    color 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 0.95rem;
  color: #9aa8bd;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #9aa8bd;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #7f8da3;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__media img {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .split {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    padding: calc(var(--header-h) + 20px) 24px 40px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    justify-content: flex-start;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a,
  .scrolled .nav-links a,
  .site-header.solid .nav-links a {
    color: var(--navy);
    font-size: 1.05rem;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: var(--surface);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 40, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease);
    z-index: 90;
  }

  .nav-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  .nav-cta .btn {
    display: none;
  }

  .split,
  .service-block,
  .service-block.reverse,
  .fleet,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split__media,
  .service-block.reverse .service-block__media {
    order: 0;
  }

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

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

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

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

  .step__line {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .media-badge {
    right: 16px;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }

  .card-grid,
  .card-grid--2,
  .why-grid,
  .cap-grid,
  .process,
  .values-grid,
  .form-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -40px;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .form-card {
    padding: 26px 20px;
  }

  .quote-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
