/* ==========================================================================
   DVC Auto & Truck Repairs — Design System v2.0  (Mobile-First)
   Base styles target small screens; min-width queries enhance upward.
   Static CSS only — no build step (GoDaddy-friendly).
   Breakpoints:  sm 600px · md 768px · lg 1024px
   ========================================================================== */

:root {
  /* Accents */
  --color-primary: #FCF400;      /* Signal Yellow */
  --color-primary-dim: #C9C400;  /* Yellow pressed */
  --color-brand: #3DB5F2;        /* DVC Blue */
  --color-brand-dim: #2A9BD6;    /* Blue pressed */
  --color-success: #5BC46B;

  /* Surfaces */
  --bg: #0E0E0E;
  --surface: #141414;
  --surface-2: #1F1F1F;
  --surface-hover: #1A1A1A;
  --border: #2A2A2A;
  --border-soft: #1C1C1C;

  /* Text */
  --text: #FFFFFF;
  --text-secondary: #B4B4B4;
  --text-muted: #777777;
  --text-on-accent: #0E0E0E;

  /* Type */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 14px;
  --r-pill: 999px;

  /* Layout — fluid so the design scales smoothly at every width */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(56px, 9vw, 96px);
  --section-y-tight: clamp(44px, 7vw, 64px);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;   /* stop iOS auto-inflating text */
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;               /* belt-and-braces against horizontal scroll */
}
img, svg, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
::selection { background: var(--color-primary); color: var(--bg); }
svg[fill="none"] { stroke-width: 1.75; }

/* Long words / headings never push the layout wider than the screen */
h1, h2, h3, p, summary, .trust-t, .svc h3 { overflow-wrap: break-word; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- Section scaffolding ----- */
.section { padding: var(--section-y) 0; border-bottom: 1px solid var(--border-soft); }
.section--tight { padding: var(--section-y-tight) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary);
}
.eyebrow .dot { width: 8px; height: 8px; background: var(--color-primary); border-radius: 2px; flex-shrink: 0; }
.eyebrow--blue { color: var(--color-brand); }
.eyebrow--blue .dot { background: var(--color-brand); }

.section-head { max-width: 640px; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 5.5vw, 40px);
  letter-spacing: -0.02em; color: var(--text); margin: 12px 0 0; line-height: 1.08;
}
.section-head p {
  font-size: clamp(15px, 2.4vw, 16px); line-height: 1.6; color: var(--text-secondary); margin: 14px 0 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  border: none; border-radius: var(--r-md); padding: 13px 24px;
  min-height: 46px;                 /* comfortable touch target */
  cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .12s;
  white-space: nowrap; line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-primary); color: var(--text-on-accent); }
