*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --honey: #F5A623;
  --honey-light: #FFF3DC;
  --honey-dark: #D4891A;
  --forest: #2D6A4F;
  --forest-light: #40916C;
  --forest-pale: #E8F5EE;
  --sky: #4EAEE3;
  --sky-light: #E3F3FC;
  --coral: #EF6461;
  --coral-light: #FDE8E7;
  --lavender: #8B7EC8;
  --lavender-light: #EDEAFC;
  --sand: #FAF7F2;
  --cream: #FFFDF8;
  --bark: #3D2C1E;
  --bark-soft: #5C4A3A;
  --muted: #8A7F72;
  --border: #E8E2D8;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-soft: 0 2px 16px rgba(61,44,30,0.06);
  --shadow-md: 0 4px 24px rgba(61,44,30,0.09);
  --shadow-lg: 0 8px 40px rgba(61,44,30,0.12);
  --font-display: 'Baloo 2', cursive;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--bark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,248,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav#nav.scrolled { box-shadow: var(--shadow-soft); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 26px;
  color: var(--forest); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-icon {
  width: 34px; height: 34px; background: var(--honey);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transform: rotate(-4deg);
  box-shadow: 0 2px 8px rgba(245,166,35,0.3);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--bark-soft);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links form.button_to { display: inline; }
.nav-links .btn-nav {
  background: var(--forest); color: #FFFFFF;
  padding: 9px 20px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(45,106,79,0.2);
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.nav-links .btn-nav:hover { background: var(--forest-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,106,79,0.25); color: #FFFFFF; }

.hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, rgba(245,166,35,0) 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--forest-pale);
  color: var(--forest); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease-out;
}
.hero-badge::before { content: '\1F43B'; font-size: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800; line-height: 1.1;
  color: var(--bark);
  max-width: 740px; margin: 0 auto 20px;
  animation: fadeDown 0.6s ease-out 0.1s both;
}
.hero h1 span { color: var(--forest); position: relative; }
.hero h1 span::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px; background: var(--honey-light);
  border-radius: 4px; z-index: -1;
}
.hero p {
  font-size: 19px; color: var(--muted); line-height: 1.6;
  max-width: 560px; margin: 0 auto 40px;
  animation: fadeDown 0.6s ease-out 0.2s both;
}

.search-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  padding: 8px;
  display: flex; gap: 6px;
  animation: fadeUp 0.7s ease-out 0.35s both;
  position: relative;
  z-index: 200;
}
.search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--sand);
  border: 2px solid transparent;
  transition: all 0.25s;
  cursor: text;
}
.search-field:focus-within {
  border-color: var(--honey);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.search-field svg { flex-shrink: 0; color: var(--muted); }
.search-field input {
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 16px; color: var(--bark);
  width: 100%;
}
.search-field input::placeholder { color: var(--muted); }
.search-field-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.search-btn {
  background: var(--honey);
  color: #FFFFFF; border: none; cursor: pointer;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.25s; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(245,166,35,0.3);
}
.search-btn:hover { background: var(--honey-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.35); }

.age-pills {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 20px; flex-wrap: wrap;
  animation: fadeUp 0.6s ease-out 0.5s both;
}
.age-pill {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--bark-soft);
  cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.age-pill:hover { border-color: var(--honey); color: var(--honey-dark); background: var(--honey-light); }
.age-pill.active { background: var(--honey); border-color: var(--honey); color: #FFFFFF; }

.stats-strip {
  display: flex; justify-content: center; gap: 48px;
  padding: 48px 24px 0;
  animation: fadeUp 0.6s ease-out 0.6s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; color: var(--forest);
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

.categories { padding: 80px 24px; }
.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-tag {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--honey-dark);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; color: var(--bark);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none; color: var(--bark);
}
.cat-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
  transition: transform 0.25s;
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-3deg); }
.cat-name { font-weight: 700; font-size: 15px; }
.cat-count { font-size: 12px; color: var(--muted); margin-top: 2px; }

.cat-swimming .cat-icon { background: var(--sky-light); }
.cat-dance .cat-icon { background: var(--coral-light); }
.cat-martial .cat-icon { background: var(--honey-light); }
.cat-music .cat-icon { background: var(--lavender-light); }
.cat-art .cat-icon { background: #FDE8EF; }
.cat-stem .cat-icon { background: var(--forest-pale); }
.cat-gym .cat-icon { background: #FFF0E0; }
.cat-sports .cat-icon { background: var(--sky-light); }
.cat-theater .cat-icon { background: var(--lavender-light); }
.cat-camps .cat-icon { background: var(--honey-light); }

.how-it-works {
  padding: 80px 24px;
  background: var(--sand);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.step {
  text-align: center; padding: 32px 20px;
  position: relative;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--honey);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 3px 12px rgba(245,166,35,0.25);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: var(--muted); line-height: 1.55; }

.cities { padding: 80px 24px; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  max-width: 900px; margin: 0 auto;
}
.city-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; color: var(--bark);
}
.city-card:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-soft);
}
.city-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--forest-light);
  flex-shrink: 0;
}
.city-name { font-weight: 600; font-size: 15px; }
.city-count { font-size: 12px; color: var(--muted); margin-left: auto; white-space: nowrap; }

