/* ============================================
   FONTS — Local Manrope
   ============================================ */
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy:        #0F172A;
  --navy-light:  #1E293B;
  --yellow:      #FACC15;
  --yellow-hover:#EAB308;
  --charcoal:    #334155;
  --light-gray:  #F8FAFC;
  --mid-gray:    #E2E8F0;
  --text-dark:   #1E293B;
  --text-body:   #475569;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;
  --white:       #FFFFFF;
  --red:         #DC2626;
  --red-bg:      #FEF2F2;

  --font: 'Manrope', system-ui, -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;

  --container:  1200px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-full:9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);

  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-weight: 600; font-size: 1.1rem; }

p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  min-width: 0;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--gray {
  background-color: var(--light-gray);
}

.section--navy {
  background-color: var(--navy);
}

main {
  min-height: 60vh;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background-color: var(--yellow);
  color: var(--navy);
}

.btn--primary:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--red {
  background-color: var(--red);
  color: var(--white);
}

.btn--red:hover {
  background-color: #B91C1C;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--white {
  background: var(--white);
  color: #991B1B;
  font-weight: 700;
}

.btn--white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   INLINE SVG ICONS
   ============================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm svg { width: 16px; height: 16px; }
.icon--md svg { width: 20px; height: 20px; }
.icon--lg svg { width: 24px; height: 24px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 0;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 85px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--navy);
  background: var(--light-gray);
}

.nav-link--emergency {
  color: var(--red);
  font-weight: 700;
}

.nav-link--emergency:hover {
  background: var(--red-bg);
  color: var(--red);
}

.nav-link--quote {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
}

.nav-link--quote:hover {
  background: var(--yellow-hover);
}

/* More dropdown */
.nav-item.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mid-gray);
  padding: var(--space-xs) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: all var(--transition);
}

.dropdown-link:hover {
  background: var(--light-gray);
  color: var(--navy);
}

.chevron-icon {
  transition: transform var(--transition);
}

.nav-item.has-dropdown:hover .chevron-icon,
.nav-item.has-dropdown.is-open .chevron-icon {
  transform: rotate(180deg);
}

/* Header right side */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--charcoal);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--light-gray);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  padding: var(--space-md) var(--space-lg);
  gap: var(--space-xs);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.875rem var(--space-sm);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--light-gray);
  color: var(--navy);
}

.mobile-nav-link--emergency {
  color: var(--red);
  font-weight: 700;
}

.mobile-nav-link--emergency:hover {
  background: var(--red-bg);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--mid-gray);
  margin: var(--space-xs) 0;
}

.mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: var(--space-xs) var(--space-sm) 0;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--mid-gray);
  margin-top: var(--space-xs);
}


/* ============================================
   MOBILE STICKY CALL BUTTON
/* Base styles */
.mobile-call-btn {
  display: none; /* Desktop stays hidden */
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-cta-band {
  background: var(--yellow);
  padding: var(--space-xl) 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  min-width: 0;
}

.footer-cta-text h2 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.25rem;
}

.footer-cta-text p {
  color: var(--charcoal);
  font-size: 1rem;
}

.footer-cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-cta-actions .btn--navy {
  background: var(--navy);
  color: var(--white);
}

.footer-cta-actions .btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer-cta-actions .btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.footer-cta-actions .btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-main {
  padding: var(--space-2xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-logo img {
  width: 100px;
}

.footer-tagline {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-contact-link:hover {
  color: var(--yellow);
}

.footer-hours {
  margin-top: var(--space-sm);
}

.footer-hours p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-hours .hours-emergency {
  color: var(--yellow);
  font-weight: 600;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding: var(--space-md) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  min-width: 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  border-top: 1px solid var(--navy-light);
  padding: var(--space-md) 0;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}

/* ============================================
   HOME PAGE — HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--navy);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero-bg.webp') center center / cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.3);
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero h1 .highlight {
  color: var(--yellow);
}

.hero-description {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust-item .icon {
  color: var(--yellow);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   HOME — TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  padding: var(--space-lg) 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  min-width: 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.trust-bar-item .icon {
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.12);
  padding: 8px;
  border-radius: var(--radius-sm);
}

/* ============================================
   HOME — SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow-hover);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ============================================
   HOME — FEATURED SERVICES
   ============================================ */
.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.featured-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.featured-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.featured-service-card-img {
  height: 200px;
  overflow: hidden;
}

.featured-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-service-card:hover .featured-service-card-img img {
  transform: scale(1.05);
}

.featured-service-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-service-card-body h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.15rem;
}

.featured-service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.featured-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: var(--space-sm);
  transition: gap var(--transition);
}

.featured-service-link:hover {
  gap: 10px;
}

/* ============================================
   HOME — WHY CHOOSE US
   ============================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-us-card {
  text-align: center;
  padding: var(--space-lg);
}

.why-us-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.why-us-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   HOME — ALL SERVICES SECTION
   ============================================ */
.services-category {
  margin-bottom: var(--space-xl);
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--mid-gray);
}