.btn-primary:hover { background: var(--color-primary-dim); }
.btn-brand { background: var(--color-brand); color: #06283D; }
.btn-brand:hover { background: var(--color-brand-dim); }
.btn-ghost { background: transparent; color: var(--text-secondary); font-weight: 600; padding: 13px 18px; }
.btn-ghost:hover { color: var(--text); }
.btn-block { width: 100%; }
.btn-sm { font-size: 13px; padding: 9px 16px; min-height: 38px; border-radius: var(--r-sm); }
.btn-lg { font-size: clamp(15px, 2.6vw, 17px); padding: 16px 30px; min-height: 52px; }
.btn:focus-visible { outline: 3px solid rgba(61,181,242,.5); outline-offset: 2px; }
.btn[disabled] { opacity: .35; cursor: not-allowed; }

.btn-whatsapp { background: #25D366; color: #06281A; }
.btn-whatsapp:hover { background: #1FB957; }

/* Luminescent line — a lit gradient outline glows and travels around every WhatsApp button */
@property --wa-glow { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.btn-whatsapp, .wa-fab { position: relative; }
.btn-whatsapp::after, .wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px;                         /* thickness of the glowing line */
  background: conic-gradient(from var(--wa-glow),
    #0E8A3E, #25D366, #9CFFC4, #FFFFFF, #9CFFC4, #25D366, #0E8A3E, #0E8A3E);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(124,255,176,.85)) drop-shadow(0 0 9px rgba(37,211,102,.55));
  animation: wa-glow-travel 3s linear infinite;
  pointer-events: none;
}
@keyframes wa-glow-travel { to { --wa-glow: 360deg; } }
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp::after, .wa-fab::after { animation: none; }
}

/* ==========================================================================
   Badges & chips
   ========================================================================== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
  border-radius: var(--r-pill); padding: 5px 13px;
  background: var(--surface-2); color: var(--text-secondary); border: 1px solid var(--border);
}
.chip--solid { background: var(--color-primary); color: var(--text-on-accent); font-weight: 700; border: none; padding: 6px 14px; }
.chip--brand { background: transparent; color: var(--color-brand); border-color: var(--color-brand); }
.chip--dot { background: rgba(252,244,0,.12); color: var(--color-primary); border: none; font-weight: 700; padding: 6px 14px; }
.chip--dot .led { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }

/* ==========================================================================
   Cards (generic raised surface)
   ========================================================================== */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(20px, 4vw, 28px);
}

/* ==========================================================================
   Service cards (image card: photo + body, with icon badge)
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;       /* mobile: single column */
  gap: 16px;
  margin-top: clamp(28px, 5vw, 36px);
}
.svc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; transition: transform .15s, border-color .15s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-3px); border-color: #3A3A3A; }
.svc-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.svc:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 22px 24px 26px; }
.svc h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 3vw, 19px); color: var(--text); margin: 0; }
.svc p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 8px 0 0; }

/* ==========================================================================
   Trust strip (verifiable credentials)
   ========================================================================== */
.trust-strip { display: grid; grid-template-columns: 1fr; gap: 12px; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 20px; min-width: 0;
}
.trust-ico {
  width: 46px; height: 46px; border-radius: var(--r-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,244,0,.1); color: var(--color-primary);
}
.trust-ico--blue { background: rgba(61,181,242,.12); color: var(--color-brand); }
.trust-ico--logo { width: 52px; height: 46px; padding: 0; background: transparent; }
.trust-ico--logo img { max-width: 100%; height: auto; display: block; }
.trust-t { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--text); line-height: 1.1; }
.trust-s { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ==========================================================================
   Forms & alerts
   ========================================================================== */
.field label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
}
.input {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 12px 14px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: #666; }
.input:focus { border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(61,181,242,.18); }
textarea.input { resize: vertical; min-height: 96px; }
select.input {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 44px;
  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='%23888888' stroke-width='2.25' 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 16px center;
  background-size: 16px 16px;
}
select.input:hover { border-color: #3A3A3A; }
select.input:focus {
  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='%233DB5F2' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
select.input option { background: var(--surface-2); color: var(--text); }

.alert { display: flex; align-items: flex-start; gap: 16px; border-radius: var(--r-xl); padding: 20px; border: 1px solid var(--border); background: var(--surface); }
.alert .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.alert .at { font-weight: 700; font-size: 15px; color: var(--text); }
.alert .ad { font-size: 14px; line-height: 1.55; color: var(--text-secondary); margin-top: 4px; word-break: break-word; }
.alert .ad a { text-decoration: none; }
.alert--info { background: rgba(61,181,242,.08); border-color: rgba(61,181,242,.35); }
.alert--info .ico { color: var(--color-brand); background: rgba(61,181,242,.12); }
.alert--notice { background: rgba(252,244,0,.08); border-color: rgba(252,244,0,.35); }
.alert--notice .ico { color: var(--color-primary); background: rgba(252,244,0,.10); }
.alert--success .ico { color: var(--color-success); background: rgba(91,196,107,.14); }
.form-note { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.checklist li { list-style: none; display: flex; align-items: flex-start; gap: 12px; }
.checklist .tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(252,244,0,.12); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.checklist span { font-size: 14px; color: var(--text); }

/* Why-choose two-column layout */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: clamp(28px, 5vw, 36px); align-items: stretch;
}
.why-grid .card { margin: 0; display: flex; flex-direction: column; }
.why-grid .checklist { flex: 1; justify-content: center; gap: 22px; }
.why-panel h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(17px, 3vw, 20px); color: var(--text); margin: 0;
}
.why-panel > p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 10px 0 0; }
.cap-list { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0 0; padding: 0; }
.cap-item {
  list-style: none; display: flex; align-items: center; gap: 12px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 14px;
}
.cap-ico {
  width: 34px; height: 34px; border-radius: var(--r-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,244,0,.1); color: var(--color-primary);
}
.cap-item span:last-child { font-size: 13px; color: var(--text); line-height: 1.3; }

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */
.accordion { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin-top: clamp(28px, 5vw, 36px); }

/* FAQ editorial split: intro column + questions fill the width */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); margin-top: clamp(28px, 5vw, 36px); }
.faq-intro .btn { margin-top: 24px; }
.faq-layout .accordion { max-width: none; margin-top: 0; }
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 56px; align-items: start; }
  .faq-intro { position: sticky; top: 96px; }
}
details.faq { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; }
details.faq > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 2.6vw, 16px); color: var(--text);
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq .chev { color: var(--color-primary); display: flex; flex-shrink: 0; transition: transform .2s; }
details.faq[open] .chev { transform: rotate(180deg); }
details.faq .answer { padding: 0 20px 18px; font-size: 14px; line-height: 1.65; color: var(--text-secondary); }

