/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --theme-color: #1D3B70;
  --theme-color2: #EDD9AE;
  --vs-secondary-color: #292865;
  --gradient-end: #3E3D99;
  --title-color: #000000;
  --body-color: #444444;
  --smoke-color: #F0F6FA;
  --white-color: #ffffff;
  --black-color: #000000;
  --yellow-color: #EDD9AE;
  --border-color: #E0E0E0;
  --title-font: 'Fredoka', sans-serif;
  --body-font: 'Jost', sans-serif;
  --transition: all 0.4s ease;
  --container-width: 1290px;
  --section-space: 100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-color);
  background: var(--white-color);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION SPACING ===== */
.section-pad { padding: var(--section-space) 0; }
.section-pad-sm { padding: 70px 0; }

/* ===== SECTION TITLE ===== */
.sec-title { text-align: center; margin-bottom: 50px; }
.sec-title .sub-title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--theme-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}
.sec-title h2 {
  font-family: var(--title-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec-title p { font-size: 16px; color: var(--body-color); max-width: 650px; margin: 0 auto; }

/* ===== BUTTON ===== */
.vs-btn {
  display: inline-block;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  background: var(--theme-color2);
  color: var(--vs-secondary-color);
  border-radius: 9999px;
  border: 2px solid var(--theme-color2);
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.vs-btn:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }
.vs-btn.style2 { background: var(--theme-color); color: #fff; border-color: var(--theme-color); }
.vs-btn.style2:hover { background: var(--vs-secondary-color); color: #fff; border-color: var(--vs-secondary-color); }
.vs-btn.style3 { background: transparent; color: var(--theme-color); }
.vs-btn.style3:hover { background: var(--theme-color); color: #fff; }
.vs-btn.outline-white { background: transparent; border-color: #fff; color: #fff; }
.vs-btn.outline-white:hover { background: #fff; color: var(--theme-color); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--white-color);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-info {
  display: flex;
  gap: 28px;
}
.top-bar-info a {
  color: var(--body-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar-info a:hover { color: var(--theme-color); }
.top-bar-info a i { color: var(--theme-color); font-size: 13px; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-social a {
  color: var(--body-color);
  font-size: 13px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.top-bar-social a:hover { background: var(--theme-color); border-color: var(--theme-color); color: #fff; }

/* ===== HEADER ===== */
.site-header {
  background: var(--vs-secondary-color);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.header-logo img { height: 56px; width: auto; }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--theme-color2); }
.main-nav > li > a .arrow { font-size: 11px; transition: var(--transition); }
.main-nav > li:hover > a .arrow { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.12);
  border-top: 3px solid var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  padding: 8px 0;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--title-color);
  transition: var(--transition);
  font-family: var(--body-font);
}
.dropdown li a:hover { color: var(--theme-color); background: var(--smoke-color); }

/* Nested dropdown */
.dropdown .has-sub { position: relative; }
.dropdown .has-sub > a { display: flex; justify-content: space-between; }
.dropdown .has-sub > a::after { content: '\f105'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 12px; }
.dropdown .sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.12);
  border-top: 3px solid var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  padding: 8px 0;
}
.dropdown .has-sub:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* HEADER BTN */
.header-btn-wrap { display: flex; align-items: center; gap: 12px; }
.header-btn-wrap .vs-btn { padding: 12px 28px; font-size: 15px; }

/* MOBILE TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white-color);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  position: absolute;
  top: 0; left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 80px 0 40px;
  transform: translateX(-100%);
  transition: var(--transition);
}
.mobile-nav.open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--title-color);
}
.mobile-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-list li a:hover { color: var(--theme-color); }
.mobile-sub-menu { display: none; padding-left: 16px; background: var(--smoke-color); }
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu li a { font-weight: 400; font-size: 14px; }
.mobile-toggle-btn { background: none; border: none; color: var(--body-color); font-size: 12px; padding: 0 8px; }

/* ===== HERO CAROUSEL ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--vs-secondary-color);
}
.hero-slider { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  background-color: var(--vs-secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.active { display: flex; }
.hero-slide-content { text-align: center; padding: 80px 20px; }
.hero-slide-content h1 {
  font-family: var(--title-font);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-slide-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.hero-slide-content .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.slider-arrow:hover { background: var(--theme-color); border-color: var(--theme-color); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--theme-color2); width: 28px; border-radius: 5px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white-color); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-images img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 220px;
}
.about-images img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}
.about-content .sub-title {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.about-content h2 {
  font-family: var(--title-font);
  font-size: 38px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.25;
  margin-bottom: 18px;
}
.about-content p { color: var(--body-color); margin-bottom: 24px; line-height: 1.8; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat-item { }
.stat-item .stat-num {
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 15px;
  color: var(--body-color);
  font-weight: 500;
  margin-top: 4px;
}

/* ===== SERVICE CARDS ===== */
.services-section { background: var(--white-color); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.service-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body {
  position: relative;
  margin-top: -56px;
  border-radius: 50px 50px 0 0;
  padding: 64px 26px 34px;
  text-align: center;
  color: #fff;
}
.service-card:nth-child(1) .service-card-body { background: #241C5B; }
.service-card:nth-child(2) .service-card-body { background: #1FB6B0; }
.service-card:nth-child(3) .service-card-body { background: #7A1E96; }
.service-card:nth-child(4) .service-card-body { background: #E8451F; }

.service-card-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.service-card:nth-child(1) .service-card-icon { color: #241C5B; }
.service-card:nth-child(2) .service-card-icon { color: #1FB6B0; }
.service-card:nth-child(3) .service-card-icon { color: #7A1E96; }
.service-card:nth-child(4) .service-card-icon { color: #E8451F; }

.service-card h3 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 18px 0 10px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 0; }
.service-card .learn-more {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.6);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover .learn-more {
  opacity: 1;
  max-height: 60px;
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}
.service-card .learn-more i { font-size: 12px; }

/* ===== CREATIVE LEARNING ===== */
.creative-section { background: var(--white-color); }
.creative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.creative-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.creative-image img { width: 100%; border-radius: 24px; }
.creative-content .sub-title {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.creative-content h2 {
  font-family: var(--title-font);
  font-size: 38px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.25;
  margin-bottom: 12px;
}
.creative-content .section-sub {
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--vs-secondary-color);
  margin-bottom: 18px;
}
.creative-content p { color: var(--body-color); margin-bottom: 24px; line-height: 1.8; }
.creative-list { margin-bottom: 32px; }
.creative-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--body-color);
}
.creative-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--theme-color);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.creative-list li strong { color: var(--title-color); }

/* ===== GRADE LEVELS ===== */
.grades-section { background: var(--smoke-color); }
.grades-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.grade-tab {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9999px;
  border: 2px solid var(--border-color);
  background: var(--white-color);
  color: var(--body-color);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.grade-tab:hover, .grade-tab.active {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}
.grade-tab .age {
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 3px;
}
.grade-content-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.grade-content-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grade-image img { width: 100%; border-radius: 24px; }
.grade-info h3 {
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 16px;
}
.grade-info p { color: var(--body-color); margin-bottom: 24px; }
.grade-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.grade-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body-color);
}
.grade-feature i { color: var(--theme-color); font-size: 16px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== WHY CHOOSE ===== */
.why-section { background: var(--white-color); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-card {
  background: var(--smoke-color);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(232,6,60,0.06);
}
.why-card:hover { background: var(--vs-secondary-color); }
.why-card:hover h3, .why-card:hover p { color: #fff; }
.why-card-num {
  font-family: var(--title-font);
  font-size: 60px;
  font-weight: 700;
  color: var(--border-color);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-card-num { color: rgba(255,255,255,0.2); }
.why-card h3 {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 12px;
  transition: var(--transition);
}
.why-card p { color: var(--body-color); font-size: 15px; transition: var(--transition); }
.why-card .why-icon {
  width: 64px;
  height: 64px;
  background: var(--white-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(255,255,255,0.15); color: #fff; }

/* ===== LEARNING MODULES ===== */
.modules-section { background: var(--white-color); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.module-card {
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.module-card:nth-child(1) { background: #FFF0F3; }
.module-card:nth-child(2) { background: #F0F0FF; }
.module-card:nth-child(3) { background: #F0FFF4; }
.module-card:nth-child(4) { background: #FFFBF0; }
.module-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
.module-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 24px;
}
.module-card:nth-child(1) .module-icon { background: var(--theme-color); color: #fff; }
.module-card:nth-child(2) .module-icon { background: var(--vs-secondary-color); color: #fff; }
.module-card:nth-child(3) .module-icon { background: #28a745; color: #fff; }
.module-card:nth-child(4) .module-icon { background: #f0ad4e; color: #fff; }
.module-card h3 {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 14px;
}
.module-card p { font-size: 15px; color: var(--body-color); line-height: 1.7; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--vs-secondary-color) 0%, var(--gradient-end) 100%);
  padding: 80px 0;
}
.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}
.newsletter-icon img { width: 100%; }
.newsletter-inner h2 {
  font-family: var(--title-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
}
.newsletter-inner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 9999px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 15px;
  font-family: var(--body-font);
  background: transparent;
  color: var(--title-color);
}
.newsletter-form button { flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--vs-secondary-color);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 52px; }
.footer-about-text { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; line-height: 1.8; }
.footer-widget-title {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color2);
  border-radius: 2px;
}

/* Footer address */
.footer-address { list-style: none; }
.footer-address li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-address li i { color: var(--theme-color2); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-address li a { color: rgba(255,255,255,0.75); }
.footer-address li a:hover { color: var(--theme-color2); }

/* Footer gallery */
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.footer-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  transition: var(--transition);
}
.footer-gallery img:hover { opacity: 0.75; }

/* Footer links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--theme-color2);
  font-size: 13px;
}
.footer-links li a:hover { color: var(--theme-color2); }

/* Footer social */
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--theme-color2); border-color: var(--theme-color2); color: #000; }

/* Footer hours */
.footer-hours { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }
.footer-hours strong { color: var(--theme-color2); }

/* ===== PAGE BANNER (BREADCRUMB) ===== */
.page-banner {
  padding: 100px 0 60px;
  background-color: var(--vs-secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--theme-color2); }
.breadcrumb span:last-child { color: var(--theme-color2); }

/* ===== MISSION & VISION ===== */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mission-card {
  background: var(--smoke-color);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--vs-secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.mission-card h3 {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 14px;
}
.mission-card p { color: var(--body-color); line-height: 1.8; }

/* ===== SESSION SCHEDULE ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.schedule-card {
  background: var(--white-color);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.schedule-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); }
.schedule-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--vs-secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.schedule-card h3 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 8px;
}
.schedule-time {
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 12px;
}
.schedule-card p:last-child { color: var(--body-color); font-size: 14px; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card { text-align: center; }
.team-photo {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 260px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 {
  font-family: var(--title-font);
  font-size: 21px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border-color);
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vs-secondary-color);
  color: #fff;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-content {
  background: var(--white-color);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  flex: 1;
}
.timeline-content h3 {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 8px;
}
.timeline-content p { color: var(--body-color); font-size: 15px; }

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, var(--vs-secondary-color) 0%, var(--gradient-end) 100%);
  padding: 60px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-band-item .stat-num {
  font-family: var(--title-font);
  font-size: 46px;
  font-weight: 700;
  color: var(--theme-color2);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-band-item .stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  transition: var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--smoke-color);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}
.testimonial-quote-icon {
  font-size: 28px;
  color: var(--theme-color);
  opacity: 0.4;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.testimonial-author h4 {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
}
.testimonial-author span { font-size: 14px; color: var(--theme-color); }

/* ===== COPYRIGHT ===== */
.copyright-bar {
  background: var(--theme-color2);
  padding: 22px 0;
  text-align: center;
}
.copyright-bar p {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-section { background: var(--white-color); }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-info-card {
  background: var(--smoke-color);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.contact-info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--vs-secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--transition);
}
.contact-info-card:hover .contact-info-icon { background: var(--theme-color); }
.contact-info-card h3 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
}
.contact-info-card p { color: var(--body-color); line-height: 1.6; margin-bottom: 4px; }
.contact-info-card a { color: var(--body-color); }
.contact-info-card a:hover { color: var(--theme-color); }

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section { background: var(--smoke-color); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}
.contact-details-panel {
  background: linear-gradient(135deg, var(--vs-secondary-color) 0%, var(--gradient-end) 100%);
  border-radius: 24px;
  padding: 44px 36px;
  color: #fff;
}
.contact-details-panel .sub-title {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color2);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.contact-details-panel h2 {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}
.contact-details-panel > p { color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.8; }
.contact-details-list { display: flex; flex-direction: column; gap: 26px; }
.contact-details-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-details-item i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--theme-color2);
}
.contact-details-item h4 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-details-item p, .contact-details-item a { color: rgba(255,255,255,0.8); font-size: 15px; }
.contact-details-item a:hover { color: var(--theme-color2); }

.contact-form-wrap {
  background: var(--white-color);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.contact-form-wrap .sub-title {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.contact-form-wrap h2 {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 28px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 8px;
}
.form-group label .req { color: #E8451F; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 13px 18px;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--title-color);
  background: var(--white-color);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--theme-color); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form .vs-btn { width: 100%; text-align: center; border: 2px solid var(--theme-color2); }
.form-note { font-size: 13px; color: var(--body-color); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  background: #e9f9ee;
  border: 1px solid #28a745;
  color: #1e7e34;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-success.show { display: block; }

/* ===== MAP SECTION ===== */
.map-section { background: var(--white-color); }
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  :root { --container-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 991px) {
  :root { --section-space: 70px; }
  .sec-title h2 { font-size: 34px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .creative-grid { grid-template-columns: 1fr; gap: 40px; }
  .grade-content-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
  .contact-details-panel { padding: 36px 28px; }
  .page-banner h1 { font-size: 38px; }
  .hero-slide { min-height: 480px; }
  .hero-slide-content h1 { font-size: 40px; }
  .main-nav-wrap { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-btn-wrap .vs-btn { display: none; }
}

@media (max-width: 767px) {
  :root { --section-space: 60px; }
  .sec-title h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .timeline::before { left: 23px; }
  .timeline-year { width: 48px; height: 48px; font-size: 12px; }
  .timeline-item { gap: 18px; }
  .hero-slide { min-height: 400px; }
  .hero-slide-content h1 { font-size: 30px; }
  .hero-slide-content p { font-size: 16px; }
  .about-stats { gap: 20px; }
  .stat-item .stat-num { font-size: 36px; }
  .grades-tabs { gap: 10px; }
  .grade-tab { padding: 10px 22px; font-size: 14px; }
  .top-bar { display: none; }
  .newsletter-form { flex-direction: column; border-radius: 16px; }
  .newsletter-form input { border-bottom: 1px solid var(--border-color); }
  .newsletter-form button { border-radius: 9999px; }
  .newsletter-inner h2 { font-size: 28px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-wrap iframe { height: 320px; }
}

@media (max-width: 480px) {
  .about-images img:first-child { height: 200px; }
  .about-images img { height: 160px; }
}

/* ===== SYLLABUS POPUP ===== */
.syllabus-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.syllabus-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.syllabus-popup {
  position: relative;
  background: var(--white-color);
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 45px 35px 40px;
  text-align: center;
  transform: translateY(-30px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.syllabus-popup-overlay.active .syllabus-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.syllabus-popup-accent {
  width: 90px;
  height: 8px;
  background: var(--body-color);
  border-radius: 4px;
  margin: 0 auto 28px;
}

.syllabus-popup-title {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.syllabus-popup-btn {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white-color);
  background: var(--vs-secondary-color);
  border: none;
  border-radius: 6px;
  padding: 13px 38px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.syllabus-popup-btn:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

.syllabus-popup-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--white-color);
  border: 3px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.syllabus-popup-close:hover {
  background: var(--vs-secondary-color);
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .syllabus-popup { padding: 40px 24px 32px; }
  .syllabus-popup-title { font-size: 22px; }
  .syllabus-popup-close { top: -14px; right: -14px; width: 36px; height: 36px; font-size: 14px; }
}