.services-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.services-category-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-category-header h3 {
  font-size: 1.2rem;
  color: var(--navy);
}

.services-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.service-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.service-link-item:hover {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 600;
}

.service-link-item .icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.service-link-item:hover .icon {
  color: var(--navy);
}

/* ============================================
   HOME — EMERGENCY BANNER
   ============================================ */
.emergency-banner {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 50%, #B91C1C 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.emergency-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.emergency-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-xs);
}

.emergency-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.emergency-banner-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ============================================
   HOME — AREAS WE SERVE
   ============================================ */
.areas-corridor {
  margin-bottom: var(--space-lg);
}

.areas-corridor:last-child {
  margin-bottom: 0;
}

.areas-corridor-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  padding-left: 4px;
}

.areas-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-tag .icon {
  color: var(--text-muted);
}

.area-tag:hover .icon {
  color: var(--yellow);
}

/* ============================================
   HOME — MAP SECTION
   ============================================ */
.map-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  min-width: 0;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-info h3 {
  margin-bottom: var(--space-sm);
}

.map-info p {
  margin-bottom: var(--space-md);
}

.map-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.map-info-item .icon {
  color: var(--yellow-hover);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   HOME — QUOTE FORM
   ============================================ */
.quote-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  min-width: 0;
}

.quote-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mid-gray);
}

.quote-form-header {
  margin-bottom: var(--space-lg);
}

.quote-form-header h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.quote-form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

.form-input,
.form-select,
.form-textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  min-width: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.form-checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit-btn {
  margin-top: var(--space-xs);
}

.form-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.quote-benefits {
  padding-top: var(--space-lg);
}

.quote-benefits h3 {
  margin-bottom: var(--space-md);
}

.quote-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quote-benefit-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.quote-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.quote-benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.quote-benefit-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   HOME — FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  min-width: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--yellow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  padding: 1.1rem var(--space-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question .icon {
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(180deg);
  color: var(--yellow-hover);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-sidebar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--white);
  position: sticky;
  top: 96px;
}

.faq-sidebar h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.faq-sidebar p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.faq-sidebar .btn {
  width: 100%;
  margin-bottom: var(--space-sm);
}

/* ============================================
   HOME — PROCESS / HOW IT WORKS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: process-step;
}

.process-step {
  text-align: center;
  position: relative;
  counter-increment: process-step;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.process-step h3 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   HOME — ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
}

/* ============================================
   YOUR CUSTOM — ABOUT SECTION OVERRIDE
   ============================================ */
#ar-about {
  padding-left: 200px;
  padding-right: 200px;
  margin: 0 auto;
  text-align: center;
}


/* ============================================
   SERVICES HUB PAGE
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero-bg.webp') center center / cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero h1 .highlight {
  color: var(--yellow);
}

.page-hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.page-hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero-breadcrumb {
  margin-bottom: var(--space-md);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

/* Services Hub Grid */
.services-hub-category {
  margin-bottom: var(--space-2xl);
}

.services-hub-category:last-child {
  margin-bottom: 0;
}

.services-hub-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.services-hub-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.services-hub-category-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-hub-category-header h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.services-hub-category-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-hub-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.service-hub-card:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-hub-card .icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}

.service-hub-card:hover .icon {
  color: var(--navy);
}

/* Services hub quick contact bar */
.services-contact-bar {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.services-contact-bar p {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.services-contact-bar p strong {
  font-weight: 700;
}

.services-contact-bar-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ============================================
   AREAS HUB PAGE
   ============================================ */
.areas-hub-corridor {
  margin-bottom: var(--space-2xl);
}

.areas-hub-corridor:last-child {
  margin-bottom: 0;
}

.areas-hub-corridor-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.areas-hub-corridor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.areas-hub-corridor-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.areas-hub-corridor-header h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.areas-hub-corridor-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.areas-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.area-hub-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.area-hub-card:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-hub-card .icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}

.area-hub-card:hover .icon {
  color: var(--navy);
}

/* Areas stats bar */
.areas-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.areas-stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
}

