/* =================================================================
   Easy Car Recovery — Premium Light 2026 Design System
   Airy, Confident, Modern
   feat/easy-car-recovery-premium-redesign
   ================================================================= */

/* ── 1. DESIGN TOKENS ── */
:root {
  /* Core palette — light-first */
  --rac-orange: #F95108;
  --rac-orange-dark: #D94400;
  --rac-orange-light: rgba(249,81,8,0.06);
  --rac-orange-glow: rgba(249,81,8,0.12);
  --surface-0: #FAFAFA;
  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --surface-3: #EEEEEE;
  --surface-glass: rgba(255,255,255,0.82);
  --text-primary: #111111;
  --text-secondary: rgba(0,0,0,0.60);
  --text-muted: rgba(0,0,0,0.38);
  --border-subtle: rgba(0,0,0,0.06);
  --border-hover: rgba(0,0,0,0.12);
  --brand-green: #1E9771;
  --brand-red: #D93838;
  --success-glow: rgba(30,151,113,0.1);
  --error-glow: rgba(217,56,56,0.1);
  --warning: #E88B00;

  /* Backward compat aliases */
  --brand-black: #111111;
  --grey-50: var(--surface-2);
  --grey-100: var(--surface-3);
  --grey-200: rgba(0,0,0,0.06);
  --grey-300: rgba(0,0,0,0.10);
  --grey-400: rgba(0,0,0,0.15);
  --grey-500: var(--text-muted);
  --grey-600: rgba(0,0,0,0.45);
  --grey-700: var(--text-secondary);
  --grey-900: var(--text-primary);
  --white: #FFFFFF;

  /* Page-level compat — standalone pages */
  --color-off-white: var(--surface-0);
  --color-white: var(--surface-1);
  --color-charcoal: var(--text-primary);
  --color-muted: var(--text-muted);
  --color-red: var(--rac-orange);
  --color-red-hover: var(--rac-orange-dark);
  --color-blue: var(--rac-orange);
  --color-blue-hover: var(--rac-orange-dark);
  --color-blue-light: var(--rac-orange-light);
  --color-success: var(--brand-green);
  --color-success-light: var(--success-glow);
  --color-warning: var(--warning);
  --color-warning-light: rgba(232,139,0,0.08);
  --color-error: var(--brand-red);
  --color-error-light: var(--error-glow);
  --color-border: rgba(0,0,0,0.08);
  --color-border-light: rgba(0,0,0,0.04);
  --font-family: var(--font-body);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(1.5rem, 3vw, 2.25rem);
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 800;
  --shadow-xl: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06);
  --transition-fast: 150ms ease-out;
  --transition-base: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --touch-target-min: 48px;
  --leading-form: 1.5;
  --leading-body-alt: 1.6;

  /* Typography */
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;

  /* Spacing scale */
  --space-1: 4px; --space-2: 8px; --space-3: 16px; --space-4: 24px;
  --space-5: 32px; --space-6: 48px; --space-7: 64px; --space-8: 96px;
  --space-9: 128px; --space-10: 192px;

  /* Radii */
  --radius-none: 0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layout */
  --leading-heading: 1.15;
  --leading-body: 1.65;
  --touch-target: 48px;
  --touch-target-lg: 52px;
  --container-max: 1280px;
  --container-gutter: 1.5rem;
  --nav-height: 72px;
  --emergency-height: 40px;
  --mobile-bar-height: 64px;

  /* Z-index layers */
  --z-emergency: 500; --z-nav: 400; --z-mobile: 500; --z-skip: 1000; --z-modal: 1050;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 600ms;
  --duration-reveal: 700ms;
}

@media (min-width: 768px) {
  :root { --container-gutter: 2rem; }
}
@media (min-width: 1440px) {
  :root { --container-max: 1320px; }
}

/* ── 2. RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--text-primary);
  background: var(--surface-0);
  padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rac-orange); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--rac-orange-dark); text-decoration: none; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-heading);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: var(--space-4); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: var(--space-3); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
p { margin-bottom: var(--space-3); color: var(--text-secondary); }

.heading { padding: 0 0 var(--space-6); }
.heading h1, .heading h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.02em;
}

/* ── 4. FOCUS & SKIP ── */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--rac-orange), 0 0 0 6px rgba(249,81,8,0.12);
  border-radius: var(--radius-sm);
}
.ecr-skip-link {
  position: fixed; top: var(--space-2); left: var(--space-2); z-index: var(--z-skip);
  padding: var(--space-2) var(--space-4); background: var(--rac-orange);
  color: #FFFFFF; font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius-full);
  transform: translateY(-150%); transition: transform var(--duration-fast) var(--ease-out);
}
.ecr-skip-link:focus { transform: translateY(0); }

/* ── 5. LAYOUT ── */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-gutter); }
.section { padding-block: var(--space-8); }
@media (max-width: 767px) { .section { padding-block: var(--space-6); } }

