:root {
  --navy: #082653;
  --blue: #0e5fb8;
  --sky: #e8f3ff;
  --gold: #c7952b;
  --ink: #142033;
  --muted: #657386;
  --line: #dbe4ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(8, 38, 83, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 22, 48, 0.88), rgba(4, 22, 48, 0.28));
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(8, 38, 83, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  padding: 4px;
}

.brand-text {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(14, 95, 184, 0.25);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(14, 95, 184, 0.24);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 112px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #153f73);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 22, 48, 0.92), rgba(4, 22, 48, 0.62), rgba(4, 22, 48, 0.24)),
    linear-gradient(180deg, rgba(4, 22, 48, 0.16), rgba(4, 22, 48, 0.74));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.75rem);
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(128px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 72px);
}

.section-grid,
.section-heading,
.footer-grid,
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.section h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section p {
  color: var(--muted);
  font-size: 1rem;
}

.about-section p {
  max-width: 650px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-badges span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--navy);
  background: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.image-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d9e7f7, #f6f8fb);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
}

.services-section,
.quote-section {
  background: var(--soft);
}

.card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(8, 38, 83, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(14, 95, 184, 0.35);
  box-shadow: 0 22px 42px rgba(8, 38, 83, 0.13);
  transform: translateY(-4px);
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--sky);
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.industry-grid h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 0;
}

.icon-note {
  max-width: 1180px;
  margin: 18px auto 0;
  font-size: 0.86rem;
}

.split-band {
  color: var(--white);
  background:
    linear-gradient(rgba(8, 38, 83, 0.92), rgba(8, 38, 83, 0.92)),
    url("../images/truck-terminal.svg") center / cover;
}

.split-band h2,
.split-band p,
.split-band .eyebrow {
  color: var(--white);
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.reason-list strong,
.reason-list span {
  display: block;
}

.reason-list strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.reason-list span {
  color: rgba(255, 255, 255, 0.76);
}

.industry-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-grid article {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f8fbff);
  transition: transform 180ms ease, border-color 180ms ease;
}

.industry-grid article:hover {
  border-color: rgba(199, 149, 43, 0.45);
  transform: translateY(-3px);
}

.industry-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 95, 184, 0.12);
}

.form-card textarea {
  resize: vertical;
}

.full-field,
.compact-form label,
.compact-form .btn,
.compact-form .form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-mini {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-mini a,
.contact-info a {
  color: var(--blue);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-info p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info strong {
  color: var(--navy);
}

.site-footer {
  padding: 64px clamp(18px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #071c3c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand,
.footer-grid h3 {
  display: block;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-grid p {
  max-width: 390px;
  margin: 0;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    left: clamp(18px, 5vw, 72px);
    right: auto;
  }
}

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: max-height 220ms ease;
  }

  .main-nav.is-open {
    max-height: 520px;
  }

  .main-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin: 12px;
    border-bottom: 0;
  }

  .two-column,
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-text {
    max-width: 170px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-grid,
  .industry-grid,
  .footer-grid,
  .form-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .image-panel,
  .image-panel img {
    min-height: 280px;
  }

  .contact-info p {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
