/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.section-tag {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
  display: block;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  font-weight: 300;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden;
}
.btn-primary { background: #1a1a1a; color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: #1a1a1a; border: 2px solid #1a1a1a; }
.btn-outline:hover { background: #1a1a1a; color: #fff; transform: translateY(-2px); }
.btn-accent { background: #c9a96e; color: #fff; }
.btn-accent:hover { background: #b8954e; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,169,110,0.3); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.3); }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; background: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-dots { display: flex; gap: 10px; }
.loader-dots span {
  width: 14px; height: 14px; border-radius: 50%; background: #1a1a1a;
  animation: bounce 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.loader-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 40px; height: 40px; background: #1a1a1a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem;
}
.logo span { color: #c9a96e; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.85rem; font-weight: 500; color: #333;
  transition: color 0.3s; position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #c9a96e; transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: #000; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 28px; height: 2.5px; background: #1a1a1a;
  transition: all 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 50%, #e8e4de 100%);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 0.15; transform: scale(1); }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 100%);
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding-top: 100px; padding-bottom: 80px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(201,169,110,0.15);
  border-radius: 50px; font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem; font-weight: 600; color: #c9a96e;
  margin-bottom: 24px; border: 1px solid rgba(201,169,110,0.3);
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; color: #1a1a1a; }
.hero h1 em { font-style: italic; color: #c9a96e; }
.hero p {
  font-size: 1.1rem; color: #666; max-width: 500px;
  margin-bottom: 36px; font-weight: 300; line-height: 1.8;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; }
.hero-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.hero-image-grid .img-card {
  border-radius: 20px; overflow: hidden; position: relative;
  aspect-ratio: 1; background: #e0ddd8;
}
.hero-image-grid .img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-image-grid .img-card:hover img { transform: scale(1.08); }
.hero-image-grid .img-card:nth-child(1) { transform: translateY(-10px); }
.hero-image-grid .img-card:nth-child(4) { transform: translateY(10px); }
.hero-image-grid .img-card:nth-child(2) { margin-top: 30px; }
.hero-image-grid .img-card:nth-child(3) { margin-bottom: 30px; }
.hero-floating-card {
  position: absolute; bottom: 20px; left: -30px;
  background: #fff; padding: 16px 24px; border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-card .icon {
  width: 48px; height: 48px; background: #1a1a1a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
}
.hero-floating-card .text h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.hero-floating-card .text p { font-size: 0.8rem; color: #888; margin: 0; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 50px;
  padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.06);
}
.hero-stat h3 { font-size: 1.8rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.hero-stat p { font-size: 0.8rem; color: #888; margin: 0; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.hero-slider-nav {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.hero-slider-nav button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.2); background: transparent;
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-slider-nav button.active { background: #1a1a1a; border-color: #1a1a1a; }

/* ===== SECTIONS GENERAL ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-main {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  background: #e8e4de;
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: #1a1a1a; color: #fff; padding: 24px;
  border-radius: 16px; text-align: center; min-width: 140px;
}
.about-image-badge h3 { font-size: 2rem; font-family: 'Inter', sans-serif; color: #fff; }
.about-image-badge p { font-size: 0.75rem; opacity: 0.7; margin-top: 4px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: #666; margin-bottom: 16px; font-weight: 300; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #f8f8f8;
  border-radius: 12px; font-size: 0.9rem; font-weight: 500;
}
.about-feature i { color: #c9a96e; }

/* ===== ABOUT HIGHLIGHTS (legacy) ===== */
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-highlight {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: #f8f8f8;
  border-radius: 12px; font-size: 0.88rem; font-weight: 500;
}
.about-highlight i { color: #c9a96e; }

/* ===== MISSION ===== */
.mission-section { background: #f8f8f8; position: relative; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card {
  background: #fff; padding: 40px 30px; border-radius: 20px;
  text-align: center; transition: all 0.4s ease; border: 1px solid #eee;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.mission-card .icon {
  width: 64px; height: 64px; margin: 0 auto 20px; background: #1a1a1a;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 1.5rem;
}
.mission-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.mission-card p { color: #666; font-size: 0.9rem; font-weight: 300; }

/* ===== PROGRAMS ===== */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.program-card {
  background: #fff; border: 1px solid #eee; border-radius: 20px;
  padding: 36px 28px; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: #c9a96e; transform: scaleX(0); transition: transform 0.4s;
}
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.program-card .icon {
  width: 56px; height: 56px; background: #f5f5f5; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; color: #1a1a1a;
}
.program-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.program-card .age { font-family: 'Quicksand', sans-serif; font-size: 0.8rem; color: #c9a96e; font-weight: 600; margin-bottom: 12px; }
.program-card p { color: #666; font-size: 0.9rem; font-weight: 300; }
.program-card ul { margin-top: 14px; }
.program-card ul li {
  font-size: 0.85rem; color: #555; padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.program-card ul li i { color: #c9a96e; font-size: 0.7rem; }

/* ===== ACTIVITIES ===== */
.activities-section { background: #f8f8f8; }
.activities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.activity-card {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: all 0.3s;
}
.activity-card:hover { transform: translateX(4px); box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.activity-card .icon {
  min-width: 48px; height: 48px; background: #f5f5f5;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: #1a1a1a;
}
.activity-card h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.activity-card p { font-size: 0.85rem; color: #777; font-weight: 300; }

/* ===== FACILITIES ===== */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.facility-card {
  text-align: center; padding: 32px 20px; border-radius: 16px;
  border: 1px solid #eee; transition: all 0.4s;
}
.facility-card:hover { background: #1a1a1a; color: #fff; transform: translateY(-4px); }
.facility-card .icon {
  width: 56px; height: 56px; margin: 0 auto 16px; background: #f5f5f5;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; transition: 0.3s;
}
.facility-card:hover .icon { background: rgba(255,255,255,0.15); color: #fff; }
.facility-card h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 6px; }
.facility-card p { font-size: 0.85rem; color: #999; font-weight: 300; }
.facility-card:hover p { color: rgba(255,255,255,0.6); }

/* ===== SAFETY ===== */
.safety-section { background: #1a1a1a; color: #fff; }
.safety-section .section-tag { color: rgba(255,255,255,0.4); }
.safety-section .section-title { color: #fff; }
.safety-section .section-subtitle { color: rgba(255,255,255,0.6); }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.safety-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 30px 24px; text-align: center; transition: all 0.4s;
}
.safety-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.safety-card .icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(201,169,110,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #c9a96e;
}
.safety-card h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 8px; color: #fff; }
.safety-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ===== TEACHERS ===== */
.teachers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.teacher-card { text-align: center; transition: all 0.4s; }
.teacher-card:hover { transform: translateY(-4px); }
.teacher-card .image {
  width: 140px; height: 140px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  background: #e8e4de;
}
.teacher-card .image img { width: 100%; height: 100%; object-fit: cover; }
.teacher-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.teacher-card .role { font-size: 0.85rem; color: #c9a96e; font-weight: 600; font-family: 'Quicksand', sans-serif; }
.teacher-card p { font-size: 0.85rem; color: #888; font-weight: 300; margin-top: 8px; }

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-section { background: #f8f8f8; overflow: hidden; }
.testimonials-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-slide { min-width: 100%; padding: 0 10px; }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 40px 36px;
  border: 1px solid #eee; text-align: center;
}
.testimonial-card .stars { color: #c9a96e; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 1.05rem; color: #555; font-weight: 300;
  line-height: 1.9; margin-bottom: 24px; font-style: italic;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.testimonial-card .author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.testimonial-card .author .avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  background: #e8e4de;
}
.testimonial-card .author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card .author h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.testimonial-card .author p { font-size: 0.8rem; color: #999; }
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 36px;
}
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid #ddd; background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; font-size: 1rem; color: #333;
}
.carousel-btn:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid #ccc; background: transparent;
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.carousel-dots button.active { background: #1a1a1a; border-color: #1a1a1a; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .gallery-item {
  border-radius: 16px; overflow: hidden; position: relative;
  cursor: pointer; aspect-ratio: 1; background: #e8e4de;
}
.gallery-grid .gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.1); }
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
  color: #fff; font-size: 1.5rem;
}
.gallery-grid .gallery-item:hover .overlay { opacity: 1; }
.gallery-filter {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 36px;
}
.gallery-filter button {
  padding: 8px 20px; border: 1px solid #ddd; background: transparent;
  border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.gallery-filter button.active, .gallery-filter button:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 10001; display: flex; align-items: center;
  justify-content: center; opacity: 0; visibility: hidden;
  transition: all 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 85%; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: none; border: none; transition: all 0.3s;
}
.lightbox-close:hover { color: #c9a96e; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1); border: none;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-counter {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.9rem; font-weight: 300;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #eee; border-radius: 16px;
  margin-bottom: 12px; overflow: hidden; transition: all 0.3s;
}
.faq-item.active { border-color: #1a1a1a; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.faq-question {
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; transition: background 0.3s;
}
.faq-question:hover { background: #f8f8f8; }
.faq-question i { transition: transform 0.3s; font-size: 0.8rem; color: #999; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: #1a1a1a; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: #666; font-size: 0.9rem; font-weight: 300; }

/* ===== ADMISSIONS ===== */
.admissions-section { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); color: #fff; }
.admissions-section .section-tag { color: rgba(255,255,255,0.4); }
.admissions-section .section-title { color: #fff; }
.admissions-section .section-subtitle { color: rgba(255,255,255,0.6); }
.admissions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.admissions-steps { display: flex; flex-direction: column; gap: 24px; }
.admission-step { display: flex; align-items: flex-start; gap: 18px; }
.admission-step .num {
  min-width: 44px; height: 44px; background: rgba(201,169,110,0.2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: #c9a96e; font-size: 1.1rem;
}
.admission-step h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 4px; color: #fff; }
.admission-step p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.admissions-info {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 36px 30px;
}
.admissions-info h3 { font-size: 1.3rem; margin-bottom: 20px; color: #fff; }
.admissions-info .info-row {
  display: flex; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admissions-info .info-row:last-child { border: none; }
.admissions-info .info-row span:first-child { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.admissions-info .info-row span:last-child { color: #fff; font-weight: 500; font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 16px; }
.contact-info p { color: #666; font-weight: 300; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.contact-detail .icon {
  width: 48px; height: 48px; background: #f5f5f5; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #1a1a1a;
}
.contact-detail h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; }
.contact-detail p { font-size: 0.85rem; color: #888; margin: 0; }
.contact-form { background: #f8f8f8; padding: 36px; border-radius: 20px; }
.contact-form h3 { font-size: 1.2rem; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid #ddd;
  border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: #fff; transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #1a1a1a; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #0a0a0a; color: #fff; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 300; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.4);
  transition: all 0.3s; font-size: 0.9rem;
}
.footer-social a:hover { background: #c9a96e; border-color: #c9a96e; color: #fff; }
.footer h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 16px; color: #fff; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: color 0.3s; font-weight: 300; }
.footer ul li a:hover { color: #c9a96e; }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; font-weight: 300; }
.footer-attribution a { color: #c9a96e; }

/* ===== WHATSAPP BAR ===== */
.whatsapp-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #25D366; z-index: 998;
  display: none; align-items: center;
  justify-content: center; gap: 12px;
  padding: 12px 20px;
  box-shadow: 0 -4px 30px rgba(37,211,102,0.3);
  animation: slideUp 0.5s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.whatsapp-bar a {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.whatsapp-bar a i { font-size: 1.5rem; }
.whatsapp-bar .close-bar {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.2rem; cursor: pointer; margin-left: 10px;
  transition: color 0.3s;
}
.whatsapp-bar .close-bar:hover { color: #fff; }

/* ===== FLOATING ACTIONS ===== */
.float-actions {
  position: fixed; right: 20px; bottom: 80px;
  z-index: 999; display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none;
  color: #fff; font-size: 1.2rem; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center;
  justify-content: center; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn .tooltip {
  position: absolute; right: 62px; background: #1a1a1a;
  color: #fff; padding: 8px 14px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 500; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.float-btn:hover .tooltip { opacity: 1; }
.float-btn.call { background: #1a1a1a; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.schedule { background: #c9a96e; }
.float-btn.enquiry { background: #000; }

/* ===== PAGE BANNER ===== */
.page-banner {
  padding: 160px 0 80px; background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 50%, #e8e4de 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-banner h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-banner p { color: #666; font-weight: 300; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.page-banner .breadcrumb {
  font-family: 'Quicksand', sans-serif; font-size: 0.8rem; color: #999;
  margin-bottom: 16px; letter-spacing: 1px;
}
.page-banner .breadcrumb a { color: #c9a96e; }
.page-banner .breadcrumb span { color: #666; }

/* ===== SERVICE INTRO ===== */
.service-intro { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.service-intro h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.service-intro p { color: #666; font-weight: 300; }
.service-cta {
  text-align: center; padding: 60px 0 0;
  border-top: 1px solid #eee; margin-top: 50px;
}
.service-cta h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-cta p { color: #666; font-weight: 300; margin-bottom: 24px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; left: 20px; bottom: 80px;
  width: 44px; height: 44px; background: #1a1a1a;
  color: #fff; border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  z-index: 999; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #c9a96e; transform: translateY(-2px); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .admissions-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    padding: 24px; gap: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-top: 1px solid #eee;
  }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  section { padding: 60px 0; }
  .hero-floating-card { display: none; }
  .float-actions { right: 12px; bottom: 70px; }
  .float-btn { width: 46px; height: 46px; font-size: 1rem; }
  .float-btn .tooltip { display: none; }
  .contact-form { padding: 24px; }
  .teachers-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-bar { display: flex; }
  .whatsapp-bar .hide-mobile { display: none; }
  .back-to-top { bottom: 70px; left: 12px; width: 40px; height: 40px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.3rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
@media (max-width: 480px) {
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .programs-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: 1fr; }
  .carousel-btn { width: 40px; height: 40px; }
}
