:root {
  --color-primary: #0b4b78;
  --color-primary-dark: #06283f;
  --color-accent: #1b9be8;
  --color-accent-soft: #e8f5ff;
  --color-text: #162232;
  --color-muted: #647386;
  --color-line: #dbe5ee;
  --color-bg: #ffffff;
  --color-soft: #f4f8fb;
  --color-dark: #071d31;
  --shadow-soft: 0 18px 45px rgba(7, 29, 49, 0.12);
  --shadow-strong: 0 24px 70px rgba(7, 29, 49, 0.22);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.section-container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
  width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 238, 0.8);
  box-shadow: 0 10px 30px rgba(7, 29, 49, 0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  min-height: 82px;
  padding: 12px 24px;
}

.brand-logo {
  height: 54px;
  object-fit: contain;
  width: 170px;
}

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

.nav-links a {
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 700;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  background: var(--color-accent);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  width: 100%;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary-dark);
}

.button-secondary:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  background: var(--color-primary);
  display: block;
  height: 2px;
  width: 28px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 25, 43, 0.92), rgba(8, 49, 79, 0.74), rgba(8, 49, 79, 0.24)),
    url("assets/hero-truck.jpeg") center / cover no-repeat;
  color: #ffffff;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  bottom: -1px;
  content: "";
  height: 90px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  min-height: 720px;
  padding-bottom: 86px;
  padding-top: 86px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  line-height: 1.02;
  max-width: 840px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.17rem;
  margin-top: 24px;
  max-width: 690px;
}

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

.quote-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  color: var(--color-text);
  padding: 30px;
}

.quote-badge {
  background: var(--color-accent-soft);
  border-radius: 999px;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.quote-card h2 {
  color: var(--color-dark);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.quote-card p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.quote-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.quote-list span {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-dark);
  font-weight: 800;
  padding: 12px 14px;
}

.quote-button {
  background: var(--color-dark);
  color: #ffffff;
  width: 100%;
}

.eyebrow,
.section-label {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9bd5ff;
}

.trust-strip {
  background: #ffffff;
  padding: 18px 0 34px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -70px;
  overflow: hidden;
  padding: 0;
}

.trust-grid div {
  border-right: 1px solid var(--color-line);
  padding: 24px;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--color-primary);
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-grid span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.intro-section,
.advantages-section,
.process-section {
  background: #ffffff;
}

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

.clients-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-soft) 100%);
}

.split-layout {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr 1fr;
}

.section-copy h2,
.section-heading h2,
.cta-content h2 {
  color: var(--color-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-copy p,
.section-heading p,
.cta-content p {
  color: var(--color-muted);
  font-size: 1.04rem;
  margin-bottom: 16px;
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-features span {
  background: var(--color-accent-soft);
  border: 1px solid rgba(27, 155, 232, 0.22);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 9px 13px;
}

.image-panel,
.image-stack {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.image-panel img,
.image-main {
  object-fit: contain;
  width: 100%;
}

.image-stack {
  overflow: visible;
  position: relative;
}

.image-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.image-floating {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  bottom: -28px;
  box-shadow: var(--shadow-soft);
  max-width: 230px;
  padding: 12px;
  position: absolute;
  right: 28px;
}

.section-heading {
  margin: 0 auto 46px;
  max-width: 780px;
  text-align: center;
}

.card-grid,
.client-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.mission-card,
.contact-card,
.client-card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(7, 29, 49, 0.06);
}

.service-card,
.client-card {
  padding: 34px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.client-card:hover {
  border-color: rgba(31, 142, 214, 0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.featured-card {
  border-color: rgba(27, 155, 232, 0.4);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  align-items: center;
  background: var(--color-primary);
  border-radius: var(--radius);
  color: #ffffff;
  display: flex;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  width: 52px;
}

.service-card h3,
.mission-card h2,
.client-card h3 {
  color: var(--color-dark);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p,
.mission-card p,
.values-list,
.advantage-item p,
.contact-row p,
.client-card p,
.process-list p {
  color: var(--color-muted);
}

.service-card ul {
  border-top: 1px solid var(--color-line);
  list-style: none;
  margin-top: 22px;
  padding-top: 18px;
}

.service-card li {
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 5px 0 5px 18px;
  position: relative;
}

.service-card li::before {
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 15px;
  width: 6px;
}

.client-card span {
  color: var(--color-accent);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list div {
  align-items: flex-start;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  padding: 18px;
}

.process-list span {
  color: var(--color-accent);
  font-weight: 900;
}

.mission-section {
  background:
    linear-gradient(135deg, rgba(7, 29, 49, 0.98), rgba(8, 49, 79, 0.96)),
    url("assets/heavy-truck.jpeg") center / cover no-repeat;
}

.mission-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.mission-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 32px;
}

.mission-card h2 {
  color: #ffffff;
}

.mission-card p,
.mission-card .values-list {
  color: rgba(255, 255, 255, 0.78);
}

.values-list {
  list-style: none;
}

.values-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 0;
}

.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.advantage-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.advantage-item {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}

.advantage-item span {
  align-items: center;
  background: #e6f4ff;
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  flex: 0 0 28px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  margin-top: 2px;
  position: relative;
}

.advantage-item span::after {
  content: "";
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  height: 10px;
  transform: rotate(45deg);
  width: 5px;
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(12, 71, 115, 0.94), rgba(7, 29, 49, 0.86)),
    url("assets/fleet-box.jpeg") center / cover no-repeat;
  color: #ffffff;
  padding: 100px 0;
}

.cta-content {
  max-width: 800px;
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: #ffffff;
}

.cta-content .section-label {
  color: #9bd5ff;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 440px;
}

.contact-card {
  padding: 34px;
}

.contact-row {
  border-bottom: 1px solid var(--color-line);
  display: grid;
  gap: 4px;
  padding: 16px 0;
}

.contact-row span {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row a {
  color: var(--color-dark);
  font-weight: 800;
}

.whatsapp-button {
  background: #24b75a;
  color: #ffffff;
  margin-top: 24px;
  width: 100%;
}

.whatsapp-button:hover {
  background: #179849;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.floating-whatsapp {
  align-items: center;
  background: #24b75a;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 16px 35px rgba(36, 183, 90, 0.36);
  color: #ffffff;
  display: flex;
  font-size: 0.86rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 58px;
  z-index: 30;
}

.floating-whatsapp:hover {
  background: #179849;
  transform: translateY(-2px);
}

.site-footer {
  background: #061727;
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0;
}

.footer-content {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
}

.footer-logo {
  background: #ffffff;
  border-radius: var(--radius);
  height: 48px;
  object-fit: contain;
  padding: 5px 10px;
  width: 150px;
}

.copyright {
  font-size: 0.9rem;
}

.reveal {
  animation: fadeUp 0.75s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .navbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    background: #ffffff;
    border-top: 1px solid var(--color-line);
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    min-height: auto;
  }

  .quote-card {
    max-width: 520px;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }
}

@media (max-width: 640px) {
  .section-container,
  .navbar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo {
    height: 48px;
    width: 150px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-bottom: 96px;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .trust-grid,
  .card-grid,
  .client-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-bottom: 1px solid var(--color-line);
    border-right: 0;
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .service-card,
  .mission-card,
  .contact-card,
  .client-card,
  .quote-card {
    padding: 26px;
  }

  .image-floating {
    margin: 14px auto 0;
    position: static;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}
