/* ============================================================
   NATIONAL THERAPY CENTER — Bounce-Inspired Playful Design
   ============================================================ */

/* --- Variables --- */
:root {
  --red: #c41e3a;
  --red-dark: #a01830;
  --navy: #1a2b4a;
  --navy-light: #2c3e5a;
  --cream: #f7f5ee;
  --sage: #e8eddf;
  --sage-light: #eef2e6;
  --white: #ffffff;
  --pink: #f8bbd0;
  --pink-light: #fce4ec;
  --green: #c8e6c9;
  --green-light: #e8f5e9;
  --blue: #bbdefb;
  --blue-light: #e3f2fd;
  --yellow-light: #fff9c4;
  --text: #333;
  --text-light: #555;
  --text-muted: #777;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --font-sketch: 'Fredericka the Great', cursive;
  --font-hand: 'Caveat', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, ol { list-style: none; }

/* --- Containers --- */
.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.25; }
h1 { font-family: var(--font-sketch); color: var(--navy); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; }
.sketch-heading { font-family: var(--font-sketch); color: var(--navy); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; }
.sketch-heading.center { text-align: center; }
h3 { font-family: var(--font-sketch); color: var(--navy); font-size: 1.3rem; font-weight: 400; }
.handwritten { font-family: var(--font-hand); color: var(--red); font-size: 1.15em; }
.strikethrough { text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; opacity: 0.5; }

.section-label {
  font-family: var(--font-hand);
  color: var(--red);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}
.section-label.center { text-align: center; }

p { margin-bottom: 1rem; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy);
  color: white;
  padding: 10px 0;
  font-size: 0.85rem;
  text-align: center;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.top-bar a { color: white; }