.areas-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.areas-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Areas services highlight */
.areas-services-highlight {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
}

.areas-services-highlight-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.areas-services-highlight-header h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.areas-services-highlight-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.areas-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.areas-service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}

.areas-service-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--yellow);
}

.areas-service-link .icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.areas-service-link:hover .icon {
  color: var(--yellow);
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info-card a:hover {
  color: var(--yellow-hover);
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-hours-table tr {
  border-bottom: 1px solid var(--mid-gray);
}

.contact-hours-table tr:last-child {
  border-bottom: none;
}

.contact-hours-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.contact-hours-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.contact-hours-table .hours-emergency td {
  color: var(--red);
  font-weight: 600;
}

.contact-hours-table .hours-emergency td:last-child {
  color: var(--red);
}

/* Contact form wrapper */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mid-gray);
}

.contact-form-header {
  margin-bottom: var(--space-lg);
}

.contact-form-header h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.contact-form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact page map */
.contact-map-section {
  margin-top: var(--space-2xl);
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21/9;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Emergency callout on contact page */
.contact-emergency-callout {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 50%, #B91C1C 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.contact-emergency-callout h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.contact-emergency-callout p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.contact-emergency-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}


/* ============================================
   QUOTE PAGE
   ============================================ */
.quote-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}

.quote-page-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mid-gray);
}

.quote-page-form-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--mid-gray);
}

.quote-page-form-header h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.quote-page-form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quote-page-form-steps {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.quote-form-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.quote-form-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section-title .icon {
  color: var(--yellow-hover);
}

.form-divider {
  height: 1px;
  background: var(--mid-gray);
  margin: var(--space-lg) 0;
}

/* Quote page sidebar */
.quote-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: 96px;
}

.quote-sidebar-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.quote-sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.quote-sidebar-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-sidebar-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.quote-sidebar-checklist-item .icon {
  color: var(--yellow-hover);
  flex-shrink: 0;
  margin-top: 3px;
}

.quote-sidebar-emergency {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 50%, #B91C1C 100%);
  border: none;
  color: var(--white);
}

.quote-sidebar-emergency h3 {
  color: var(--white);
}

.quote-sidebar-emergency p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.quote-sidebar-phone {
  background: var(--navy);
  border: none;
  color: var(--white);
  text-align: center;
}

.quote-sidebar-phone p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.quote-sidebar-phone .btn {
  width: 100%;
}

.quote-sidebar-phone-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* Testimonial style card */
.quote-sidebar-testimonial {
  background: var(--light-gray);
  border: none;
}

.quote-sidebar-testimonial blockquote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.quote-sidebar-testimonial cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
}

.quote-sidebar-testimonial .stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--yellow-hover);
}

.quote-sidebar-testimonial .stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}


/* ============================================
   SERVICE PAGE LAYOUT
   ============================================ */
.service-page-hero {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.service-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero-bg.webp') center center / cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.service-page-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.service-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.service-hero-content h1 .highlight {
  color: var(--yellow);
}

.service-hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 620px;
}

.service-hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.service-hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.service-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
}

.service-hero-trust-item .icon {
  color: var(--yellow);
}


.service-hero-image {
  width: 420px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
}

.service-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}



/* ============================================
   SERVICE PAGE — FULL WIDTH LAYOUT
   ============================================ */
.service-page-body {
  padding: var(--space-2xl) 0;
}

.service-page-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   SERVICE PAGE — CONTACT STRIP
   ============================================ */
.service-contact-strip {
  background: var(--light-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding: var(--space-md) 0;
}

.service-contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.service-contact-strip-info {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.service-contact-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.service-contact-strip-item a {
  color: var(--navy);
  font-weight: 700;
  transition: color var(--transition);
}

.service-contact-strip-item a:hover {
  color: var(--yellow-hover);
}

.service-contact-strip-item .icon {
  color: var(--yellow-hover);
}

.service-contact-strip-item--emergency {
  color: var(--red);
}

.service-contact-strip-item--emergency .icon {
  color: var(--red);
}

/* ============================================
   SERVICE PAGE — INLINE CTA BLOCKS
   ============================================ */
.service-inline-cta {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
  border: 1px solid var(--mid-gray);
}

.service-inline-cta p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
}

.service-inline-cta p strong {
  font-weight: 700;
}

.service-inline-cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   SERVICE PAGE — FINAL CTA
   ============================================ */
.service-final-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-2xl);
}

