:root {
  --green: #25D366;
  --green-dark: #1fba58;
  --dark: #111111;
  --charcoal: #1A1A1A;
  --mid: #2a2a2a;
  --light: #f5f5f0;
  --white: #ffffff;
  --muted: #7a7f7c;
  --line: #e6e6dc;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Lato", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.97);
  border-bottom: 1px solid rgba(37, 211, 102, 0.18);
  backdrop-filter: blur(10px);
}

.top-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 6px 20px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.top-bar a:hover,
.top-bar a:focus-visible {
  color: var(--green);
}

.nav-inner {
  width: min(1200px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-brand {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0;
}

.logo span,
.footer-brand span {
  color: var(--green);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 76px;
  color: var(--white);
  background: var(--dark);
}

.hero-bg,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    radial-gradient(circle at 78% 36%, rgba(37, 211, 102, 0.16), transparent 31%),
    linear-gradient(135deg, #070707 0%, #171717 48%, #0d1f0d 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(37, 211, 102, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 211, 102, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: 999px;
  color: var(--green);
  background: rgba(37, 211, 102, 0.1);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.btn,
.submit-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn {
  padding: 0 28px;
}

.btn-primary,
.submit-btn {
  border: 0;
  color: var(--dark);
  background: var(--green);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  color: var(--green);
  border: 1px solid rgba(37, 211, 102, 0.36);
  background: rgba(37, 211, 102, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--charcoal);
}

.hero-visual {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 211, 102, 0.18), transparent 32%),
    linear-gradient(135deg, #202020, #101010 58%, #0d1f0d);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.route-orbit {
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(37, 211, 102, 0.16);
  border-radius: 10px;
}

.hub {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--dark);
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.12);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.hub-sa { left: 22%; bottom: 22%; }
.hub-bw { left: 48%; top: 47%; }
.hub-zw { right: 24%; top: 34%; }
.hub-zm { right: 18%; top: 14%; }
.hub-mz { right: 11%; bottom: 32%; }

.route {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform-origin: left center;
}

.route-a { left: 28%; bottom: 29%; width: 28%; transform: rotate(-25deg); }
.route-b { left: 52%; top: 49%; width: 28%; transform: rotate(-24deg); }
.route-c { left: 54%; top: 44%; width: 34%; transform: rotate(-44deg); }
.route-d { left: 53%; top: 52%; width: 36%; transform: rotate(21deg); }

.moving-truck,
.map-truck {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 18px;
  border-radius: 3px;
  background: var(--white);
  box-shadow: inset -10px 0 0 rgba(37, 211, 102, 0.9), 0 12px 24px rgba(0, 0, 0, 0.22);
}

.moving-truck::before,
.map-truck::before {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 0;
  border-left: 9px solid var(--white);
  border-top: 10px solid transparent;
  border-bottom: 8px solid transparent;
}

.moving-truck {
  left: 28%;
  bottom: 31%;
  animation: heroTruck 5s infinite ease-in-out;
}

@keyframes heroTruck {
  0% { transform: translate(0, 0) rotate(-25deg); opacity: 0; }
  12% { opacity: 1; }
  55% { transform: translate(170px, -82px) rotate(-25deg); opacity: 1; }
  100% { transform: translate(300px, -140px) rotate(-25deg); opacity: 0; }
}

.hero-stat-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stat-panel div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.76);
}

.hero-stat-panel strong {
  display: block;
  color: var(--green);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.55rem;
}

.hero-stat-panel span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.trust,
.routes,
.contact,
.testimonials {
  background: var(--light);
}

.cargo,
.services,
.quote,
.benefits,
.fleet-gallery {
  background: var(--white);
}

.map-section,
.faq {
  background: var(--charcoal);
  color: var(--white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.07;
  letter-spacing: 0;
}

.section-heading p:not(.section-label),
.map-copy p,
.about-layout p,
.quote-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.map-section .section-heading p,
.map-copy p,
.faq .section-heading p {
  color: rgba(255, 255, 255, 0.64);
}

.card-grid,
.route-grid,
.contact-grid,
.map-placeholders,
.fleet-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

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

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.map-placeholders {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.info-card,
.cargo-card,
.service-card,
.benefit-card,
.route-card,
.contact-card,
.fleet-card,
.testimonial-card,
.map-placeholders article,
.office-stack article,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.info-card,
.cargo-card,
.service-card,
.benefit-card,
.route-card,
.contact-card,
.fleet-card,
.testimonial-card,
.map-placeholders article,
.office-stack article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card:hover,
.cargo-card:hover,
.service-card:hover,
.benefit-card:hover,
.route-card:hover,
.contact-card:hover,
.fleet-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: var(--shadow);
}

.info-card h3,
.cargo-card h3,
.service-card h3,
.benefit-card h3,
.route-card h3,
.contact-card h3,
.fleet-card h3,
.office-stack h3,
.map-placeholders h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
}

.info-card p,
.cargo-card p,
.service-card p,
.benefit-card p,
.route-card p,
.contact-card p,
.fleet-card p,
.map-placeholders p,
.office-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.info-card a,
.route-card a,
.contact-card a,
.quote-contact a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  border-bottom: 2px solid var(--green);
}

.card-icon,
.cargo-icon,
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #f0fdf4;
}

.card-icon::before,
.cargo-icon::before,
.service-icon::before {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  border: 3px solid var(--green-dark);
  border-radius: 5px;
}

