/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:    #7C4DFF;
  --purple-d:  #5B2FE0;
  --purple-l:  #EDE7FF;
  --coral:     #FF6B6B;
  --yellow:    #FFD93D;
  --yellow-d:  #F5C518;
  --green:     #6BCB77;
  --bg:        #FFF8F0;
  --white:     #FFFFFF;
  --text:      #2D1B69;
  --text-m:    #6B5E8A;
  --text-l:    #A098BC;
  --radius:    20px;
  --radius-sm: 12px;
  --shadow:    0 8px 32px rgba(124,77,255,.13);
  --shadow-lg: 0 20px 60px rgba(124,77,255,.18);
  --transition: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', 'Comfortaa', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.highlight {
  color: var(--purple);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.8s var(--transition) 0.5s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-l);
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-m);
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.65;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--transition), box-shadow .2s var(--transition), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(124,77,255,.4);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(124,77,255,.5); }

.btn-ghost {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.btn-ghost:hover { background: var(--purple-l); }

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

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 40px; /* below ticker */
  left: 0; right: 0;
  z-index: 1000;
  transition: top .3s, background .3s, box-shadow .3s;
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,248,240,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(124,77,255,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
}
.logo-icon { font-size: 1.8rem; line-height: 1; }
.logo-text span { color: var(--purple); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--purple-l); color: var(--purple); }
.nav-links .nav-cta {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(124,77,255,.35);
}
.nav-links .nav-cta:hover { background: var(--purple-d); color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(255,248,240,.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(124,77,255,.1);
}
.mobile-menu.open { display: flex; }
.mm-link {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background .2s;
}
.mm-link:hover { background: var(--purple-l); }
.mm-cta {
  margin-top: 8px;
  background: var(--purple);
  color: var(--white) !important;
  text-align: center;
  border-radius: 999px;
}

/* ===========================
   TICKER (24/7 running)
=========================== */
.ticker-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, var(--purple), #a855f7, var(--purple));
  transition: transform .35s ease, opacity .35s ease;
}
.ticker-wrap.ticker-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.ticker span { flex-shrink: 0; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px clamp(24px, 6vw, 100px) 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0e8ff 0%, var(--bg) 50%, #fff0e8 100%);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: shapeFloat 8s ease-in-out infinite alternate;
}
.s1 { width: 500px; height: 500px; background: var(--purple-l); top: -100px; right: -100px; animation-delay: 0s; }
.s2 { width: 350px; height: 350px; background: #ffd6d6; bottom: 50px; left: -80px; animation-delay: 2s; }
.s3 { width: 250px; height: 250px; background: #fffab0; top: 40%; right: 20%; animation-delay: 4s; }
@keyframes shapeFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.08); }
}

.floating-items { position: absolute; inset: 0; pointer-events: none; }
.float-item {
  position: absolute;
  font-size: 1.8rem;
  animation: floatUpDown 4s ease-in-out infinite;
  opacity: .7;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
}
.fi1 { top: 15%; left: 8%;  animation-duration: 3.5s; animation-delay: 0s; }
.fi2 { top: 25%; right: 12%; animation-duration: 4.2s; animation-delay: .5s; }
.fi3 { top: 60%; left: 5%;  animation-duration: 3.8s; animation-delay: 1s; }
.fi4 { top: 70%; right: 8%; animation-duration: 4.5s; animation-delay: .3s; }
.fi5 { top: 10%; right: 25%; animation-duration: 3.2s; animation-delay: .8s; }
.fi6 { top: 80%; left: 20%; animation-duration: 4s;   animation-delay: 1.5s; }
.fi7 { top: 45%; right: 4%; animation-duration: 3.7s; animation-delay: .2s; }
.fi8 { top: 35%; left: 3%;  animation-duration: 4.3s; animation-delay: .7s; }
@keyframes floatUpDown {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--purple-l);
  color: var(--purple);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(124,77,255,.12);
  animation: fadeSlideDown .6s var(--transition) both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(107,203,119,.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(107,203,119,.3); }
  50%      { box-shadow: 0 0 0 7px rgba(107,203,119,.1); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeSlideUp .7s var(--transition) .1s both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeSlideUp .7s var(--transition) .2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp .7s var(--transition) .3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp .7s var(--transition) .4s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: var(--text-l);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--purple-l), transparent);
}

/* OWL MASCOT */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp .9s var(--transition) .2s both;
}
.hero-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.mascot-bubble {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--white);
  border: 3px solid var(--purple-l);
  border-radius: 20px 20px 20px 4px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(124,77,255,.15);
  animation: bubbleFloat 3s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes bubbleFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Owl SVG-like CSS character */