.provider-cta {
  padding: 80px 24px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.provider-cta::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
}
.provider-cta::after {
  content: '';
  position: absolute; bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.provider-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.provider-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800; color: #FFFFFF;
  margin-bottom: 16px;
}
.provider-text p {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 28px;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--honey);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 3px 14px rgba(245,166,35,0.3);
}
.btn-cta:hover { background: var(--honey-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.35); }

.pricing-cards { display: flex; flex-direction: column; gap: 12px; }
.pricing-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(8px);
}
.pricing-mini-name { color: #FFFFFF; font-weight: 600; font-size: 15px; }
.pricing-mini-desc { color: rgba(255,255,255,0.55); font-size: 13px; }
.pricing-mini-price {
  font-family: var(--font-display);
  font-weight: 700; color: var(--honey);
  font-size: 18px;
}
.pricing-mini.featured {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.3);
}

.value-props {
  padding: 80px 24px;
}
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.value-card:nth-child(1) .value-icon { background: var(--sky-light); }
.value-card:nth-child(2) .value-icon { background: var(--honey-light); }
.value-card:nth-child(3) .value-icon { background: var(--coral-light); }
.value-card:nth-child(4) .value-icon { background: var(--forest-pale); }
.value-card:nth-child(5) .value-icon { background: var(--lavender-light); }
.value-card:nth-child(6) .value-icon { background: #FDE8EF; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

main { flex: 1; }
footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--sand);
  margin-top: auto;
}
.footer-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px;
  color: var(--forest); text-decoration: none;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--bark); }
.footer-copy { font-size: 13px; color: var(--muted); width: 100%; text-align: center; margin-top: 16px; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Listing Hero ── */
.listing-hero {
  padding: 120px 24px 40px;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}
.listing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--bark);
  margin-bottom: 8px;
}
.listing-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── Breadcrumbs ── */
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumbs a { color: var(--forest); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ── Listings ── */
.listings { padding: 40px 24px 80px; }

/* ── Provider Grid ── */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px; margin-top: 24px;
}

/* ── Provider Card ── */
.provider-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  text-decoration: none; color: var(--bark);
  transition: all 0.25s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.provider-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.provider-card-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.provider-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.provider-card-address { font-size: 13px; color: var(--muted); }
.provider-card-footer {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
}

/* ── Tags ── */
.tag, .tag-sm {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  background: var(--sand); color: var(--bark-soft);
}
.tag-sm { font-size: 12px; padding: 3px 8px; border-radius: 6px; }
.tag-age { background: var(--sky-light); color: var(--sky); }

/* ── Rating ── */
.rating-sm { font-size: 13px; font-weight: 600; color: var(--honey-dark); }
.rating-badge { text-align: right; }
.rating-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--honey); }
.rating-stars { display: block; color: var(--honey); font-size: 16px; letter-spacing: 2px; }
.rating-count { font-size: 13px; color: var(--muted); }

/* ── Age Badge ── */
.age-badge { font-size: 12px; font-weight: 600; padding: 3px 8px; border-radius: 6px; background: var(--forest-pale); color: var(--forest); }
.age-badge-unknown { background: var(--sand); color: var(--muted); }

/* ── Price Badge ── */
.price-badge { font-size: 13px; font-weight: 700; color: var(--forest); }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { font-size: 16px; color: var(--muted); }
.empty-state a { color: var(--forest); font-weight: 600; }

/* ── Section Subheader ── */
.section-subheader { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-top: 48px; margin-bottom: 8px; }
.text-muted { font-size: 14px; color: var(--muted); }