/* ==========================================================================
   Free-quote conversion band
   ========================================================================== */
.quote-band {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 56px);
}
.quote-glow {
  position: absolute; inset: -40% -10% auto auto; width: min(560px, 120%); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(252,244,0,.10), transparent 65%);
  pointer-events: none;
}
.quote-inner { position: relative; max-width: 720px; }
.quote-inner h2 {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 5.5vw, 42px);
  letter-spacing: -0.02em; line-height: 1.08; color: var(--text); margin: 12px 0 0;
}
.quote-inner p { font-size: clamp(15px, 2.6vw, 17px); line-height: 1.6; color: var(--text-secondary); margin: 14px 0 0; }
/* Two equal-priority actions: equal-width, side by side, stacking when tight */
.quote-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; max-width: 560px; }
.quote-cta .btn { flex: 1 1 220px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: clamp(28px, 5vw, 36px); align-items: stretch;
}
.contact-layout > .card { padding: 24px; }
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
.contact-card { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; min-width: 0; }
.contact-ico {
  width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0; align-self: flex-start;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,244,0,.1); color: var(--color-primary);
}
.contact-ico--blue { background: rgba(61,181,242,.12); color: var(--color-brand); }
.cc-body { flex: 1 1 200px; min-width: 0; }
.contact-card > .btn { flex-shrink: 0; flex-basis: 100%; }   /* narrow: button drops to its own row below the text */
.contact-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); margin: 2px 0 0; }
.contact-card p { font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin: 6px 0 0; word-break: break-word; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; }
.hours-row .day { font-size: 14px; color: var(--text-secondary); }
.hours-row .time { font-weight: 600; font-size: 14px; color: var(--text); }
.hours-row .time--closed { color: var(--text-muted); }

/* Real Google map */
.map-frame {
  margin-top: 28px; border-radius: var(--r-xl);
  border: 1px solid var(--border); overflow: hidden; line-height: 0;
}
.map-frame iframe { display: block; width: 100%; height: clamp(240px, 45vw, 320px); border: 0; filter: grayscale(.25) contrast(1.05); }
/* Map living inside the contact column: grows to fill the height left under the cards so the column ends level with the form */
.map-frame--side { margin-top: 0; flex: 1 1 auto; min-height: 150px; }
.map-frame--side iframe { height: 100%; min-height: 150px; }

