/* =============================================
   3 Little Penguins Day Care — Playful Stylesheet
   ============================================= */

:root {
  --purple:        #7B5EA7;
  --purple-dark:   #5A3E8A;
  --purple-light:  #EDE8F5;
  --purple-soft:   #F5F2FF;
  --pink:          #FF8FAB;
  --pink-light:    #FFD6E0;
  --yellow:        #FFD166;
  --yellow-light:  #FFF3CD;
  --mint:          #06D6A0;
  --mint-light:    #D4F5EB;
  --sky:           #4CC9F0;
  --sky-light:     #D0F4FF;
  --orange:        #FF9F1C;
  --footer-bg:     #4b298e;
  --footer-top:    #351c6e;
  --text:          #2D2D2D;
  --text-muted:    #6B6B6B;
  --white:         #FFFFFF;
  --bg:            #FDFBFF;
  --border:        #E8E0F5;
  --radius:        14px;
  --radius-lg:     24px;
  --shadow:        0 6px 24px rgba(123,94,167,.14);
  --shadow-hover:  0 12px 40px rgba(123,94,167,.25);
  --transition:    .25s cubic-bezier(.4,0,.2,1);
  --font-body:     'Nunito', sans-serif;
  --font-head:     'Fredoka One', cursive;
  --max-w:         1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}
@keyframes bounce-in {
  0%   { opacity: 0; transform: scale(.7) translateY(30px); }
  70%  { transform: scale(1.05) translateY(-6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-8deg); }
  75%       { transform: rotate(8deg); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  80%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---- Scroll-triggered reveal ---- */
/* Only hide if JS loaded successfully (js-loaded class on body) */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s ease, transform .6s ease;
}
body.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
body.js-ready .reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .6s ease, transform .6s ease; }
body.js-ready .reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .6s ease, transform .6s ease; }
body.js-ready .reveal-left.visible,
body.js-ready .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---- Utilities ---- */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section-sm  { padding: 48px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
}

/* =============================================
   DECORATIVE SHAPES
   ============================================= */
.deco-star {
  position: absolute;
  pointer-events: none;
  opacity: .5;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}
.deco-star:nth-child(2) { animation-delay: .5s; }
.deco-star:nth-child(3) { animation-delay: 1s;  }
.deco-star:nth-child(4) { animation-delay: 1.5s;}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-dark   { background: #2D2D2D; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.btn-dark:hover   { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,.25); }

.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 4px 14px rgba(123,94,167,.35); }
.btn-purple:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(123,94,167,.45); }

.btn-pink   { background: var(--pink); color: #fff; box-shadow: 0 4px 14px rgba(255,143,171,.35); }
.btn-pink:hover { transform: translateY(-2px) scale(1.03); }

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

.btn-enroll {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 11px 22px;
  font-size: .92rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(255,143,171,.4);
  animation: pulse-enroll 2.5s ease-in-out infinite;
}
@keyframes pulse-enroll {
  0%, 100% { box-shadow: 0 4px 14px rgba(255,143,171,.4); }
  50%       { box-shadow: 0 4px 24px rgba(123,94,167,.55); }
}
.btn-enroll:hover { transform: translateY(-2px) scale(1.04); }

.btn-white  { background: #fff; color: var(--purple-dark); font-weight: 700; }
.btn-white:hover { background: var(--purple-light); transform: translateY(-2px); }

/* =============================================
   HERO — BG IMAGE + LEFT FADE (page heroes)
   ============================================= */
.hero-bg {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--purple-soft); /* fallback */
}

/* The background image — set via inline style on the element */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Gradient overlay: left = opaque enough for text, right = transparent so image shows */
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 240, 255, 0.94) 0%,
    rgba(245, 240, 255, 0.80) 30%,
    rgba(245, 240, 255, 0.30) 55%,
    rgba(245, 240, 255, 0.0) 70%
  );
}

/* Dark variant — for images where text needs white */
.hero-bg-img.dark-fade::after {
  background: linear-gradient(
    to right,
    rgba(20, 12, 40, 0.88) 0%,
    rgba(20, 12, 40, 0.70) 30%,
    rgba(20, 12, 40, 0.25) 55%,
    rgba(20, 12, 40, 0.0) 70%
  );
}

.hero-bg .container {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-bg-text {
  max-width: 520px;
}

.hero-bg-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  border: 2px solid var(--purple-light);
  color: var(--purple-dark);
  font-size: .82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero-bg-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--text);
}