.service-final-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.service-final-cta p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.service-final-cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}













/* ============================================
   SERVICE PAGE — CONTENT SECTIONS
   ============================================ */
.service-content-section {
  margin-bottom: var(--space-2xl);
}

.service-content-section:last-child {
  margin-bottom: 0;
}

.service-content-section h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.service-content-section h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-content-section p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.85;
}

.service-content-section p:last-child {
  margin-bottom: 0;
}

/* Signs / bullet list section */
.service-signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.service-signs-grid ~ h3 {
  margin-top: 30px;
}



.service-sign-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: var(--space-sm) var(--space-md);
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--yellow);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.service-sign-item .icon {
  color: var(--yellow-hover);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process steps */
.service-process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.service-process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.service-process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-process-step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.service-process-step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Why choose us grid */
.service-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.service-why-card {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.service-why-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}

.service-why-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.service-why-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-why-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.service-why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Content image */
.service-content-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: var(--space-lg) 0;
}

.service-content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-content-image figcaption {
  padding: var(--space-sm) var(--space-md);
  background: var(--light-gray);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Highlight box */
.service-highlight-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.service-highlight-box h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.service-highlight-box p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.service-highlight-box .btn {
  margin-right: var(--space-sm);
  margin-bottom: var(--space-xs);
}

/* Warning box */
.service-warning-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.service-warning-box .icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-warning-box h4 {
  font-size: 0.95rem;
  color: #991B1B;
  margin-bottom: 4px;
}

.service-warning-box p {
  font-size: 0.875rem;
  color: #7F1D1D;
  margin-bottom: 0;
}

/* Tip box */
.service-tip-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-left: 4px solid #16A34A;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.service-tip-box .icon {
  color: #16A34A;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-tip-box h4 {
  font-size: 0.95rem;
  color: #14532D;
  margin-bottom: 4px;
}

.service-tip-box p {
  font-size: 0.875rem;
  color: #166534;
  margin-bottom: 0;
}



/* ============================================
   SERVICE BENEFITS GRID ( added by deepseek 
   ============================================ */
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.service-benefit-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  text-align: center;
}

.service-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.service-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.service-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.service-benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}








/* ============================================
   SERVICE PAGE — FAQ
   ============================================ */
.service-faq-section {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.service-faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--navy);
}

.service-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ============================================
   SERVICE PAGE — RELATED SERVICES
   ============================================ */
.service-related-section {
  margin-bottom: var(--space-2xl);
}

.service-related-section h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  color: var(--navy);
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.service-related-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: all var(--transition);
}

.service-related-card:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
}

.service-related-card .icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}

.service-related-card:hover .icon {
  color: var(--navy);
}

/* ============================================
   SERVICE PAGE — AREAS SERVED
   ============================================ */
.service-areas-section {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.service-areas-section h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.service-areas-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}


.service-areas-tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--space-lg);
}

.service-area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.service-area-tag:hover {
  background: rgba(255,255,255,0.08);
  color: var(--yellow);
}

.service-area-tag .icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.service-area-tag:hover .icon {
  color: var(--yellow);
}

.service-benefits-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  background: var(--navy);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.service-benefits-stat {
  text-align: center;
}

.service-benefits-stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.2;
}

.service-benefits-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}



/* ============================================
   AREA PAGE STYLES
   ============================================ */

/* Hero */
.area-hero {
  position: relative;
  background: var(--navy);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.area-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero-bg.webp') center center / cover no-repeat;
  opacity: 0.10;
  z-index: 1;
}

.area-hero .container {
  position: relative;
  z-index: 2;
}

.area-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.area-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.area-hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.area-hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.area-hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.area-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.area-hero-trust-item .icon {
  color: var(--yellow);
}

.area-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.area-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-hero-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.area-hero-breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}

.area-hero-breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb-separator {
  margin: 0 8px;
  color: var(--text-muted);
}

/* About Section */
.area-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.area-about-content .section-label {
  color: var(--yellow-hover);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  display: block;
}

.area-about-content h2 {
  margin-bottom: var(--space-md);
}