.top-bar a:hover { color: var(--pink); }
.top-bar-divider { opacity: 0.4; }

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img { height: 50px; }
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 10px 28px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-red {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.25);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--red);
  border-color: white;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.link-arrow {
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { gap: 8px; }

/* ========== HERO ========== */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-accent {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.hero-body {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-enroll-note {
  font-family: var(--font-hand);
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 14px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
}
/* Full-size hero image variant */
.hero-image-full {
  min-height: 500px;
}
.hero-photo-full {
  max-width: 100%;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

/* Decorative SVG elements */
.decor { position: absolute; z-index: 0; }
.decor-star-outline { width: 80px; top: 20%; left: 5%; }
.decor-sun { width: 100px; top: 5%; right: 5%; }
.decor-balloon { width: 100px; top: -10px; left: -30px; z-index: 1; }

/* ========== PASTEL BLOBS ========== */
.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.blob-pink { width: 300px; height: 300px; background: var(--pink-light); top: 10%; right: 5%; }
.blob-green { width: 250px; height: 250px; background: var(--green-light); bottom: 5%; left: 0; }
.blob-blue { width: 200px; height: 200px; background: var(--blue-light); top: 50%; right: 35%; }
.blob-pink-lg { width: 350px; height: 350px; background: var(--pink-light); top: -10%; left: 10%; }
.blob-green-lg { width: 280px; height: 280px; background: var(--green-light); bottom: -15%; right: 5%; }
.blob-blue-lg { width: 300px; height: 300px; background: var(--blue-light); top: 5%; right: -5%; }
.blob-pink-sm { width: 150px; height: 150px; background: var(--pink-light); bottom: 10%; left: -5%; }

/* ========== HIGHLIGHTS BAR ========== */
.highlights-bar {
  background: var(--sage-light);
  padding: 32px 0;
}
.highlights-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.highlight-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.highlight-number {
  font-family: var(--font-sketch);
  color: var(--navy);
  font-size: 1.4rem;
}
.highlight-label {
  color: var(--text-light);
  font-size: 0.9rem;
}
.highlight-link {
  color: var(--red);
  font-weight: 600;
}
.highlight-link:hover {
  text-decoration: underline;
}
.highlight-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}

/* ========== INSURANCE BAR (inner page) ========== */
.insurance-bar {
  background: var(--white);
  padding: 60px 0;
  text-align: center;
}
.insurance-bar-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 30px;
}
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.ins-logo {
  background: var(--cream);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.insurance-bar-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

/* ========== TWO-COL LAYOUT ========== */
.two-col-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reverse-cols .two-col-text-side { order: 1; }
.reverse-cols .two-col-image-side { order: 2; }

.two-col-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}
.section-photo {
  position: relative;
  z-index: 2;
  max-width: 380px;
  width: 100%;
}
.photo-round { border-radius: 50%; }

.two-col-text-side p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ========== SECTIONS ========== */
.section-why {
  background: var(--cream);
  padding: 100px 0;
}
.section-steps {
  background: var(--white);
  padding: 80px 0;
}
.section-about-home {
  background: var(--cream);
  padding: 80px 0;
}
.section-services-home {
  background: var(--white);
  padding: 80px 0;
}
.section-family {
  background: var(--cream);
  padding: 80px 0;
}
.section-testimonials {
  background: var(--white);
  padding: 80px 0;
}
.section-clinics {
  background: var(--cream);
  padding: 60px 0;
}
.section-careers-home {
  background: var(--sage-light);
  padding: 60px 0;
}

/* ========== CHALLENGE TAGS ========== */
.challenge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  background: var(--sage-light);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all 0.3s;
}
.tag:hover {
  background: var(--navy);
  color: white;
}

/* ========== STEPS GRID ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-4px); }
.step-pink { background: var(--pink-light); }
.step-green { background: var(--green-light); }
.step-blue { background: var(--blue-light); }
.step-yellow { background: var(--yellow-light); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sketch);
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* ========== SERVICE OPTIONS ========== */
.service-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-option-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.service-option-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.service-option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-option-card h3 { margin-bottom: 10px; }
.service-option-card p { color: var(--text-light); font-size: 0.95rem; }

/* ========== FAMILY GRID ========== */
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.family-card {
  text-align: center;
  padding: 20px;
}
.family-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}
.family-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-card h3 { margin-bottom: 10px; }
.family-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ========== TESTIMONIALS (Bounce-style) ========== */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.testimonial-card-bounce {
  text-align: center;
}
.testimonial-img {
  max-width: 280px;
  margin: 0 auto;
}
.testimonial-img img { width: 100%; }
.testimonial-bubble {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.testimonial-bubble p {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
}

/* ========== CLINIC TAGS ========== */
.clinic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}
.clinic-tag {
  background: var(--white);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.clinic-tag:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

/* ========== CAREERS PERKS ========== */
.careers-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.perk-badge {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}

/* ========== CTA FINAL SECTION ========== */
.section-cta-final {
  background: var(--red);
  padding: 60px 0;
}
.cta-final-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.cta-final-card {
  background: var(--white);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  align-items: center;
}
.cta-final-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cta-final-text {
  padding: 40px;
  text-align: center;
}
.cta-final-text h2 {
  font-family: var(--font-sketch);
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 24px;
}

/* ========== FOOTER ========== */
.footer-simple {
  background: var(--cream);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-simple a { color: var(--text-muted); }
.footer-simple a:hover { color: var(--red); }

/* ========== SERVICES PAGE — LARGE TWO-COL SECTIONS ========== */
.svc-section {
  padding: 80px 0;
  overflow: hidden;
}
.svc-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-row-reverse { direction: rtl; }
.svc-row-reverse > * { direction: ltr; }

.svc-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.svc-photo {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: 100%;
}
.svc-photo-round { border-radius: 50%; }

.svc-text-side h2 { margin-bottom: 16px; }
.svc-text-side p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

/* Specialty cards grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.specialty-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.specialty-icon { font-size: 2.2rem; margin-bottom: 14px; }
.specialty-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.specialty-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* Why choose us grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.why-item {
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.why-item:hover { transform: translateY(-4px); }
.why-num {
  font-family: var(--font-sketch);
  font-size: 1.6rem;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 8px;
}
.why-item h3 { margin-bottom: 8px; font-size: 1.15rem; }
.why-item p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0; }

@media (max-width: 992px) {
  .svc-row { grid-template-columns: 1fr; gap: 40px; }
  .svc-row-reverse { direction: ltr; }
  .svc-image-side { min-height: 280px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .specialty-grid { grid-template-columns: 1fr; }
}

/* ========== INSURANCE LOGO GRID ========== */
.ins-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ins-logo-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ins-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.ins-logo-card img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .ins-logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .ins-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .ins-logo-card { padding: 16px 12px; min-height: 80px; }
  .ins-logo-card img { max-width: 120px; max-height: 55px; }
}

/* ========== LOCATION CARDS ========== */
.loc-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.loc-card-body {
  padding: 28px 28px 32px;
}
.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.loc-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .loc-cards-grid { grid-template-columns: 1fr !important; }
}

