/* ============================================================
   VAAL FORKLIFT SOLUTIONS — styles.css
   Mobile-first. No frameworks. CSS custom properties.
   ============================================================ */

/* ----------------------------------------------------------
   0. MATERIAL SYMBOLS — global icon settings
   ---------------------------------------------------------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 28px;         /* default for icon containers */
  line-height: 1;
  display: block;
  user-select: none;
  -webkit-user-select: none;
}

/* Inline checkmarks in the Safety list */
.safety-list .material-symbols-outlined {
  font-size: 20px;
  flex-shrink: 0;
}

/* Large decorative icon inside the Safety badge */
.safety-badge .material-symbols-outlined {
  font-size: 56px;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
}

/* Small icons inside CTA buttons */
.btn .material-symbols-outlined {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Brand colours — matched to company profile */
  --clr-primary:        #CC2027;   /* brand red */
  --clr-primary-dark:   #A8181E;
  --clr-primary-light:  #E8252C;
  --clr-secondary:      #1A2B3C;   /* deep navy */
  --clr-secondary-mid:  #243447;
  --clr-accent:         #CC2027;   /* accent matches brand red */

  /* Neutrals */
  --clr-white:          #FFFFFF;
  --clr-off-white:      #F0F2F6;
  --clr-light:          #E4E7EF;
  --clr-mid:            #C4CAD3;
  --clr-text:           #1E2835;
  --clr-text-muted:     #566070;
  --clr-border:         #DDE1E8;

  /* WhatsApp green */
  --clr-whatsapp:       #25D366;
  --clr-whatsapp-dark:  #1aab52;

  /* Typography */
  --ff-sans: "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extrabold:800;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  var(--sp-5);
  --header-h:       68px;
  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      14px;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 12px rgba(0,0,0,.10);
  --shadow-md:  0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 40px rgba(0,0,0,.14);

  /* Transitions */
  --trans-fast:   120ms ease;
  --trans-base:   220ms ease;
  --trans-slow:   380ms ease;
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--ff-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Focus ring — visible for keyboard users, WCAG 2.4.7 */
:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 5px rgba(204,32,39,.15);
}

/* ----------------------------------------------------------
   3. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

@media (min-width: 640px) {
  :root { --container-pad: var(--sp-6); }
}
@media (min-width: 1024px) {
  :root { --container-pad: var(--sp-8); }
}

/* ----------------------------------------------------------
   4. TYPOGRAPHY HELPERS
   ---------------------------------------------------------- */
.section-eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-2);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

.section-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-3);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: var(--text-4xl); }
}

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  transition: background var(--trans-base), transform var(--trans-fast), box-shadow var(--trans-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  min-height: 44px; /* WCAG 2.5.5 touch target */
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn--primary:hover { background: var(--clr-primary-dark); }

.btn--secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--clr-white);
}

.btn--whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}
.btn--whatsapp:hover { background: var(--clr-whatsapp-dark); }

.btn--sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  margin-top: var(--sp-3);
  min-height: 44px; /* WCAG 2.5.5 touch target */
}

/* White button — for use on coloured hero backgrounds */
.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary);
  font-weight: var(--fw-bold);
}
.btn--white:hover {
  background: rgba(255,255,255,.92);
}

/* ----------------------------------------------------------
   6. HEADER
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--clr-secondary);
  transition: box-shadow var(--trans-base), background var(--trans-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  background: rgba(26,43,60,.97);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
  /* White background logo sits cleanly in a white-pill badge */
  background: var(--clr-white);
}

.logo-text {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1.25;
  max-width: 160px;
}

@media (min-width: 480px) {
  .logo-text { font-size: var(--text-base); max-width: none; }
}

/* Desktop quick-call link in header */
.header-phone {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, .82);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--trans-fast);
}

.header-phone .material-symbols-outlined {
  font-size: 18px;
  display: inline-block;
  color: var(--clr-primary);
}

.header-phone:hover {
  color: var(--clr-white);
}

@media (min-width: 900px) {
  .header-phone { display: flex; }
}

/* Primary Nav */
.primary-nav {
  display: none;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
}

