/* ============================================================
   OREGON ROOFING PROS — GLOBAL STYLESHEET
   style.css  |  Mobile-first responsive design

   TABLE OF CONTENTS
   1.  CSS Variables (theme tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Header & Navigation
   7.  Hero Section
   8.  Trust Bar
   9.  Section Wrapper
   10. Service Cards Grid
   11. Why-Us Grid
   12. Process Steps
   13. Coverage / Cities Section
   14. FAQ Accordion
   15. CTA Band
   16. Footer
   17. Page Hero (inner pages)
   18. Prose (article content)
   19. Pricing Table
   20. Contact Form
   21. Service Areas Page
   22. City Landing Page
   23. Responsive Overrides
============================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  --navy:         #1A3560;
  --navy-dark:    #0f2040;
  --navy-light:   #254880;
  --orange:       #E8730A;
  --orange-dark:  #c85e06;
  --dark:         #111827;
  --gray:         #6B7280;
  --border:       #E5E7EB;
  --light:        #EEF2FA;
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.10);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --radius:       8px;
  --radius-lg:    14px;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width:    1180px;
  --header-h:     68px;
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; color: var(--dark); font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }
p  { color: #374151; }
small { font-size: .82rem; color: var(--gray); }

/* ── 4. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px)  { .container { padding: 0 28px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 64px 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--navy-dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: .6rem; }
.section-header p  { font-size: 1.05rem; color: var(--gray); max-width: 620px; margin: 0 auto; }

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, transform .12s, box-shadow .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 4px 14px rgba(232,115,10,.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: .95rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* ── 6. HEADER & NAVIGATION ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: .7rem;
  color: var(--gray);
  display: none;
}
@media (min-width: 480px) { .logo-sub { display: block; } }

/* Desktop nav */
.main-nav {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 900px) { .main-nav { display: flex; } }

.nav-link {
  padding: .45rem .85rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--light); color: var(--navy); text-decoration: none; }
.nav-link.active { background: var(--light); color: var(--navy); font-weight: 600; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  text-decoration: none;
}
@media (min-width: 640px) { .header-phone { display: flex; } }
.header-phone .phone-num {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.header-phone .phone-sub {
  font-size: .7rem;
  color: var(--gray);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  transition: background .15s;
}
.nav-toggle:hover { background: var(--light); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 1rem;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: .75rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
}
.mobile-nav .btn { margin-top: .5rem; }

/* ── 7. HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 4rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* Hero card (right column) */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--navy); margin-bottom: 1.25rem; font-size: 1.15rem; }
.hero-card .form-group { margin-bottom: 1rem; }
.hero-card label { display: block; font-size: .82rem; font-weight: 600; color: #374151; margin-bottom: .35rem; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font);
  transition: border-color .15s;
  background: var(--white);
  color: var(--dark);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  outline: none;
  border-color: var(--navy);
}

/* ── 8. TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
}

/* ── 10. SERVICE CARDS GRID ───────────────────────────────── */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card .sc-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.service-card h3 { font-size: 1rem; margin: 0; }
.service-card p  { font-size: .88rem; color: var(--gray); flex-grow: 1; }
.service-card a  { font-size: .85rem; font-weight: 600; color: var(--orange); }
.service-card a:hover { text-decoration: underline; }

/* ── 11. WHY-US GRID ──────────────────────────────────────── */
.why-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item { display: flex; flex-direction: column; gap: .6rem; }
.why-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-item h3 { font-size: 1.05rem; }
.why-item p  { font-size: .9rem; color: var(--gray); }

/* ── 12. PROCESS STEPS ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .75rem;
  opacity: .9;
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p  { font-size: .88rem; color: var(--gray); }

/* ── 13. COVERAGE / CITIES ─────────────────────────────────── */
.cities-regions {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cities-regions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cities-regions { grid-template-columns: repeat(3, 1fr); } }