/* ==========================================================================
   Navbar  (mobile-first: hamburger by default, full bar at lg)
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,14,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.nav-logo { display: inline-flex; }
.nav-logo img { height: clamp(40px, 8vw, 56px); width: auto; }

/* Collapsed menu panel (mobile default) */
.nav-links {
  position: absolute; top: 100%; left: 0; right: 0;
  display: none; flex-direction: column; align-items: stretch; gap: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 8px var(--gutter) 20px;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.nav-links.open { display: flex; }
.nav-links a:not(.btn) {
  text-decoration: none; font-weight: 600; font-size: 15px; color: var(--text-secondary);
  padding: 13px 0; border-bottom: 1px solid var(--border-soft); transition: color .15s;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links .btn { margin-top: 12px; width: 100%; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--text); cursor: pointer; padding: 8px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(44px, 8vw, 92px) 0 clamp(48px, 9vw, 84px);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}
.hero::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: min(680px, 90vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(61,181,242,.10), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -40%; left: -8%; width: min(560px, 80vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(252,244,0,.06), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;        /* mobile: copy over media, stacked */
  gap: clamp(28px, 6vw, 48px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-media {
  position: relative; min-width: 0;
  aspect-ratio: 16 / 12;             /* landscape when stacked on mobile */
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(14,14,14,.5));
}
.hero-media-badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px; color: var(--text);
  background: rgba(14,14,14,.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 13px;
}
.hero-media-badge .led { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 56px); }
  .hero-media { aspect-ratio: 4 / 5; }   /* premium portrait beside the copy */
}
.hero h1 {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(33px, 8vw, 68px);
  line-height: 1.04; letter-spacing: -0.03em; color: var(--text); margin: 18px 0 0;
}
.hero h1 .hl { color: var(--color-primary); }
.hero p { font-size: clamp(16px, 3vw, 19px); line-height: 1.6; color: var(--text-secondary); max-width: 600px; margin: 20px 0 0; }
/* CTA: one primary "quote" bar, then the two direct-contact actions paired */
.hero-cta { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 30px; max-width: 460px; }
.hero-cta .btn { width: 100%; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; max-width: 460px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--surface); }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding: clamp(40px, 7vw, 56px) 0;
}
.footer-brand { max-width: 320px; }
.footer-brand img { height: 56px; width: auto; }
.footer-brand .tag { font-size: 14px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-logo-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.footer-brand .footer-logo-rmi { height: 42px; width: auto; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
  transition: color .15s, border-color .15s;
}
.socials a:hover { color: var(--color-primary); border-color: var(--color-primary); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text); margin: 0 0 14px; }
.footer-col a { display: block; text-decoration: none; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-col address { font-style: normal; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.footer-col address a { display: inline; margin-bottom: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-soft); padding: 16px 0; background: var(--bg);
  font-size: 12.5px; color: #555; text-align: center;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #06281A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); text-decoration: none;
  transition: transform .15s, background .15s;
}
.wa-fab:hover { background: #1FB957; transform: translateY(-2px); }
.wa-fab:focus-visible { outline: 3px solid rgba(37,211,102,.5); outline-offset: 3px; }

/* ==========================================================================
   Progressive enhancement — small / tablet / desktop
   ========================================================================== */

/* sm — 600px+ : two-up grids, side-by-side form fields */
@media (min-width: 600px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .cap-list { grid-template-columns: 1fr 1fr; }
  .hero-cta { grid-template-columns: 1fr 1fr; }   /* WhatsApp + Call side by side */
  .hero-cta .btn-primary { grid-column: 1 / -1; } /* primary quote spans the row */
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* md — 768px+ : richer trust + contact layouts */
@media (min-width: 768px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 20px; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
}

/* lg — 1024px+ : full horizontal nav, three-up services */
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }

  /* enough room now: pull the card button up beside the text to keep cards compact */
  .contact-card > .btn { flex-basis: auto; margin-left: auto; }

  .nav-toggle { display: none; }
  .nav-inner { gap: 24px; }
  .nav-links {
    position: static; display: flex; flex-direction: row; align-items: center; gap: 24px;
    background: none; border: none; padding: 0; max-height: none; overflow: visible;
  }
  .nav-links a:not(.btn) { padding: 0; border-bottom: none; font-size: 14px; }
  .nav-links .btn { margin-top: 0; width: auto; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