.nav-link {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  transition: color var(--trans-fast), background var(--trans-fast);
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--clr-white);
  background: rgba(255,255,255,.1);
}

.nav-link--cta {
  background: var(--clr-primary);
  color: var(--clr-white) !important;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
}

.nav-link--cta:hover,
.nav-link--cta:focus-visible {
  background: var(--clr-primary-dark) !important;
}

/* Hamburger — 44×44 minimum for WCAG 2.5.5 */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--sp-2);
  border-radius: var(--radius);
  transition: background var(--trans-fast);
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255,255,255,.1);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  transition: transform var(--trans-base), opacity var(--trans-base);
  transform-origin: center;
}

/* Open state */
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
.primary-nav.nav-open {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--clr-secondary-mid);
  border-top: 2px solid var(--clr-primary);
  padding: var(--sp-4);
  box-shadow: var(--shadow-lg);
}

.primary-nav.nav-open ul {
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-1);
}

.primary-nav.nav-open .nav-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
}

.primary-nav.nav-open .nav-link--cta {
  display: block;
  text-align: center;
  margin-top: var(--sp-2);
}

/* Desktop nav */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .primary-nav.nav-open { /* reset mobile styles */
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }
}

/* ----------------------------------------------------------
   7. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  /* Photo layered under a dark-charcoal gradient:
     left side is more opaque (text legibility),
     right side opens up so the forklift is visible */
  background:
    linear-gradient(
      105deg,
      rgba(32, 36, 40, .97) 0%,
      rgba(44, 50, 56, .84) 45%,
      rgba(55, 62, 68, .52) 100%
    ),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Subtle vignette at bottom to ground the hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Two-column layout: text left, illustration right */
.hero-layout {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  padding-block: var(--sp-20);
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 620px;
}

/* SVG illustration panel */
.hero-illustration {
  flex: 0 0 auto;
  width: clamp(200px, 36vw, 380px);
  color: rgba(255, 255, 255, .70);
  pointer-events: none;
  user-select: none;
}

.forklift-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hide illustration on small screens — keeps hero compact */
@media (max-width: 760px) {
  .hero-illustration { display: none; }
}

/* ── Forklift draw-on animation ──────────────────────────
   Each .fl element starts fully hidden (dashoffset = 1
   when pathLength = 1) and animates to dashoffset 0.
   Staggered delays create a sequential drawing effect.
   ─────────────────────────────────────────────────────── */
@keyframes fl-draw {
  to { stroke-dashoffset: 0; }
}

/* Base state: all paths hidden, awaiting animation */
.forklift-svg .fl {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: fl-draw var(--fl-dur, .45s) ease-out var(--fl-delay, 0s) both;
}

/* Sequential draw timings — total ≈ 1.55 s */
.fl-00 { --fl-delay: 0s;     --fl-dur: .38s; } /* ground line   */
.fl-01 { --fl-delay: .04s;   --fl-dur: .52s; } /* chassis body  */
.fl-02 { --fl-delay: .14s;   --fl-dur: .36s; } /* counterweight */
.fl-03 { --fl-delay: .30s;   --fl-dur: .40s; } /* cab frame     */
.fl-04 { --fl-delay: .46s;   --fl-dur: .28s; } /* ROPS guard    */
.fl-05 { --fl-delay: .52s;   --fl-dur: .44s; } /* mast L        */
.fl-06 { --fl-delay: .60s;   --fl-dur: .44s; } /* mast R        */
.fl-07 { --fl-delay: .82s;   --fl-dur: .12s; } /* mast top      */
.fl-08 { --fl-delay: .86s;   --fl-dur: .12s; } /* mast brace L  */
.fl-09 { --fl-delay: .90s;   --fl-dur: .12s; } /* mast brace U  */
.fl-10 { --fl-delay: .92s;   --fl-dur: .22s; } /* carriage      */
.fl-11 { --fl-delay: 1.00s;  --fl-dur: .28s; } /* fork upper    */
.fl-12 { --fl-delay: 1.10s;  --fl-dur: .28s; } /* fork lower    */
.fl-13 { --fl-delay: 1.18s;  --fl-dur: .34s; } /* front wheel   */
.fl-14 { --fl-delay: 1.36s;  --fl-dur: .18s; } /* front hub     */
.fl-15 { --fl-delay: 1.22s;  --fl-dur: .36s; } /* rear wheel    */
.fl-16 { --fl-delay: 1.40s;  --fl-dur: .18s; } /* rear hub      */

