:root {
  --purple: #7953e6;
  --purple-dark: #5634b8;
  --purple-soft: #eee8ff;
  --pink: #ef77ae;
  --pink-soft: #ffe5f0;
  --yellow: #ffc94d;
  --yellow-soft: #fff4c9;
  --mint: #56cfc0;
  --ink: #2f2940;
  --muted: #706a7c;
  --white: #ffffff;
  --cream: #fffaf5;
  --line: #ebe6f1;
  --shadow: 0 20px 55px rgba(78, 55, 120, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 105px 0;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  line-height: 1.12;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.35rem);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 3rem);
  letter-spacing: -1px;
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 20px;
  color: var(--muted);
}

.announcement {
  background: var(--purple-dark);
  color: white;
  font-weight: 800;
  font-size: .92rem;
}

.announcement-inner {
  min-height: 42px;
  display: flex;
  justify-content: center;
  gap: 35px;
  align-items: center;
}

.announcement a {
  color: var(--yellow);
}

.announcement i {
  margin-right: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(235, 230, 241, .8);
  backdrop-filter: blur(14px);
}

.navbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 80px
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font: 800 1.4rem/1 "Baloo 2";
  box-shadow: 0 10px 24px rgba(121, 83, 230, .25);
  transform: rotate(-3deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Baloo 2";
  font-size: 1.38rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
}

.nav-menu>a:not(.btn) {
  position: relative;
}

.nav-menu>a:not(.btn)::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--pink);
  border-radius: 99px;
  transition: .25s ease;
}

.nav-menu>a:not(.btn):hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--purple-soft);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 4px 0;
  background: var(--purple-dark);
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 13px 28px rgba(86, 52, 184, .24);
}

.btn-secondary {
  background: white;
  color: var(--purple-dark);
  box-shadow: 0 13px 28px rgba(78, 55, 120, .11);
}

.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple-dark);
  background: transparent;
}

.btn-small {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 90px 0 130px;
  background: linear-gradient(135deg, #fff8ed 0%, #fff 45%, #f4efff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 99px;
  margin-bottom: 22px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-weight: 900;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eyebrow.pink {
  background: var(--pink-soft);
  color: #bc3f78;
}

.eyebrow.purple {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.eyebrow.yellow {
  background: var(--yellow-soft);
  color: #9b6c00;
}

.eyebrow.white {
  background: rgba(255, 255, 255, .17);
  color: white;
}

.hero-copy h1 span {
  color: var(--purple);
  position: relative;
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 1%;
  bottom: 4px;
  height: 12px;
  background: var(--yellow);
  opacity: .45;
  border-radius: 50%;
  z-index: -1;
}

.hero-copy>p {
  max-width: 650px;
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 38px;
}

.hero-trust {
  display: flex;
  gap: 28px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.hero-trust div:last-child {
  border: 0;
}

.hero-trust strong {
  font-family: "Baloo 2";
  color: var(--purple-dark);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-trust span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  margin-top: 4px;
}

.hero-photo-wrap {
  position: relative;
  padding: 18px;
  border-radius: 50% 42% 46% 54%;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}

.hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border-radius: 50% 42% 46% 54%;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  min-width: 230px;
  background: rgba(255, 255, 255, .95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-1.8deg);
}

.floating-card i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 1.25rem;
}

.floating-card span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.35;
}

.floating-card strong {
  color: var(--ink);
  font-size: .93rem;
}

.card-safe {
  left: -55px;
  bottom: 86px;
}

.card-safe i {
  background: var(--pink-soft);
  color: var(--pink);
}

.card-play {
  right: -45px;
  top: 70px;
}

.card-play i {
  background: var(--yellow-soft);
  color: #d89600;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .65;
}

.hero-blob-1 {
  width: 310px;
  height: 310px;
  right: -130px;
  top: 40px;
  background: var(--pink-soft);
}

.hero-blob-2 {
  width: 230px;
  height: 230px;
  left: -110px;
  bottom: 80px;
  background: var(--yellow-soft);
}

.doodle {
  position: absolute;
  font-size: 2.8rem;
  z-index: 3;
}

.doodle-star {
  color: var(--yellow);
  top: 0;
  left: 6%;
  transform: rotate(15deg);
}

.doodle-heart {
  color: var(--pink);
  bottom: 12px;
  right: 3%;
  transform: rotate(-12deg);
}

.wave-divider {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -70px;
  height: 135px;
  border-radius: 50% 50% 0 0;
  background: white;
}

.trust-strip {
  padding: 30px 0 42px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.trust-item i {
  font-size: 1.35rem;
  color: var(--purple);
}

.trust-item span {
  display: flex;
  flex-direction: column;
  font-size: .77rem;
  color: var(--muted);
  line-height: 1.35;
}

.trust-item strong {
  color: var(--ink);
  font-size: .91rem;
}

.split-grid {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 95px;
}

.image-collage {
  min-height: 520px;
  position: relative;
}

.image-main {
  width: 82%;
  height: 465px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 250px;
  object-fit: cover;
  border: 10px solid white;
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  left: -25px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 8px solid white;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: var(--shadow);
}

.experience-badge strong {
  font: 800 2.4rem/1 "Baloo 2";
}

.experience-badge span {
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-copy>p {
  font-size: 1.03rem;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.feature-list div {
  display: flex;
  gap: 13px;
}

.feature-list i {
  color: var(--mint);
  margin-top: 5px;
  font-size: 1.1rem;
}

.feature-list span {
  color: var(--muted);
}

.feature-list strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--purple-dark);
  font-weight: 900;
}

.programs {
  background: #fbf9ff;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.02rem;
}

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

.program-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 15px 45px rgba(78, 55, 120, .08);
  transition: .28s ease;
}

.program-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.program-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -60px;
  right: -45px;
  border-radius: 50%;
  opacity: .55;
}

