/* ==========================================================================
   WESTSHORE COMPUTER REPAIR — Main Stylesheet
   Single stylesheet, mobile-first, cached across pages for speed
   ========================================================================== */

:root {
  --navy: #0B2545;
  --navy-deep: #071A33;
  --blue: #1E5FBF;
  --blue-light: #3B82F6;
  --orange: #F59324;
  --orange-hover: #E07F14;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F7FA;
  --gray-100: #E8EDF3;
  --gray-200: #D1DAE5;
  --gray-500: #64748B;
  --gray-700: #334155;
  --text: #0F1F36;
  --shadow-sm: 0 1px 2px rgba(7, 26, 51, 0.06);
  --shadow-md: 0 4px 16px rgba(7, 26, 51, 0.08);
  --shadow-lg: 0 12px 40px rgba(7, 26, 51, 0.12);
  --shadow-orange: 0 8px 24px rgba(245, 147, 36, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--navy); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: var(--space-xl) 0; }
@media (min-width: 768px) { section { padding: var(--space-2xl) 0; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-link img { height: 48px; width: auto; }
@media (min-width: 768px) { .logo-link img { height: 56px; } }
.logo-text { display: none; }
@media (min-width: 1024px) {
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .logo-text strong {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 600;
  }
  .logo-text span { color: var(--orange); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }
}

/* Desktop nav */
.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: 0.25rem; }
  .main-nav a {
    color: var(--navy);
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: background 0.15s ease;
  }
  .main-nav a:hover { background: var(--gray-100); }
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-orange);
  transition: transform 0.12s ease, background 0.15s ease;
}
.header-call:hover { background: var(--orange-hover); transform: translateY(-1px); color: var(--white) !important; }
.header-call svg { width: 16px; height: 16px; }
.header-call .call-label { display: none; }
@media (min-width: 640px) { .header-call .call-label { display: inline; } }

/* ==========================================================================
   MOBILE STICKY CALL BAR
   ========================================================================== */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--orange);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}
.mobile-call-bar:hover { color: var(--white); }
.mobile-call-bar svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .mobile-call-bar { display: none; } }
body { padding-bottom: 64px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: var(--space-xl) 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 10%, rgba(30, 95, 191, 0.45) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 147, 36, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; text-align: center; padding-bottom: var(--space-xl); }
.hero .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 147, 36, 0.12);
  border: 1px solid rgba(245, 147, 36, 0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 95%;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .hero .eyebrow {
    border-radius: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 0.6rem 1rem;
  }
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 20ch; margin-left: auto; margin-right: auto; }
.hero h1 em { font-style: normal; color: var(--orange); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.hero-subhead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.1rem 2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
  transition: transform 0.12s ease, background 0.15s ease;
  margin-bottom: 1.25rem;
}
.hero-cta:hover { background: var(--orange-hover); color: var(--white); transform: translateY(-2px); }
.hero-cta svg { width: 22px; height: 22px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.35rem; }

/* Wave divider bottom of hero */
.wave-divider {
  position: relative;
  width: 100%;
  height: 60px;
  display: block;
  margin-top: -1px;
}
@media (min-width: 768px) { .wave-divider { height: 90px; } }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--gray-50);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .trust-strip-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  font-weight: 600;
}
.trust-item span { font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-lg); }
.section-head .kicker {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--gray-700); font-size: 1.1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { gap: 1.25rem; } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: block;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-200); color: var(--text); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--navy); }
.service-card p { font-size: 0.95rem; color: var(--gray-700); margin-bottom: 0; }

/* ==========================================================================
   WHY / FEATURES
   ========================================================================== */