/* ── Category Links Grid (city page) ── */
.category-links-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px; padding: 40px 0 80px;
}
.category-link-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  text-decoration: none; color: var(--bark); transition: all 0.2s;
}
.category-link-card:hover { border-color: var(--forest); box-shadow: var(--shadow-soft); }
.cat-icon-sm { font-size: 24px; }
.cat-link-name { font-weight: 600; font-size: 15px; flex: 1; }
.cat-link-count { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ── Provider Profile ── */
.provider-hero { padding: 120px 24px 40px; background: var(--sand); border-bottom: 1px solid var(--border); }
.provider-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.provider-header h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--bark); margin-bottom: 12px; }
.provider-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.provider-body { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 40px 24px 80px; align-items: start; }
.provider-main { min-width: 0; }
.provider-section { margin-bottom: 32px; }
.provider-section h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.provider-section p { font-size: 15px; line-height: 1.65; color: var(--bark-soft); }
.age-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Claim Banner ── */
.claim-banner { background: var(--honey-light); border: 1.5px solid var(--honey); border-radius: var(--radius); padding: 24px; margin-top: 32px; }
.claim-banner h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.claim-banner p { font-size: 14px; color: var(--bark-soft); margin-bottom: 14px; }
.btn-claim { display: inline-block; padding: 10px 20px; background: var(--honey); color: #FFFFFF; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.2s; }
.btn-claim:hover { background: var(--honey-dark); }

/* ── Contact Card (sidebar) ── */
.provider-sidebar { position: sticky; top: 80px; }
.contact-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.contact-card p { font-size: 14px; color: var(--bark-soft); margin-bottom: 12px; line-height: 1.5; }
.contact-card a { color: var(--forest); }
.contact-card a.btn-website,
.contact-card a.btn-website:hover,
.contact-card a.btn-website:visited { display: block; text-align: center; padding: 12px 20px; background: var(--forest); color: #FFFFFF; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; margin-top: 16px; }
.contact-card a.btn-website:hover { background: var(--forest-light); }

/* ── Mini Map ── */
.mini-map-wrapper { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; margin-top: 12px; border: 1.5px solid var(--border); transition: border-color 0.2s; }
.mini-map-wrapper:hover { border-color: var(--forest); }
.mini-map { width: 100%; height: 180px; }
.mini-map-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.4)); padding: 12px; display: flex; justify-content: flex-end; }
.mini-map-expand { font-size: 12px; font-weight: 600; color: white; background: rgba(0,0,0,0.3); padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(4px); }

/* ── Map Modal ── */
.map-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.map-modal-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.map-modal-content { position: relative; background: var(--white); border-radius: var(--radius-lg); width: 90vw; max-width: 800px; max-height: 85vh; overflow: hidden; box-shadow: var(--shadow-lg); animation: modalIn 0.25s ease-out; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.map-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); font-size: 18px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: all 0.15s; box-shadow: var(--shadow-soft); }
.map-modal-close:hover { background: var(--sand); }
.map-modal-title { padding: 20px 24px 4px; font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.map-modal-address { padding: 0 24px 12px; font-size: 14px; color: var(--muted); }
.modal-map { width: 100%; height: 450px; }

/* ── Nearby Section ── */
.nearby-section { padding-bottom: 80px; }
.nearby-section h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; }

/* ── Search Dropdown ── */
.search-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); max-height: 320px; overflow-y: auto; z-index: 200; }
.search-loading { display: flex; align-items: center; justify-content: center; padding: 16px; gap: 8px; color: var(--muted); font-size: 14px; }
.search-spinner { width: 18px; height: 18px; border: 2px solid var(--border); border-top-color: var(--honey); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.search-result { display: flex; align-items: center; gap: 10px; padding: 12px 16px; cursor: pointer; transition: background 0.15s; }
.search-result:hover { background: var(--sand); }
.search-result-icon { font-size: 18px; width: 28px; text-align: center; }
.search-result-name { flex: 1; font-weight: 500; font-size: 15px; }
.search-result-type { font-size: 11px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.5px; }

/* ── Filters Bar ── */
.filters-bar { display: flex; align-items: end; gap: 16px; padding: 16px 0; margin-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 12px; font-weight: 600; color: var(--muted); }
.filter-group select { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; background: var(--white); color: var(--bark); cursor: pointer; transition: border-color 0.2s; }
.filter-group select:focus { border-color: var(--forest); outline: none; }
.filter-right { margin-left: auto; display: flex; align-items: center; gap: 12px; padding-bottom: 8px; }
.filter-count { font-size: 14px; color: var(--muted); }

/* ── Loading ── */
.loading-state { text-align: center; padding: 48px; color: var(--muted); font-size: 15px; }

/* ── Map Toggle ── */
.map-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--bark-soft); cursor: pointer; transition: all 0.2s; }
.map-toggle:hover { border-color: var(--forest); color: var(--forest); }
.map-wrapper { margin-bottom: 24px; }

/* ── Map ── */
.custom-pin { background: none !important; border: none !important; }

