/* =============================================
   HUB FREIGHT / HFTRANS LTD — Main Stylesheet
   Color palette from logo:
   Red:       #D01C1F
   Dark Navy: #0F2B3D
   White:     #FFFFFF
   Light Gray:#F5F5F5
   Mid Gray:  #E8E8E8
   Text:      #1A1A2E
   Muted:     #6B7280
   ============================================= */

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

:root {
  --red:       #D01C1F;
  --red-dark:  #A81519;
  --red-light: #F5E6E6;
  --navy:      #0F2B3D;
  --navy-dark: #081C28;
  --white:     #FFFFFF;
  --light:     #F5F6F8;
  --border:    #E2E6EA;
  --text:      #1A1A2E;
  --muted:     #6B7280;
  --font:      'Inter', system-ui, sans-serif;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; transition: color 0.2s; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ---- Section Tags ---- */
.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.text-white { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle { margin: 0 auto; }
.section { padding: 100px 0; }
.text-accent { color: var(--red); }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 24px;
  font-size: 14px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner a { color: #F87171; text-decoration: underline; }
.cookie-banner.hidden { display: none; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 4px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 164px;
}
.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  line-height: 1;
}
.logo-img { height: 144px; width: auto; object-fit: contain; }
.logo-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-text-accent { color: var(--red); }
.logo-img--footer { height: 90px; }
.logo-text--footer { font-size: 10px; }

.nav-desktop {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-desktop a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--white); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,28,40,0.88) 0%,
    rgba(8,28,40,0.70) 50%,
    rgba(8,28,40,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,28,40,0.96) 0%,
    rgba(8,28,40,0.88) 55%,
    rgba(8,28,40,0.60) 100%
  );
}
.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-tag { background: rgba(208,28,31,0.25); }
.about-desc {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-icon {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-truck-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   SERVICES — Horizontal List
   ============================================= */
.services { background: var(--light); }

.services-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 56px;
}

.svc-row {
  display: grid;
  grid-template-columns: 52px 1fr 100px 130px 110px;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative;
  cursor: default;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover {
  background: #fafafa;
  transform: translateX(4px);
  box-shadow: inset 4px 0 0 var(--red);
}
.svc-row--featured {
  background: var(--navy);
}
.svc-row--featured:hover {
  background: var(--navy-dark);
  box-shadow: inset 4px 0 0 var(--red);
}

.svc-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.06em;
  opacity: 0.5;
  flex-shrink: 0;
}
.svc-row--featured .svc-num { color: rgba(255,255,255,0.3); opacity: 1; }

.svc-body { min-width: 0; }
.svc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.svc-row--featured .svc-title { color: var(--white); }
.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.svc-row--featured .svc-desc { color: rgba(255,255,255,0.6); }
.svc-terms {
  font-size: 12px;
  color: var(--red);
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0.85;
}
.svc-row--featured .svc-terms { color: rgba(255,255,255,0.55); }

.svc-badge {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.svc-unit {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}
.svc-row--featured .svc-unit { color: rgba(255,255,255,0.45); }

.svc-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  text-align: right;
  white-space: nowrap;
}
.svc-row--featured .svc-price { color: #F87171; }

.svc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s;
  text-align: center;
}
.svc-cta:hover { background: var(--red-dark); transform: scale(1.04); color: var(--white); }
.svc-row--featured .svc-cta {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.svc-row--featured .svc-cta:hover { background: rgba(255,255,255,0.28); }

/* ---- Price Calculator ---- */
.calc-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.calc-header {
  background: var(--navy);
  padding: 36px 44px 28px;
}
.calc-header .section-tag {
  background: rgba(208,28,31,0.25);
  color: #F87171;
}
.calc-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.calc-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.calc-body {
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: end;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.calc-field select,
.calc-field input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,28,31,0.1);
}
.calc-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.calc-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  min-height: 70px;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.calc-result.has-value {
  border-color: var(--red);
  background: #fff8f8;
}
.calc-result-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.calc-result-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.calc-result-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}


/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(208,28,31,0.90) 0%,
    rgba(8,28,40,0.90) 100%
  );
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.cta-banner-content h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-banner-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-details a { color: var(--text); }
.contact-details a:hover { color: var(--red); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,28,31,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--muted);
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.form-consent label { cursor: pointer; line-height: 1.5; }
.form-consent a { color: var(--red); text-decoration: underline; }
.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-status.success { color: #16a34a; }
.form-status.error { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer-brand .logo-link { margin-bottom: 16px; }
.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; line-height: 1.5; }
.footer-col ul a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-col ul li { color: rgba(255,255,255,0.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--white); }

/* ---- Header Call Button ---- */
.btn-outline-dark {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.35);
  font-size: 14px;
  padding: 10px 18px;
  gap: 7px;
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-dark svg { flex-shrink: 0; }

/* Mobile call button */
.btn-outline-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: none;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* Contact section phone badge */
.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-badge {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ---- WhatsApp Sticky Button ---- */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-sticky:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
}
.wa-sticky svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.wa-label {
  white-space: nowrap;
  letter-spacing: 0.01em;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 2px 8px rgba(0,0,0,0.18); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 40px 1fr 90px 110px 90px; gap: 16px; padding: 22px 24px; }
  .calc-body { grid-template-columns: 1fr 1fr; }
  .calc-result { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .about-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-truck-img { max-width: 420px; }
}

@media (max-width: 768px) {
  .logo-img { height: 80px; }
  .header-inner { min-height: 100px; }
  .hero { padding-top: 120px; }
  .nav-desktop, .nav-cta, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .site-header { background: var(--navy-dark); }
  .section { padding: 72px 0; }
  .hero-stats { gap: 20px; }
  .hero-content { padding-bottom: 60px; }
  .svc-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 20px; }
  .svc-num { display: none; }
  .svc-unit { text-align: left; }
  .svc-price { text-align: left; font-size: 20px; }
  .svc-cta { width: 100%; justify-content: center; }
  .calc-body { grid-template-columns: 1fr; padding: 24px 20px; gap: 16px; }
  .calc-header { padding: 24px 20px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .wa-sticky { bottom: 20px; right: 16px; padding: 11px 16px 11px 12px; }
  .wa-label { display: none; }
  .wa-sticky { border-radius: 50%; padding: 12px; }
}

@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
}