.owl-body {
  position: relative;
  width: 200px; height: 220px;
  background: linear-gradient(160deg, #7C4DFF, #5B2FE0);
  border-radius: 50% 50% 45% 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: owlBob 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(124,77,255,.4);
  overflow: visible;
}
@keyframes owlBob {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.owl-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: -10px;
}
.owl-eyes {
  display: flex;
  gap: 16px;
}
.owl-eye {
  width: 50px; height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 3px 8px rgba(0,0,0,.15);
  position: relative;
}
.owl-eye.left::before,
.owl-eye.right::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.5), transparent);
}
.pupil {
  width: 24px; height: 24px;
  background: var(--text);
  border-radius: 50%;
  position: relative;
  animation: owlBlink 4s ease-in-out infinite;
}
.pupil::after {
  content: '';
  position: absolute;
  top: 4px; right: 5px;
  width: 7px; height: 7px;
  background: var(--white);
  border-radius: 50%;
}
@keyframes owlBlink {
  0%,48%,52%,100% { transform: scaleY(1); }
  50% { transform: scaleY(.05); }
}
.owl-beak {
  width: 22px; height: 14px;
  background: var(--yellow);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin-top: -6px;
}
.owl-wings {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wing {
  width: 55px; height: 90px;
  background: linear-gradient(160deg, #9B6DFF, #5B2FE0);
  border-radius: 50px;
}
.wing.left-wing { margin-left: -35px; transform: rotate(-15deg); border-radius: 50px 30px 50px 50px; }
.wing.right-wing { margin-right: -35px; transform: rotate(15deg); border-radius: 30px 50px 50px 50px; }
.owl-feet {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: -20px;
}
.foot {
  width: 30px; height: 20px;
  background: var(--yellow);
  border-radius: 0 0 16px 16px;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}
.owl-shadow {
  width: 160px; height: 20px;
  background: rgba(124,77,255,.25);
  border-radius: 50%;
  margin: 28px auto 0;
  filter: blur(8px);
  animation: shadowPulse 3s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%,100% { transform: scaleX(1); opacity: .25; }
  50%      { transform: scaleX(.8); opacity: .15; }
}

/* WAVE DIVIDERS */
.wave-bottom, .wave-top {
  position: absolute;
  left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
}
.wave-bottom { bottom: -1px; }
.wave-top    { top: -1px; }
.wave-bottom svg, .wave-top svg { width: 100%; height: 80px; }

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 100px 0;
  text-align: center;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--transition), box-shadow .3s;
  text-align: left;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.about-icon {
  width: 60px;
  height: 60px;
  background: var(--purple-l);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.about-card:hover .about-icon {
  background: var(--purple);
  color: var(--white);
}
.about-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.about-card p {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.65;
}

/* ===========================
   PROGRAMS
=========================== */
.programs {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, #f5f0ff 0%, #fff0e8 100%);
  text-align: center;
  overflow: hidden;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 0;
  text-align: left;
}
.prog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--transition), box-shadow .3s;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--transition);
}
.prog-card:hover::before { transform: scaleX(1); }
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prog-card.featured {
  background: linear-gradient(160deg, #5B2FE0, var(--purple));
  color: var(--white);
  box-shadow: 0 20px 60px rgba(124,77,255,.4);
}
.prog-card.featured .prog-desc,
.prog-card.featured .prog-meta-item,
.prog-card.featured .price-label { color: rgba(255,255,255,.75); }
.prog-card.featured .price-val { color: var(--yellow); }
.prog-card.featured .prog-cta {
  background: var(--white);
  color: var(--purple);
}
.prog-card.featured .prog-badge {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.prog-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--yellow);
  color: var(--text);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}
.prog-emoji { font-size: 2.4rem; line-height: 1; }
.prog-badge {
  display: inline-flex;
  align-items: center;
  background: var(--purple-l);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}