.why-section { background: var(--gray-50); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.why-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.why-card .icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  position: relative;
}
.why-card .icon-circle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--gray-100);
  border-radius: 50%;
}
.why-card .icon-circle svg { width: 28px; height: 28px; }
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { color: var(--gray-700); font-size: 1rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { background: var(--white); }
.featured-testimonial {
  max-width: 820px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.featured-testimonial::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}
.featured-testimonial .stars { color: var(--orange); margin-bottom: 1rem; font-size: 1.1rem; }
.featured-testimonial blockquote {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.featured-testimonial cite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
  font-weight: 600;
}
.featured-testimonial cite .location {
  background: rgba(245, 147, 36, 0.2);
  color: var(--orange);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-card .stars { color: var(--orange); font-size: 0.95rem; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.55;
  flex-grow: 1;
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-100);
}

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.areas-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.areas-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.areas-section .section-head h2 { color: var(--white); }
.areas-section .section-head p { color: rgba(255,255,255,0.8); }
.areas-section .section-head .kicker { color: var(--orange); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.area-link:hover {
  background: rgba(245, 147, 36, 0.12);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.area-link .arrow {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.15s, transform 0.15s;
}
.area-link:hover .arrow { opacity: 1; transform: translateX(3px); }

/* ==========================================================================
   SCAM ALERT BANNER
   ========================================================================== */
.scam-banner {
  background: linear-gradient(135deg, #FFF4E5 0%, #FEEBCC 100%);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin: var(--space-lg) auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 640px) {
  .scam-banner { flex-direction: row; align-items: center; gap: 1.5rem; }
}
.scam-banner .scam-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scam-banner .scam-icon svg { width: 30px; height: 30px; }
.scam-banner-body { flex-grow: 1; }
.scam-banner h3 { margin-bottom: 0.35rem; font-size: 1.2rem; }
.scam-banner p { margin: 0; color: var(--gray-700); font-size: 0.98rem; }
.scam-banner a.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--orange-hover);
  margin-top: 0.35rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--off-white); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-answer p + p { margin-top: 0.75rem; }

/* ==========================================================================
   FINAL CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--space-xl) 1.25rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 147, 36, 0.2) 0%, transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; font-size: 1.1rem; }
.cta-band .hero-cta { margin-bottom: 0.75rem; }
.cta-band .hours-line { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: var(--space-lg) 0 var(--space-md);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand img { height: 70px; width: auto; margin-bottom: 1rem; background: var(--white); padding: 8px 12px; border-radius: 10px; }
.footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.65); max-width: 32ch; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--orange); }
.footer-phone {
  display: inline-block;
  color: var(--orange) !important;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}
.footer-hours { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   SERVICE DETAIL PAGE
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(30, 95, 191, 0.4) 0%, transparent 50%);
}
.page-hero-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 56ch; margin: 0 auto; }
.service-area-banner {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 1.25rem;
  background: rgba(245, 147, 36, 0.12);
  border: 1px solid rgba(245, 147, 36, 0.35);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 95%;
}
.service-area-banner strong { color: var(--orange); font-weight: 600; }

.content-section { padding: var(--space-xl) 0; }
.content-section .inner {
  max-width: 820px;
  margin: 0 auto;
}
.content-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { margin-top: 2rem; margin-bottom: 0.5rem; color: var(--blue); }
.content-section p { margin-bottom: 1rem; color: var(--gray-700); font-size: 1.05rem; }
.content-section ul { margin: 1rem 0 1.5rem 1.25rem; list-style: disc; color: var(--gray-700); }
.content-section ul li { margin-bottom: 0.35rem; }
.content-section .inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-orange);
}
.content-section .inline-cta:hover { background: var(--orange-hover); color: var(--white); }

/* ==========================================================================
   CITY PAGE-SPECIFIC
   ========================================================================== */
.local-problems {
  background: var(--off-white);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) { .problems-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.problem-pill {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}
.problem-pill:hover { border-color: var(--blue); background: var(--gray-50); }
.problem-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0;
}
.nearby-cities {
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-700);
}
.nearby-cities strong { color: var(--navy); }
.nearby-cities a { color: var(--blue); font-weight: 500; }

/* ==========================================================================
   SCAM ALERT PAGE
   ========================================================================== */
.alert-callout {
  background: linear-gradient(135deg, #FFF4E5 0%, #FEEBCC 100%);
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.alert-callout h3 { margin-top: 0; color: var(--navy); }
.alert-callout p:last-child { margin-bottom: 0; }
.danger-list {
  background: #FEF2F2;
  border-left: 4px solid #DC2626;
  padding: 1.25rem 1.5rem 1.25rem 2.5rem !important;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  color: var(--text) !important;
}
.safe-list {
  background: #F0FDF4;
  border-left: 4px solid #16A34A;
  padding: 1.25rem 1.5rem 1.25rem 2.5rem !important;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  color: var(--text) !important;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.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;
}

/* Print */
@media print {
  .mobile-call-bar, .site-header { display: none; }
}