.area-about-content p {
  margin-bottom: var(--space-md);
  color: var(--text-body);
  line-height: 1.8;
}

.area-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--mid-gray);
}

.area-about-stat {
  text-align: center;
}

.area-about-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}

.area-about-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.area-about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.area-about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Issues Grid */
.area-issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.area-issue-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  text-align: center;
}

.area-issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-issue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.area-issue-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-issue-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.area-issue-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services - Categorized */
.area-services-category {
  margin-bottom: var(--space-xl);
}

.area-services-category:last-child {
  margin-bottom: 0;
}

.area-services-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--mid-gray);
}

.area-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.area-service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.area-service-link:hover {
  background: var(--yellow);
  color: var(--navy);
}

.area-service-link .icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.area-service-link:hover .icon {
  color: var(--navy);
}

/* Why Choose */
.area-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.area-why-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

.area-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.area-why-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-why-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.area-why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Map Section */
.area-map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.area-map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.area-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.area-map-info h3 {
  margin-bottom: var(--space-sm);
}

.area-map-info p {
  margin-bottom: var(--space-md);
}

.area-map-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.area-map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.area-map-info-item .icon {
  color: var(--yellow-hover);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Neighborhoods Grid */
.area-neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-lg);
}

.area-neighborhood-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: all var(--transition);
}

.area-neighborhood-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* FAQ Section */
.area-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}

.area-faq-sidebar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--white);
  position: sticky;
  top: 96px;
}

.area-faq-sidebar h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.area-faq-sidebar p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.area-faq-sidebar .btn {
  margin-bottom: var(--space-sm);
}

.btn--full {
  width: 100%;
}





/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-hero {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.faq-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.faq-hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.faq-page-category h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--yellow);
}

.faq-page-category .faq-item {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  transition: all var(--transition);
}

.faq-page-category .faq-item:hover {
  border-color: var(--yellow);
}

.faq-page-category .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  padding: 1.1rem var(--space-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-page-category .faq-item .faq-question .icon {
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-page-category .faq-item.is-open .faq-question .icon {
  transform: rotate(180deg);
  color: var(--yellow-hover);
}

.faq-page-category .faq-item .faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-page-category .faq-item .faq-answer p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-page-category .faq-item.is-open .faq-answer {
  display: block;
}

/* Sidebar */
.faq-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-page-sidebar-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.faq-page-sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.faq-page-sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--navy);
}

.faq-page-sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.faq-page-sidebar-card .btn {
  margin-bottom: var(--space-sm);
}

.faq-page-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-page-sidebar-links li {
  margin-bottom: 8px;
}

.faq-page-sidebar-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.faq-page-sidebar-links a:hover {
  color: var(--yellow-hover);
}


/* ============================================
   ELECTRICAL SAFETY PAGE STYLES
   ============================================ */

/* Hero */
.safety-hero {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.safety-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.safety-hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Introduction */
.safety-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.safety-intro-content h2 {
  margin-bottom: var(--space-md);
}

.safety-intro-content p {
  margin-bottom: var(--space-md);
  color: var(--text-body);
  line-height: 1.8;
}

.safety-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.safety-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Warning Signs Grid */
.safety-warning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.safety-warning-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

.safety-warning-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.safety-warning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow-hover);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.safety-warning-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-warning-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.safety-warning-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* Prevention Grid */
.safety-prevention-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.safety-prevention-card {
  display: flex;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  align-items: flex-start;
}

.safety-prevention-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.safety-prevention-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.safety-prevention-content h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.safety-prevention-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* Do's and Don'ts */
.safety-do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.safety-do,
.safety-dont {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mid-gray);
}

.safety-do h3 {
  color: #16A34A;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.safety-dont h3 {
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.safety-do ul,
.safety-dont ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-do ul li,
.safety-dont ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-gray);
}

.safety-do ul li:last-child,
.safety-dont ul li:last-child {
  border-bottom: none;
}

.safety-do ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: #16A34A;
  border-radius: 50%;
}

.safety-dont ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
}

/* Emergency Grid */
.safety-emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.safety-emergency-card {
  display: flex;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  align-items: flex-start;
}

.safety-emergency-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.safety-emergency-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.safety-emergency-content h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.safety-emergency-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}







/* ============================================
   RESPONSIVE — 1024px (tablet)
   ============================================ */
