/* ================================================================
   CRADLE TO CREA-YON — CUSTOM THEME v2.0
   Standalone | Full-Width | No Parent Theme Required
   Design: Bold Maximalist Joy — Indian Playschool Energy
   ================================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Pacifico&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  --purple:       #7B2FBE;
  --purple-deep:  #4A1282;
  --purple-light: #EDE0FF;
  --orange:       #E8431A;
  --orange-light: #FFF0E8;
  --blue:         #29ABE2;
  --blue-light:   #E0F6FF;
  --yellow:       #F7C31A;
  --yellow-light: #FFFBE0;
  --green:        #1A7A3C;
  --green-light:  #E8FFF0;
  --red:          #E83232;
  --pink:         #F06292;
  --cream:        #FFFDF7;
  --warm-white:   #FDFAF5;
  --dark:         #1A1225;
  --body-text:    #3D3350;
  --muted:        #7A6E8A;
  --border:       rgba(123,47,190,0.12);

  --font-display: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;
  --font-accent:  'Pacifico', cursive;

  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   32px;
  --r-xl:   48px;
  --r-pill: 100px;

  --shadow-sm:  0 4px 16px rgba(123,47,190,0.10);
  --shadow-md:  0 8px 32px rgba(123,47,190,0.15);
  --shadow-lg:  0 20px 60px rgba(123,47,190,0.20);
  --shadow-pop: 0 12px 40px rgba(232,67,26,0.25);

  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET — TOTAL FULL WIDTH CONTROL ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force WordPress to NEVER box content */
#page, .site, #content, #primary, .site-content,
.wp-site-blocks, .is-root-container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; transition: all 0.3s var(--ease-smooth); }
ul  { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--dark);
}

/* ── UTILITY ──────────────────────────────────────────────────── */
.c2c-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}
.c2c-wrap-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 52px;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-4px) scale(1.02); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 8px 24px rgba(123,47,190,0.40);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 36px rgba(123,47,190,0.50); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #FF6B3D);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.btn-orange:hover { color: #fff; box-shadow: 0 14px 36px rgba(232,67,26,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; border-color: #fff; }

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 2.5px solid var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { color: var(--green); box-shadow: 0 14px 36px rgba(0,0,0,0.18); }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.c2c-topbar {
  background: var(--purple-deep);
  background: linear-gradient(90deg, var(--purple-deep), var(--purple));
  color: #fff;
  text-align: center;
  padding: 11px 5%;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 200;
  letter-spacing: 0.3px;
}
.c2c-topbar em { font-style: normal; color: var(--yellow); }
.c2c-topbar a  { color: var(--yellow); text-decoration: underline; text-decoration-style: dotted; }
.c2c-topbar .close-bar {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  cursor: pointer; font-size: 1.1rem; opacity: 0.6;
  background: none; border: none; color: #fff;
}
.c2c-topbar .close-bar:hover { opacity: 1; }

/* Rainbow strip */
.rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg,
    var(--red) 0%, var(--orange) 20%, var(--yellow) 40%,
    var(--green) 60%, var(--blue) 80%, var(--purple) 100%);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.c2c-nav {
  position: sticky;
  top: 0;
  z-index: 150;
  width: 100%;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease-smooth);
}
.c2c-nav.scrolled {
  background: rgba(253,250,245,0.98);
  box-shadow: 0 4px 32px rgba(74,18,130,0.10);
}

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

/* ── Logo block ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-site-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}
.nav-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--body-text);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: all 0.25s;
}
.nav-links a:hover {
  background: var(--purple-light);
  color: var(--purple);
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--green);
  text-decoration: none;
}
.nav-phone:hover { color: var(--purple); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(232,67,26,0.35);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,67,26,0.45);
  color: #fff !important;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--purple);
  border-radius: 4px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  padding: 32px 5%;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2rem; color: #fff; cursor: pointer;
  background: none; border: none;
}

/* ================================================================
   HERO — DIAGONAL SPLIT, FULL VIEWPORT
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

/* Diagonal BG split */
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 58%;
  height: 130%;
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple) 50%, var(--blue) 100%);
  border-radius: 0 0 0 120px;
  z-index: 0;
  transform: skewX(-4deg);
}