/* Respect prefers-reduced-motion — show instantly, no animation */
@media (prefers-reduced-motion: reduce) {
  .forklift-svg .fl {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
}

.hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8); /* white on brand-red bg */
  margin-bottom: var(--sp-4);
}

.hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: var(--fw-extrabold);
  line-height: 1.12;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.hero h1 .accent {
  color: #FF7A7F; /* lighter coral-red — clearly accent, passes WCAG AA for large text */
}

.hero-lead {
  font-size: var(--text-xl);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
  max-width: 560px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ----------------------------------------------------------
   8. SECTIONS (shared)
   ---------------------------------------------------------- */
.section {
  padding-block: var(--sp-20);
}

.section--alt {
  background: var(--clr-light);
}

/* ----------------------------------------------------------
   9. SERVICES GRID
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 32, 39, .10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--clr-primary);
  transition: background var(--trans-base);
}

.service-card:hover .service-icon {
  background: rgba(204, 32, 39, .18);
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* 5th card: full width on 2-col, center on 3-col */
@media (min-width: 560px) and (max-width: 959px) {
  .services-grid li:nth-child(5) {
    grid-column: span 2;
  }
}

/* ----------------------------------------------------------
   10. WHY US
   ---------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 600px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-us-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--clr-primary);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
}

.why-us-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 32, 39, .10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: var(--sp-4);
  transition: background var(--trans-base);
}

.why-us-card:hover .why-us-icon {
  background: rgba(204, 32, 39, .18);
}

.why-us-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
  margin-bottom: var(--sp-2);
}

.why-us-card p {
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   11. SAFETY
   ---------------------------------------------------------- */
.section--safety {
  background: var(--clr-white);
  color: var(--clr-text);
  padding-block: var(--sp-20);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.safety-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

@media (min-width: 768px) {
  .safety-inner {
    grid-template-columns: 1fr auto;
    gap: var(--sp-16);
  }
}

.safety-text .section-eyebrow { color: var(--clr-primary); }

.safety-text h2 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-5);
}

@media (min-width: 768px) {
  .safety-text h2 { font-size: var(--text-4xl); }
}

.safety-text p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.safety-list {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.safety-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--clr-text);
  font-weight: var(--fw-medium);
}

.safety-list li .material-symbols-outlined {
  color: var(--clr-primary); /* brand red icon on white — 7.1:1 contrast */
}

.safety-visual {
  display: flex;
  justify-content: center;
}

.safety-badge {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--clr-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: rgba(204,32,39,.05);
  color: var(--clr-primary);
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  text-align: center;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   12. STATS (used inside .about-stat)
   ---------------------------------------------------------- */
.stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ----------------------------------------------------------
   13. AREAS
   ---------------------------------------------------------- */
.section--areas {
  background: linear-gradient(180deg, var(--clr-off-white) 0%, var(--clr-light) 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 580px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 3-column layout for 3 area cards at wider screens */
@media (min-width: 900px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Centre a lone 3rd card in the 2-col row */
@media (min-width: 580px) and (max-width: 899px) {
  .areas-grid .area-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--sp-3));
    margin-inline: auto;
  }
}

.area-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--clr-primary);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
}

.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.area-icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 32, 39, .10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin: 0 auto var(--sp-5);
  transition: background var(--trans-base);
}

.area-card:hover .area-icon {
  background: rgba(204, 32, 39, .18);
}

.area-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
  margin-bottom: var(--sp-2);
}

.area-base {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
}