/* ========== COME TO YOU CARDS ========== */
.cty-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.cty-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cty-pink { background: var(--pink-light); }
.cty-green { background: var(--green-light); }
.cty-blue { background: var(--blue-light); }
.cty-card h3 {
  font-family: var(--font-sketch);
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cty-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.cty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .come-to-you-grid { grid-template-columns: 1fr !important; }
}

/* ========== INNER PAGE HEADER ========== */
.page-header {
  background: var(--cream);
  padding: 60px 0 40px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-sketch);
  color: var(--navy);
  margin-bottom: 10px;
}
.page-header p {
  font-family: var(--font-hand);
  color: var(--text-light);
  font-size: 1.2rem;
}

/* ========== INNER PAGE SECTIONS ========== */
.inner-section {
  padding: 60px 0;
}
.inner-section-alt {
  padding: 60px 0;
  background: var(--white);
}

/* Service cards for inner pages */
.services-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  border-top: 4px solid transparent;
}
.service-card-inner:hover {
  transform: translateY(-4px);
  border-top-color: var(--red);
}
.service-card-inner .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.service-card-inner h3 { margin-bottom: 10px; }
.service-card-inner p { color: var(--text-light); font-size: 0.95rem; }

/* Location cards */
.locations-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.location-card-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--red);
  transition: transform 0.3s;
}
.location-card-inner:hover { transform: translateY(-4px); }
.location-card-inner h3 { color: var(--red); margin-bottom: 10px; }
.location-card-inner p { color: var(--text-light); margin-bottom: 4px; font-size: 0.95rem; }

/* FAQ */
.faq-list-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item-inner {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q:hover { color: var(--red); }
.faq-q .toggle { color: var(--red); font-size: 1.4rem; transition: transform 0.3s; }
.faq-item-inner.active .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-a-inner { padding: 0 24px 18px; color: var(--text-light); }
.faq-item-inner.active .faq-a { max-height: 300px; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Insurance grid */
.insurance-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.insurance-badge {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.insurance-badge:hover { transform: translateY(-2px); }

/* Perks grid */
.perks-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.perk-card-inner {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.perk-card-inner:hover { transform: translateY(-4px); }
.perk-card-inner .perk-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.perk-card-inner h4 { font-family: var(--font-sketch); color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.perk-card-inner p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* Process steps for inner pages */
.process-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.process-step-inner {
  text-align: center;
  padding: 24px;
}
.process-step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sketch);
  font-size: 1.3rem;
  margin: 0 auto 14px;
}
.process-step-inner h3 { margin-bottom: 8px; }
.process-step-inner p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* CTA banner for inner pages */
.cta-banner-inner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -120px; right: -100px;
}
.cta-banner-inner h2 {
  font-family: var(--font-sketch);
  color: white;
  margin-bottom: 12px;
  font-size: 2rem;
}
.cta-banner-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 24px;
}

/* Inner page footer (full) */
.footer-full {
  background: var(--navy);
  color: white;
  padding: 50px 0 0;
}
.footer-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-full h4 {
  color: white;
  font-family: var(--font-sketch);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-full p, .footer-full a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-full a:hover { color: var(--pink); }
.footer-links-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 30px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .two-col-layout { grid-template-columns: 1fr; gap: 40px; }
  .reverse-cols .two-col-text-side { order: 0; }
  .reverse-cols .two-col-image-side { order: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .service-options-grid { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .cta-final-card { grid-template-columns: 1fr; }
  .cta-final-img { height: 200px; }
  .footer-grid-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    gap: 14px;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .top-bar-inner { justify-content: center; font-size: 0.8rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .insurance-bar-ctas { flex-direction: column; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 50px 0 40px; }
  .btn-pill { padding: 12px 24px; font-size: 0.9rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