/* Decorative circles on purple side */
.hero-circle-1 {
  position: absolute; right: 3%; top: 8%;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: floatUp 6s ease-in-out infinite;
  z-index: 1;
}
.hero-circle-2 {
  position: absolute; right: 22%; bottom: 10%;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(247,195,26,0.18);
  animation: floatUp 5s 1s ease-in-out infinite;
  z-index: 1;
}
.hero-circle-3 {
  position: absolute; right: 8%; bottom: 20%;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(240,98,146,0.25);
  animation: floatUp 4s 2s ease-in-out infinite;
  z-index: 1;
}

/* Scattered stars */
.hero-star {
  position: absolute;
  font-size: 1.6rem;
  z-index: 2;
  animation: starSpin 4s ease-in-out infinite;
  pointer-events: none;
}

/* Left content */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 80px 5% 80px;
  max-width: 600px;
  animation: heroIn 0.8s var(--ease) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(247,195,26,0.40);
  animation: heroIn 0.8s 0.1s var(--ease) both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: heroIn 0.8s 0.15s var(--ease) both;
}
.hero h1 .word-1 { color: var(--purple); display: block; }
.hero h1 .word-2 {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .word-3 { color: var(--green); display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  animation: heroIn 0.8s 0.2s var(--ease) both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: heroIn 0.8s 0.25s var(--ease) both;
}

/* Hero stat pills */
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroIn 0.8s 0.3s var(--ease) both;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 70px;
}

/* Right visual — floats in the purple zone */
.hero-visual {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42%;
  max-width: 500px;
  animation: heroVisualIn 1s 0.3s var(--ease) both;
}
.hero-card-main {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  position: relative;
}
.hero-emoji-big {
  font-size: 7rem;
  display: block;
  animation: floatUp 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-top: 16px;
}
.hero-card-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

/* Floating mini cards */
.hero-mini-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.hero-mini-card.card-a { top: -20px; right: -20px; animation: floatSide 5s ease-in-out infinite; }
.hero-mini-card.card-b { bottom: 20px; left: -30px; animation: floatSide 4s 1s ease-in-out infinite; }
.hero-mini-card.card-c { top: 50%; right: -40px; transform: translateY(-50%); animation: floatSide 6s 2s ease-in-out infinite; }
.mini-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

/* ================================================================
   SECTION: WHY C2C — TILTED CARDS
   ================================================================ */
.why-section {
  background: var(--warm-white);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}

.why-header { margin-bottom: 60px; }
.why-section .tag-pill { background: var(--purple-light); color: var(--purple); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.why-card {
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3));
}
.why-card:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.why-card:hover::after { opacity: 1; }
.why-card:nth-child(2) { transform: rotate(1deg); }
.why-card:nth-child(2):hover { transform: translateY(-10px) rotate(0deg); }
.why-card:nth-child(4) { transform: rotate(-1deg); }
.why-card:nth-child(4):hover { transform: translateY(-10px) rotate(0deg); }