.area-card p:not(.area-base) {
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   15. CONTACT
   ---------------------------------------------------------- */
.section--contact {
  background: var(--clr-light);
  color: var(--clr-text);
}

.section--contact .section-eyebrow { color: var(--clr-primary); }

.section--contact .section-header h2 {
  color: var(--clr-secondary);
}

.section--contact .section-lead {
  color: var(--clr-text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 580px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 32, 39, .10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  color: var(--clr-primary);
  transition: background var(--trans-base);
}

.contact-card:hover .contact-icon {
  background: rgba(204, 32, 39, .18);
}


.contact-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
}

.contact-value {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  word-break: break-word;
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--clr-primary);
  text-decoration: underline;
}

/* ----------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: #111B25;
  color: rgba(255,255,255,.6);
  padding-block: var(--sp-12);
}

.footer-inner {
  display: grid;
  gap: var(--sp-8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer-business-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}

.footer-links nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-links a:hover { color: var(--clr-white); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
}

.footer-contact a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  transition: color var(--trans-fast);
}

.footer-contact a:hover { color: var(--clr-white); }

.footer-social {
  display: flex;
  gap: var(--sp-5);
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  transition: color var(--trans-fast);
}

.footer-social a:hover { color: var(--clr-white); }

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
}

.footer-credit a {
  color: rgba(255,255,255,.55);
  transition: color var(--trans-fast);
}

.footer-credit a:hover { color: var(--clr-white); }

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

/* ----------------------------------------------------------
   17. SKIP-TO-MAIN (accessibility)
   ---------------------------------------------------------- */
.skip-to-main {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius);
  font-weight: var(--fw-bold);
  z-index: 9999;
  transition: top var(--trans-fast);
}

.skip-to-main:focus {
  top: var(--sp-4);
}

/* ----------------------------------------------------------
   18. ABOUT SECTION
   ---------------------------------------------------------- */
.section--about {
  background: var(--clr-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-14);
  }
}

.about-text h2 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-secondary);
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}

@media (min-width: 768px) {
  .about-text h2 { font-size: var(--text-4xl); }
}

.about-text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.about-text p:last-child { margin-bottom: 0; }

.mission-card {
  background: var(--clr-secondary);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.mission-icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 32, 39, .18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-light);
  margin-bottom: var(--sp-4);
}

.mission-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary-light);
  margin-bottom: var(--sp-3);
}

.mission-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

@media (max-width: 479px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

.about-stat {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
}

.about-stat .stat-number {
  font-size: var(--text-xl);
}

/* ----------------------------------------------------------
   19. EXPERIENCE + TEAM COMBINED SECTION
   ---------------------------------------------------------- */
.exp-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

@media (min-width: 768px) {
  .exp-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-12);
  }
}

.exp-block h2 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-secondary);
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}

@media (min-width: 768px) {
  .exp-block h2 { font-size: var(--text-3xl); }
}

.exp-block p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.exp-block p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   20. AREA ADDRESS
   ---------------------------------------------------------- */
.area-address {
  font-style: normal;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-secondary);
  line-height: 1.5;
  margin-bottom: var(--sp-3);
}

/* ----------------------------------------------------------
   21. SCROLL ANIMATIONS (respects prefers-reduced-motion)
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------
   22. ACTIVE NAV LINK (set via JS on scroll)
   ---------------------------------------------------------- */
.nav-link.active {
  color: var(--clr-white);
  background: rgba(255,255,255,.12);
}

/* ----------------------------------------------------------
   23. INTERACTION: text links
   ---------------------------------------------------------- */
a:not([class]):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----------------------------------------------------------
   24. RESPONSIVE — extra-small screens (< 360px)
   ---------------------------------------------------------- */
@media (max-width: 359px) {
  :root {
    --text-3xl: 1.5rem;
    --text-4xl: 1.875rem;
    --sp-20: 4rem;
  }
  .cta-group {
    flex-direction: column;
  }
  .cta-group .btn {
    justify-content: center;
    text-align: center;
  }
}

/* ----------------------------------------------------------
   25. AREA TAGS (Vaal Triangle town pills)
   ---------------------------------------------------------- */
