/* ============================================================
   Cerritos Plumbing Pros — style.css
   Design 3: SoCal Modern
   Primary #075985 · Accent #EAB308
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1e293b;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #075985; text-decoration: underline; }
a:hover { color: #054f78; }
a:focus-visible { outline: 2px solid #075985; outline-offset: 3px; border-radius: 3px; }
ul, ol { list-style: none; }
p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

/* === CSS Custom Properties === */
:root {
  --primary:       #075985;
  --primary-dark:  #054f78;
  --primary-light: #0a6ea3;
  --accent:        #EAB308;
  --accent-dark:   #c49000;
  --accent-text:   #1a1000;
  --text-base:     #1e293b;
  --text-muted:    #4a5568;
  --text-light:    #718096;
  --bg-alt:        #fafbfc;
  --border:        #e2e8f0;
  --radius:        6px;
  --radius-lg:     10px;
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 5px 5px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* === Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* === Top Strip === */
.top-strip { background: var(--primary); height: 4px; }

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 400;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { color: var(--primary); font-size: 0.9375rem; font-weight: 700; line-height: 1.1; }
.logo-sub { color: var(--text-light); font-size: 0.6875rem; letter-spacing: 0.04em; margin-top: 2px; }

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0 auto 0 1.5rem;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.12s, background 0.12s;
}
.nav-menu > li > a:hover { color: var(--primary); background: #f0f7ff; }
.nav-menu > li > a[aria-current="page"] { color: var(--primary); font-weight: 600; }

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0,0,0,0.09);
  z-index: 500;
  padding: 0.375rem 0;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.5625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
}
.nav-dropdown a:hover { color: var(--primary); background: #f0f7ff; }
.nav-dropdown .dd-all {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  padding-top: 0.25rem;
  font-weight: 600;
  color: var(--primary) !important;
}
.nav-dropdown .dd-all:hover { background: #f0f7ff; }

/* Phone CTA — per spec: icon + "Call" on desktop, icon-only ≤767px */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5625rem 1rem;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  min-height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone:hover { background: var(--accent-dark); color: var(--accent-text); }
.nav-phone-icon { font-size: 1rem; line-height: 1; }
.nav-phone-label { font-size: 0.875rem; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary);
  font-size: 1.375rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0.875rem 1.25rem 1.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  z-index: 450;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
  padding: 0.875rem 0 0.25rem;
}
.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent) !important;
  color: var(--accent-text) !important;
  border-radius: 5px;
  padding: 0.875rem 1.25rem !important;
  font-weight: 700 !important;
  margin-top: 1rem;
  border-bottom: none !important;
}

/* ==========================================
   STICKY MOBILE BOTTOM CTA
   ========================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 3px solid var(--accent);
  z-index: 600;
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
}
.mobile-cta-bar a:hover { color: var(--accent); }

/* ==========================================
   MOBILE BREAKPOINT ≤767px
   ========================================== */
