/* ============================================================
   FOURWAYS PLUMBER — MAIN STYLESHEET
   Mobile-first, fully responsive
   Primary: #e31b23 | Charcoal: #1a1a1a | White: #ffffff
   Fonts: Montserrat (headings) + Open Sans (body)
============================================================ */

/* ─── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Brand colours */
  --red:          #e31b23;
  --red-dark:     #c0151c;
  --red-deeper:   #a01018;
  --red-light:    #ff3b44;
  --red-bg:       #fff0f0;
  --charcoal:     #1a1a1a;
  --charcoal-2:   #2d2d2d;
  --charcoal-3:   #3d3d3d;
  --white:        #ffffff;
  --off-white:    #f8f8f8;
  --light-grey:   #f0f0f0;
  --border-grey:  #e2e2e2;
  --mid-grey:     #999999;
  --text-body:    #444444;
  --text-light:   #666666;

  /* Typography */
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  /* Layout */
  --container:  1240px;
  --gap:        1rem;

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

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --shadow-red: 0 4px 20px rgba(227,27,35,0.28);

  /* Transitions */
  --t:  0.25s ease;
  --t2: 0.4s ease;

  /* Heights */
  --bar-h:    0px;
  --header-h: 72px;
}

/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* prevent horizontal scroll without breaking position:fixed */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Offset for fixed header */
body {
  padding-top: var(--header-h);
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--red-dark); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* Screen reader only */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
}

/* Skip link */
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.875rem;
  width: auto;
  height: auto;
  clip: auto;
}

/* ─── 3. CONTAINER ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gap);
}

/* ─── 4. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-red { color: var(--red); }

/* ─── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — red fill */
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

/* Outline dark */
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Outline white (on dark bg) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

/* White fill (on dark bg) */
.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--off-white);
  color: var(--red-dark);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
}

/* Sizes */
.btn--lg { font-size: 1rem; padding: 0.85rem 1.8rem; }
.btn--sm { font-size: 0.8rem; padding: 0.5rem 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* Loading state */
.btn__loading { display: none; }
.btn.is-loading .btn__text { display: none; }
.btn.is-loading .btn__loading { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ─── 6. SECTION HELPERS ─────────────────────────────────────── */
.section { padding-block: 5rem; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-bg);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.75rem;
}
.section-tag--white {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 640px;
  margin-inline: auto;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ─── 7. EMERGENCY BAR ──────────────────────────────────────── */
.emergency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--white);
  height: var(--bar-h);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
}

.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.emergency-bar__left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
}

.emergency-bar__left i {
  color: var(--red);
  font-size: 0.75rem;
}

.emergency-bar__number {
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
}
.emergency-bar__number:hover { color: var(--red-light); }

.emergency-bar__right {
  display: none;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255,255,255,0.65);
}

.emergency-bar__right span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.emergency-bar__right i { color: var(--red); }

/* ─── 8. SITE HEADER ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), background var(--t);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* Logo */
.site-logo .custom-logo-link img { height: 48px; width: auto; }

.text-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.text-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.text-logo__words {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.text-logo__main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.text-logo__sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav — hidden on mobile */
.main-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  padding: 0.5rem 0.65rem;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"] {
  color: var(--red);
  background: var(--red-bg);
}

.nav-list > li > a .fa-chevron-down {
  font-size: 0.6rem;
  transition: transform var(--t);
}
.nav-list > li.has-dropdown:hover > a .fa-chevron-down,
.nav-list > li.has-dropdown.is-open > a .fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-grey);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 0.65rem 1rem;
  transition: color var(--t), background var(--t);
}
.dropdown li a i { color: var(--red); width: 14px; }
.dropdown li:first-child a { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.dropdown li:last-child a  { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.dropdown li a:hover {
  color: var(--red);
  background: var(--red-bg);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-pill);
  border: 2px solid var(--border-grey);
  transition: all var(--t);
  white-space: nowrap;
}
.btn-call:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-bg);
}
.btn-call i { color: var(--red); }

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  background: var(--red);
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  border: 2px solid var(--red);
  transition: all var(--t);
  white-space: nowrap;
}
.btn-emergency:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--light-grey);
  flex-shrink: 0;
  transition: background var(--t);
}
.hamburger:hover { background: var(--border-grey); }

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), width var(--t);
}

.hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.is-open .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--t);
}
.mobile-nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* Mobile nav open state */
.main-nav.is-mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background: var(--white);
  z-index: 998;
  overflow-y: auto;
  padding: 1.5rem 1rem;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.main-nav.is-mobile-open .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.main-nav.is-mobile-open .nav-list > li > a {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--light-grey);
}

.main-nav.is-mobile-open .dropdown {
  position: static;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: var(--off-white);
  display: none;
  padding-left: 0.75rem;
}
.main-nav.is-mobile-open .has-dropdown.is-open .dropdown {
  display: block;
}
.main-nav.is-mobile-open .dropdown li a {
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--light-grey);
}

/* ─── 9. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--charcoal);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(227,27,35,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2a1010 100%);
  z-index: 0;
}

/* Geometric accent shapes */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227,27,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 40px
    );
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-block: 4rem;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(227,27,35,0.15);
  border: 1px solid rgba(227,27,35,0.35);
  color: #ff8080;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
  width: fit-content;
}
.hero__badge i { color: var(--red); }

.hero__title {
  font-size: clamp(1.9rem, 5.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.hero__trust-mini li { display: flex; align-items: center; gap: 0.35rem; }
.hero__trust-mini i  { color: #4ade80; }

/* Quote card */
.quote-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  width: 100%;
}

.quote-card__header {
  background: var(--red);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
}
.quote-card__header i {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
.quote-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.quote-card__sub {
  font-size: 0.82rem;
  opacity: 0.85;
  margin: 0;
}

.quote-form {
  padding: 1.5rem;
}

/* ─── 10. FORMS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.form-required { color: var(--red); }

.form-input-wrap {
  position: relative;
}

.form-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid-grey);
  font-size: 0.82rem;
  pointer-events: none;
  z-index: 1;
}
.form-icon--top {
  top: 0.85rem;
  transform: none;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.25rem;
  border: 1.5px solid var(--border-grey);
  border-radius: var(--r-md);
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(227,27,35,0.12);
}
.form-input::placeholder { color: var(--mid-grey); font-size: 0.85rem; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  min-height: 80px;
}

.form-response {
  margin-top: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}
.form-response.is-success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-response.is-error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--mid-grey);
  margin-top: 0.75rem;
}
.form-privacy i { margin-right: 0.25rem; }

/* ─── 11. TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal-2);
  padding-block: 1rem;
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-bar__item i { color: var(--red); font-size: 0.85rem; }

/* ─── 12. SERVICES SECTION ──────────────────────────────────── */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-grey);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.service-card__icon--red {
  background: var(--red-bg);
  color: var(--red);
}
.service-card__icon--dark {
  background: var(--light-grey);
  color: var(--charcoal);
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.1rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap var(--t);
  margin-top: auto;
}
.service-card__link:hover { gap: 0.6rem; color: var(--red-dark); }

/* ─── 13. WHY SECTION ───────────────────────────────────────── */
.why-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1010 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227,27,35,0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.why-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.why-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-list__icon {
  width: 44px;
  height: 44px;
  background: rgba(227,27,35,0.15);
  border: 1px solid rgba(227,27,35,0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.why-list__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.why-list__text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background var(--t), border-color var(--t);
}
.stat-card:hover {
  background: rgba(227,27,35,0.12);
  border-color: rgba(227,27,35,0.3);
}

.stat-card__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}

.stat-card__num .counter {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-card__suf {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}

.stat-card__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.why-cta { text-align: center; }

/* ─── 14. AREAS SECTION ─────────────────────────────────────── */
.areas-section { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border: 2px solid var(--border-grey);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all var(--t);
  gap: 0.5rem;
}
.area-card:hover {
  border-color: var(--red);
  background: var(--red-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  transition: background var(--t), color var(--t);
}
.area-card:hover .area-card__icon {
  background: var(--red);
  color: var(--white);
}

.area-card__name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}
.area-card:hover .area-card__name { color: var(--red); }

.area-card__tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-grey);
}

.areas-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.areas-note a { font-weight: 700; }
.areas-note i { color: var(--red); margin-right: 0.25rem; }

/* ─── 15. TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.5rem;
}
.overall-rating i { color: #f59e0b; font-size: 0.9rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-grey);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--t), transform var(--t);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars { display: flex; gap: 2px; }
.testimonial-card__stars i { color: #f59e0b; font-size: 0.85rem; }

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
  margin: 0;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__avatar--a { background: var(--red); }
.testimonial-card__avatar--b { background: #1d4ed8; }
.testimonial-card__avatar--c { background: #059669; }

.testimonial-card__info {
  flex-grow: 1;
}
.testimonial-card__info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-card__info span {
  font-size: 0.78rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.testimonial-card__info span i { color: var(--red); font-size: 0.7rem; }

.testimonial-card__source {
  color: #4285f4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ─── 16. EMERGENCY CTA BANNER ──────────────────────────────── */
.emergency-cta {
  background: var(--red);
  padding-block: 3.5rem;
  position: relative;
  overflow: hidden;
}

.emergency-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.emergency-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.emergency-cta__icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}