/* Dark variant text */
.hero-bg.dark-text .hero-bg-text h1,
.hero-bg.dark-text .hero-bg-text p { color: #fff; }
.hero-bg.dark-text .hero-bg-text .eyebrow {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.hero-bg-text h1 .highlight {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bg-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 440px;
}

.hero-bg-text .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FLOATING IMAGE — for content sections
   ============================================= */
.float-img {
  animation: float-slow 5s ease-in-out infinite;
  filter: drop-shadow(0 18px 36px rgba(123,94,167,.18));
  width: 100%;
  transition: filter .4s ease;
}
.float-img:hover {
  filter: drop-shadow(0 24px 48px rgba(123,94,167,.28));
}
/* Alternate timing so multiple images don't sync */
.float-img.delay-1 { animation-delay: .8s; }
.float-img.delay-2 { animation-delay: 1.6s; }
.float-img.delay-3 { animation-delay: 2.4s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(123,94,167,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 72px; width: auto; transition: transform .3s; }
.nav-logo:hover img { transform: rotate(-5deg) scale(1.05); }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--purple-dark);
  letter-spacing: .01em;
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 11px;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: left .2s, right .2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 15%; right: 15%; }
.nav-links a:hover,
.nav-links a.active { color: var(--purple); background: var(--purple-soft); }
.nav-links .btn-enroll { margin-left: 10px; }
.nav-links .btn-enroll::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--purple);
  border-radius: 3px;
  transition: var(--transition);
}

/* =============================================
   WAVE DIVIDERS
   ============================================= */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, #F5F0FF 0%, #FFE8F0 50%, #E8F8FF 100%);
  padding: 64px 0 0;
  overflow: hidden;
  position: relative;
}

