/*
Theme Name: New Gen Preschool
Theme URI: https://newgenpreschool.com
Author: New Gen Preschool
Author URI: https://newgenpreschool.com
Description: A vibrant, modern preschool website theme with Elementor support, admission forms, gallery, franchise section and WhatsApp integration.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newgen-preschool
Tags: education, preschool, elementor, kids, colorful, modern
*/

/* ============================================================
   GLOBAL VARIABLES & RESET
   ============================================================ */
:root {
  --color-primary:    #F48FB1;
  --color-secondary:  #1E3A8A;
  --color-accent1:    #FFD54F;
  --color-accent2:    #81C784;
  --color-bg:         #FFFFFF;
  --color-light-pink: #FFF0F5;
  --color-text:       #333333;
  --color-text-light: #666666;
  --font-heading:     'Simplo', 'Nunito', sans-serif;
  --font-body:        'Poppins', sans-serif;
  --radius-btn:       30px;
  --radius-card:      20px;
  --shadow-soft:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:     0 8px 36px rgba(0,0,0,0.14);
  --transition:       all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-secondary); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: #e07ea0; color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--color-secondary); }

.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn-secondary:hover { background: #162d6e; color: #fff; }

.btn-accent {
  background: var(--color-accent1);
  color: var(--color-secondary);
  border-color: var(--color-accent1);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1da851; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}
.section-title-wrap { text-align: center; margin-bottom: 50px; }
.title-divider {
  width: 60px; height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 56px; width: auto; }
.logo-text-wrap .logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-secondary);
  font-weight: 800;
  line-height: 1;
}
.logo-text-wrap .logo-tagline {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 500;
}

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--color-primary);
  background: var(--color-light-pink);
}
.nav-cta { margin-left: 10px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #F48FB1 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-kids.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,0.75) 0%, rgba(244,143,177,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
  animation: fadeInUp 0.8s ease both;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-content p {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badge {
  display: inline-block;
  background: var(--color-accent1);
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTION 2: QUICK ADMISSION FORM
   ============================================================ */
.admission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-light-pink) 0%, #f0f4ff 100%);
}
.admission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.admission-left .section-title { text-align: left; }
.admission-left .title-divider { margin: 12px 0 0; }
.admission-left p { margin-top: 18px; color: var(--color-text-light); }
.admission-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.admission-highlights .highlight-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--color-secondary);
}
.highlight-item .hi-icon { font-size: 20px; }

.admission-form-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}
.admission-form-wrap h3 {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.admission-form-wrap .form-sub {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 22px;
}

/* Form Styles */
.ngp-form { display: flex; flex-direction: column; gap: 14px; }
.ngp-form input,
.ngp-form select,
.ngp-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8d5e0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.ngp-form input:focus,
.ngp-form select:focus,
.ngp-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(244,143,177,0.18);
  background: #fff;
}
.ngp-form select { cursor: pointer; }
.ngp-form textarea { resize: vertical; min-height: 80px; }
.ngp-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ngp-form .btn { width: 100%; margin-top: 4px; font-size: 15px; padding: 14px; }
.form-note { font-size: 11px; color: var(--color-text-light); text-align: center; margin-top: 8px; }

/* ============================================================
   SECTION 3: WHY CHOOSE US
   ============================================================ */
.why-section { padding: 80px 0; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid #f5e6ec;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.why-card .wc-icon { font-size: 52px; margin-bottom: 18px; line-height: 1; }
.why-card h3 { font-size: 18px; color: var(--color-secondary); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--color-text-light); line-height: 1.7; }

/* ============================================================
   SECTION 4: PROGRAMS
   ============================================================ */