.program-card.infant::before {
  background: var(--pink-soft);
}

.program-card.playschool::before {
  background: var(--yellow-soft);
}

.program-card.preschool::before {
  background: var(--purple-soft);
}

.program-icon {
  width: 63px;
  height: 63px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 19px;
  font-size: 1.75rem;
}

.infant .program-icon {
  color: var(--pink);
  background: var(--pink-soft);
}

.playschool .program-icon {
  color: #ca8b00;
  background: var(--yellow-soft);
}

.preschool .program-icon {
  color: var(--purple);
  background: var(--purple-soft);
}

.age-pill {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 99px;
  color: var(--purple-dark);
  background: #f2eefb;
  font-weight: 900;
  font-size: .77rem;
}

.program-card h3 {
  margin-top: 15px;
  font-size: 1.85rem;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 23px 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
}

.program-card li i {
  margin-right: 7px;
  color: var(--mint);
}

.program-card>a {
  color: var(--purple-dark);
  font-weight: 900;
}

.approach {
  background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
}

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

.approach-item {
  position: relative;
  min-height: 245px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: .25s ease;
  overflow: hidden;
}

.approach-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.approach-item>span {
  position: absolute;
  right: 20px;
  top: 12px;
  font: 800 3.6rem/1 "Baloo 2";
  color: #f1edf5;
}

.approach-item i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 17px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 1.45rem;
}

.approach-item:nth-child(2n) i {
  color: #bd3e78;
  background: var(--pink-soft);
}

.approach-item:nth-child(3n) i {
  color: #b67b00;
  background: var(--yellow-soft);
}

.approach-item h3 {
  margin-bottom: 10px;
}

.approach-item p {
  font-size: .92rem;
}

.locations {
  background: var(--purple-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.locations .section-heading h2,
.locations .section-heading p {
  color: white;
}

.locations .section-heading p {
  opacity: .72;
}

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

.location-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
}

.location-number {
  font: 800 3.7rem/1 "Baloo 2";
  color: rgba(255, 255, 255, .11);
}

.location-card h3 {
  margin-top: -12px;
}

.location-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
}

.location-card p i {
  margin-right: 7px;
  color: var(--yellow);
}

.location-card>span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 99px;
  margin: 8px 0 23px;
  background: rgba(255, 255, 255, .13);
  font-size: .76rem;
  font-weight: 800;
}

.location-card a {
  display: block;
  color: var(--yellow);
  font-weight: 900;
}