@media (max-width: 1024px) {

  /* Header: switch to hamburger */
  .desktop-nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .emergency-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .emergency-banner-actions {
    justify-content: center;
  }

  .map-section-grid {
    grid-template-columns: 1fr;
  }

  .quote-section-grid {
    grid-template-columns: 1fr;
  }

    #ar-about {
    padding-left: 80px;
    padding-right: 80px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .services-contact-bar {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-emergency-callout {
    flex-direction: column;
    text-align: center;
  }

  .contact-emergency-actions {
    justify-content: center;
  }

    .quote-page-grid {
    grid-template-columns: 1fr;
  }

  .quote-page-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .quote-page-sidebar > * {
    flex: 1;
    min-width: 280px;
  }








  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-hero-content h1 {
    text-align: center;
  }

  .service-hero-description {
    max-width: 100%;
    text-align: center;
  }

  .service-hero-cta {
    justify-content: center;
  }

  .service-hero-trust {
    justify-content: center;
  }

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


    .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-hero-content h1 {
    text-align: center;
  }

  .service-hero-description {
    max-width: 100%;
    text-align: center;
  }

  .service-hero-cta {
    justify-content: center;
  }

  .service-hero-trust {
    justify-content: center;
  }

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

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

  .service-benefits-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

    .area-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .area-hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .area-hero-cta {
    justify-content: center;
  }

  .area-hero-trust {
    justify-content: center;
  }

  .area-hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .area-about-grid {
    grid-template-columns: 1fr;
  }

  .area-about-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .area-map-section {
    grid-template-columns: 1fr;
  }

  .area-faq-grid {
    grid-template-columns: 1fr;
  }

  .area-faq-sidebar {
    position: static;
  }

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

  .faq-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-page-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

    .safety-intro {
    grid-template-columns: 1fr;
  }

  .safety-intro-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .safety-do-dont-grid {
    grid-template-columns: 1fr;
  }


}

/* ============================================
   RESPONSIVE — 768px (mobile)
   ============================================ */
@media (max-width: 768px) {

  .hero {
    padding: var(--space-xl) 0;
  }

  .header-logo img {
    width: 80px;
    padding-top: 6px;
    padding-bottom: 12px;
  }

  .featured-services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

.mobile-call-btn {
    /* Set the positioning */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    
    /* Initially push it off the screen (downwards) */
    transform: translateY(100%); 
    transition: transform 0.4s ease-out; /* The sliding effect */
    
    /* Keep your existing styles */
    display: flex;
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    border-top: 1px solid var(--mid-gray);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  }

  /* When the class is added, it slides up to its natural position */
  .mobile-call-btn.is-visible {
    transform: translateY(0);
  }

  .mobile-call-btn .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
  }


  body {
    padding-bottom: 80px;
  }

  .emergency-banner::after {
    right: -30%;
    width: 150px;
    height: 150px;
  }

  #ar-about {
    padding-left: 0;
    padding-right: 0;
  }

  .quote-form-wrapper {
    padding: var(--space-lg);
  }

  .faq-sidebar {
    padding: var(--space-lg);
  }

  .map-embed {
    aspect-ratio: 1/1;
  }

  .page-hero {
    padding: var(--space-xl) 0;
  }

  .contact-map-wrapper {
    aspect-ratio: 16/9;
  }

    .quote-page-sidebar {
    flex-direction: column;
  }

  .quote-page-sidebar > * {
    min-width: 100%;
  }

  .quote-page-form-steps {
    flex-direction: column;
    gap: var(--space-sm);
  }



  .service-signs-grid {
    grid-template-columns: 1fr;
  }

  .service-why-grid {
    grid-template-columns: 1fr;
  }

  .service-faq-section {
    padding: var(--space-lg);
  }

  .service-areas-section {
    padding: var(--space-lg);
  }


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


    .service-contact-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-contact-strip-info {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .service-inline-cta {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }

  .service-inline-cta-actions {
    justify-content: center;
  }

    .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    padding: var(--space-lg);
  }

  .service-benefits-stat-number {
    font-size: 1.75rem;
  }


    .area-hero {
    padding: var(--space-xl) 0;
  }

  .area-issues-grid {
    grid-template-columns: 1fr;
  }

  .area-why-grid {
    grid-template-columns: 1fr;
  }

  .area-about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .area-neighborhoods-grid {
    gap: 6px;
  }

  .area-neighborhood-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .area-faq-sidebar {
    padding: var(--space-lg);
  }

  .area-map-embed {
    aspect-ratio: 1/1;
  }

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

    .faq-hero {
    padding: var(--space-xl) 0;
  }

  .faq-page-sidebar {
    grid-template-columns: 1fr;
  }

  .faq-page-sidebar-card {
    padding: var(--space-md);
  }

  .faq-page-category h2 {
    font-size: 1.1rem;
  }

   .safety-hero {
    padding: var(--space-xl) 0;
  }

  .safety-warning-grid {
    grid-template-columns: 1fr;
  }

  .safety-prevention-grid {
    grid-template-columns: 1fr;
  }

  .safety-emergency-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================
   RESPONSIVE — 480px (small mobile)
   ============================================ */