.city-region-block h3 {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.city-pill {
  display: inline-block;
  padding: .3rem .75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: .82rem;
  color: var(--dark);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.city-pill:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  text-decoration: none;
}

/* Service Areas page — full grid */
.areas-grid { display: grid; gap: 2.5rem; }
.area-section h2 {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--light);
}
.area-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.area-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: border-color .18s, box-shadow .18s;
  text-decoration: none;
}
.area-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); text-decoration: none; }
.area-card .city-name { font-weight: 600; color: var(--dark); font-size: .95rem; }
.area-card .city-state { font-size: .78rem; color: var(--gray); }
.area-card .city-arrow { font-size: .8rem; color: var(--orange); margin-top: .25rem; }

/* ── 14. FAQ ACCORDION ─────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font);
  transition: background .15s;
}
.faq-q:hover { background: var(--light); }
.faq-q.open  { background: var(--light); color: var(--navy); }
.faq-q .faq-icon { font-size: .75rem; flex-shrink: 0; transition: transform .25s; }
.faq-q.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: #374151;
  background: var(--light);
}
.faq-a.open { display: block; }

/* ── 15. CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 52px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .6rem; }
.cta-band p  { color: rgba(255,255,255,.88); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-band .btn-outline {
  border-color: var(--white);
  color: var(--white);
  font-size: 1.05rem;
}
.cta-band .btn-outline:hover { background: var(--white); color: var(--orange); }

/* ── 16. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }

.footer-brand .logo-name { color: var(--white); font-size: 1.05rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; margin: .9rem 0 1rem; max-width: 280px; }
.footer-phone-link {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.footer-phone-link:hover { color: #f0a87a; }
.footer-license { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .4rem; }

.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── 17. PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 52px 0 56px;
  color: var(--white);
}
.page-hero.page-hero--emergency { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%); }
.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .85rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: .85rem; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 640px; margin-bottom: 1.5rem; }

/* ── 18. PROSE (article/service page content) ──────────────── */
.content-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) { .content-layout { grid-template-columns: 1fr 300px; } }
@media (min-width: 1100px){ .content-layout { grid-template-columns: 1fr 320px; } }

.prose h2 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.35rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.1rem; color: var(--navy); }
.prose p  { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; font-size: .93rem; color: #374151; }

/* Sidebar cards */
.sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .75rem; }
.sidebar-links { display: flex; flex-direction: column; gap: .35rem; margin-top: .5rem; }
.sidebar-links a {
  font-size: .875rem;
  color: var(--dark);
  padding: .4rem .6rem;
  border-radius: 4px;
  transition: background .14s;
  text-decoration: none;
}
.sidebar-links a:hover { background: var(--light); color: var(--navy); }
.sidebar-card--accent { background: var(--light); border-color: var(--navy); }

/* ── 19. PRICING TABLE ─────────────────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 1.25rem 0;
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: .7rem 1rem;
  text-align: left;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: #374151;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--light); }

/* ── 20. CONTACT FORM ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 400px; } }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: #374151; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,53,96,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: var(--light); border: 1.5px solid var(--navy); border-radius: var(--radius); padding: 1.25rem; color: var(--navy); font-weight: 600; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: .75rem; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4 { font-size: .85rem; color: var(--gray); font-weight: 600; margin-bottom: .2rem; }
.contact-info-item p, .contact-info-item a { font-size: .95rem; color: var(--dark); font-weight: 500; }
.contact-info-item a:hover { color: var(--orange); }

/* ── 21. CITY LANDING PAGE ─────────────────────────────────── */
.city-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin: 1.5rem 0;
}
.city-stat {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.city-stat .stat-num { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.city-stat .stat-label { font-size: .78rem; color: var(--gray); margin-top: .2rem; }

/* ── 22. REVIEWS ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .6rem; }
.review-text { font-size: .9rem; color: #374151; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: .82rem; font-weight: 600; color: var(--navy); }
.review-city { font-size: .75rem; color: var(--gray); }

/* ── 23. RESPONSIVE OVERRIDES ──────────────────────────────── */
@media (max-width: 639px) {
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-band { padding: 40px 0; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1280px) {
  :root { --max-width: 1240px; }
}

/* ── UTILITY: Screen reader only ───────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