.area-tags {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.area-tags li {
  background: rgba(204, 32, 39, .08);
  color: var(--clr-primary-dark);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .02em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 999px;
  border: 1px solid rgba(204, 32, 39, .2);
  line-height: 1.8;
}

/* ----------------------------------------------------------
   26. COOKIE CONSENT BANNER
   ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--clr-secondary);
  color: var(--clr-white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .22);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide in once .cookie-visible is added by JS */
.cookie-banner.cookie-visible {
  transform: translateY(0);
}

/* When hidden attribute is present, fully remove from layout */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 260px;
}

.cookie-title {
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  color: var(--clr-white);
  margin: 0 0 var(--sp-1);
}

.cookie-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-shrink: 0;
}

/* Override btn--sm margin-top inside the banner */
.cookie-actions .btn {
  margin-top: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  transition: color var(--trans-fast), background var(--trans-fast);
}

.cookie-close:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, .1);
}

.cookie-close:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 2px;
  color: var(--clr-white);
}

@media (max-width: 599px) {
  .cookie-inner {
    padding: var(--sp-4);
    gap: var(--sp-3);
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
  .cookie-close {
    position: absolute;
    top: var(--sp-2);
    right: var(--sp-2);
  }
  .cookie-banner {
    position: fixed; /* ensure stacking context on mobile */
  }
  .cookie-inner {
    position: relative;
    padding-top: var(--sp-8);
  }
}

/* ----------------------------------------------------------
   26b. QUOTE / ENQUIRY FORM
   ---------------------------------------------------------- */
.quote-wrap {
  margin-top: var(--sp-16);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--clr-border);
}

.quote-intro {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.quote-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-secondary);
  margin-bottom: var(--sp-2);
}

@media (min-width: 768px) {
  .quote-title { font-size: var(--text-3xl); }
}

.quote-subtitle {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
}

.quote-form {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 580px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-secondary);
}

.required {
  color: var(--clr-primary);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--ff-sans);
  font-size: var(--text-base);
  color: var(--clr-text);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-mid);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(204, 32, 39, .12);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23566070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1 1 200px;
}

/* Success / error status message */
.form-status {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.form-status[hidden] { display: none; }

.form-status.success {
  background: rgba(16, 185, 129, .10);
  border: 1px solid rgba(16, 185, 129, .30);
  color: #065f46;
}

.form-status.error {
  background: rgba(204, 32, 39, .08);
  border: 1px solid rgba(204, 32, 39, .25);
  color: var(--clr-primary-dark);
}

/* ----------------------------------------------------------
   27. BACK-TO-TOP BUTTON
   ---------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--trans-base), transform var(--trans-base), background var(--trans-fast);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px) !important;
}

.back-to-top .material-symbols-outlined {
  font-size: 22px;
  display: block;
}

/* ----------------------------------------------------------
   28. HERO HOURS LINE
   ---------------------------------------------------------- */
.hero-hours {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.hero-hours .material-symbols-outlined {
  font-size: 16px;
  display: inline-block;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------
   29. HOW IT WORKS SECTION
   ---------------------------------------------------------- */
.section--how {
  background: var(--clr-off-white);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-8);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    position: relative;
  }

  /* Connecting line between steps */
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px; /* centre of the icon circle */
    right: calc(-1 * var(--sp-6) / 2 - 20px);
    width: calc(var(--sp-6) + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-border) 100%);
  }

  .process-step {
    position: relative;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .process-step {
    align-items: center;
    text-align: center;
  }
}

.step-badge {
  position: relative;
  flex-shrink: 0;
}

.step-num {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  line-height: 1;
  padding: 3px 5px;
  border-radius: 4px;
  z-index: 1;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}

.process-step:hover .step-icon-wrap {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(204, 32, 39, 0.08);
}

.step-icon-wrap .material-symbols-outlined {
  font-size: 30px;
  color: var(--clr-primary);
}

.step-body h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
  margin-bottom: var(--sp-2);
}

.step-body p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   30. INDUSTRIES STRIP
   ---------------------------------------------------------- */
.industries-strip {
  background: var(--clr-secondary);
  padding-block: var(--sp-8);
}

.industries-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6) var(--sp-10);
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  transition: color var(--trans-base);
}