@media (max-width: 480px) {

  .container {
    padding: 0 var(--space-sm);
  }

  .services-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .areas-tag-grid {
    gap: 6px;
  }

  .area-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .emergency-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .emergency-banner-actions .btn {
    width: 100%;
  }

  .quote-form-wrapper {
    padding: var(--space-md);
  }

  .faq-sidebar {
    padding: var(--space-md);
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .mobile-call-btn {
    padding: var(--space-sm);
  }

  .process-step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .mobile-menu {
    padding: var(--space-md) var(--space-sm);
  }

    .services-hub-grid {
    grid-template-columns: 1fr;
  }

  .services-hub-category-header {
    flex-direction: column;
    text-align: center;
  }

  .services-contact-bar {
    padding: var(--space-md);
  }

  .services-contact-bar-actions {
    flex-direction: column;
    width: 100%;
  }

  .services-contact-bar-actions .btn {
    width: 100%;
  }

  .areas-hub-grid {
    grid-template-columns: 1fr;
  }

  .areas-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .areas-services-grid {
    grid-template-columns: 1fr;
  }

  .areas-hub-corridor-header {
    flex-direction: column;
    text-align: center;
  }

  .areas-services-highlight {
    padding: var(--space-lg) var(--space-md);
  }

  .contact-form-wrapper {
    padding: var(--space-md);
  }

  .contact-emergency-callout {
    padding: var(--space-md);
  }

  .contact-emergency-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-emergency-actions .btn {
    width: 100%;
  }

  .contact-map-wrapper {
    aspect-ratio: 4/3;
  }

  .quote-page-form-wrapper {
    padding: var(--space-sm);
  }

  .quote-sidebar-card {
    padding: var(--space-md);
  }



    .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-highlight-box {
    padding: var(--space-md);
  }

  .service-faq-section {
    padding: var(--space-md);
  }

  .service-areas-section {
    padding: var(--space-md);
  }

    .service-areas-tag-grid {
    grid-template-columns: 1fr;
  }


    .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-final-cta {
    padding: var(--space-lg) var(--space-md);
  }

  .service-final-cta-actions {
    flex-direction: column;
  }

  .service-final-cta-actions .btn {
    width: 100%;
  }

  .service-inline-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .service-inline-cta-actions .btn {
    width: 100%;
  }

    .service-benefits-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
  }

    .area-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .area-hero-cta .btn {
    width: 100%;
  }

  .area-hero-trust {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .area-faq-sidebar .btn {
    width: 100%;
  }

  .area-services-grid {
    grid-template-columns: 1fr;
  }

  .faq-page-sidebar-card .btn {
    width: 100%;
  }

  .safety-do,
  .safety-dont {
    padding: var(--space-md);
  }

  .safety-prevention-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .safety-emergency-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

/* ============================================
   RESPONSIVE — 420px (extra small mobile)
   ============================================ */
@media (max-width: 420px) {

  html {
    font-size: 15px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header-inner {
    gap: var(--space-xs);
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn--lg {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.7rem 0.875rem;
    font-size: 0.9rem;
  }

  .quote-form-wrapper {
    padding: var(--space-md);
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .emergency-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .emergency-banner-actions .btn {
    width: 100%;
  }

  .mobile-call-btn {
    padding: var(--space-xs) var(--space-sm);
  }

  .mobile-call-btn .btn {
    padding: 0.9rem;
    font-size: 1rem;
  }

  /* Final CTA section buttons stack */
  .section .container .btn {
    width: 100%;
  }
}







/* MY Custom Added CSS  */


.ar-inline-link {
  color: var(--yellow-hover);
}

.ar-inline-link:hover {
  color: var(--yellow);
  text-decoration: underline;
}





/* Test  */



/* ============================================
   RESOURCE LAYOUT STYLES
   ============================================ */

/* Reading Progress Bar */
.resource-reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--light-gray);
  z-index: 9999;
}

.resource-reading-bar-progress {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  transition: width 0.1s ease;
}

/* Resource Header */
.resource-header {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
}

.resource-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.resource-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.resource-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.resource-breadcrumb a:hover {
  color: var(--yellow-hover);
}

.resource-type-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(250, 204, 21, 0.15);
  color: var(--yellow-hover);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.resource-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.resource-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.resource-meta-item .icon {
  color: var(--yellow-hover);
}

.resource-description {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.resource-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.resource-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Resource Body */
.resource-body {
  padding: var(--space-xl) 0;
}

.resource-body-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}

.resource-main {
  min-width: 0;
}

.resource-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-body);
}

.resource-content h2 {
  font-size: 1.6rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.resource-content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.resource-content p {
  margin-bottom: var(--space-md);
}

.resource-content ul,
.resource-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.resource-content li {
  margin-bottom: 8px;
}

.resource-content a {
  color: var(--yellow-hover);
  text-decoration: none;
  font-weight: 600;
}

.resource-content a:hover {
  text-decoration: underline;
}

.resource-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.resource-content blockquote {
  border-left: 4px solid var(--yellow);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  font-style: italic;
}

.resource-content blockquote p {
  margin-bottom: 0;
}

/* Download Banner */
.resource-download-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--light-gray);
  border: 2px dashed var(--yellow);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.resource-download-banner .icon {
  color: var(--yellow-hover);
  flex-shrink: 0;
}

.resource-download-banner h4 {
  margin-bottom: 2px;
}

.resource-download-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.resource-download-banner .btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* Share Section */
.resource-share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--mid-gray);
  flex-wrap: wrap;
}