.bg-white { background: var(--surface-1); }
.bg-grey { background: var(--surface-2); }
.bg-dark { background: #111111; color: #FFFFFF; }

/* ── 6. EMERGENCY STRIP (dark bar on light page) ── */
.ecr-emergency-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-emergency);
  height: var(--emergency-height); background: #111111;
  color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 500; gap: var(--space-3); padding: 0 var(--space-3);
}
.ecr-emergency-strip a { color: var(--rac-orange); font-weight: 700; }
.ecr-emergency-strip a:hover { color: #FFFFFF; }
.ecr-emergency-divider { color: rgba(255,255,255,0.15); }
@media (max-width: 479px) { .ecr-emergency-strip { font-size: 0.75rem; } }

/* ── 7. NAVIGATION (modern glass) ── */
.ecr-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-height);
}
.ecr-nav {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.ecr-nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}
.ecr-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.ecr-nav-logo img { height: 38px; width: auto; display: block; }
@media (min-width: 768px) { .ecr-nav-logo img { height: 44px; } }

.ecr-nav-links {
  display: flex; align-items: center; gap: 4px;
}
.ecr-nav-link {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  border-radius: var(--radius-md);
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}
.ecr-nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 2px; background: var(--rac-orange);
  border-radius: 1px;
  transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.ecr-nav-link:hover, .ecr-nav-link:focus-visible {
  color: var(--text-primary); background: rgba(0,0,0,0.03);
}
.ecr-nav-link:hover::after, .ecr-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.ecr-nav-link--cta {
  background: var(--rac-orange); color: #FFFFFF !important;
  padding: 10px 24px; font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius-full); margin-left: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ecr-nav-link--cta:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  transform: translateY(-1px);
  color: #FFFFFF !important;
}
.ecr-nav-link--cta::after { display: none; }

.ecr-nav-phone-mob {
  display: none;
  width: var(--touch-target); height: var(--touch-target);
  align-items: center; justify-content: center;
  font-size: 1.25rem; text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.ecr-nav-phone-mob:hover { background: rgba(0,0,0,0.04); }

.ecr-nav-actions { display: flex; align-items: center; gap: 0; }

/* Mobile toggle */
.ecr-nav-menu { display: contents; }

.ecr-nav-actions { display: none; }

/* Mobile toggle — class-based with minimal JS */
.ecr-nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  padding: 8px; min-width: var(--touch-target); min-height: var(--touch-target);
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.ecr-nav-toggle:hover { background: rgba(0,0,0,0.04); }
.ecr-nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.15s ease;
  pointer-events: none;
}
.ecr-nav-menu.open .ecr-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ecr-nav-menu.open .ecr-nav-toggle span:nth-child(2) { opacity: 0; }
.ecr-nav-menu.open .ecr-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  .ecr-nav-toggle { display: flex; }
  .ecr-nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px 16px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    overflow-y: auto;
    z-index: 998;
    display: flex;
  }
  .ecr-nav-menu.open .ecr-nav-links { transform: translateX(0); }
  .ecr-nav-link {
    padding: 16px; font-size: 1.0625rem; border-radius: var(--radius-md);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .ecr-nav-link::after { display: none; }
  .ecr-nav-link:hover { background: rgba(0,0,0,0.03); }
  .ecr-nav-link--cta {
    margin: 16px 0 0; padding: 16px 24px; text-align: center;
    justify-content: center; font-size: 1rem; width: 100%;
    background: var(--rac-orange); color: #FFFFFF !important;
  }
  .ecr-nav-link--phone {
    border-bottom: none;
    font-weight: 600;
    color: var(--text-primary);
  }
}

/* ── LEGACY: Bootstrap navbar (used by area/service pages) ── */
.navbar {
  font-family: var(--font-body);
  position: fixed; top: 0; left: 0; width: 100vw;
  z-index: 1000; height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar .navbar-brand img { height: 38px; width: auto; }
@media (min-width: 768px) { .navbar .navbar-brand img { height: 44px; } }
.navbar .navbar-nav .nav-item .nav-link {
  color: var(--text-secondary); padding: var(--space-2) var(--space-3);
  font-size: 0.9375rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--text-primary); border-bottom-color: var(--rac-orange);
}
.navbar .navbar-nav .nav-item .nav-link.button, #button {
  background: var(--rac-orange); color: #FFFFFF !important;
  padding: 10px 24px; font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius-full); border: none;
  transition: box-shadow var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}
.navbar .navbar-nav .nav-item .nav-link.button:hover, #button:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  transform: translateY(-1px); color: #FFFFFF !important;
}
.navbar-toggler { border: none; padding: var(--space-2); min-width: var(--touch-target); min-height: var(--touch-target); }
.navbar-collapse { background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
@media (max-width: 991px) { .navbar-nav { background: transparent; padding: var(--space-4); } }

/* ── 8. MOBILE BAR (frosted glass) ── */
.sticky-mobile {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-primary);
  width: 100vw; position: fixed; left: 0; bottom: 0; z-index: var(--z-mobile);
  padding: var(--space-2) 0 env(safe-area-inset-bottom, var(--space-2));
  border-top: 1px solid var(--border-subtle);
}
.sticky-mobile .row { display: flex; align-items: center; justify-content: space-around; margin: 0; }
.sticky-mobile .row p { display: flex; align-items: center; justify-content: center; gap: var(--space-2); margin: 0; font-size: 0.875rem; font-weight: 600; padding: var(--space-2); }
.sticky-mobile .row p img { width: 18px; height: 18px; }
.sticky-mobile .row p a { color: var(--rac-orange); font-weight: 700; }
.sticky-mobile .row p a:hover { color: var(--text-primary); }
@media (max-width: 767px) { body.has-mobile-bar { padding-bottom: var(--mobile-bar-height); } }