/* floating decorative shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .35;
}
.hero-shapes .s1 { width:120px; height:120px; background:var(--yellow); top:10%; left:5%; animation: float 4s ease-in-out infinite; }
.hero-shapes .s2 { width:80px;  height:80px;  background:var(--pink);   top:60%; left:2%; animation: float 5s ease-in-out infinite .5s; }
.hero-shapes .s3 { width:60px;  height:60px;  background:var(--mint);   top:20%; right:8%; animation: float 3.5s ease-in-out infinite 1s; }
.hero-shapes .s4 { width:100px; height:100px; background:var(--sky);    top:70%; right:5%; animation: float 4.5s ease-in-out infinite .3s; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero-text { padding-bottom: 72px; }
.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  color: #7A5C00;
  font-size: .82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
  animation: bounce-in .6s ease forwards;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
  animation: slide-up .7s ease .1s both;
}
.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.75;
  animation: slide-up .7s ease .2s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slide-up .7s ease .3s both;
}
.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-slow 5s ease-in-out infinite;
}
.hero-img img { width: 100%; height: auto; max-height: 480px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(123,94,167,.2)); }

/* trust chips below hero */
.hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  animation: slide-up .7s ease .4s both;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #F5F0FF 0%, #FFE8F0 100%);
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.page-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}
.page-hero-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.page-hero-img img {
  animation: float-slow 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgba(123,94,167,.18));
  width: 100%;
}
.page-hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  border: 2px solid var(--border);
  color: var(--purple-dark);
  font-size: .82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* =============================================
   SECTION LABELS & HEADINGS
   ============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--purple-light);
  padding: 4px 12px;
  border-radius: 30px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400; /* Fredoka is already bold */
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .88rem; opacity: .8; font-weight: 600; }
.stat-icon  { font-size: 2rem; margin-bottom: 8px; animation: bounce-icon 2s ease-in-out infinite; }
@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* =============================================
   FEATURE CARDS (Licensed + Bilingual)
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  opacity: .1;
}
.feature-card.light { background: linear-gradient(135deg, #EDE8F5, #FFE8F0); }
.feature-card.light::before { background: var(--purple); }
.feature-card.dark  { background: linear-gradient(135deg, #2D2D2D, #3D2A6B); color: #fff; }
.feature-card.dark::before  { background: var(--pink); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  line-height: 1.25;
}
.feature-card p  { font-size: .97rem; line-height: 1.75; opacity: .88; }
.feature-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin-top: auto;
  transition: transform .4s ease;
}
.feature-card:hover img { transform: scale(1.03); }
.feature-card .btn { align-self: flex-start; margin-top: 4px; }

/* =============================================
   TWO COLUMN CONTENT
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  width: 100%;
  transition: transform .4s ease;
}
/* float-img inside two-col: drop-shadow handles depth, no box-shadow duplication */
.two-col .float-img { box-shadow: none; }
.two-col img:hover { transform: scale(1.02); }

.two-col-text { display: flex; flex-direction: column; gap: 16px; }
.two-col-text ul { display: flex; flex-direction: column; gap: 12px; }
.two-col-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--purple-soft);
  border-radius: 10px;
  border-left: 3px solid var(--purple);
  transition: var(--transition);
}
.two-col-text ul li:hover { background: var(--purple-light); transform: translateX(4px); }
.two-col-text ul li::before {
  content: '✓';
  color: var(--purple);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-box {
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 4px solid var(--purple);
}
.highlight-box strong { display: block; margin-bottom: 8px; font-size: 1rem; color: var(--purple-dark); }
.highlight-box ul { padding-left: 16px; list-style: disc; }
.highlight-box ul li { font-size: .93rem; color: var(--text-muted); margin-bottom: 4px; }

/* =============================================
   PROGRAM CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: var(--purple-light);
}
.card-icon {
  font-size: 2.8rem;
  animation: wiggle 4s ease-in-out infinite;
  display: inline-block;
  width: fit-content;
}
.card:nth-child(2) .card-icon { animation-delay: .5s; }
.card:nth-child(3) .card-icon { animation-delay: 1s; }
.card:nth-child(4) .card-icon { animation-delay: 1.5s; }

.card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--purple-dark);
}
.card p  { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }
.card-age {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  color: var(--purple-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: auto;
  border: 1.5px solid var(--purple-light);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--purple), var(--pink) 60%, var(--orange));
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-banner::before {
  content: '🐧 🌟 🐧 🌟 🐧 🌟 🐧 🌟 🐧';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  opacity: .25;
  white-space: nowrap;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 14px;
}
.cta-banner p  { font-size: 1.05rem; opacity: .9; margin-bottom: 32px; }

/* =============================================
   CALENDAR
   ============================================= */
.calendar-wrap { max-width: 920px; margin: 0 auto; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}
.cal-header h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--purple-dark);
}
.cal-nav { display: flex; gap: 8px; }
.cal-nav a {
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}
.cal-nav a:hover { background: var(--purple); color: #fff; transform: scale(1.05); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 0;
}
.cal-day {
  min-height: 72px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 7px 8px;
  font-size: .82rem;
  transition: var(--transition);
}
.cal-day:hover { border-color: var(--purple-light); background: var(--purple-soft); }
.cal-day.empty { background: transparent; border-color: transparent; }
.cal-day.today { border-color: var(--purple); background: var(--purple-soft); }
.cal-day .day-num { font-weight: 800; margin-bottom: 2px; }
.cal-day.today .day-num { color: var(--purple); }
.cal-event-dot {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.events-list { margin-top: 40px; }
.event-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.event-item:hover { border-color: var(--purple-light); box-shadow: var(--shadow); transform: translateX(4px); }
.event-date-box {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  border-radius: var(--radius);
  padding: 10px 4px;
}
.event-date-box .day { font-family: var(--font-head); font-size: 1.6rem; color: var(--purple-dark); line-height: 1; }
.event-date-box .mon { font-size: .7rem; font-weight: 800; color: var(--purple); text-transform: uppercase; letter-spacing: .05em; }
.event-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; font-family: var(--font-head); }
.event-info p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 6px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--purple-light); }
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 20px 26px;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.faq-q:hover { background: var(--purple-soft); }
.faq-q .arrow {
  font-size: 1.2rem;
  transition: transform .3s ease;
  flex-shrink: 0;
  background: var(--purple-light);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.faq-item.open .faq-q { background: var(--purple-soft); color: var(--purple-dark); }
.faq-item.open .arrow { transform: rotate(180deg); background: var(--purple); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  background: var(--purple-soft);
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 16px 26px 20px; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(123,94,167,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* =============================================
   FORMS
   ============================================= */
.form-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: .88rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(123,94,167,.1);
  transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #d4f5e2; color: #1a7a46; border: 2px solid #a8e6c0; }
.alert-error   { background: #fde8e8; color: #9b2335; border: 2px solid #f5c0c0; }

/* =============================================
   WAITLIST
   ============================================= */
.waitlist-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}
.waitlist-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.waitlist-info p  { color: var(--text-muted); margin-bottom: 16px; font-size: .97rem; line-height: 1.75; }
.waitlist-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.waitlist-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .95rem;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.waitlist-perk:hover { border-color: var(--purple-light); transform: translateX(4px); background: var(--purple-soft); }
.waitlist-perk .icon { font-size: 1.5rem; flex-shrink: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--purple-light);
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--purple-light); }
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: .97rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: var(--purple-dark);
  flex-shrink: 0;
  border: 2px solid var(--purple-light);
}
.testimonial-name { font-weight: 700; font-size: .92rem; }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.contact-info h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 400; margin-bottom: 12px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-detail:hover { background: var(--purple-soft); transform: translateX(4px); }
.contact-detail .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.contact-detail span   { font-size: .9rem; color: var(--text-muted); }
.map-embed { margin-top: 20px; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); }
.map-embed iframe { width: 100%; height: 220px; border: none; display: block; }

