/* Service Areas page styles — extends theme.css variables */

/* ─── HERO ──────────────────────────────── */
.sa-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 32px 80px;
}
.sa-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sa-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,147,10,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, transparent 30%, black 100%);
}
.sa-hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,147,10,0.12);
}
.sa-hero-circle-1 {
  width: 600px; height: 600px;
  top: -250px; left: -200px;
}
.sa-hero-circle-2 {
  width: 350px; height: 350px;
  top: -150px; left: -100px;
  border-color: rgba(232,147,10,0.07);
}
.sa-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.sa-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 12px 0 20px;
}
.sa-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-light);
  max-width: 560px;
  margin: 0 auto 28px;
}
.sa-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
}
.sa-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(232,147,10,0.2);
  padding: 5px 14px;
  border-radius: 20px;
}
.sa-badge-divider { color: var(--text-secondary); }
.sa-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--amber);
  color: #1C1E24;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary-lg { padding: 16px 40px; font-size: 16px; border-radius: var(--radius-md); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  color: var(--muted-light);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(232,147,10,0.3); color: var(--off-white); }

/* ─── CITIES GRID ───────────────────────── */
.sa-cities { padding: 80px 32px 100px; }
.sa-cities-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.sa-city-card {
  background: var(--slate-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sa-city-card:hover { border-color: rgba(232,147,10,0.2); }
.sa-city-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sa-city-card:hover::before { opacity: 1; }

.sa-city-header { }
.sa-city-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.sa-city-pop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.sa-city-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.sa-city-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--amber);
  font-weight: 500;
}
.sa-city-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-light);
}

/* Services */
.sa-services { }
.sa-services-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}
.sa-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sa-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--off-white);
}
.sa-service-keyword {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  margin-left: auto;
}

/* Neighborhoods */
.sa-neighborhoods { }
.sa-neighborhoods-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}
.sa-neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sa-n-tag {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted-light);
  transition: border-color 0.15s, color 0.15s;
}
.sa-n-tag:hover { border-color: rgba(232,147,10,0.2); color: var(--off-white); }

/* CTA */
.sa-city-cta {
  margin-top: 4px;
}
.btn-city {
  display: inline-block;
  padding: 10px 22px;
  background: var(--amber-dim);
  border: 1px solid rgba(232,147,10,0.25);
  color: var(--amber);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-city:hover { background: rgba(232,147,10,0.2); border-color: rgba(232,147,10,0.4); }

/* ─── WHY LOCAL ─────────────────────────── */
.sa-why {
  padding: 100px 32px;
  background: var(--slate-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sa-why-inner { max-width: 1100px; margin: 0 auto; }
.sa-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.sa-why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sa-why-icon { }
.sa-why-icon svg { width: 32px; height: 32px; }
.sa-why-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.sa-why-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-light);
}

/* ─── CTA BAND ──────────────────────────── */
.sa-cta-band { padding: 100px 32px; }
.sa-cta-band-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.sa-cta-band-circle {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(232,147,10,0.06);
  pointer-events: none;
}
.sa-cta-band-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.sa-cta-band-sub {
  font-size: 16px;
  color: var(--muted-light);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
  .sa-cities-inner { grid-template-columns: 1fr; }
  .sa-why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .sa-hero { padding: 110px 20px 60px; }
  .sa-cities { padding: 60px 20px; }
  .sa-city-card { padding: 24px; }
  .sa-city-name { font-size: 22px; }
  .sa-why { padding: 60px 20px; }
  .sa-cta-band { padding: 60px 20px; }
  .sa-hero-actions { flex-direction: column; }
  .btn-secondary { width: 100%; justify-content: center; }
}