.prog-title {
  font-size: 1.25rem;
  font-weight: 900;
}
.prog-desc {
  font-size: .92rem;
  color: var(--text-m);
  line-height: 1.65;
  flex: 1;
}
.prog-meta { display: flex; flex-direction: column; gap: 6px; }
.prog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--text-m);
  font-weight: 600;
}
.prog-price {
  background: rgba(124,77,255,.05);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prog-card.featured .prog-price { background: rgba(255,255,255,.1); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-row.secondary .price-val { font-size: .95rem; }
.price-label {
  font-size: .82rem;
  color: var(--text-m);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.price-val {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--purple);
}
.prog-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .2s;
  margin-top: auto;
}
.prog-cta:hover { background: var(--purple-d); transform: scale(1.02); }

/* ===========================
   WHY US
=========================== */
.why {
  padding: 100px 0;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--transition), box-shadow .3s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple-l);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.why-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.why-content p {
  font-size: .92rem;
  color: var(--text-m);
  line-height: 1.65;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(160deg, #f0e8ff 0%, var(--bg) 100%);
  text-align: center;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px 4px 24px;
  scrollbar-width: none;
  cursor: grab;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track:active { cursor: grabbing; }
.testi-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-stars { color: var(--yellow-d); font-size: 1.1rem; letter-spacing: 2px; }
.testi-text {
  font-size: .95rem;
  color: var(--text-m);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--coral));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-weight: 800;
  font-size: .95rem;
}
.testi-author span {
  display: block;
  font-size: .8rem;
  color: var(--text-l);
  margin-top: 2px;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-l);
  transition: background .3s, width .3s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 60px;
  row-gap: 24px;
  align-items: start;
  background: linear-gradient(135deg, var(--purple), #a855f7);
  border-radius: 32px;
  padding: 64px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.contact-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-title .highlight { color: var(--yellow); }
.contact-title .highlight::after { background: rgba(255,255,255,.3); }
.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 0;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform .2s;
}
.contact-link:hover { transform: translateX(4px); }
.contact-link.no-link { cursor: default; }
.contact-link:hover.no-link { transform: none; }
.contact-link-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.cl-label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cl-val {
  display: block;
  font-size: 1rem;
  color: var(--white);
  font-weight: 800;
  margin-top: 2px;
}

.contact-header { grid-column: 1; grid-row: 1; }
.contact-details { grid-column: 1; grid-row: 2; }
.contact-right   { grid-column: 2; grid-row: 1 / 3; position: relative; z-index: 1; }
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8E2F8;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124,77,255,.1);
}
.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-l);
  font-weight: 600;
}
.form-success {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  text-align: center;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--purple);
}
.form-success p { color: var(--text-m); line-height: 1.6; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--text);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer .logo-icon { font-size: 2rem; }
.footer .logo-text { font-size: 1.5rem; font-weight: 900; color: var(--white); }
.footer .logo-text span { color: var(--yellow); }
.footer-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  line-height: 1.65;
  font-style: italic;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.footer-links a { color: var(--yellow); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ===========================
   FLOATING CALL BUTTON
=========================== */
.floating-call {
  display: none;
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(124,77,255,.5);
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: floatCall 2.5s ease-in-out infinite;
}
@keyframes floatCall {
  0%,100% { transform: translateY(0); box-shadow: 0 8px 24px rgba(124,77,255,.5); }
  50%      { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(124,77,255,.4); }
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
=========================== */

/* ── Desktop large (1280px+) ── */
@media (min-width: 1280px) {
  .hero { gap: 60px; }
  .hero-content { max-width: 580px; }
  .owl-body { width: 220px; height: 240px; }
}

/* ── Tablet landscape (901px–1100px) ── */
@media (min-width: 901px) and (max-width: 1100px) {
  .hero { padding: 150px 40px 100px; gap: 32px; }
  .contact-wrap { padding: 48px 40px; gap: 40px; }
}

/* ── Tablet portrait & small laptop (601px–900px) ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 130px 28px 80px;
    text-align: center;
  }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub br { display: none; }
  .hero-visual { margin-top: 40px; }
  .mascot-bubble { top: -30px; right: -10px; }

  /* Two-column grids on tablet */
  .about-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .contact-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 40px 32px;
    gap: 28px;
  }
  .contact-header  { grid-column: 1; grid-row: 1; }
  .contact-right   { grid-column: 1; grid-row: 2; }
  .contact-details { grid-column: 1; grid-row: 3; }
  .contact-title br { display: none; }

  .nav-links { display: none; }
  .burger { display: flex; }
  .floating-call { display: flex; }

  .section-title { font-size: 2rem; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  .hero { padding: 120px 20px 70px; }
  .hero-title { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 calc(100vw - 56px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px 18px; }
  .contact-wrap { border-radius: 20px; padding: 32px 20px; }
  .about { padding: 72px 0; }
  .why { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .programs { padding: 90px 0; }
  .testimonials { padding: 90px 0 72px; }
}

/* ── Small phone (≤400px) ── */
@media (max-width: 400px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .owl-body { width: 160px; height: 180px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
}
