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

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --blue:       #1A4FA0;
  --green:      #2E8B2E;
  --accent:     #5CB85C;
  --dark:       #0D1B2A;
  --white:      #FFFFFF;
  --gray:       #F8F9FA;
  --ink:        #1C1C1E;
  --muted:      #6B7280;
  --border:     rgba(26,79,160,0.12);
  --gradient:   linear-gradient(135deg, #1A4FA0 0%, #2E8B2E 100%);
  --gradient-r: linear-gradient(135deg, #2E8B2E 0%, #1A4FA0 100%);
  --shadow-sm:  0 2px 8px rgba(26,79,160,0.08);
  --shadow-md:  0 4px 24px rgba(26,79,160,0.12);
  --shadow-lg:  0 8px 40px rgba(26,79,160,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:      72px;
  --max-w:      1320px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
p { line-height: 1.7; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--gray { background: var(--gray); }
.section--dark {
  background: var(--dark);
  color: var(--white);
  position: relative;
}

/* Diagonal bottom edge on dark sections */
.section--dark.diagonal-bottom {
  padding-bottom: calc(clamp(4rem, 8vw, 7rem) + 60px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
.section--gray.diagonal-bottom {
  padding-bottom: calc(clamp(4rem, 8vw, 7rem) + 60px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section--dark .section-title { color: var(--white); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s var(--spring);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,79,160,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,79,160,0.4);
}
.btn--primary:active { transform: translateY(0); }
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-logo svg { flex-shrink: 0; }
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-logo-text .name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.navbar-logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.navbar-links a.active { color: var(--accent); }
.navbar-cta {
  flex-shrink: 0;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 20px; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.75) 50%,
    rgba(13,27,42,0.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-content-inner {
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(92,184,92,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge span.dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Page hero (non-home) */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.95) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + 40px);
  width: 100%;
}
.page-hero-content .section-label { display: block; margin-bottom: 0.75rem; }
.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 0;
  position: relative;
  z-index: 10;
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.stat-item:hover { border-top-color: var(--accent); }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ─── Methodology Section ─────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pillar {
  background: var(--white);
  padding: 40px 28px;
  transition: background 0.3s var(--ease);
}
.pillar:hover { background: var(--gray); }
.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar-icon svg { color: white; }
.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.pillar-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Age Groups ─────────────────────────────────────────────── */
.age-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.age-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
}
.age-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.age-card-header {
  background: var(--gradient);
  padding: 24px 20px 20px;
}
.age-card-category {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.age-card-range {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.age-card-body {
  background: var(--white);
  padding: 20px;
}
.age-card-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.age-card-detail:last-of-type { border-bottom: none; }
.age-card-detail svg { color: var(--blue); flex-shrink: 0; }
.progress-wrap {
  margin-top: 16px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.775rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.progress-bar {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--gradient);
  transition: width 1s var(--ease);
}
.age-card .btn { margin-top: 16px; }

/* ─── Alternating Feature Rows (Metodología) ─────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-image { order: 2; }
.feature-row.reverse .feature-text { order: 1; }
.feature-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.feature-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gradient);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
}
.feature-text .section-title { margin-bottom: 1rem; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26,79,160,0.12) 0%, rgba(46,139,46,0.12) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ─── Locations ─────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.location-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
  background: var(--white);
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.location-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.location-card:hover .location-card-img img { transform: scale(1.06); }
.location-card-body {
  padding: 24px;
}
.location-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.location-card-info {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 10px;
}
.location-card-info svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.location-map {
  margin-top: 16px;
  height: 140px;
  background: var(--gray);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid transparent;
  border-image: var(--gradient) 1;
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  font-size: 2.5rem;
  line-height: 0.5;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.975rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Team / Staff Cards ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.team-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--gray);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.team-card:hover .team-card-img img { transform: scale(1.07); }
.team-card-body {
  padding: 20px;
}
.team-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 0.825rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--gradient);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(26,79,160,0.2);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Values Grid ─────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-item {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s var(--spring);
}
.value-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg { color: white; }
.value-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-text { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── Schedule Table ─────────────────────────────────────────── */
.schedule-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gray);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border: 2px solid transparent;
}
.filter-tab:hover { color: var(--blue); border-color: var(--blue); }
.filter-tab.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}
.schedule-table th {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}
.schedule-table th:first-child { border-radius: var(--radius) 0 0 0; }
.schedule-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.schedule-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) { background: var(--gray); }
.schedule-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.schedule-badge--blue { background: rgba(26,79,160,0.12); color: var(--blue); }
.schedule-badge--green { background: rgba(46,139,46,0.12); color: var(--green); }
.schedule-badge--orange { background: rgba(234,88,12,0.1); color: #EA580C; }
.schedule-badge--purple { background: rgba(124,58,237,0.1); color: #7C3AED; }

/* ─── Contact Form ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(26,79,160,0.2);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,160,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.contact-info-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.contact-info-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.contact-info-block p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ─── Mission/Vision ─────────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-top: 4px solid transparent;
}
.mv-card--blue { border-top-color: var(--blue); }
.mv-card--green { border-top-color: var(--green); }
.mv-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mv-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
}
.mv-card-text { color: var(--muted); line-height: 1.75; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s var(--spring);
}
.footer-social a:hover {
  background: var(--gradient);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
}

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll-reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }

/* ─── Dark section overrides ─────────────────────────────────── */
.section--dark .pillar { background: rgba(255,255,255,0.04); }
.section--dark .pillar:hover { background: rgba(255,255,255,0.08); }
.section--dark .pillar-title { color: var(--white); }
.section--dark .pillar-desc { color: rgba(255,255,255,0.6); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-image,
  .feature-row.reverse .feature-text { order: unset; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .age-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .locations-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 340px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-info-block { position: static; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 16px; }
}