/* ── 9. BUTTONS ── */
.btn, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: var(--touch-target-lg);
  transition: all var(--duration-base) var(--ease-out-expo);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--rac-orange);
  color: #FFFFFF;
  border-color: var(--rac-orange);
}
.btn-primary:hover {
  background: var(--rac-orange-dark);
  border-color: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  transform: translateY(-2px);
  color: #FFFFFF;
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0,0,0,0.12);
}
.btn-secondary:hover {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.2);
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--rac-orange);
  border-color: var(--rac-orange);
}
.btn-outline:hover {
  background: var(--rac-orange);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
}
.btn-lg { padding: 16px 40px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* ── 10. HERO (full-bleed image) ── */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 100vh;
  background: url("../img/tow-truck-hero.jpg") no-repeat center/cover;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero .hero-text {
  max-width: 640px;
  padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8);
}
.hero-badge {
  display: inline-block; padding: 5px 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em;
  border-radius: 9999px; text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.hero h1 {
  font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: #fff; margin-bottom: var(--space-5);
}
.hero-lead {
  font-size: 1.125rem; line-height: 1.6; color: rgba(255,255,255,0.7);
  max-width: 500px; margin-bottom: var(--space-6);
}
.hero-lead strong { color: #fff; }
.ecr-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: var(--space-8); }
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 34px; font-size: 0.9375rem; font-weight: 600;
  border-radius: 9999px; text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  font-family: 'Inter', system-ui, sans-serif;
}
.hero-btn-primary {
  background: #F95108; color: #fff; border: none;
  box-shadow: 0 4px 16px rgba(249,81,8,0.3);
}
.hero-btn-primary:hover { background: #D94400; box-shadow: 0 0 0 6px rgba(249,81,8,0.2); transform: translateY(-2px); }
.hero-btn-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'Montserrat', system-ui, sans-serif; font-size: 1.5rem;
  font-weight: 700; color: #fff; line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }

@media (max-width: 991px) {
  .hero { background-attachment: scroll; min-height: auto; }
  .hero .hero-text { text-align: center; max-width: 100%; }
  .hero-lead { max-width: 100%; margin-left: auto; margin-right: auto; }
  .ecr-hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}

/* ── 10b. TRUST STRIP ── */
.ecr-trust-strip {
  background: var(--surface-1);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.ecr-trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-5);
}
@media (min-width: 768px) {
  .ecr-trust-items { grid-template-columns: repeat(4, 1fr); }
}
.ecr-trust-item {
  display: flex; align-items: center; gap: var(--space-3);
}
.ecr-trust-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rac-orange-light);
  color: var(--rac-orange);
  font-size: 0.9375rem; font-weight: 700;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.ecr-trust-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-secondary);
}

/* ── 11. SECTION PATTERNS ── */
.about {
  background: var(--surface-0);
  padding: var(--space-9) 0;
}
.about .about-content { max-width: 720px; margin: 0 auto; text-align: center; }
.about .about-content h3 { font-weight: 700; margin-bottom: var(--space-4); }
.about .about-content p { font-size: 1.0625rem; color: var(--text-secondary); }

.services {
  background: var(--surface-0);
  padding: var(--space-9) 0;
}

#rates {
  background: var(--surface-2);
  padding: var(--space-9) 0;
}

.contact {
  background: var(--surface-0);
  padding: var(--space-9) 0;
}

@media (max-width: 767px) {
  .about, .services, #rates, .contact { padding: var(--space-7) 0; }
}

/* ── 12. SERVICE CARDS (premium white) ── */
.services .service-template {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: border-color var(--duration-base) var(--ease-out-expo), transform var(--duration-base) var(--ease-out-expo), box-shadow var(--duration-base) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.services .service-template::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--rac-orange);
  border-radius: 0 2px 2px 0;
  transition: height var(--duration-slow) var(--ease-out-expo);
}
.services .service-template:hover {
  border-color: rgba(249,81,8,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.services .service-template:hover::before { height: 100%; }
.services .service-template .st-image {
  margin-bottom: var(--space-4);
  text-align: center;
  padding: var(--space-3);
  background: var(--surface-2);
  border-radius: var(--radius-md);
}
.services .service-template .st-image img {
  max-height: 64px; width: auto; margin: 0 auto;
}
.services .service-template .st-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  text-align: center;
}
.services .service-template .st-header h4 a { color: inherit; text-decoration: none; }
.services .service-template .st-price { margin-bottom: var(--space-3); }
.services .service-template .st-price p .amount {
  font-family: var(--font-mono);
  font-weight: 600; font-size: 2.5rem; color: var(--text-primary); line-height: 1;
}
.services .service-template .st-price p span:first-child {
  font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.services .service-template .st-body { flex: 1; }
.services .service-template .st-body .st-content {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6;
  text-align: center;
}
.services .service-template .st-body .st-content ul { margin-left: 0; padding: 0; list-style: none; text-align: center; }
.services .service-template .st-body .st-content ul li {
  margin-bottom: var(--space-1); padding-left: var(--space-1); color: var(--text-secondary);
}
.services .service-template .st-footer { margin-top: var(--space-5); text-align: center; }
.services .service-template .st-footer a {
  display: inline-block;
  background: var(--rac-orange);
  color: #FFFFFF;
  text-align: center;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: none;
  transition: all var(--duration-base) var(--ease-out-expo);
  text-decoration: none;
}
.services .service-template .st-footer a:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── 12b. FEATURED CARD ── */
.services .service-template.featured {
  border-color: rgba(249,81,8,0.2);
}
.services .service-template.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0; right: var(--space-4);
  background: var(--rac-orange);
  color: #FFFFFF;
  padding: 4px 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  height: auto;
  width: auto;
}

/* ── Phone link inside cards ── */
.services .service-template .st-call {
  text-align: center;
  margin-bottom: var(--space-3);
}
.services .service-template .st-call a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--text-primary); text-decoration: none;
  transition: color 0.15s ease;
}
.services .service-template .st-call a:hover { color: var(--rac-orange); }