.why-card-1 { background: linear-gradient(145deg, #FFF5F5, #FFE8E8); }
.why-card-2 { background: linear-gradient(145deg, #F0FBFF, #DCF3FF); }
.why-card-3 { background: linear-gradient(145deg, #F5FFF0, #E0FFE8); }
.why-card-4 { background: linear-gradient(145deg, #FFFBE0, #FFF3C0); }

.why-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.why-card-1 .why-icon { background: #FFD0D0; }
.why-card-2 .why-icon { background: #C0E8FF; }
.why-card-3 .why-icon { background: #C0FFCC; }
.why-card-4 .why-icon { background: #FFE890; }

.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.why-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ================================================================
   SECTION: PROGRAMS — DIAGONAL BG + OFFSET CARDS
   ================================================================ */
.programs-section {
  padding: 120px 5%;
  background: linear-gradient(165deg, var(--purple-deep) 0%, var(--purple) 55%, #1A87C7 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -40px 0;
  padding-top: 160px;
  padding-bottom: 160px;
}

/* Decorative BG pattern */
.programs-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(247,195,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.programs-section .tag-pill { background: rgba(255,255,255,0.2); color: #fff; }
.programs-section .section-title { color: #fff; }
.programs-section .section-sub { color: rgba(255,255,255,0.78); }

.prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.prog-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.prog-card:nth-child(1)::before { background: var(--yellow); }
.prog-card:nth-child(2)::before { background: var(--orange); }
.prog-card:nth-child(3)::before { background: var(--green-light); }
.prog-card:nth-child(4)::before { background: var(--pink); }

.prog-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.prog-age {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.prog-card:nth-child(1) .prog-age { background: var(--yellow); color: #333; }
.prog-card:nth-child(2) .prog-age { background: var(--orange); color: #fff; }
.prog-card:nth-child(3) .prog-age { background: rgba(255,255,255,0.25); color: #fff; }
.prog-card:nth-child(4) .prog-age { background: var(--pink); color: #fff; }

.prog-emoji { font-size: 3rem; display: block; margin-bottom: 16px; line-height: 1; }
.prog-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.prog-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.78); line-height: 1.65; }
.prog-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.82rem;
  margin-top: 18px;
  text-decoration: none;
  transition: gap 0.2s;
}
.prog-more:hover { gap: 10px; color: var(--yellow); }

/* ================================================================
   SECTION: DAY TIMELINE — HORIZONTAL SCROLL
   ================================================================ */
.timeline-section {
  padding: 100px 5%;
  background: var(--cream);
  position: relative;
}
.timeline-section .tag-pill { background: var(--orange-light); color: var(--orange); }
.timeline-section .section-title { color: var(--orange); }

.timeline-scroll {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 1100px;
  flex-wrap: wrap;
}
.timeline-scroll::before {
  content: '';
  position: absolute;
  top: 40px; left: 40px; right: 40px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--yellow), var(--orange), var(--red), var(--purple), var(--blue), var(--green));
  z-index: 0;
  border-radius: 4px;
}
.tl-step {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 0 8px;
  transition: all 0.3s var(--ease);
}
.tl-step:hover { transform: translateY(-8px); }
.tl-bubble {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s var(--ease);
}
.tl-step:hover .tl-bubble { transform: scale(1.15); }
.tl-step:nth-child(1) .tl-bubble { background: linear-gradient(135deg,#FFF3CC,#FFE080); }
.tl-step:nth-child(2) .tl-bubble { background: linear-gradient(135deg,#FFE8D0,#FFCC99); }
.tl-step:nth-child(3) .tl-bubble { background: linear-gradient(135deg,#E0F7FA,#80DEEA); }
.tl-step:nth-child(4) .tl-bubble { background: linear-gradient(135deg,#E8F5E9,#A5D6A7); }
.tl-step:nth-child(5) .tl-bubble { background: linear-gradient(135deg,#F3E5F5,#CE93D8); }
.tl-step:nth-child(6) .tl-bubble { background: linear-gradient(135deg,#FFF8E1,#FFE082); }
.tl-time {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--orange);
}
.tl-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
}

/* ================================================================
   SECTION: VIDEOS
   ================================================================ */
.videos-section {
  padding: 100px 5%;
  background: #fff;
}
.videos-section .tag-pill { background: #FFE5E5; color: var(--red); }
.videos-section .section-title { color: var(--dark); }

/* Platform switcher */
.platform-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.ptab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.ptab:hover { transform: translateY(-2px); }
.ptab.yt.active  { background: #FF0000; color: #fff; border-color: #FF0000; box-shadow: 0 6px 20px rgba(255,0,0,0.30); }
.ptab.ig.active  { background: linear-gradient(135deg,#F58529,#DD2A7B); color: #fff; border-color: transparent; }
.ptab.fb.active  { background: #1877F2; color: #fff; border-color: #1877F2; box-shadow: 0 6px 20px rgba(24,119,242,0.30); }

.video-panel { display: none; }
.video-panel.active { display: block; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
}
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.video-embed { position: relative; padding-top: 56.25%; background: #111; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 18px 20px; }
.video-plat-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1px;
  padding: 3px 10px; border-radius: var(--r-pill);
  margin-bottom: 8px;
}
.badge-yt { background: #FFE5E5; color: #C0392B; }
.badge-ig { background: #F5E5F5; color: #8134AF; }
.badge-fb { background: #E5EFFF; color: #1877F2; }
.video-title { font-family: var(--font-display); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.video-meta  { font-size: 0.78rem; color: var(--muted); }

/* Follow strip */
.follow-strip {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  margin-top: 44px; padding: 28px 32px;
  background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
  border-radius: var(--r-xl);
  max-width: 800px;
}
.follow-strip p { font-weight: 800; font-size: 1rem; color: var(--dark); flex: 1; min-width: 200px; }
.follow-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.follow-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 0.85rem;
  color: #fff; text-decoration: none;
  transition: all 0.3s var(--ease);
}
.follow-btn:hover { transform: translateY(-3px); color: #fff; }
.follow-btn.yt { background: #FF0000; }
.follow-btn.ig { background: linear-gradient(135deg,#F58529,#DD2A7B); }
.follow-btn.fb { background: #1877F2; }

/* ================================================================
   SECTION: BLOG — MAGAZINE LAYOUT
   ================================================================ */
.blog-section {
  padding: 100px 5%;
  background: linear-gradient(170deg, var(--green-light) 0%, #fff 60%);
}
.blog-section .tag-pill { background: #D5F5E3; color: var(--green); }
.blog-section .section-title { color: var(--green); }

.blog-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  max-width: 1100px;
}
.blog-featured {
  border-radius: var(--r-xl); overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  display: block; text-decoration: none; color: inherit;
}
.blog-featured:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: inherit; }
.blog-featured-img {
  aspect-ratio: 16/9;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.06); }
.featured-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 0.78rem;
  padding: 5px 14px; border-radius: var(--r-pill);
}
.blog-featured-body { padding: 32px; }
.blog-cat-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--purple-light); color: var(--purple);
  margin-bottom: 12px;
}
.blog-featured-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-featured-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.blog-meta {
  display: flex; gap: 14px; font-size: 0.78rem;
  color: var(--muted); flex-wrap: wrap; align-items: center;
}
.read-link {
  color: var(--green); font-weight: 800; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none; margin-top: 14px;
  transition: gap 0.2s;
}
.read-link:hover { gap: 10px; color: var(--green); }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 14px; }
.blog-mini {
  display: flex; gap: 14px; align-items: center;
  background: #fff; border-radius: var(--r-md);
  padding: 16px; box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  text-decoration: none; color: inherit;
}
.blog-mini:hover { transform: translateX(8px); box-shadow: var(--shadow-md); color: inherit; }
.mini-thumb {
  width: 68px; height: 68px;
  border-radius: var(--r-sm); flex-shrink: 0;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center; font-size: 1.8rem;
}
.mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-thumb.ph { background: var(--orange-light); }
.mini-info .mini-cat { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); }
.mini-info h4 { font-family: var(--font-display); font-size: 0.92rem; color: var(--dark); line-height: 1.3; margin: 4px 0; }
.mini-info span { font-size: 0.73rem; color: var(--muted); }

/* Cat filter */
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-filter {
  padding: 7px 18px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 0.85rem;
  cursor: pointer; border: 2px solid var(--border);
  background: #fff; color: var(--muted);
  transition: all 0.25s var(--ease);
}
.cat-filter:hover, .cat-filter.active {
  background: var(--green); color: #fff;
  border-color: var(--green); transform: translateY(-2px);
}

/* Newsletter mini */
.newsletter-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-top: 48px;
  padding: 24px 28px; background: #fff;
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  max-width: 1100px;
  border: 1.5px solid var(--border);
}
.nl-label { font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input {
  flex: 1; min-width: 200px;
  padding: 11px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--green); }

/* ================================================================
   SECTION: TESTIMONIALS
   ================================================================ */
.testi-section {
  padding: 100px 5%;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.testi-section::after {
  content: '"';
  font-family: var(--font-accent);
  font-size: 30rem;
  color: var(--yellow);
  opacity: 0.06;
  position: absolute;
  right: -60px;
  top: -60px;
  line-height: 1;
  pointer-events: none;
}
.testi-section .tag-pill { background: #FFE5E5; color: var(--red); }
.testi-section .section-title { color: var(--red); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
}
.testi-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
}
.testi-card:nth-child(1)::before { background: var(--purple); }
.testi-card:nth-child(2)::before { background: var(--orange); }
.testi-card:nth-child(3)::before { background: var(--green); }
.testi-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.testi-card:nth-child(2) { transform: translateY(12px); }
.testi-card:nth-child(2):hover { transform: translateY(2px); }

.testi-quote { font-family: var(--font-accent); font-size: 4rem; color: var(--yellow); opacity: 0.5; line-height: 0.5; margin-bottom: 16px; }
.testi-stars { color: var(--yellow); letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-size: 0.94rem; color: var(--body-text); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0; overflow: hidden;
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-card:nth-child(1) .testi-av { background: var(--purple-light); }
.testi-card:nth-child(2) .testi-av { background: var(--orange-light); }
.testi-card:nth-child(3) .testi-av { background: var(--green-light); }
.testi-name { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ================================================================
   SECTION: GALLERY
   ================================================================ */
.gallery-section {
  padding: 100px 5%;
  background: #fff;
  text-align: center;
}
.gallery-section .tag-pill { background: var(--blue-light); color: var(--blue); }
.gallery-section .section-title { color: var(--blue); }
.gallery-section .section-sub { margin: 0 auto 48px; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.g-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 4; }
.g-item:nth-child(3) { grid-column: span 3; }
.g-item:nth-child(4) { grid-column: span 3; }
.g-item:nth-child(5) { grid-column: span 4; }

.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; font-size: 2.5rem;
}
.g-item:nth-child(1) .g-ph { background: linear-gradient(135deg,#FFE0B2,#FF8F00); }
.g-item:nth-child(2) .g-ph { background: linear-gradient(135deg,#B2EBF2,#006064); }
.g-item:nth-child(3) .g-ph { background: linear-gradient(135deg,#E1BEE7,#6A1B9A); }
.g-item:nth-child(4) .g-ph { background: linear-gradient(135deg,#C8E6C9,#1B5E20); }
.g-item:nth-child(5) .g-ph { background: linear-gradient(135deg,#FFCDD2,#B71C1C); }
.g-label {
  font-family: var(--font-display);
  font-size: 1rem; color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(123,47,190,0);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.g-overlay span {
  font-size: 2.5rem; opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s var(--ease);
}
.g-item:hover .g-overlay { background: rgba(123,47,190,0.35); }
.g-item:hover .g-overlay span { opacity: 1; transform: scale(1); }

/* ================================================================
   SECTION: ADMISSION CTA — BOLD DIAGONAL
   ================================================================ */
.admission-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, var(--green) 0%, #27AE60 50%, #16A085 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  margin: -40px 0;
  padding-top: 160px;
  padding-bottom: 160px;
}
.admission-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(247,195,26,0.10) 0%, transparent 40%);
  pointer-events: none;
}
.admission-section .star-deco {
  position: absolute;
  font-size: 2rem;
  animation: starSpin 5s ease-in-out infinite;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.admission-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff; margin-bottom: 16px;
}
.admission-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }
.cta-form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.cta-input {
  flex: 1; min-width: 180px;
  padding: 15px 24px;
  border: none; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--dark); outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s;
}
.cta-input:focus { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 16px; }
.cta-note a { color: #fff; font-weight: 800; }

/* ================================================================
   SECTION: CONTACT BAR
   ================================================================ */
.contact-section {
  padding: 60px 5%;
  background: #fff;
  border-top: 2px solid var(--border);
}
.contact-inner {
  display: flex; gap: 24px; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto;
  align-items: center; justify-content: space-between;
}
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.contact-item:nth-child(1) .contact-ico { background: var(--purple-light); }
.contact-item:nth-child(2) .contact-ico { background: var(--green-light); }
.contact-item:nth-child(3) .contact-ico { background: var(--yellow-light); }
.contact-text strong { display: block; font-size: 0.75rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-text span { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.contact-text a { color: var(--dark); text-decoration: none; }
.contact-text a:hover { color: var(--purple); }

/* ================================================================
   FOOTER
   ================================================================ */
.c2c-footer {
  background: var(--dark);
  padding: 64px 5% 32px;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.footer-brand { }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 250px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; text-decoration: none;
  transition: all 0.3s var(--ease);
}
.soc-btn:hover { transform: scale(1.15) rotate(-5deg); color: #fff; }
.soc-btn.fb { background: #1877F2; }
.soc-btn.ig { background: linear-gradient(135deg,#F58529,#DD2A7B,#8134AF); }
.soc-btn.wa { background: #25D366; }
.soc-btn.yt { background: #FF0000; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem; color: #fff;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--yellow); text-decoration: none; }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px; z-index: 9999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}
.wa-fab:hover { transform: scale(1.12); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-smooth);
}
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s var(--ease-smooth); }
.reveal-left.up { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s var(--ease-smooth); }
.reveal-right.up { opacity: 1; transform: translateX(0); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(-50%) scale(0.9); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}
@keyframes floatSide {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
@keyframes starSpin {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.2) rotate(20deg); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
  50%      { box-shadow: 0 8px 48px rgba(37,211,102,0.80); }
}
@keyframes confettiDrop {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100px) rotate(360deg); opacity: 0; }
}

/* ================================================================
   BLOG / SINGLE POST PAGE
   ================================================================ */
.blog-post-wrap {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 5%;
}
.post-header { margin-bottom: 40px; }
.post-cat-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: var(--r-pill); background: var(--purple-light);
  color: var(--purple); margin-bottom: 14px;
}
.post-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 18px; }
.post-meta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--muted);
  padding-bottom: 20px; border-bottom: 2px solid var(--border);
}
.post-featured-img {
  border-radius: var(--r-xl); overflow: hidden;
  margin-bottom: 40px; aspect-ratio: 16/9;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content { font-size: 1.06rem; line-height: 1.85; }
.post-content h2 { font-size: 1.6rem; color: var(--purple); margin: 44px 0 16px; }
.post-content h3 { font-size: 1.25rem; color: var(--orange); margin: 32px 0 12px; }
.post-content p  { margin-bottom: 22px; }
.post-content img { border-radius: var(--r-lg); margin: 28px 0; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 22px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--purple);
  padding: 16px 24px; background: var(--purple-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 28px 0; font-style: italic; color: var(--purple);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .why-grid  { grid-template-columns: repeat(2, 1fr); }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card:nth-child(2) { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero::before { width: 100%; right: 0; border-radius: 0 0 0 80px; opacity: 0.3; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 85vh; }
  .hero-content { padding: 60px 5%; }
  .prog-grid  { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item:nth-child(1) { grid-column: span 2; height: 200px; }
  .g-item:nth-child(n) { grid-column: span 1; height: 160px; }
  .timeline-scroll::before { display: none; }
  .tl-step { min-width: 110px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .programs-section { clip-path: none; margin: 0; padding: 80px 5%; }
  .admission-section { clip-path: none; margin: 0; padding: 80px 5%; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 8px; }
  .stat-pill  { padding: 8px 14px; }
  .why-grid   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .g-item:nth-child(n) { grid-column: span 1; height: 180px; }
}
