:root {
  --navy: #23136f;
  --navy-2: #341b91;
  --blue: #2b1b88;
  --amber: #f7c400;
  --ink: #111827;
  --muted: #5b6676;
  --line: #d9e2ee;
  --soft: #f4f7fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.nav {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(11, 31, 58, 0.58);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-truck.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.94) 0%, rgba(7, 20, 38, 0.78) 38%, rgba(7, 20, 38, 0.2) 78%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.5), rgba(7, 20, 38, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 84px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.14;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--amber);
  color: #211264;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.stats {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -72px auto 88px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 22px 70px rgba(8, 25, 47, 0.18);
}

.stats div {
  min-height: 144px;
  padding: 30px;
  background: var(--white);
}

.stats strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 104px;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.intro p:last-child,
.feature-copy p,
.coverage-panel p,
.contact-copy p,
.work-copy p,
.service-card p,
.type-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 276px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.type-grid article {
  min-height: 220px;
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.service-card .icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  background: #fff7cc;
  color: var(--navy);
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 104px;
  padding: 76px max(16px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.feature-copy {
  padding-left: 16px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 16px 0 0;
  list-style: none;
}

.check-list li {
  padding: 20px 22px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 36px rgba(16, 47, 85, 0.08);
}

.coverage-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.coverage-panel h3,
.coverage-panel p {
  color: var(--white);
}

.coverage-panel p {
  opacity: 0.82;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
}

.route-tags span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact,
.work-with-us {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 58px;
  margin: 0 auto 96px;
  align-items: start;
}

.work-with-us {
  gap: 28px;
  margin-bottom: 36px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.work-with-us h2 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 26px);
}

.work-copy p {
  max-width: 560px;
  font-size: 15px;
}

.contact-lines {
  margin-top: 28px;
}

.contact-lines a {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
}

.quote-form,
.work-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(16, 47, 85, 0.1);
}

.work-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.work-form .button.primary {
  min-height: 42px;
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.work-form label {
  color: var(--muted);
  font-size: 13px;
}

.work-form input,
.work-form textarea,
.work-form select {
  padding: 12px 13px;
  background: var(--white);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 30px max(16px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  padding: 3px;
}

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand strong {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #082916;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 8px;
    background: rgba(11, 31, 58, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 20, 38, 0.93), rgba(7, 20, 38, 0.56));
  }

  .stats,
  .service-grid,
  .type-grid,
  .intro,
  .feature-band,
  .coverage-panel,
  .contact,
  .work-with-us {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .work-form {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 14px;
  }

  .feature-band {
    gap: 26px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .stats {
    margin-top: -44px;
    margin-bottom: 64px;
  }

  .stats div,
  .service-card,
  .coverage-panel,
  .quote-form {
    padding: 22px;
  }

  .section,
  .feature-band,
  .contact {
    margin-bottom: 72px;
  }

  .work-with-us {
    margin-bottom: 36px;
    padding-top: 22px;
  }

  .contact-lines a {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
