/* ==========================================
   SNN KNOWLEDGEWOOD – GLOBAL STYLES
   ========================================== */

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

:root {
  --green-dark: #1a5c30;
  --green-mid: #2d7a47;
  --green-light: #e8f5ec;
  --yellow: #f5c518;
  --yellow-dark: #d4a915;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text-dark: #111827;
  --font: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,48,0.3);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--gray-800);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-schedule {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.btn-schedule:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,92,48,0.25);
}

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
  background: var(--green-light);
}

.nav-link.active {
  font-weight: 700;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,48,0.82) 0%, rgba(10,40,20,0.65) 60%, rgba(245,197,24,0.15) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 24px 80px;
  max-width: 680px;
}

.slide-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slide-dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 5px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-accent {
  color: var(--yellow);
  display: inline-block;
  position: relative;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-dark);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  padding: 7px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}

.badge:hover {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.2);
  transform: translateY(-1px);
}

.badge svg {
  color: var(--yellow);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero image wrap removed - using full bg slider */

/* ==========================================
   STATS BAR
   ========================================== */

.stats-bar {
  background: var(--white);
  padding: 30px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  position: relative;
  z-index: 2;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-icon {
  background: var(--green-light);
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 4px;
}

/* ==========================================
   ACTIVITIES SECTION
   ========================================== */

.activities {
  background: var(--off-white);
}

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

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.activity-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-width: 5px;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.activity-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.activity-card h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.activity-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}

.about-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--green-mid) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.about-content .section-title {
  text-align: left;
}

.about-desc {
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */

.programs {
  background: var(--off-white);
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.program-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.program-img-wrap img {
  transition: transform 0.5s ease;
}

.program-card:hover .program-img-wrap img {
  transform: scale(1.05);
}

.program-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.program-badge svg {
  color: var(--green-dark);
}

.program-body {
  padding: 22px;
}

.program-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.program-age {
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow-dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.program-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.program-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.program-link:hover {
  color: var(--green-mid);
  gap: 10px;
}

/* ==========================================
   FACILITIES SECTION
   ========================================== */

.facilities {
  background: var(--off-white);
}

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

.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.facility-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  background: var(--green-light);
}

.facility-item:hover .facility-icon {
  background: var(--green-dark);
}

.facility-item:hover .facility-icon svg {
  stroke: var(--white);
}

.facility-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.facility-item p {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-large {
  grid-row: 1 / 3;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,48,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
  background: var(--off-white);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 60px;
  line-height: 0.8;
  color: var(--green-light);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  color: var(--green-dark);
  opacity: 0.2;
}

.stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--green-dark);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================
   ADMISSIONS BANNER
   ========================================== */

.admissions-banner {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.admissions-bg {
  position: absolute;
  inset: 0;
}

.admissions-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admissions-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,48,0.88) 0%, rgba(26,92,48,0.75) 100%);
}

.admissions-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 48px 24px;
  flex-wrap: wrap;
}

.admissions-icon {
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.admissions-text {
  flex: 1;
}

.admissions-text h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.admissions-text h3 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.admissions-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.admissions-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
  gap: 48px;
  padding: 60px 24px 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-social-bottom {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social-bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

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

/* ==========================================
   AOS ANIMATIONS
   ========================================== */

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos][data-aos-delay="100"].aos-animate {
  transition-delay: 0.1s;
}

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

@media (max-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    z-index: 999;
  }

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

  .hamburger {
    display: flex;
  }

  .btn-schedule {
    display: none;
  }

  .hero-inner {
    padding: 80px 24px 60px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

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

  .hero-ctas {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-large {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 220px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 32px;
  }

  .admissions-inner {
    flex-direction: column;
    text-align: center;
  }

  .admissions-ctas {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    height: 200px;
  }

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