.industry-item:hover {
  color: var(--clr-white);
}

.industry-item .material-symbols-outlined {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--trans-base), transform var(--trans-base);
}

.industry-item:hover .material-symbols-outlined {
  color: var(--clr-primary-light);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   31. EMERGENCY STRIP
   ---------------------------------------------------------- */
.emergency-strip {
  background: var(--clr-primary);
  padding-block: var(--sp-8);
}

.emergency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.emergency-text {
  flex: 1 1 300px;
}

.emergency-headline {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}

.emergency-headline .material-symbols-outlined {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.emergency-sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.btn--emergency-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-full);
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: background var(--trans-fast), transform var(--trans-fast);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--emergency-wa:hover {
  background: var(--clr-whatsapp-dark);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   32. FAQ SECTION
   ---------------------------------------------------------- */
.section--faq {
  background: var(--clr-white);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-secondary);
  transition: color var(--trans-fast);
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--clr-primary);
}

.faq-chevron {
  font-size: 22px !important;
  flex-shrink: 0;
  transition: transform var(--trans-base);
  color: var(--clr-text-muted);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

.faq-answer {
  padding-bottom: var(--sp-5);
}

.faq-answer p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin: 0;
}

.faq-answer strong {
  color: var(--clr-secondary);
}

.faq-contact-link {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  max-width: 800px;
  margin-inline: auto;
}

.faq-contact-link a {
  color: var(--clr-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----------------------------------------------------------
   33. TRUST BADGES
   ---------------------------------------------------------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
}

.trust-badge .material-symbols-outlined {
  font-size: 16px;
  color: var(--clr-primary);
  display: inline-block;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   34. FLOATING WHATSAPP BUTTON
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-6);
  left: var(--sp-6);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
}

.whatsapp-float:hover {
  background: var(--clr-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-label {
  white-space: nowrap;
}

/* Hide label on small screens to save space */
@media (max-width: 480px) {
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: var(--sp-3); }
}

/* Hide float entirely on mobile — use CTA bar instead */
@media (max-width: 639px) {
  .whatsapp-float { display: none; }
}

/* ----------------------------------------------------------
   35. MOBILE CTA BAR
   ---------------------------------------------------------- */
.mobile-cta-bar {
  display: none; /* hidden on desktop by default */
}

@media (max-width: 639px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  /* Push footer content above the bar */
  .site-footer {
    padding-bottom: 56px;
  }

  /* Raise cookie banner above the mobile CTA bar */
  .cookie-banner {
    bottom: 56px;
  }

  /* Raise back-to-top button above the mobile CTA bar */
  .back-to-top {
    bottom: calc(56px + var(--sp-4));
    right: var(--sp-4);
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-3);
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    text-decoration: none;
    color: var(--clr-white);
    min-height: 56px;
    transition: filter var(--trans-fast);
  }

  .mobile-cta-btn:active {
    filter: brightness(0.9);
  }

  .mobile-cta-btn--call {
    background: var(--clr-secondary);
  }

  .mobile-cta-btn--wa {
    background: var(--clr-whatsapp);
  }

  .mobile-cta-btn .material-symbols-outlined {
    font-size: 20px;
    display: inline-block;
  }
}

/* ----------------------------------------------------------
   36. SERVICE ICON MICRO-ANIMATIONS
   ---------------------------------------------------------- */
.service-card .service-icon .material-symbols-outlined,
.why-us-card .why-us-icon .material-symbols-outlined {
  transition: transform var(--trans-base), font-variation-settings var(--trans-base);
}

.service-card:hover .service-icon .material-symbols-outlined,
.why-us-card:hover .why-us-icon .material-symbols-outlined {
  transform: scale(1.2) rotate(-5deg);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ----------------------------------------------------------
   28. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .cta-group, .btn { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: none; }
  a[href^="tel"]::after { content: " (" attr(href) ")"; }
  a[href^="mailto"]::after { content: " (" attr(href) ")"; }
  .section { padding-block: 1.5rem; }
  .whatsapp-float, .mobile-cta-bar, .back-to-top { display: none !important; }
}