.emergency-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.emergency-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.emergency-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── 17. PAGE HERO (blog/archive/single) ───────────────────── */
.page-hero {
  background: var(--charcoal);
  padding-block: 3.5rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.page-hero__title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ─── 18. BLOG ──────────────────────────────────────────────── */
.blog-section { padding-block: 4rem; }

.blog-layout {
  display: grid;
  gap: 2.5rem;
}

.blog-posts { display: flex; flex-direction: column; gap: 2rem; }

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-grey);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card__body { padding: 1.5rem; }

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--mid-grey);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-card__meta i   { color: var(--red); }
.blog-card__meta a   { color: var(--text-light); }
.blog-card__date, .blog-card__cat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
.blog-card__title a { color: var(--charcoal); }
.blog-card__title a:hover { color: var(--red); }

.blog-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

/* Pagination */
.blog-pagination { margin-top: 2.5rem; }
.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-body);
  background: var(--light-grey);
  transition: all var(--t);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--red);
  color: var(--white);
}

/* No posts */
.no-posts {
  text-align: center;
  padding: 3rem 1.5rem;
}
.no-posts i {
  font-size: 3rem;
  color: var(--border-grey);
  margin-bottom: 1rem;
}
.no-posts h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.no-posts p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-grey);
  overflow: hidden;
}

.sidebar-widget__title {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-grey);
  color: var(--charcoal);
}

.sidebar-widget--search { padding: 1.25rem; }
.sidebar-widget--search .search-field {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border-grey);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
}
.sidebar-widget--search .search-submit {
  display: none;
}

.sidebar-cta {
  padding: 1.5rem;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
}
.sidebar-cta i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.sidebar-cta h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.sidebar-cta .btn + .btn { margin-top: 0.5rem; }

.sidebar-service-list {
  padding: 0.5rem 0;
}
.sidebar-service-list li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-grey);
  transition: color var(--t), background var(--t);
}
.sidebar-service-list li:last-child a { border-bottom: none; }
.sidebar-service-list li a i { color: var(--red); width: 14px; }
.sidebar-service-list li a:hover { color: var(--red); background: var(--red-bg); }

/* ─── 19. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top { padding-block: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Footer logo */
.footer-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-logo a i {
  font-size: 1.4rem;
  color: var(--red);
}
.footer-logo a span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo strong { color: var(--red); }

.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.footer-about-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
}
.badge i { color: var(--red); }

/* Footer column titles */
.footer-col__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* Footer links */
.footer-links { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
  padding-block: 0.2rem;
}
.footer-links a i { color: var(--red); width: 14px; font-size: 0.75rem; }
.footer-links a:hover { color: var(--white); }

/* Footer contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-phone, .footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.footer-phone { color: var(--white); }
.footer-phone:hover { color: var(--red); }
.footer-phone i { color: var(--red); }

.footer-whatsapp { color: #4ade80; }
.footer-whatsapp:hover { color: #86efac; }
.footer-whatsapp i { font-size: 1.2rem; }

.footer-address, .footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer-address i, .footer-hours i {
  color: var(--red);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--t);
}
.social-link--fb   { background: rgba(66,103,178,0.2); color: #6d93db; }
.social-link--fb:hover { background: #4267b2; color: var(--white); }
.social-link--google { background: rgba(66,133,244,0.2); color: #7aacf8; }
.social-link--google:hover { background: #4285f4; color: var(--white); }
.social-link--wa   { background: rgba(37,211,102,0.2); color: #4ade80; }
.social-link--wa:hover { background: #25d366; color: var(--white); }
.social-link--li   { background: rgba(10,102,194,0.2); color: #5b9fd6; }
.social-link--li:hover { background: #0a66c2; color: var(--white); }
.social-link--pinterest { background: rgba(230,0,35,0.2); color: #f47183; }
.social-link--pinterest:hover { background: #e60023; color: var(--white); }

.call-box__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer bottom */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding-block: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
}
.footer-legal-nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
}
.footer-legal-nav a:hover { color: rgba(255,255,255,0.7); }