/* =============================================
   SCHEDULE TABLE
   ============================================= */
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.schedule-table th,
.schedule-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-size: .93rem;
}
.schedule-table th { background: linear-gradient(135deg, var(--purple-light), var(--pink-light)); font-weight: 700; color: var(--purple-dark); }
.schedule-table tr:hover td { background: var(--purple-soft); transition: background .2s; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--footer-bg); color: rgba(255,255,255,.9); }
.footer-top { background: var(--footer-top); padding: 14px 0; }
.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .88rem;
}
.footer-main { padding: 56px 0 48px; }
.footer-main-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img { height: auto; width: 200px; margin-bottom: 16px; border-radius: 0; }
.footer-brand p { font-size: .88rem; opacity: .7; line-height: 1.75; margin-bottom: 6px; }
.footer-brand .footer-enrolling { font-size: .85rem; opacity: .9; font-weight: 700; color: rgba(255,255,255,.9); margin-top: 10px; }

.footer-col-h {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 16px;
}

.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a {
  font-size: .88rem; opacity: .7; transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-nav a::before { content: '→'; opacity: 0; transition: opacity .2s, transform .2s; }
.footer-nav a:hover { opacity: 1; padding-left: 6px; }
.footer-nav a:hover::before { opacity: 1; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; opacity: .75; line-height: 1.5; }
.footer-contact-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: .7; }
.footer-contact-list a { color: inherit; transition: opacity .2s; }
.footer-contact-list a:hover { opacity: 1; }
.footer-contact-list small { font-size: .78rem; opacity: .7; display: block; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.25); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-license-note {
  font-size: .75rem;
  opacity: .5;
  line-height: 1.6;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  font-size: .8rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  opacity: .5;
}
.footer-legal-links { display: flex; gap: 10px; align-items: center; }
.footer-legal-links a { color: inherit; transition: opacity .2s; }
.footer-legal-links a:hover { opacity: 1; }
.footer-legal-links span { opacity: .5; }

/* =============================================
   LEGAL PAGES (privacy.php, terms.php)
   ============================================= */
.legal-body { color: var(--text); line-height: 1.8; }
.legal-body h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--purple);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 24px; }
.legal-body ul li { margin-bottom: 6px; }
.legal-body a { color: var(--purple); }
.legal-body a:hover { text-decoration: underline; }
.legal-body address { font-style: normal; background: var(--bg); border-left: 4px solid var(--purple); padding: 16px 20px; border-radius: 0 8px 8px 0; line-height: 2; }
.legal-body address a { color: var(--purple); }

/* =============================================
   ADMIN
   ============================================= */
.admin-layout { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }
.admin-sidebar { background: #1e1b2e; color: #fff; padding: 24px 0; }
.admin-sidebar .logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 700; font-family: var(--font-head); font-size: 1.1rem; }
.admin-sidebar nav { padding: 16px 0; }
.admin-sidebar nav a { display: block; padding: 10px 20px; font-size: .9rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(123,94,167,.3); color: #fff; border-left: 3px solid var(--purple); }
.admin-main { background: #F4F4F8; padding: 32px; }
.admin-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; }
.admin-table th { font-weight: 700; background: var(--bg); }
.status-badge { padding: 4px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; }
.status-pending   { background: #FFF0D0; color: #8B5E00; }
.status-contacted { background: #D0EAFF; color: #00508B; }
.status-enrolled  { background: #D4F5E2; color: #1a7a46; }
.status-declined  { background: #fde8e8; color: #9b2335; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner, .page-hero-inner, .two-col,
  .waitlist-wrap, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .hero-img { order: -1; }
  .page-hero-img { order: -1; }
  .hero-img img { max-height: 300px; }
  .footer-main-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 16px 24px 28px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 12px; }
  .nav-toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .footer-main-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cal-grid { font-size: .68rem; }
  .cal-day  { min-height: 48px; padding: 4px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .hero-shapes .s1, .hero-shapes .s3 { display: none; }
  .section { padding: 64px 0; }
  .form-card { padding: 28px 20px; }
}