/* ── 13. SERVICE GALLERY (dark accent section) ── */
.service-gellary {
  background: #111111;
  padding: var(--space-8) 0;
  color: #FFFFFF;
}
.service-gellary .figure-holder {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  transition: border-color var(--duration-base) var(--ease-out-expo), transform var(--duration-base) var(--ease-out-expo);
}
.service-gellary .figure-holder:hover {
  border-color: rgba(249,81,8,0.3);
  transform: translateY(-3px);
}
.service-gellary .figure-holder img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-gellary .figure-holder .f-caption {
  background: transparent;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: var(--space-3);
  font-size: 0.9375rem;
  font-weight: 600;
}
.service-gellary .figure-holder .f-caption a { color: rgba(255,255,255,0.7); }
.service-gellary .figure-holder .f-caption a:hover { color: var(--rac-orange); }

/* ── 14. FORMS ── */
.form-group { margin-bottom: var(--space-3); }
.form-group label {
  display: block;
  margin-bottom: var(--space-1);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface-1);
  min-height: var(--touch-target-lg);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rac-orange);
  box-shadow: 0 0 0 3px rgba(249,81,8,0.12);
  outline: none;
}
.form-group input[type="submit"],
.form-buttons button {
  background: var(--rac-orange);
  color: #FFFFFF;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  min-height: var(--touch-target-lg);
  transition: all var(--duration-base) var(--ease-out-expo);
}
.form-group input[type="submit"]:hover,
.form-buttons button:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  transform: translateY(-1px);
}
.invalid {
  border-color: var(--brand-red) !important;
  box-shadow: 0 0 0 3px var(--error-glow) !important;
}

/* ── 15. QUOTE ENGINE (preserved JS hooks) ── */
.quote-engine-wrapper {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  max-width: 640px;
  margin: var(--space-6) auto;
  box-shadow: var(--shadow-xl);
}
.quote-engine-wrapper h5 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-2) 0 var(--space-4);
  text-align: center;
  color: var(--text-primary);
}
.quote-engine-wrapper .first,
.quote-engine-wrapper .second,
.quote-engine-wrapper .type,
.quote-engine-wrapper .third,
.quote-engine-wrapper .fourth,
.quote-engine-wrapper .last {
  padding: var(--space-3) 0;
}
.quote-engine-wrapper p label {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  min-height: var(--touch-target);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-2);
  transition: all var(--duration-fast) var(--ease-out);
}
.quote-engine-wrapper p label:hover {
  border-color: var(--rac-orange);
  background: var(--rac-orange-light);
}
.quote-engine-wrapper p label:has(input:checked) {
  border-color: var(--rac-orange);
  background: var(--rac-orange-light);
  color: var(--rac-orange);
  font-weight: 600;
}
.quote-engine-wrapper .btn,
.quote-engine-wrapper .button {
  background: var(--rac-orange);
  color: #FFFFFF;
  width: 100%;
  padding: 14px var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  min-height: var(--touch-target-lg);
  margin-top: var(--space-3);
  transition: all var(--duration-base) var(--ease-out-expo);
}
.quote-engine-wrapper .btn:hover,
.quote-engine-wrapper .button:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  transform: translateY(-1px);
}
.hide { display: none !important; }
.red { color: var(--brand-red) !important; font-weight: 600; font-size: 0.875rem; padding: var(--space-2); display: block; text-align: center; }

/* ── 16. QUOTE WIZARD (preserved JS hooks) ── */
.step { display: none; }
.step.active { display: block; }
.progress-bar { display: flex; justify-content: space-between; gap: var(--space-1); margin-bottom: var(--space-4); }
.progress-step { height: 4px; background: var(--border-subtle); border-radius: var(--radius-full); flex: 1; overflow: hidden; }
.progress-step.active { background: var(--rac-orange); }

/* ── 17. CONTACT ── */
.contact .contact-box { padding: var(--space-3) 0; }
.contact .contact-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.contact .contact-box p {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: 1rem; color: var(--text-secondary);
  margin-bottom: var(--space-2);
}
.contact .contact-box p span a {
  font-weight: 600;
  color: var(--rac-orange);
  font-size: 1.125rem;
}
.contact .contact-form .button {
  background: var(--rac-orange);
  color: #FFFFFF;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out-expo);
}
.contact .contact-form .button:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
}