/* ── Static Pages ── */
.static-page { max-width: 720px; padding: 120px 24px 80px; }
.static-page h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 44px); font-weight: 800; margin-bottom: 16px; }
.static-page h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-top: 36px; margin-bottom: 12px; }
.static-page p { font-size: 16px; line-height: 1.7; color: var(--bark-soft); margin-bottom: 16px; }
.static-page .lead { font-size: 19px; color: var(--bark); margin-bottom: 32px; }
.static-page a { color: var(--forest); }
.static-page a:hover { color: var(--forest-light); }
.static-page a.city-card { color: var(--bark); }
.static-page a.city-card:hover { color: var(--bark); }

.legal ul { margin: 8px 0 16px 24px; color: var(--bark-soft); font-size: 16px; line-height: 1.7; }
.legal-date { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.provider-hero-block { text-align: center; margin-bottom: 48px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0 40px; }
.benefit { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; }
.benefit h3 { font-size: 17px; margin-bottom: 8px; }
.benefit p { font-size: 14px; margin-bottom: 0; }

.steps-list { margin: 16px 0 32px 20px; color: var(--bark-soft); font-size: 16px; line-height: 1.7; }
.steps-list li { margin-bottom: 12px; }
.steps-list strong { color: var(--bark); }

.check-list { margin: 12px 0 32px 20px; color: var(--bark-soft); font-size: 16px; line-height: 1.8; list-style: none; }
.check-list li::before { content: "✓ "; color: var(--forest); font-weight: 700; }

.cta-block { text-align: center; background: var(--forest-pale); border-radius: var(--radius-lg); padding: 40px; margin-top: 48px; }
.cta-block h2 { margin-top: 0; }

.contact-options { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
.contact-card-block { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-card-block h3 { font-size: 17px; margin-bottom: 8px; }
.contact-card-block p { margin-bottom: 0; }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--bark); }
.form-input {
  padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.2s; width: 100%; box-sizing: border-box;
}
.form-input:focus { border-color: var(--forest); outline: none; box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.btn-primary {
  display: inline-block; background: var(--forest); color: #FFFFFF;
  padding: 12px 24px; border: none; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-primary:hover { background: var(--forest-light); color: #FFFFFF; }
.btn-secondary {
  display: inline-block; background: var(--white); color: var(--forest);
  border: 1.5px solid var(--forest); padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; cursor: pointer; text-decoration: none;
}
.btn-secondary:hover { background: var(--forest); color: #FFFFFF; }

/* ── Profile Page ── */
.children-list { display: flex; flex-direction: column; gap: 8px; }
.child-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.child-name { font-weight: 600; }
.child-age { color: var(--bark-soft); font-size: 14px; }
.child-group { font-size: 12px; background: var(--sand); padding: 2px 8px; border-radius: 4px; color: var(--bark-soft); }
.child-remove { background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer; margin-left: auto; }
.child-remove:hover { color: #B23A39; }
.child-inline-form { display: flex; gap: 8px; align-items: end; margin-top: 12px; flex-wrap: wrap; }
.child-inline-form .form-input { padding: 8px 12px; font-size: 14px; width: auto; }
.btn-secondary-sm {
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  background: var(--white); border: 1.5px solid var(--forest); color: var(--forest); cursor: pointer;
}
.btn-secondary-sm:hover { background: var(--forest); color: white; }
.profile-settings { margin-top: 12px; }
.profile-settings .form-group { margin-bottom: 16px; }
.nav-admin { font-size: 12px; color: var(--muted) !important; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links a:not(.btn-nav):not([href*="profile"]) { display: none; }
  .search-box { flex-direction: column; }
  .search-field-divider { display: none; }
  .search-btn { width: 100%; justify-content: center; }
  .search-dropdown { left: 0; right: 0; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .provider-inner { grid-template-columns: 1fr; gap: 36px; }
  .value-grid { grid-template-columns: 1fr; }
  .stats-strip { gap: 28px; flex-wrap: wrap; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 120px 24px 60px; }
  .provider-body { grid-template-columns: 1fr; }
  .provider-header { flex-direction: column; }
  .provider-grid { grid-template-columns: 1fr; }
  .category-links-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .map-modal-content { width: 95vw; max-height: 90vh; }
  .modal-map { height: 350px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: 1fr; }
  .age-pills { gap: 6px; }
  .category-links-grid { grid-template-columns: 1fr; }
}

/* Suggest banner */
.suggest-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sand);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
}
.suggest-banner p { font-size: 15px; color: var(--bark-soft); margin: 0; }

/* Form extras */
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-hint { display: block; font-size: 12px; color: var(--bark-soft); margin-top: 4px; }
.form-errors {
  background: #FDE8E7;
  color: #B23A39;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .suggest-banner { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { flex-direction: column; gap: 0; }
}