.gallery-section {
  background: white;
}

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

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-wide {
  grid-column: span 2;
}

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

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid figcaption {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 7px 12px;
  border-radius: 99px;
  color: white;
  background: rgba(47, 41, 64, .72);
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(7px);
}

.activities {
  background: #fff9f1;
}

.row-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.row-heading h2 {
  max-width: 700px;
}

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

.article-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 15px 42px rgba(78, 55, 120, .08);
  transition: .28s ease;
}

.article-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.article-image {
  position: relative;
  height: 225px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 11px;
  border-radius: 99px;
  color: var(--purple-dark);
  background: white;
  font-weight: 900;
  font-size: .74rem;
}

.article-body {
  padding: 25px;
}

.article-body time {
  color: var(--pink);
  font-weight: 900;
  font-size: .78rem;
}

.article-body h3 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.article-body p {
  font-size: .9rem;
}

.article-body a {
  color: var(--purple-dark);
  font-weight: 900;
}

.registration {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  overflow: hidden;
}

.registration-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.registration-copy {
  color: white;
}

.registration-copy h2,
.registration-copy p {
  color: white;
}

.registration-copy p {
  opacity: .86;
  font-size: 1.03rem;
}

.contact-badges {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-badges a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.contact-badges i {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, .17);
}

.interest-form {
  padding: 34px;
  border-radius: 27px;
  background: white;
  box-shadow: 0 25px 65px rgba(47, 41, 64, .23);
}

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

.interest-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 900;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
  background: #fcfbfd;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-soft);
}

.interest-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.registration-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
}

.shape-one {
  width: 340px;
  height: 340px;
  left: -130px;
  bottom: -160px;
}

.shape-two {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.accordion {
  display: grid;
  gap: 13px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
  background: white;
}

.accordion-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 0;
  color: var(--ink);
  background: white;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion-item button i {
  color: var(--purple);
  transition: transform .25s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion-content p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: .92rem;
}

.accordion-item.active {
  border-color: #d8cdf6;
  box-shadow: 0 10px 28px rgba(78, 55, 120, .07);
}

.accordion-item.active button i {
  transform: rotate(45deg);
}

.footer {
  padding: 75px 0 22px;
  background: #271f37;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr 1.1fr;
  gap: 55px;
}

.footer-brand .brand-copy strong {
  color: white;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, .6);
}

.footer-about p {
  max-width: 390px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  transition: .2s ease;
}

.social-links a:hover {
  background: var(--purple);
  transform: translateY(-3px);
}

.footer h3 {
  font-size: 1.25rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: .89rem;
}

.footer li a:hover {
  color: var(--yellow);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--pink);
  margin-top: 5px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
}

.footer-bottom div {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, .55);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 19px;
  border-radius: 99px;
  color: white;
  background: #25d366;
  box-shadow: 0 15px 32px rgba(37, 211, 102, .34);
  font-weight: 900;
}

.whatsapp-float i {
  font-size: 1.45rem;
}