.programs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, var(--color-light-pink) 100%);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.program-card {
  border-radius: var(--radius-card);
  padding: 32px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.program-card:hover { transform: scale(1.04); box-shadow: var(--shadow-hover); }
.program-card.pc-pink    { background: #FFE4EE; }
.program-card.pc-blue    { background: #E0EAFF; }
.program-card.pc-yellow  { background: #FFFBE6; }
.program-card.pc-green   { background: #E6F7E9; }
.program-card .pc-icon   { font-size: 48px; margin-bottom: 14px; }
.program-card h3         { font-size: 17px; color: var(--color-secondary); margin-bottom: 6px; }
.program-card .pc-age    { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-bottom: 10px; }
.program-card p          { font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   SECTION 5: GALLERY
   ============================================================ */
.gallery-section { padding: 80px 0; background: #fff; }
.gallery-filters {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 36px; flex-wrap: wrap;
}
.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f5e6ec;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; }

/* Gallery placeholder boxes */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  font-size: 40px;
}
.gallery-placeholder span { font-size: 13px; color: #888; font-weight: 500; }

/* ============================================================
   SECTION 6: ABOUT SNAPSHOT
   ============================================================ */
.about-section { padding: 80px 0; background: #f8fbff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img-wrap img { width: 100%; object-fit: cover; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  min-height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 60px;
  gap: 10px;
}
.about-img-placeholder span { font-size: 16px; font-weight: 600; }
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--color-accent1);
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-content .section-title { text-align: left; }
.about-content .title-divider { margin: 12px 0 0; }
.about-content p { margin-top: 20px; color: var(--color-text-light); font-size: 15px; }
.about-stats {
  display: flex; gap: 30px; margin-top: 30px;
}
.stat-item { text-align: center; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--color-primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--color-text-light); margin-top: 4px; }
.about-content .btn { margin-top: 28px; }

/* ============================================================
   SECTION 7: FRANCHISE CTA
   ============================================================ */
.franchise-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2d5be3 100%);
  position: relative;
  overflow: hidden;
}
.franchise-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.franchise-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(244,143,177,0.15);
  border-radius: 50%;
}
.franchise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.franchise-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 42px); margin-bottom: 16px; }
.franchise-inner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 32px; }
.franchise-features {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
}
.ff-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  min-width: 120px;
}
.ff-item .ff-icon { font-size: 24px; margin-bottom: 6px; }

/* Franchise Modal */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: fadeInUp 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  background: none; border: none;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--color-secondary); }
.modal-box h3 { font-size: 22px; margin-bottom: 6px; }
.modal-box p { font-size: 13px; color: var(--color-text-light); margin-bottom: 24px; }

/* ============================================================
   SECTION 8: FINAL CTA
   ============================================================ */