/* ── 18. LOCATION FINDER ── */
.ecr-areas-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-0) 120px);
  padding: 0 0 var(--space-9);
  position: relative;
}
.ecr-areas-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, rgba(249,81,8,0.06), transparent);
  pointer-events: none;
}

/* Hero card */
.ecr-areas-card {
  background: var(--surface-1);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-7) var(--space-7);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.04);
  max-width: 1040px; margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .ecr-areas-card { padding: var(--space-5) var(--space-4); border-radius: var(--radius-lg); }
}

/* Header */
.ecr-areas-header { text-align: center; margin-bottom: var(--space-6); }
.ecr-areas-badge {
  display: inline-block; padding: 4px 14px;
  background: rgba(249,81,8,0.05);
  color: var(--rac-orange);
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(249,81,8,0.06);
}
.ecr-areas-title {
  font-family: var(--font-heading); font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700; color: var(--text-primary);
  margin-bottom: var(--space-2); letter-spacing: -0.02em;
}
.ecr-text-accent { color: var(--rac-orange); }
.ecr-areas-sub {
  font-size: 0.9375rem; color: var(--text-secondary);
  margin-bottom: var(--space-3);
}
.ecr-areas-trust-stars {
  font-size: 0.8125rem; color: #E88B00; letter-spacing: 3px;
}
.ecr-areas-trust-stars span {
  font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: 0; margin-left: 6px;
}

/* Search */
.ecr-areas-search-wrap {
  position: relative; max-width: 640px; margin: 0 auto var(--space-3);
}
.ecr-areas-search-icon {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none; z-index: 1;
}
.ecr-areas-search-wrap:focus-within .ecr-areas-search-icon { color: var(--rac-orange); }
.ecr-areas-search-input {
  width: 100%; padding: 18px 60px 18px 54px;
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-full);
  font-size: 1rem; font-family: var(--font-body);
  background: var(--surface-0); color: var(--text-primary);
  transition: all 0.2s ease;
  min-height: 58px;
}
.ecr-areas-search-input::placeholder { color: var(--text-muted); }
.ecr-areas-search-input:focus {
  border-color: var(--rac-orange);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  outline: none; background: #fff;
}
.ecr-areas-search-btn {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: var(--rac-orange); color: #fff;
  font-size: 1.25rem; cursor: pointer; font-weight: 700;
  transition: background 0.15s ease, transform 0.15s ease;
  display: flex; align-items: center; justify-content: center;
}
.ecr-areas-search-btn:hover { background: var(--rac-orange-dark); transform: translateY(-50%) scale(1.05); }
.ecr-areas-hints {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  flex-wrap: wrap; margin-bottom: var(--space-6);
}
.ecr-areas-hints-label { font-size: 0.75rem; color: var(--text-muted); }
.ecr-areas-hint {
  font-size: 0.75rem; color: var(--text-secondary); background: none;
  border: 1px solid rgba(0,0,0,0.06); cursor: pointer;
  padding: 4px 12px; border-radius: var(--radius-full);
  transition: all 0.15s ease; font-family: var(--font-body);
}
.ecr-areas-hint:hover { color: var(--rac-orange); border-color: rgba(249,81,8,0.25); }

/* Featured cards */
.ecr-areas-featured { position: relative; z-index: 1; }
.ecr-areas-feat-label {
  font-family: var(--font-heading); font-size: 0.6875rem; font-weight: 700;
  color: var(--rac-orange); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--space-3); padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(249,81,8,0.08);
  display: flex; align-items: center; gap: 10px;
}
.ecr-areas-feat-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(249,81,8,0.1), transparent);
}
.ecr-areas-feat-label:not(:first-child) { margin-top: var(--space-5); }
.ecr-areas-feat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.ecr-areas-feat-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 20px 14px;
  background: var(--surface-0);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none; color: inherit; text-align: center;
  position: relative;
  min-height: 0;
}
.ecr-areas-feat-card:hover {
  border-color: rgba(249,81,8,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  background: #fff;
  transform: translateY(-2px);
}
.ecr-areas-feat-card:hover { z-index: 1; }
.ecr-areas-feat-icon {
  width: 44px; height: 44px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(249,81,8,0.06), rgba(249,81,8,0.02));
  margin-bottom: 4px;
}
.ecr-areas-feat-info { text-align: center; }
.ecr-areas-feat-name {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 2px;
}
.ecr-areas-feat-meta {
  display: block; font-size: 0.6875rem; color: var(--text-muted);
  line-height: 1.4;
}
.ecr-areas-feat-count {
  font-size: 0.6875rem; font-weight: 700; color: var(--brand-green);
  background: var(--success-glow); padding: 3px 12px;
  border-radius: var(--radius-full); text-align: center;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .ecr-areas-feat-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .ecr-areas-feat-cards { grid-template-columns: 1fr; }
}

