/* ── GEO PAGE STYLES ── */

/* Breadcrumb */
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }

/* Geo Hero — aligned with treatment heroes: less gap under fixed nav; desktop copy + image */
.geo-hero {
  background: var(--navy);
  padding-top: 118px;
  position: relative;
  overflow: hidden;
}
.geo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(13,143,143,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.geo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
  padding-top: 32px;
  padding-bottom: 48px;
}
.geo-hero-content { position: relative; z-index: 1; }
.geo-hero-content h1 { color: white; margin-bottom: 16px; }
.geo-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
.geo-sub strong { color: rgba(255,255,255,0.9); }
/* Shrink-wraps CTAs + pills so badges center under the Book / phone row (not the full text column) */
.geo-hero-cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0;
}
.geo-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.geo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.geo-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 60px;
}
/* Hero image sizing: scoped to main only — stack + secondary styled in style.css */

/* Why Grid */
.geo-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.geo-why-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s;
}
.geo-why-card:hover { border-color: var(--teal2); box-shadow: var(--shadow); transform: translateY(-3px); }
.geo-why-icon { margin-bottom: 14px; }
.geo-why-icon svg { stroke: var(--teal); }
.geo-why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.geo-why-card p { font-size: 0.875rem; }

/* Steps */
.geo-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.geo-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.geo-step:last-child { border-bottom: none; }
.geo-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.geo-step-body h3 { font-size: 1rem; margin-bottom: 6px; }
.geo-step-body p { font-size: 0.875rem; }

/* Clinic Info + Map */
.geo-clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.geo-clinic-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.geo-detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.geo-detail-row svg { stroke: var(--teal); flex-shrink: 0; margin-top: 2px; }
/* strong is block; <br> before span duplicated the line break — hide br and use tight margins */
.geo-detail-row br { display: none; }
.geo-detail-row strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.3;
}
.geo-detail-row span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.35;
}
.geo-detail-row a { color: var(--teal); font-weight: 600; }
.geo-map-wrap iframe { box-shadow: var(--shadow); }

/* Full-width exterior photo under map (Cedar Park, etc.) */
.geo-exterior-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 16px;
  display: block;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q span { font-size: 1.2rem; color: var(--teal); flex-shrink: 0; }
.faq-a {
  display: none;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .geo-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Keep horizontal padding: a 3-value padding shorthand (e.g. 24px 0 36px) zeroes
     left/right and overrides .container — text was flush to the screen edge. */
  .geo-hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 28px 36px;
    gap: 28px;
  }
  .geo-hero-img .hero-img-main {
    height: auto;
    max-height: 280px;
  }
  .geo-hero-img .hero-img-secondary {
    display: none;
  }
  .geo-why-grid { grid-template-columns: 1fr; }
  .geo-clinic-grid { grid-template-columns: 1fr; gap: 32px; }
  .geo-hero-cta-stack {
    margin-left: auto;
    margin-right: auto;
  }
  .geo-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .geo-ctas .btn-primary,
  .geo-ctas .btn-secondary {
    flex: 0 1 auto;
    width: auto;
    padding: 12px 22px;
    font-size: 1.02rem;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }
}

/* ── LOCATION PAGE STYLES ── */
.loc-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.loc-area-content p { margin-bottom: 8px; }
.loc-area-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.loc-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.loc-stat span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.loc-area-img {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loc-area-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.nearby-links a {
  padding: 10px 22px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 60px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  transition: all 0.2s;
}
.nearby-links a:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

@media (max-width: 768px) {
  .loc-area-grid { grid-template-columns: 1fr; gap: 32px; }
  .loc-area-img { display: none; }
  .loc-area-stats { gap: 16px; }
}