@media (max-width: 767px) {
  .nav-menu { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone-label { display: none; }
  .nav-phone { min-width: 44px; padding: 0.625rem; justify-content: center; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 62px; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero { background: #fff; padding: 3rem 0 0; }
.hero-badge {
  display: inline-block;
  background: #f0f7ff;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3125rem 0.875rem;
  border-radius: 20px;
  border: 1px solid #c8dff0;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f1f2e;
  line-height: 1.15;
  margin-bottom: 0.875rem;
  max-width: 820px;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 1.625rem;
}
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  min-height: 48px;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.8125rem 1.25rem;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 48px;
}
.btn-secondary:hover { background: #f0f7ff; }

/* Accent bar (yellow stripe under hero image) */
.accent-bar { background: var(--accent); height: 4px; }

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip { background: var(--primary); padding: 0.875rem 0; }
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-check { color: var(--accent); font-weight: 700; }

/* ==========================================
   SECTIONS
   ========================================== */
.section { padding: 3.5rem 0; }
.section-alt { padding: 3.5rem 0; background: var(--bg-alt); }

.section-heading {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f1f2e;
  margin-bottom: 0.875rem;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 1.75rem;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.125rem;
  display: flex;
  flex-direction: column;
}
.svc-card-icon {
  width: 34px;
  height: 34px;
  background: #f0f7ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.svc-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
}
.card-link:hover { text-decoration: underline; }
.view-all-wrap { margin-top: 1.75rem; text-align: center; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.btn-outline:hover { background: #f0f7ff; }

/* ==========================================
   LOCAL FACTORS (Why Cerritos is different)
   ========================================== */
.local-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0;
}
.local-factor {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
}
.local-factor h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1f2e;
  margin-bottom: 0.4rem;
}
.local-factor p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ==========================================
   FEATURE CARDS (Three hero services)
   ========================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.feature-card {
  background: #f0f7ff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.375rem;
  border-top: 3px solid var(--primary);
}
.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.feature-card .card-link { font-size: 0.875rem; }

/* ==========================================
   AREA LINKS
   ========================================== */
.area-col-label {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1f2e;
  margin: 1.5rem 0 0.75rem;
}
.area-col-label:first-of-type { margin-top: 0; }
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.area-link {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}
.area-link:hover { background: #f0f7ff; }

/* ==========================================
   BLOG PREVIEW CARDS
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-thumb { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-body { padding: 1.125rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 0.9375rem; font-weight: 700; color: #0f1f2e; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.75rem; flex: 1; }
.blog-card .read-more { font-size: 0.8125rem; font-weight: 600; color: var(--primary); text-decoration: none; margin-top: auto; }
.blog-card .read-more:hover { text-decoration: underline; }

/* ==========================================
   FAQ
   ========================================== */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1f2e;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
.faq-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: var(--primary);
  padding: 3.25rem 0;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}
.btn-accent-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-text);
  padding: 0.9375rem 1.875rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  min-height: 52px;
}
.btn-accent-cta:hover { background: var(--accent-dark); color: var(--accent-text); }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 2.75rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
footer h3 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.4375rem; }
.footer-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.8125rem;
  text-decoration: none;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--accent); }
.footer-about {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.footer-address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 0.875rem;
}
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
}
.footer-phone-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.125rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================
   IMAGE SLOT PLACEHOLDER (spec §6b)
   ========================================== */
.image-slot {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}
.image-slot span {
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb { padding: 0.75rem 0; font-size: 0.8125rem; color: var(--text-light); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb li + li::before { content: '›'; color: var(--text-light); }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text-muted); }

/* ==========================================
   PAGE HERO (inner pages — service/location/blog/standard)
   ========================================== */
.page-hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 2.75rem 0;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #fff;
}
.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 680px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   PROSE (blog/standard inner pages)
   ========================================== */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.375rem; font-weight: 700; color: #0f1f2e; margin: 2rem 0 0.875rem; }
.prose h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 0.625rem; }
.prose h4 { font-size: 1rem; font-weight: 700; color: #0f1f2e; margin: 1.25rem 0 0.5rem; }
.prose p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.4rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ol li { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.4rem; }

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-wrap { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 480px; }
.comparison-table th {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.comparison-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.comparison-table tr:nth-child(even) td { background: var(--bg-alt); }

/* ==========================================
   SIDEBAR LAYOUT (service/location sidebar links)
   ========================================== */
.page-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h3 { font-size: 0.9375rem; font-weight: 700; color: #0f1f2e; margin-bottom: 0.875rem; }
.sidebar-links li { margin-bottom: 0.4375rem; }
.sidebar-links a { font-size: 0.8125rem; color: var(--primary); text-decoration: none; }
.sidebar-links a:hover { text-decoration: underline; }
.sidebar-cta {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  text-align: center;
}
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 0.875rem; line-height: 1.55; margin-bottom: 1rem; }
.sidebar-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-text);
  padding: 0.8125rem 1rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
}
.sidebar-cta a:hover { background: var(--accent-dark); color: var(--accent-text); }

/* ==========================================
   VISUALLY HIDDEN (accessibility)
   ========================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 767px) {
  .section, .section-alt { padding: 2.5rem 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .local-factors { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 479px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-links { gap: 0.375rem; }
}
@media (min-width: 1440px) {
  .container { max-width: 1280px; }
}