/* ── Modal ── */
.ecr-areas-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ecr-areas-overlay.open { opacity: 1; visibility: visible; }
.ecr-areas-modal {
  background: var(--surface-1); width: 100%; max-width: 640px;
  max-height: 92vh; max-height: 92dvh;
  border-radius: 24px 24px 0 0;
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(60px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
}
.ecr-areas-overlay.open .ecr-areas-modal { transform: translateY(0); }
@media (min-width: 640px) {
  .ecr-areas-overlay { align-items: center; padding: 40px; }
  .ecr-areas-modal { border-radius: 24px; max-height: 84vh; box-shadow: 0 16px 60px rgba(0,0,0,0.12); }
}
.ecr-areas-modal-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; flex-shrink: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.ecr-areas-modal-head h3 {
  flex: 1; font-family: var(--font-heading); font-size: 1.0625rem;
  font-weight: 700; color: var(--text-primary); margin: 0;
}
.ecr-areas-back, .ecr-areas-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--surface-1); font-size: 1.125rem; cursor: pointer;
  color: var(--text-secondary); flex-shrink: 0;
  transition: all 0.15s ease;
}
.ecr-areas-back:hover, .ecr-areas-close:hover {
  background: rgba(0,0,0,0.04); color: var(--text-primary);
}
.ecr-areas-modal-body {
  flex: 1; overflow-y: auto; padding: 16px 24px 32px;
  background: var(--surface-0);
}
.ecr-areas-modal-search { margin-bottom: 16px; }
.ecr-areas-modal-search .ecr-areas-search-input {
  background: var(--surface-1); min-height: 48px; font-size: 0.9375rem;
  padding: 14px 20px 14px 48px;
}
.ecr-areas-region-grid .ecr-areas-group-label {
  font-family: var(--font-heading); font-size: 0.6875rem; font-weight: 700;
  color: var(--rac-orange); text-transform: uppercase; letter-spacing: 0.1em;
  margin: 16px 0 8px; padding-bottom: 4px;
  border-bottom: 1px solid rgba(249,81,8,0.08);
}
.ecr-areas-region-grid .ecr-areas-group-label:first-child { margin-top: 0; }
.ecr-areas-region-grid .ecr-areas-region-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.ecr-areas-region-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface-1); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  font-family: var(--font-body); -webkit-tap-highlight-color: transparent;
}
.ecr-areas-region-card:hover {
  border-color: var(--rac-orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px);
}
.ecr-areas-region-name { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); }
.ecr-areas-region-count {
  font-size: 0.6875rem; font-weight: 700; color: var(--brand-green);
  background: var(--success-glow); padding: 3px 10px;
  border-radius: var(--radius-full); min-width: 26px; text-align: center;
}
.ecr-areas-location-list { padding-top: 4px; }
.ecr-areas-loc-group { margin-bottom: 20px; }
.ecr-areas-loc-letter {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  color: var(--rac-orange); margin-bottom: 6px;
  padding-bottom: 6px; border-bottom: 1px solid rgba(249,81,8,0.08);
}
.ecr-areas-loc-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 2px 8px;
}
.ecr-areas-loc-link {
  display: block; padding: 9px 10px;
  font-size: 0.875rem; color: var(--text-secondary);
  text-decoration: none; border-radius: var(--radius-sm);
  transition: all 0.15s ease; font-weight: 500;
}
.ecr-areas-loc-link:hover {
  color: var(--rac-orange); background: rgba(249,81,8,0.04);
  padding-left: 14px;
}

