/* Service Area page styles */

/* ---- HERO ---- */
.sa-hero {
  background: var(--navy);
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}

.sa-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #071A2E 0%, #0D2540 60%, #0A2A3A 100%);
  z-index: 0;
}

.sa-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,184,0.12) 0%, transparent 70%);
  z-index: 0;
}

.sa-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.sa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(0,194,184,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sa-hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--sand);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.sa-hero-sub {
  font-size: 18px;
  color: rgba(244,238,224,0.65);
  max-width: 540px;
  margin-bottom: 32px;
}

.sa-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sa-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.sa-cta-primary:hover {
  background: var(--teal-dim);
  transform: translateY(-1px);
}

.sa-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(244,238,224,0.25);
  color: var(--sand);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.sa-cta-ghost:hover {
  border-color: rgba(244,238,224,0.5);
  background: rgba(244,238,224,0.06);
}

/* ---- MAP SECTION ---- */
.sa-map-section {
  padding: 72px 48px;
  background: var(--bg);
}

.sa-map-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sa-map-header {
  text-align: center;
  margin-bottom: 40px;
}

.sa-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.sa-section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sa-map-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  border: 1px solid rgba(7,26,46,0.08);
}

.sa-svg-map {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  background: #E8E2D5;
  padding: 16px;
}

.sa-map-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sa-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.sa-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- COUNTY SECTIONS ---- */
.sa-counties {
  padding: 0 48px 72px;
  background: var(--bg);
}

.sa-counties-inner {
  max-width: 900px;
  margin: 0 auto;
}

.county-block {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 20px;
  border: 1px solid rgba(7,26,46,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.county-block:last-child {
  margin-bottom: 0;
}

.county-block-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.county-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.county-name-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.county-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}

.county-copy {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.county-cities {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin-top: 8px;
}

/* ---- LINKS GRID ---- */
.sa-links-section {
  padding: 0 48px 80px;
  background: var(--bg);
}

.sa-links-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sa-links-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.sa-service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sa-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(7,26,46,0.08);
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.sa-service-link:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7,26,46,0.1);
}

.sa-link-arrow {
  color: var(--teal);
  font-size: 16px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .sa-hero {
    padding: 60px 24px 56px;
  }

  .sa-map-section,
  .sa-counties,
  .sa-links-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sa-map-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sa-counties {
    padding-bottom: 48px;
  }

  .sa-links-section {
    padding-bottom: 60px;
  }

  .county-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .sa-map-card {
    padding: 24px;
  }

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