/* ═══════ SERVICE AREA HERO HEADER ═══════ */
.sa-hero-header {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 50px;
}
.sa-hero-header .section-label {
  margin-bottom: 12px;
}
.sa-hero-header .section-heading {
  margin-bottom: 20px;
}
.sa-hero-header .section-sub {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--navy);
}
.sa-hero-header .btn-plum {
  margin: 0 auto;
}

/* ═══════ SERVICE AREA JOURNEY MAP ═══════ */
.sa-journey {
  padding: 60px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.sa-journey::before,
.sa-journey::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sa-journey::before {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(26,140,140,0.06) 0%, transparent 70%);
}
.sa-journey::after {
  width: 500px; height: 500px;
  bottom: -150px; right: -150px;
  background: radial-gradient(circle, rgba(142,91,122,0.06) 0%, transparent 70%);
}
.sa-journey-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 2;
}

/* ═══════ HIGHWAY MAP CONTAINER ═══════ */
.sa-highway-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Background SVG highway lines */
.sa-highway-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ═══════ COUNTY STOPS ═══════ */
.sa-stop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 0;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 50px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.sa-journey.in-view .sa-stop {
  opacity: 1;
  transform: translateY(0);
}

/* Text-side padding toward the highway center */
.sa-stop:nth-child(odd) .sa-stop-text {
  padding-left: 80px;
}
.sa-stop:nth-child(even) .sa-stop-text {
  padding-right: 80px;
}

/* Alternate layout: even stops flip */
.sa-stop:nth-child(even) {
  direction: rtl;
}
.sa-stop:nth-child(even) > * {
  direction: ltr;
}
.sa-stop:nth-child(even) .sa-stop-text {
  text-align: right;
}

/* Kitsap special: slight offset left to show it's on the branch */
.sa-stop-kitsap {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 150px;
}

/* ═══════ ILLUSTRATIONS ═══════ */
.sa-stop-illust {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sa-stop-illust svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}
.sa-journey.in-view .sa-stop-illust svg {
  animation: gentleBreathe 5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
@keyframes gentleBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

/* Blobs */
.sa-stop .journey-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  transition-delay: var(--delay, 0s);
  filter: blur(2px);
}
.sa-journey.in-view .journey-blob {
  opacity: 1;
}

/* ═══════ TEXT CONTENT ═══════ */
.sa-stop-text {
  padding: 10px 0;
}
.sa-stop-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(142, 91, 122, 0.1);
  color: var(--plum);
  margin-bottom: 14px;
}
.sa-stop-badge-home {
  background: rgba(91, 122, 94, 0.12);
  color: #5B7A5E;
}
.sa-stop-badge-teal {
  background: rgba(26, 140, 140, 0.1);
  color: var(--teal);
}
.sa-stop-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.sa-stop-title em {
  font-style: italic;
  color: #5B7A5E;
}
.sa-stop-desc {
  font-size: calc(0.95rem + 2px);
  color: var(--navy);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 14px;
}
.sa-stop-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.sa-stop:nth-child(even) .sa-stop-cities {
  justify-content: flex-end;
}
.sa-city-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: rgba(15, 43, 69, 0.04);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.sa-city-tag:hover {
  background: rgba(142, 91, 122, 0.08);
  color: var(--navy);
}

/* Cars are animated via SVG animateMotion — no CSS keyframes needed */

/* ═══════ CTA SECTION ═══════ */
.sa-cta {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  padding: 80px 0 100px;
  text-align: center;
}
.sa-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.sa-cta .section-heading {
  margin-bottom: 16px;
}
.sa-cta p {
  font-size: calc(0.95rem + 2px);
  color: var(--navy);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 28px;
}
.sa-cta .btn-plum {
  white-space: nowrap;
}
.sa-cta .btn-plum svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: white;
  stroke: white;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 960px) {
  .sa-journey { padding: 60px 0 80px; }
  .sa-stop {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 30px 0;
  }
  .sa-stop:nth-child(even) {
    direction: ltr;
  }
  .sa-stop:nth-child(even) .sa-stop-text {
    text-align: center;
  }
  .sa-stop-kitsap {
    max-width: 100%;
    margin: 0 auto;
  }
  .sa-stop-text { text-align: center; padding: 0 !important; }
  .sa-stop-cities { justify-content: center !important; }
  .sa-stop-illust svg { max-width: 260px; }
  .sa-highway-svg { display: none; }
  .sa-stop .journey-blob { display: none; }
}
@media (max-width: 600px) {
  .sa-stop-illust svg { max-width: 220px; }
  .sa-cta { padding: 60px 0 80px; }
}