/* ── FAQ Accordion ── */
.ecr-faq-section {
  background: var(--surface-0);
  padding: 0 0 var(--space-10);
}
.ecr-faq-grid {
  max-width: 760px; margin: var(--space-6) auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ecr-faq-item {
  background: var(--surface-1);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ecr-faq-item:hover { border-color: rgba(0,0,0,0.08); }
.ecr-faq-item[open] {
  border-color: rgba(249,81,8,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.ecr-faq-question {
  padding: 18px 24px;
  cursor: pointer;
  list-style: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-body); font-size: 0.9375rem;
  font-weight: 600; color: var(--text-primary);
  text-align: center;
}
.ecr-faq-question::-webkit-details-marker { display: none; }
.ecr-faq-answer {
  padding: 0 24px 20px;
  font-size: 0.875rem; line-height: 1.6; color: var(--text-secondary);
  text-align: center;
}
.ecr-faq-answer p { margin: 0; }
.ecr-faq-answer a { color: var(--rac-orange); text-decoration: none; font-weight: 500; }
.ecr-faq-answer a:hover { text-decoration: underline; }
.ecr-faq-answer strong { color: var(--text-primary); font-weight: 600; }

/* ── Final CTA ── */
.ecr-final-cta {
  background: var(--surface-0);
  padding: var(--space-6) 0 var(--space-9);
}
.ecr-final-cta-card {
  background: #F95108;
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(249,81,8,0.3);
  max-width: 760px; margin: 0 auto;
}
.ecr-final-cta-card h2 {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700; margin-bottom: var(--space-3);
}
.ecr-final-cta-card p {
  font-size: 1rem; opacity: 0.9; max-width: 500px;
  margin: 0 auto var(--space-5); line-height: 1.6;
}
.ecr-final-cta-card p strong { color: #fff; }
.ecr-final-cta-buttons {
  display: flex; justify-content: center;
}
.ecr-final-cta-quote {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px;
  background: #fff; color: #F95108;
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 1.0625rem; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ecr-final-cta-quote:hover {
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* ── 19. PAGE HEADER ── */
.page-header {
  min-height: 40vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  padding: calc(var(--nav-height) + var(--emergency-height) + var(--space-6)) var(--space-4) var(--space-6);
  margin-top: calc(-1 * (var(--emergency-height) + var(--nav-height)));
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.page-header .ph-text .ph-title h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .page-header { min-height: 50vh; }
}

/* ── 20. BLOG CARDS ── */
.blog-posts .post-box {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: all var(--duration-base) var(--ease-out-expo);
}
.blog-posts .post-box:hover {
  border-color: rgba(249,81,8,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.blog-posts .post-box .post-img { overflow: hidden; aspect-ratio: 16/10; }
.blog-posts .post-box .post-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--duration-base) var(--ease-out-expo);
}
.blog-posts .post-box:hover .post-img img { transform: scale(1.03); }
.blog-posts .post-box { padding: 0 0 var(--space-4) 0; }
.blog-posts .post-box .post-img { margin: 0 0 var(--space-3) 0; }
.blog-posts .post-box .post-date,
.blog-posts .post-box .post-title,
.blog-posts .post-box .readmore {
  padding: 0 var(--space-4);
}
.blog-posts .post-box .post-date {
  font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; display: block; margin-bottom: var(--space-2);
}
.blog-posts .post-box .post-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  text-decoration: none;
  display: block;
}
.blog-posts .post-box .post-title:hover { color: var(--rac-orange); text-decoration: none; }
.blog-posts .post-box .readmore {
  margin-top: auto;
  color: var(--rac-orange);
  font-weight: 600;
  font-size: 0.9375rem;
}

.blog .entry {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  max-width: 800px;
  margin-inline: auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.blog .post-img { overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 21/9; margin: 0 0 var(--space-5) 0; }
.blog .post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog .entry .entry-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.blog .entry .entry-content p,
.blog .entry .entry-content li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.blog .entry .entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: var(--space-6);
}
.blog .entry .entry-content blockquote {
  background: var(--surface-2);
  padding: var(--space-5);
  border-left: 3px solid var(--rac-orange);
  margin: var(--space-5) 0;
  font-style: italic;
  color: var(--text-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── 21. FAQ ── */
.ecr-faq { margin: var(--space-4) 0; }
.ecr-faq details {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  transition: border-color var(--duration-fast) var(--ease-out);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.ecr-faq details[open] { border-color: rgba(249,81,8,0.2); }
.ecr-faq summary {
  padding: var(--space-4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--touch-target);
}
.ecr-faq summary::-webkit-details-marker { display: none; }
.ecr-faq summary::after { content: "+"; font-size: 1.5rem; color: var(--rac-orange); font-weight: 300; }
.ecr-faq details[open] summary::after { content: "\2212"; }
.ecr-faq .ecr-faq-answer { padding: 0 var(--space-4) var(--space-4); font-size: 1rem; color: var(--text-secondary); }

/* ── 22. SEO DISCLOSURE ── */
.ecr-seo-section { padding: var(--space-5) 0; background: var(--surface-1); }
.ecr-seo-disclosure {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.ecr-seo-disclosure summary { padding: var(--space-3); font-weight: 600; font-size: 0.875rem; color: var(--text-muted); cursor: pointer; list-style: none; }
.ecr-seo-disclosure .seo { padding: var(--space-2) var(--space-3) var(--space-3); }
.ecr-seo-disclosure .seo h4 { font-weight: 400; font-size: 0.75rem; color: var(--text-muted); }

/* ── 23. FOOTER (dark on light) ── */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.65);
  padding: var(--space-9) 0 var(--space-6);
}
.ecr-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) {
  .ecr-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.ecr-footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.ecr-footer-col ul { list-style: none; padding: 0; margin: 0; }
.ecr-footer-col ul li { margin-bottom: var(--space-2); }
.ecr-footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color var(--duration-fast) var(--ease-out);
}
.ecr-footer-col ul li a:hover { color: var(--rac-orange); text-decoration: none; }
.ecr-footer-brand img { max-height: 56px; margin-bottom: var(--space-3); }
.ecr-footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 300px; }
.ecr-footer-contact {
  text-align: center;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-5);
}
.ecr-footer-contact p { font-size: 0.9375rem; color: rgba(255,255,255,0.4); margin-bottom: var(--space-1); }
.ecr-footer-contact p a { color: var(--rac-orange); font-weight: 600; }
.ecr-footer-contact .ecr-footer-phone {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: var(--space-2) 0;
  display: inline-block;
}
.ecr-footer-contact .ecr-footer-phone:hover { color: var(--rac-orange); }
.ecr-footer-bottom {
  text-align: center;
  padding-top: var(--space-5);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ecr-footer-bottom p { color: inherit; }

.footer .footer-links {
  list-style: none;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: var(--space-2) 0; margin: 0; gap: var(--space-2);
}
.footer .footer-links .footer-link {
  color: rgba(255,255,255,0.45);
  padding: var(--space-1) var(--space-2);
  font-size: 0.8125rem;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer .footer-links .footer-link:hover { color: var(--rac-orange); text-decoration: none; }

@media (max-width: 767px) {
  .footer.links { margin-bottom: var(--mobile-bar-height); padding-bottom: var(--space-6); }
}

/* ── 24. TABS (Bootstrap override) ── */
.nav-tabs { border-color: var(--border-subtle); border-bottom: none; }
.nav-tabs > li > a {
  font-weight: 600;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  background: var(--surface-2);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: 0.9375rem;
  transition: color var(--duration-fast) var(--ease-out);
}
.nav-tabs > li > a:hover { color: var(--text-primary); background: var(--surface-1); }
.nav-tabs > li.active > a {
  color: var(--text-primary);
  border-bottom-color: var(--surface-1);
  background: var(--surface-1);
  font-weight: 700;
}
.tab-content {
  border: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-5);
  background: var(--surface-1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ── 25. PAYMENT IMAGE ── */
.payment-image { text-align: center; padding: var(--space-5); background: var(--surface-1); }
.responsive-image { max-width: 100%; height: auto; margin: 0 auto; }
.payment-image .text-center { color: var(--text-secondary); }

/* ── 26. UTILITIES (preserved for JS) ── */
.equal { display: flex; flex-wrap: wrap; }
.equal > [class*="col-"] { display: flex; flex-direction: column; }
.bold { font-weight: 700; }
.seo { width: 98%; margin: 0 auto; }
.seo h4 { font-weight: 400; font-size: 0.75rem; }
.map { padding-bottom: var(--space-6); }
.active { background: transparent; }
.ecr-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── 27. VLOG ── */
.vlog-video { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); }
.vlog-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── 28. MODALS (Bootstrap) ── */
.modal-content {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.modal-header { border-bottom: 1px solid var(--border-subtle); }
.modal-footer { border-top: 1px solid var(--border-subtle); padding: var(--space-3); background: transparent; }

/* ── 29. CARD REFINEMENTS ── */
.ecr-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: all var(--duration-base) var(--ease-out-expo);
}
.ecr-card:hover {
  border-color: rgba(249,81,8,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ── 30. SECTION DIVIDERS ── */
.section-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

/* ── 31. SCROLL REVEAL ── */
.ecr-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-reveal) var(--ease-out-expo), transform var(--duration-reveal) var(--ease-out-expo);
}
.ecr-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .ecr-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 35. EMERGENCY CTA SECTION ── */
.ecr-cta-section {
  background: var(--surface-0);
  text-align: center;
  padding: var(--space-9) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.ecr-cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,81,8,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.ecr-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  position: relative;
}
.ecr-cta-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-5);
  line-height: 1.6;
  position: relative;
}
.ecr-cta-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── 36. FULL-WIDTH STATS PANEL ── */
.ecr-stats-panel {
  background: var(--rac-orange);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.ecr-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: center;
  position: relative;
}
@media (max-width: 600px) {
  .ecr-stats-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
.ecr-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}
.ecr-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.ecr-stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ── 37. CONTACT INFO BAR ── */
.ecr-contact-info {
  background: var(--surface-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-3) 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.ecr-contact-info p { margin: 0; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--space-2); }
.ecr-contact-info a { font-weight: 600; }
.ecr-badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: var(--rac-orange-light);
  color: var(--rac-orange);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid rgba(249,81,8,0.15);
}

/* ── 38. CONTENT CARDS (generic pages) ── */
.ecr-content-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* ── 39. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 40. RESPONSIVE ── */
@media (max-width: 991px) {
  .heading h1, .heading h2 { font-size: 1.5rem; }
}
@media (max-width: 767px) {
  .heading h1, .heading h2 { font-size: 1.25rem; }
  .services .service-template { margin: var(--space-2) 0; }
  .blog .entry { padding: var(--space-4); margin: var(--space-3); }
  .ecr-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .heading h1, .heading h2 { font-size: 1.25rem; }
  .hero { min-height: 75vh; }
  .ecr-footer-grid { grid-template-columns: 1fr; }
}

/* ── 42. GOOGLE REVIEWS PANEL ── */
.ecr-google-reviews {
  background: var(--surface-1);
  padding: var(--space-7) 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.ecr-google-reviews .ecr-google-stars {
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--rac-orange);
  margin-bottom: var(--space-3);
}
.ecr-google-reviews h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.ecr-google-reviews p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-4);
}
.ecr-google-reviews .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.ecr-google-reviews .ecr-google-logo {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #4285F4;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* ── CALL ICON ── */
.ecr-call-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--touch-target); height: var(--touch-target);
  background: var(--rac-orange); color: #fff; border-radius: 50%;
  font-size: 1.125rem; text-decoration: none; flex-shrink: 0;
  border: none; cursor: pointer; line-height: 1;
  transition: background var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
.ecr-emergency-strip .ecr-call-icon {
  width: 32px; height: 32px; font-size: 0.875rem;
}
.ecr-call-icon:hover {
  background: var(--rac-orange-dark);
  box-shadow: 0 0 0 4px var(--rac-orange-glow);
  text-decoration: none; color: #fff;
}

@media print {
  body { background: #fff; color: #000; padding-top: 0; }
  .ecr-emergency-strip, .navbar, .sticky-mobile, .ecr-mobile-bar { display: none; }
}