.icon-map::before,
.icon-network::before,
.icon-fmcg::before,
.icon-cold::before {
  border-radius: 50%;
}

.icon-border::before,
.icon-road::before {
  width: 28px;
  height: 16px;
  border-top: 0;
  border-left: 0;
  transform: skewX(-18deg);
}

.icon-plan::before,
.icon-update::before,
.icon-support::before,
.icon-agri::before,
.icon-general::before,
.icon-delivery::before {
  border-radius: 3px;
  box-shadow: 8px 8px 0 -3px rgba(37, 211, 102, 0.36);
}

.icon-mineral::before {
  transform: rotate(45deg);
}

.icon-container::before,
.cargo-card small,
.route-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(37, 211, 102, 0.1);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-placeholder {
  position: relative;
  min-height: 150px;
  margin: -8px -8px 20px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    var(--charcoal);
}

.fleet-placeholder::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  box-shadow: 42px 12px 0 -10px rgba(37, 211, 102, 0.9);
}

.fleet-placeholder::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 28px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.75;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.map-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.map-copy {
  position: sticky;
  top: 130px;
}

.map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.country-btn {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.country-btn.active,
.country-btn:hover,
.country-btn:focus-visible {
  color: var(--dark);
  border-color: var(--green);
  background: var(--green);
}

.sadc-map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #151515;
}

.sadc-map {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 27% 70%, rgba(37, 211, 102, 0.18), transparent 18%),
    radial-gradient(circle at var(--country-x, 64%) var(--country-y, 42%), rgba(37, 211, 102, 0.24), transparent 18%),
    linear-gradient(135deg, #202020, #0f0f0f);
}

.sadc-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.svg-route {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 0.7;
  vector-effect: non-scaling-stroke;
}

.svg-route-base {
  opacity: 0.55;
  stroke-dasharray: 3 3;
}

.svg-route-active {
  opacity: 0.95;
  stroke-dasharray: 6 5;
  animation: svgRouteMove 1.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.55));
}

@keyframes svgRouteMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -22; }
}

.sadc-map::before {
  content: "SADC";
  position: absolute;
  top: 38px;
  left: 38px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-marker::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.12);
  animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.14); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0.03); }
}

.marker-cape { left: 16%; bottom: 18%; }
.marker-gauteng { left: 39%; top: 52%; }
.marker-country {
  left: var(--country-x, 62%);
  top: var(--country-y, 42%);
  transition: left 0.3s ease, top 0.3s ease;
}

.animated-route {
  position: absolute;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform-origin: left center;
  animation: routeGlow 1.4s infinite alternate;
}

@keyframes routeGlow {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

.route-primary {
  left: 22%;
  bottom: 23%;
  width: 31%;
  transform: rotate(-25deg);
}

.route-secondary {
  left: 43%;
  top: 56%;
  width: var(--route-width, 30%);
  transform: rotate(var(--route-angle, -31deg));
}

.map-truck {
  left: 44%;
  top: 52%;
  animation: mapTruck 3s infinite ease-in-out;
}

@keyframes mapTruck {
  0% { transform: translate(0, 0) rotate(var(--route-angle, -31deg)); opacity: 0; }
  15% { opacity: 1; }
  70% { transform: translate(var(--truck-x, 150px), var(--truck-y, -78px)) rotate(var(--route-angle, -31deg)); opacity: 1; }
  100% { transform: translate(var(--truck-x, 150px), var(--truck-y, -78px)) rotate(var(--route-angle, -31deg)); opacity: 0; }
}

.route-panel {
  padding: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.future-ready {
  padding: 56px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(37, 211, 102, 0.12), transparent 28%),
    var(--dark);
  border-top: 1px solid rgba(37, 211, 102, 0.18);
}

.future-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.future-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.future-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.future-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-panel h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
}

.route-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.route-panel div {
  display: grid;
  gap: 4px;
}

.route-panel dt {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.route-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.route-card h3 {
  padding-top: 14px;
}

.about {
  background: var(--white);
}

.about-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.office-stack {
  display: grid;
  gap: 18px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

summary {
  padding: 18px 20px;
  cursor: pointer;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.quote-intro {
  position: sticky;
  top: 130px;
}

.quote-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
}

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

.form-field.full,
.submit-btn {
  grid-column: 1 / -1;
}

label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #deded3;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.13);
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.map-placeholder {
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border: 1px dashed rgba(17, 17, 17, 0.28);
  border-radius: 8px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.08), transparent),
    #fafafa;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.08);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--charcoal);
  border-top: 1px solid rgba(37, 211, 102, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  padding: 50px 0;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
}

.footer p,
.footer a,
.footer span {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1020px) {
  .top-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 108px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #151515;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

  .hero-content,
  .map-layout,
  .about-layout,
  .quote-layout,
  .future-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-copy,
  .quote-intro {
    position: static;
  }

  .card-grid.three,
  .route-grid,
  .contact-grid,
  .fleet-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container,
  .nav-inner {
    width: min(100% - 28px, 1200px);
  }

  .top-bar {
    gap: 16px;
  }

  .hero {
    padding-top: 136px;
  }

  .hero-visual,
  .sadc-map {
    min-height: 390px;
  }

  .hero-actions,
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .card-grid.three,
  .route-grid,
  .contact-grid,
  .fleet-grid,
  .testimonial-grid,
  .map-placeholders,
  .quote-form,
  .hero-stat-panel {
    grid-template-columns: 1fr;
  }

  .hub {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
  }

  .footer-grid {
    gap: 20px;
  }

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