.final-cta-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--color-light-pink) 0%, #e8f0ff 100%);
  text-align: center;
}
.final-cta-section .cta-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: pulse 2s infinite;
}
.final-cta-section h2 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 12px; }
.final-cta-section p { color: var(--color-text-light); margin-bottom: 32px; font-size: 15px; }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}
.footer-col p { font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 13px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--color-primary); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: var(--transition);
}
.social-link:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 13px;
}
.footer-contact-item .fc-icon { font-size: 16px; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  display: flex; align-items: center; gap: 10px;
}
.wa-float a {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   INNER PAGE BANNERS
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #4a7ae2 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: rgba(244,143,177,0.15);
  border-radius: 50%;
}
.page-banner h1 { color: #fff; font-size: clamp(28px, 5vw, 48px); margin-bottom: 10px; }
.page-banner p   { color: rgba(255,255,255,0.8); font-size: 16px; }
.breadcrumb { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.directors-section { padding: 80px 0; }
.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.director-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease;
}
.director-card:hover { transform: translateY(-6px); }
.director-photo {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}
.director-info { padding: 22px; }
.director-info h3 { font-size: 17px; color: var(--color-secondary); margin-bottom: 4px; }
.director-info .designation { font-size: 12px; color: var(--color-primary); font-weight: 600; margin-bottom: 10px; }
.director-info p { font-size: 13px; color: var(--color-text-light); }

.vision-mission {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, var(--color-light-pink) 100%);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.vm-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.vm-card .vm-icon { font-size: 48px; margin-bottom: 16px; }
.vm-card h3 { font-size: 22px; color: var(--color-secondary); margin-bottom: 14px; }
.vm-card p { font-size: 14px; color: var(--color-text-light); line-height: 1.8; }

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.program-detail-section { padding: 60px 0; }
.program-detail-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 30px;
}
.pdc-header {
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pdc-header.ph-pink   { background: #FFE4EE; }
.pdc-header.ph-blue   { background: #E0EAFF; }
.pdc-header.ph-yellow { background: #FFFBE6; }
.pdc-header.ph-green  { background: #E6F7E9; }
.pdc-icon { font-size: 50px; }
.pdc-title h3 { font-size: 22px; color: var(--color-secondary); }
.pdc-title .pdc-age { font-size: 14px; color: var(--color-primary); font-weight: 600; margin-top: 4px; }
.pdc-body { padding: 30px 36px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.pdc-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-secondary); margin-bottom: 12px; }
.pdc-col ul { list-style: none; }
.pdc-col ul li { font-size: 13px; color: var(--color-text-light); padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.pdc-col ul li::before { content: '✓'; color: var(--color-primary); font-weight: 700; }

/* ============================================================
   FRANCHISE PAGE
   ============================================================ */
.franchise-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.fw-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border-top: 4px solid var(--color-primary);
}
.fw-card .fw-icon { font-size: 40px; margin-bottom: 14px; }
.fw-card h3 { font-size: 16px; color: var(--color-secondary); margin-bottom: 8px; }
.fw-card p { font-size: 13px; color: var(--color-text-light); }

.support-timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.support-timeline::before {
  content: '';
  position: absolute;
  left: 32px; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-primary);
}
.st-item {
  display: flex; gap: 24px;
  margin-bottom: 32px;
  position: relative;
}
.st-num {
  width: 64px; height: 64px;
  min-width: 64px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: 0 0 0 4px rgba(244,143,177,0.2);
  z-index: 1;
}
.st-content { padding-top: 10px; }
.st-content h4 { font-size: 16px; color: var(--color-secondary); margin-bottom: 6px; }
.st-content p  { font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.contact-info h3 { font-size: 24px; margin-bottom: 24px; }
.ci-item {
  display: flex; gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--color-light-pink);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.ci-text .ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-primary); font-weight: 700; }
.ci-text p { font-size: 14px; color: var(--color-text); margin-top: 2px; }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe { display: block; border: none; }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form-wrap h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form-wrap p { font-size: 13px; color: var(--color-text-light); margin-bottom: 24px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-section { padding: 60px 0 80px; }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* Intersection Observer utility */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE / RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .directors-grid { grid-template-columns: 1fr 1fr; }
  .pdc-body { grid-template-columns: 1fr 1fr; }
  .franchise-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .why-grid, .admission-grid, .about-grid,
  .vm-grid, .contact-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .directors-grid { grid-template-columns: 1fr; }
  .pdc-body { grid-template-columns: 1fr; }
  .franchise-why-grid { grid-template-columns: 1fr; }
  .about-stats { justify-content: center; }

  .main-nav ul, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
    z-index: 999;
  }
  .main-nav.open .nav-cta { display: block; padding: 0 20px 16px; }

  .hero-content h1  { font-size: 28px; }
  .hero-content p   { font-size: 14px; }
  .hero-buttons     { flex-direction: column; align-items: center; }

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

  .section-title { font-size: 24px; }

  .modal-box { padding: 28px 22px; }

  .wa-float { bottom: 20px; right: 20px; }
  .wa-float a { width: 50px; height: 50px; }
  .wa-pulse { width: 50px; height: 50px; }

  .support-timeline::before { display: none; }
}

@media (max-width: 480px) {
  .programs-grid  { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: 1fr; }
  .franchise-features { flex-direction: column; align-items: center; }
}