/* ─── 20. FLOATING ACTION BUTTONS ───────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.fab:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.fab i { font-size: 1.2rem; }

.fab--call      { background: var(--red); }
.fab--whatsapp  { background: #25d366; }

.fab__label { font-size: 0.78rem; }

/* ─── 21. SCROLL ANIMATIONS ──────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-200 { transition-delay: 0.2s; }
.animate-delay-400 { transition-delay: 0.4s; }

/* Stagger service cards and area cards */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.4s; }

.areas-grid .area-card:nth-child(1) { transition-delay: 0s; }
.areas-grid .area-card:nth-child(2) { transition-delay: 0.06s; }
.areas-grid .area-card:nth-child(3) { transition-delay: 0.12s; }
.areas-grid .area-card:nth-child(4) { transition-delay: 0.18s; }
.areas-grid .area-card:nth-child(5) { transition-delay: 0.24s; }
.areas-grid .area-card:nth-child(6) { transition-delay: 0.3s; }
.areas-grid .area-card:nth-child(7) { transition-delay: 0.36s; }
.areas-grid .area-card:nth-child(8) { transition-delay: 0.42s; }

/* ─── 22. RESPONSIVE — TABLET (600px+) ──────────────────────── */
@media (min-width: 600px) {
  .emergency-bar__right {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .fab__label { display: none; }
  .fab { width: 52px; padding: 0; justify-content: center; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .blog-card__thumb img { height: 260px; }
}

/* ─── 22b. RESPONSIVE — TABLET GAP (600px+) ─────────────────── */
@media (min-width: 600px) {
  :root { --gap: 1.5rem; }
}

/* ─── 23. RESPONSIVE — DESKTOP (900px+) ─────────────────────── */
@media (min-width: 900px) {
  :root {
    --gap: 2rem;
  }

  /* Show desktop nav, hide hamburger */
  .main-nav {
    display: flex !important; /* override mobile open class */
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    animation: none;
  }
  .main-nav .nav-list {
    flex-direction: row;
  }
  .main-nav .dropdown { display: none !important; }
  .has-dropdown:hover .dropdown,
  .has-dropdown.is-open .dropdown {
    display: block !important;
  }

  .hamburger { display: none; }
  .header-cta { display: flex; }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    min-height: 88vh;
  }
  .hero__content { flex: 1; }
  .hero__form-wrap {
    width: 420px;
    flex-shrink: 0;
  }

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

  .why-layout {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }
  .why-content { flex: 1; }
  .why-stats   { flex: 1; }

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

  .emergency-cta__inner {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
  .emergency-cta__content { flex: 1; }
  .emergency-cta__sub { margin-inline: 0; }
  .emergency-cta__actions { flex-shrink: 0; flex-direction: column; }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }

  .blog-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* ─── 24. RESPONSIVE — WIDE (1100px+) ───────────────────────── */
@media (min-width: 1100px) {
  .header-cta .btn-call span { display: inline; }
}

/* ─── 24b. WORDPRESS ADMIN BAR COMPENSATION ─────────────────── */
/* WordPress adds html { margin-top: 32px/46px } which already shifts the document.
   Header stays at top:0 always (no jump on scroll).
   We subtract the admin-bar height from body padding-top so the two offsets add up
   to exactly var(--header-h) and the hero touches the header with no gap. */
body.admin-bar {
  padding-top: calc(var(--header-h) - 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    padding-top: calc(var(--header-h) - 46px);
  }
}

/* ─── 25. PRINT ─────────────────────────────────────────────── */
@media print {
  .emergency-bar,
  .site-header,
  .fab-container,
  .mobile-nav-overlay { display: none !important; }
  body { padding-top: 0; }
}