.resource-share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.resource-share-links {
  display: flex;
  gap: 8px;
}

.resource-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}

.resource-share-link:hover {
  background: var(--yellow);
  color: var(--navy);
}

.resource-share-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Related Resources */
.resource-related {
  margin-top: var(--space-xl);
}

.resource-related h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.resource-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.resource-related-card {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.resource-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.resource-related-card-content {
  padding: var(--space-md);
}

.resource-related-card-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.resource-type-badge-sm {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: rgba(250, 204, 21, 0.15);
  color: var(--yellow-hover);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Sidebar */
.resource-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.resource-sidebar-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.resource-sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--navy);
}

.resource-sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.resource-sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border: none;
}

.resource-sidebar-cta h4 {
  color: var(--white);
}

.resource-sidebar-cta p {
  color: var(--text-light);
}

.resource-sidebar-cta .btn {
  margin-bottom: var(--space-sm);
}

.resource-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}

.resource-sidebar-list li:last-child {
  border-bottom: none;
}

.resource-sidebar-list a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.resource-sidebar-list a:hover {
  color: var(--yellow-hover);
}

.resource-toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-toc-nav li {
  padding: 4px 0;
}

.resource-toc-nav a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.resource-toc-nav a:hover {
  color: var(--yellow-hover);
}

/* Resources Archive Page */
.resources-hero {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.resources-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.resources-hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.resources-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.resources-filter-btn {
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
}

.resources-filter-btn:hover {
  background: var(--light-gray);
}

.resources-filter-btn.active {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.resource-card-image {
  height: 200px;
  overflow: hidden;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.resource-card:hover .resource-card-image img {
  transform: scale(1.05);
}

.resource-card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.resource-card-type {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: rgba(250, 204, 21, 0.15);
  color: var(--yellow-hover);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.resource-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--yellow-hover);
  transition: gap var(--transition);
}

.resource-card-link:hover {
  gap: 10px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .resource-body-grid {
    grid-template-columns: 1fr;
  }

  .resource-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

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

@media (max-width: 768px) {
  .resource-header {
    padding: var(--space-lg) 0;
  }

  .resource-body {
    padding: var(--space-lg) 0;
  }

  .resource-sidebar {
    grid-template-columns: 1fr;
  }

  .resource-related-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-download-banner {
    flex-direction: column;
    text-align: center;
  }

  .resource-download-banner .btn {
    margin-left: 0;
  }

  .resource-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .resource-meta {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .resource-sidebar-card {
    padding: var(--space-md);
  }
}





























