/* =============================================
   JITTERBUG PRESCHOOL — STYLESHEET
   ============================================= */

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

:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-light: #10B981;
  --emerald-50: #ECFDF5;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --coral: #F97066;
  --sky: #38BDF8;
  --lavender: #A78BFA;
  --dark: #1A2E26;
  --dark-mid: #2D4A3E;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(26,46,38,.08), 0 1px 2px rgba(26,46,38,.06);
  --shadow-md: 0 4px 14px rgba(26,46,38,.1), 0 2px 6px rgba(26,46,38,.06);
  --shadow-lg: 0 10px 40px rgba(26,46,38,.12), 0 4px 12px rgba(26,46,38,.08);
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,248,240,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5,150,105,.1);
  transition: box-shadow .3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald-dark);
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .938rem;
  color: var(--dark-mid);
  transition: background .2s, color .2s;
}

.nav-menu a:hover {
  background: var(--emerald-50);
  color: var(--emerald);
}

.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  border-radius: var(--radius-xl) !important;
  padding: 10px 22px !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}

.nav-cta:hover {
  background: var(--emerald-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5,150,105,.3);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) 24px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #047857 0%, #059669 30%, #10B981 60%, #34D399 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 0%, rgba(4,120,87,.3) 100%);
}

.geo {
  position: absolute;
  opacity: .12;
}

.geo-1 {
  width: 320px; height: 320px;
  background: var(--amber);
  border-radius: 50%;
  top: -60px; right: -60px;
}

.geo-2 {
  width: 180px; height: 180px;
  background: var(--coral);
  top: 20%; left: -40px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.geo-3 {
  width: 120px; height: 120px;
  background: var(--sky);
  bottom: 15%; right: 8%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.geo-4 {
  width: 80px; height: 80px;
  background: var(--lavender);
  top: 30%; right: 15%;
  border-radius: var(--radius-sm);
  transform: rotate(25deg);
}

.geo-5 {
  width: 200px; height: 200px;
  background: var(--amber-light);
  bottom: -50px; left: 10%;
  border-radius: 50%;
}

.geo-6 {
  width: 60px; height: 60px;
  background: var(--white);
  top: 18%; left: 25%;
  border-radius: 50%;
  opacity: .2;
}

.geo-7 {
  width: 100px; height: 100px;
  background: var(--coral);
  bottom: 25%; left: 5%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: .08;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .02em;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-accent {
  display: block;
  color: var(--amber-light);
  font-size: .85em;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(253,248,240,.9);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

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

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(253,248,240,.7);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(253,248,240,.3);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--dark);
}

.btn-primary:hover {
  background: #E8890A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

.btn-secondary {
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
  background: var(--emerald-dark);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--cream);
  white-space: nowrap;
  letter-spacing: .03em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--emerald);
  background: var(--emerald-50);
  border: 1px solid rgba(5,150,105,.2);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--emerald-dark);
  background: rgba(5,150,105,.12);
  border-color: rgba(5,150,105,.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.section-title.light {
  color: var(--dark);
}

.text-emerald {
  color: var(--emerald);
}

.text-emerald-dark {
  color: var(--emerald-dark);
}

.text-cream {
  color: var(--emerald);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.light {
  margin-bottom: 48px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .6;
}

.about-floating-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.afc-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.afc-text {
  display: flex;
  flex-direction: column;
}

.afc-text strong {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--dark);
}

.afc-text span {
  font-size: .8rem;
  color: var(--gray);
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-body {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.af-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.af-card-dot {
  width: 10px;
  height: 10px;
  background: var(--emerald);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.af-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.af-card span {
  font-size: .875rem;
  color: var(--gray);
}

/* =============================================
   PROGRAMS
   ============================================= */
.programs {
  padding: 100px 0;
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prog-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  border: 2px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

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

.prog-card--featured {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: var(--white);
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
}

.prog-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--amber);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.prog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.prog-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(5,150,105,.15);
  line-height: 1;
}

.prog-card--featured .prog-num {
  color: rgba(253,248,240,.3);
}

.prog-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prog-icon--emerald {
  background: var(--emerald-50);
  color: var(--emerald);
}

.prog-icon--amber {
  background: rgba(245,158,11,.15);
  color: var(--amber);
}

.prog-card--featured .prog-icon--amber {
  background: rgba(253,248,240,.2);
  color: var(--amber-light);
}

.prog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.prog-card--featured h3 {
  color: var(--white);
}

.prog-desc {
  font-size: .925rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.prog-card--featured .prog-desc {
  color: rgba(253,248,240,.85);
}

.prog-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prog-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--dark-mid);
}

.prog-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  flex-shrink: 0;
}

.prog-card--featured .prog-features li {
  color: rgba(253,248,240,.9);
}

.prog-card--featured .prog-features li::before {
  background: var(--amber-light);
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--emerald-dark);
  position: relative;
  overflow: hidden;
}

.why-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-shape {
  position: absolute;
  opacity: .06;
}

.why-shape--circle {
  width: 400px; height: 400px;
  background: var(--amber);
  border-radius: 50%;
  top: -100px; left: -100px;
}

.why-shape--square {
  width: 200px; height: 200px;
  background: var(--sky);
  bottom: -50px; right: 5%;
  transform: rotate(30deg);
}

.why-shape--triangle {
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--coral);
  top: 20%; right: 10%;
  opacity: .04;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(4px);
  transition: background .3s, transform .3s;
}

.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

.why-card-num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(253,248,240,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(253,248,240,.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .925rem;
  color: rgba(253,248,240,.75);
  line-height: 1.7;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 80px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,120,87,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.test-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(5,150,105,.08);
  transition: transform .3s, box-shadow .3s;
}

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

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.test-quote {
  font-size: .95rem;
  color: var(--dark-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--emerald);
}

/* =============================================
   VISIT / CTA
   ============================================= */
.visit {
  padding: 80px 0;
  background: var(--cream);
}

.visit-card {
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.visit-geos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.visit-geo {
  position: absolute;
  opacity: .12;
}

.visit-geo--circle {
  width: 200px; height: 200px;
  background: var(--emerald);
  border-radius: 50%;
  top: -60px; right: -40px;
}

.visit-geo--square {
  width: 100px; height: 100px;
  background: var(--amber);
  bottom: 20px; right: 120px;
  transform: rotate(15deg);
  border-radius: var(--radius-sm);
}

.visit-geo--triangle {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid var(--coral);
  bottom: -30px; left: 10%;
  opacity: .08;
}

.visit-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.visit-content .section-tag {
  margin-bottom: 12px;
}

.visit-body {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vd-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.visit-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.visit-detail span {
  font-size: .85rem;
  color: var(--gray);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 12px;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--dark-mid);
  font-weight: 600;
  transition: color .2s;
}

.contact-link:hover {
  color: var(--emerald);
}

.contact-link svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* FORM */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(5,150,105,.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(5,150,105,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--emerald-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
  font-size: .95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(253,248,240,.7);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,248,240,.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col strong {
  display: block;
  font-family: var(--font-display);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: .9rem;
  color: rgba(253,248,240,.6);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .825rem;
  color: rgba(253,248,240,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(253,248,240,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(5,150,105,.1);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 80px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
  }

  .about-img-wrap img {
    height: 300px;
  }

  .about-floating-card {
    left: 12px;
    bottom: -12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .visit-card {
    padding: 36px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
