/* ============================================
   World of Wonder Childcare Center - Global Styles
   Fonts: Quicksand (matches logo rounded sans-serif)
   Colors derived from WOW logo
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
  --blue-primary: #5B86A5;
  --blue-dark: #3D6A8A;
  --blue-darker: #2C4F6B;
  --blue-light: #7FA3BE;
  --blue-pale: #E8F1F7;
  --teal-primary: #3A8E80;
  --teal-dark: #2D7268;
  --teal-light: #5BB5A3;
  --teal-pale: #E0F2EE;
  --green-lime: #9ACD32;
  --green-tree: #6BB5A0;
  --green-sage: #B8D8B0;
  --green-pale: #EDF5E8;
  --yellow-primary: #F5CE42;
  --yellow-warm: #E8A830;
  --brown-trunk: #8B7355;
  --text-dark: #2C3E50;
  --text-body: #4A5568;
  --text-muted: #718096;
  --text-light: #A0AEC0;
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFBFC;
  --bg-light: #F7F9FB;
  --border-light: #E2E8F0;
  --border-blue: rgba(91,134,165,0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  --font-main: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-primary); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus {
  top: 8px;
  color: #fff;
}

/* ============================================
   Sticky Header
   ============================================ */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: var(--text-dark);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--yellow-primary); }

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__social { display: flex; gap: 10px; align-items: center; }

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.top-bar__social a:hover { opacity: 1; }
.top-bar__social svg { width: 16px; height: 16px; fill: #fff; }

/* Header / Nav */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__logo { display: flex; align-items: center; gap: 10px; }
.site-header__logo img { height: 56px; width: auto; }

/* Navigation */
.main-nav { display: flex; align-items: center; }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav__item { position: relative; }

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--blue-primary);
  background: var(--blue-pale);
}

/* Dropdown arrow */
.main-nav__arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

/* Dropdown menu */
.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.main-nav__item:hover .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav__item:hover .main-nav__arrow {
  transform: rotate(180deg);
}

.main-nav__dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav__dropdown a:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--teal-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--teal-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--teal-pale) 50%, var(--green-pale) 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(154,205,50,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__content {
  flex: 1;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(58,142,128,0.1);
  color: var(--teal-primary);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--blue-darker);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero__feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-primary);
}

/* Hero Form */
.hero__form-wrapper {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.hero-form__title {
  font-size: 1.2rem;
  color: var(--blue-darker);
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-form__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(91,134,165,0.15);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group { flex: 1; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--blue-primary);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn--outline:hover {
  background: var(--blue-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--teal-primary);
}
.btn--white:hover {
  background: var(--bg-light);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-light);
}

.section--blue {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--bg-white) 100%);
}

.section--teal {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--bg-white) 100%);
}

.section--green {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--bg-white) 100%);
}

.section--dark {
  background: var(--text-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(58,142,128,0.1);
  color: var(--teal-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   Program Cards
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-align: center;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}

.program-card__image {
  height: 200px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--blue-primary);
  position: relative;
  overflow: hidden;
}

.program-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-white), transparent);
}

.program-card__body {
  padding: 24px;
}

.program-card__age {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal-pale);
  color: var(--teal-primary);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.program-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.program-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.program-card .btn { width: 100%; }

/* ============================================
   Features / Why WOW
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-primary);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-primary);
}

.feature-card__icon svg { width: 28px; height: 28px; }

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   Locations
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-card__map {
  height: 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-card__body {
  padding: 24px;
}

.location-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-darker);
  margin-bottom: 12px;
}

.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.location-card__detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-primary);
  margin-top: 2px;
}

.location-card .btn { margin-top: 16px; width: 100%; }

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--yellow-primary);
}

.testimonial-card__stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-primary);
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   Two-Column Content Layout
   ============================================ */
.content-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-split--reverse { flex-direction: row-reverse; }

.content-split__text { flex: 1; }
.content-split__media {
  flex: 0 0 480px;
  max-width: 480px;
}

.content-split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.content-split__image-placeholder {
  width: 100%;
  height: 360px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 1rem;
  font-weight: 600;
}