.back-to-top {
  position: fixed;
  right: 27px;
  bottom: 92px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--purple-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .nav-menu {
    gap: 17px;
    font-size: .9rem;
  }

  .hero-grid,
  .split-grid,
  .registration-grid {
    gap: 45px;
  }

  .hero {
    min-height: auto;
  }

  .card-safe {
    left: -20px;
  }

  .card-play {
    right: -15px;
  }

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

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

  .footer-grid>div:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  .announcement-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu .btn {
    margin-top: 8px;
  }

  .hero-grid,
  .split-grid,
  .registration-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy>p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin-inline: auto;
  }

  .split-grid {
    gap: 55px;
  }

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

  .program-card:last-child,
  .article-card:last-child {
    grid-column: span 2;
  }

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

  .row-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .registration-copy {
    text-align: center;
  }

  .contact-badges {
    justify-content: center;
  }

  .faq-grid {
    gap: 25px;
  }

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

  .footer-grid>div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .announcement {
    font-size: .76rem;
  }

  .announcement-inner {
    min-height: 48px;
    gap: 10px;
  }

  .announcement a {
    white-space: nowrap;
  }

  .navbar {
    height: 74px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.15rem;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .brand-copy small {
    font-size: .65rem;
  }

  .nav-menu {
    top: 74px;
  }

  .hero {
    padding: 65px 0 120px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust div {
    padding-right: 10px;
  }

  .hero-trust span {
    font-size: .66rem;
  }

  .floating-card {
    min-width: 190px;
    padding: 11px;
  }

  .card-safe {
    left: -5px;
    bottom: 25px;
  }

  .card-play {
    right: -4px;
    top: 35px;
  }

  .floating-card span {
    font-size: .63rem;
  }

  .floating-card strong {
    font-size: .78rem;
  }

  .trust-grid,
  .location-grid,
  .program-grid,
  .approach-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card:last-child,
  .article-card:last-child {
    grid-column: auto;
  }

  .image-collage {
    min-height: 420px;
  }

  .image-main {
    height: 360px;
  }

  .image-small {
    height: 180px;
  }

  .experience-badge {
    left: -8px;
    width: 125px;
    height: 125px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-wide {
    grid-column: span 2;
  }

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

  .interest-form {
    padding: 23px;
  }

  .footer-grid>div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
}

/* Active Nav Item */
.nav-menu a.active {
  color: var(--purple-dark);
  font-weight: 900;
}

.nav-menu a.active::after {
  right: 0 !important;
}

/* Blog Hero Section */
.blog-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #fffaf5 0%, #f7f3ff 100%);
  border-bottom: 1px solid var(--line);
}

.blog-hero h1 span {
  color: var(--purple);
}

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

/* Blog Filter Tabs */
.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: all .25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  box-shadow: 0 8px 20px rgba(121, 83, 230, .2);
}

/* Featured Article Card */
.featured-article-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 50px;
}

.featured-image {
  position: relative;
  min-height: 340px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  background: var(--purple);
  color: white;
  font-weight: 800;
  font-size: .8rem;
  border-radius: 99px;
}

.featured-body {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.article-meta i {
  color: var(--purple);
  margin-right: 4px;
}

.featured-body h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.featured-body p {
  margin-bottom: 25px;
  font-size: 1.02rem;
}

/* Article Detail Page */
.breadcrumb-container {
  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-dark);
  font-weight: 800;
  font-size: .95rem;
}

.back-link:hover {
  text-decoration: underline;
}

.article-detail-section {
  padding: 30px 0 70px;
}

.article-container {
  max-width: 860px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 30px;
}

.category-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--yellow-soft);
  color: #9b6c00;
  font-weight: 900;
  font-size: .85rem;
  border-radius: 99px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.article-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
}

.article-meta-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.article-meta-bar i {
  color: var(--purple);
  margin-right: 5px;
}

.article-cover {
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.article-body-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink);
}

.article-body-content .lead-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 30px;
  line-height: 1.6;
}

.article-body-content h2 {
  font-size: 1.8rem;
  margin: 35px 0 15px;
  color: var(--ink);
}

.article-body-content p {
  margin-bottom: 22px;
  color: #443e52;
}

.article-body-content ul,
.article-body-content ol {
  margin: 0 0 30px 20px;
  padding: 0;
}

.article-body-content li {
  margin-bottom: 12px;
}

.quote-callout {
  margin: 35px 0;
  padding: 25px 30px;
  border-left: 5px solid var(--purple);
  background: var(--purple-soft);
  border-radius: 0 18px 18px 0;
}

.quote-callout p {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  color: var(--purple-dark);
  line-height: 1.4;
}

.tip-box {
  margin: 35px 0;
  padding: 25px;
  background: var(--cream);
  border: 2px dashed var(--yellow);
  border-radius: 20px;
}

.tip-box h4 {
  color: #9b6c00;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tip-box p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

/* Article Share Box */
.article-share-box {
  margin: 50px 0 40px;
  padding: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  color: white;
  transition: transform .2s;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.whatsapp {
  background: #25D366;
}

.share-btn.facebook {
  background: #1877F2;
}

.share-btn.copylink {
  background: var(--purple-dark);
}

/* Author Info Card */
.author-info-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 25px;
  background: var(--purple-soft);
  border-radius: 20px;
  margin-bottom: 50px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-details h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.author-details p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 820px) {
  .featured-article-card {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 240px;
  }

  .article-share-box {
    flex-direction: column;
    align-items: flex-start;
  }
}