.content-split h2 { margin-bottom: 16px; }
.content-split p { font-size: 1rem; color: var(--text-body); }

.content-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.content-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-primary);
  margin-top: 2px;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--blue-primary); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--blue-primary);
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--teal-primary) 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 24px; }

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
  padding: 12px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.breadcrumbs__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs__list a { color: var(--text-muted); font-weight: 500; }
.breadcrumbs__list a:hover { color: var(--blue-primary); }
.breadcrumbs__sep { color: var(--text-light); }
.breadcrumbs__current { color: var(--text-dark); font-weight: 600; }

/* ============================================
   Interior Page Hero
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--teal-pale) 100%);
  padding: 50px 0 60px;
}

.page-hero h1 {
  color: var(--blue-darker);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 700px;
}

.page-hero--with-form .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-hero--with-form .page-hero__content { flex: 1; }
.page-hero--with-form .hero__form-wrapper { flex: 0 0 400px; }

/* ============================================
   Content Sections for interior pages
   ============================================ */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.prose p {
  font-size: 1rem;
  line-height: 1.8;
}

.prose ul, .prose ol {
  margin: 16px 0;
  padding-left: 24px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Anchor link sections */
.anchor-section {
  scroll-margin-top: 120px;
  padding: 40px 0;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.anchor-nav a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.anchor-nav a:hover {
  background: var(--blue-primary);
  color: #fff;
}

/* ============================================
   CEO Section / Team
   ============================================ */
.ceo-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.ceo-section__photo {
  flex: 0 0 280px;
  text-align: center;
}

.ceo-section__photo-placeholder {
  width: 240px;
  height: 300px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 1rem;
}

.ceo-section__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ceo-section__title {
  font-size: 0.88rem;
  color: var(--teal-primary);
  font-weight: 600;
}

.ceo-section__content { flex: 1; }

.ceo-section__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col__logo img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col__about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: #fff;
}

.footer-social a:hover {
  background: var(--teal-primary);
  transform: translateY(-2px);
}

.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--yellow-primary); }

.footer-col__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.footer-col__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-light);
  margin-top: 2px;
}

.footer-col__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-col__contact-item a:hover { color: var(--yellow-primary); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--yellow-primary); }

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { flex-direction: column; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__features { justify-content: center; }
  .hero__form-wrapper { flex: none; max-width: 480px; width: 100%; }
  .content-split { flex-direction: column; gap: 40px; }
  .content-split--reverse { flex-direction: column; }
  .content-split__media { flex: none; max-width: 100%; }
  .page-hero--with-form .container { flex-direction: column; }
  .page-hero--with-form .hero__form-wrapper { flex: none; max-width: 480px; width: 100%; }
  .ceo-section { flex-direction: column; align-items: center; text-align: center; }
  .ceo-section__photo { flex: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active { right: 0; }

  .main-nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .main-nav__item { width: 100%; }

  .main-nav__link {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .main-nav__item.dropdown-open .main-nav__dropdown { display: block; }

  .main-nav__dropdown a {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .header-cta--desktop { display: none; }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.active { display: block; }

  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 32px; }
  .form-row { flex-direction: column; gap: 0; }
  .hero { padding: 40px 0 50px; }
  .section { padding: 50px 0; }
  .hero-form { padding: 24px; }
  .cta-banner__buttons { flex-direction: column; align-items: center; }
  .anchor-nav { flex-direction: column; }
}

/* Fix: hide nav close button on desktop */
.nav-close { display: none; }
@media (max-width: 768px) {
  .nav-close { display: block; }
}

/* Footer improvements */
.footer-col--brand {
  padding-right: 20px;
}
.footer-col__logo {
  height: auto;
  max-height: 60px;
  width: auto;
  margin-bottom: 16px;
}
.footer-contact-list {
  margin-top: 0;
}
.footer-col h4 + .footer-contact-list {
  margin-top: 0;
}
/* Location card detail layout fix */
.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.location-card__detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
/* Location card map iframe fix */
.location-card__map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
