:root {
  --green:       #2E8B57;
  --green-mid:   #3DA96B;
  --green-light: #E8F5EE;
  --green-pale:  #F2FAF5;
  --amber:       #F5A623;
  --amber-light: #FEF6E4;
  --sky:         #4A9ECC;
  --sky-light:   #E8F4FB;
  --navy:        #1A3055;
  --white:       #FFFFFF;
  --bg:          #FAFCF9;
  --text:        #1C2B1E;
  --text-muted:  #5A6B5D;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --shadow-sm:   0 2px 12px rgba(46,139,87,0.10);
  --shadow-md:   0 6px 30px rgba(46,139,87,0.14);
  --shadow-lg:   0 16px 60px rgba(46,139,87,0.16);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Nunito', sans-serif;
  --transition:  all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 80px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 580px;
  line-height: 1.7;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scale(0);
  border-radius: 100px;
  transition: transform 0.4s;
}
.btn:active::after { transform: scale(2); opacity: 0; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(46,139,87,0.35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 30px rgba(46,139,87,0.45); }
.btn-secondary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}
.btn-secondary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 30px rgba(245,166,35,0.5); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ============================================================
   ADMISSION BANNER
============================================================ */
.admission-banner {
  background: linear-gradient(90deg, var(--navy) 0%, var(--green) 60%, var(--green-mid) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 100;
}
.admission-banner span { background: rgba(255,255,255,0.2); padding: 2px 10px; border-radius: 100px; margin: 0 6px; }

/* ============================================================
   NAVBAR — with real logo
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(46,139,87,0.1);
  box-shadow: 0 2px 20px rgba(46,139,87,0.07);
  transition: box-shadow 0.3s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,48,85,0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-img {
  box-shadow: 0 4px 18px rgba(46,139,87,0.28);
  transform: rotate(3deg) scale(1.06);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.15;
  color: var(--navy);
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(46,139,87,0.1);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 600; color: var(--text-muted);
  padding: 10px 12px; border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--green-light); color: var(--green); }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(150deg, #EBF7F0 0%, #FAFCF9 55%, #FEF6E4 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,169,107,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(46,139,87,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 8px;
  background: var(--amber);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.55;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.75;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Trust badges below hero */
.trust-strip {
  background: #fff;
  border-top: 1px solid rgba(46,139,87,0.08);
  border-bottom: 1px solid rgba(46,139,87,0.08);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-right: 1px solid rgba(46,139,87,0.12);
  flex: 1;
  min-width: 160px;
  justify-content: center;
  transition: background 0.2s ease;
}
.trust-badge:hover { background: var(--green-pale); border-radius: 10px; }
.trust-badge:last-child { border-right: none; }
.trust-badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.trust-badge:hover .trust-badge-icon { transform: scale(1.12) rotate(5deg); }
.trust-badge-icon svg { width: 20px; height: 20px; }
.trust-badge-text strong {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.2;
}
.trust-badge-text span {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-img-wrap { position: relative; }
.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-main:hover img { transform: scale(1.04); }
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-card .ficon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-card .ficon svg { width: 20px; height: 20px; }
.hero-float-card.card-1 { top: -18px; right: -18px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 24px; left: -22px; animation-delay: 1.5s; }
.card-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); display: block; }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
}
.about-img-badge strong { display: block; font-size: 2.2rem; line-height: 1; }
.about-img-badge span { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; opacity: 0.9; }
.about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, transform 0.25s ease;
}
.about-point:hover { background: var(--green-pale); transform: translateX(4px); }
.about-point-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.about-point:hover .about-point-icon { transform: scale(1.1) rotate(5deg); }
.about-point-icon svg { width: 22px; height: 22px; color: var(--green); }
.about-point-text strong { display: block; font-weight: 800; font-size: 0.92rem; color: var(--text); margin-bottom: 2px; }
.about-point-text span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   RATIO / INDIVIDUAL ATTENTION SECTION
============================================================ */
.ratio-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 60%, #1F6E40 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.ratio-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.ratio-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ratio-content { color: #fff; }
.ratio-content .tag-pill { background: rgba(255,255,255,0.15); color: #fff; }
.ratio-content .section-title { color: #fff; }
.ratio-content .section-title span { color: var(--amber); }
.ratio-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ratio-big small {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-family: var(--font-body);
}
.ratio-points { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.ratio-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  transition: transform 0.2s ease;
}
.ratio-point:hover { transform: translateX(5px); }
.ratio-point .check {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.ratio-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  aspect-ratio: 4/3;
}
.ratio-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PROGRAMS
============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.3s;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(46,139,87,0.06), rgba(46,139,87,0.02));
}
.program-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); border-color: rgba(46,139,87,0.2); }
.program-card:hover::before { opacity: 1; }
.prog-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.program-card:hover .prog-icon { transform: scale(1.15) rotate(-5deg); }
.prog-icon svg { width: 28px; height: 28px; }
.ic1 { background: var(--amber-light); color: var(--amber); }
.ic2 { background: var(--green-light); color: var(--green); }
.ic3 { background: var(--sky-light); color: var(--sky); }
.ic4 { background: #FDE8F4; color: #C056A0; }
.ic5 { background: #EEF0FE; color: #5A67E8; }
.ic6 { background: #FFF0E6; color: #E06A20; }
.prog-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.prog-age { font-size: 0.75rem; font-weight: 700; color: var(--green); letter-spacing: 0.5px; margin-bottom: 10px; }
.prog-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   FACILITIES
============================================================ */
.facilities-section { background: var(--green-pale); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.facility-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.facility-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.facility-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.facility-card:hover .facility-img img { transform: scale(1.06); }
.facility-overlay {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff;
  padding: 5px 12px; border-radius: 100px;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.facility-body { padding: 20px 22px; }
.facility-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.facility-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   ACTIVITIES / CAMPUS LIFE
============================================================ */
.activities-section { background: #fff; }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 40px;
}
.activity-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.activity-card.tall { grid-row: span 2; aspect-ratio: auto; }
.activity-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.activity-card:hover img { transform: scale(1.07); }
.activity-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(28,43,30,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.82rem;
  z-index: 1;
  transition: background 0.2s;
}
.activity-card:hover .activity-label { background: var(--green); }
.activity-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,30,0.35) 0%, transparent 50%);
}

/* ============================================================
   TRANSPORT SECTION
============================================================ */
.transport-section {
  background: linear-gradient(135deg, #FEF6E4 0%, #fff 100%);
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
}
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.transport-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.transport-img img { width: 100%; height: 100%; object-fit: cover; }
.transport-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.transport-point {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--amber);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.transport-point:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.transport-point svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; }
.transport-point span { font-weight: 700; font-size: 0.9rem; color: var(--text); }

/* ============================================================
   PRINCIPAL'S MESSAGE
============================================================ */
.principal-section { background: var(--green-pale); }
.principal-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.principal-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  position: relative;
}
.principal-photo img { width: 100%; height: 100%; object-fit: cover; }
.principal-photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,43,30,0.85) 0%, transparent 100%);
  padding: 28px 22px 20px;
  color: #fff;
}
.principal-photo-badge strong { display: block; font-family: var(--font-display); font-size: 1.2rem; }
.principal-photo-badge span { font-size: 0.8rem; opacity: 0.85; }
.principal-message {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--green-mid);
  margin: 24px 0;
}
.principal-sig {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 20px;
}
.principal-sig span { display: block; font-family: var(--font-body); font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

/* ============================================================
   GALLERY
============================================================ */
.gallery-section { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,43,30,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(28,43,30,0.12); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--green-pale); }
.testimonials-note {
  display: inline-block;
  background: var(--amber-light);
  color: #A06820;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 10px;
  letter-spacing: 0.4px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 14px; right: 20px;
  font-size: 5rem; line-height: 1;
  color: var(--green-light);
  font-family: Georgia, serif;
}
.testi-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:nth-child(1) { border-top-color: var(--green); }
.why-card:nth-child(2) { border-top-color: var(--amber); }
.why-card:nth-child(3) { border-top-color: var(--sky); }
.why-card:nth-child(4) { border-top-color: #E06A20; }
.why-card:nth-child(5) { border-top-color: #C056A0; }
.why-card:nth-child(6) { border-top-color: #5A67E8; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  background: var(--green-light);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-8deg); }
.why-icon svg { width: 26px; height: 26px; color: var(--green); }
.why-card:nth-child(2) .why-icon { background: var(--amber-light); }
.why-card:nth-child(2) .why-icon svg { color: var(--amber); }
.why-card:nth-child(3) .why-icon { background: var(--sky-light); }
.why-card:nth-child(3) .why-icon svg { color: var(--sky); }
.why-card:nth-child(4) .why-icon { background: #FFF0E6; }
.why-card:nth-child(4) .why-icon svg { color: #E06A20; }
.why-card:nth-child(5) .why-icon { background: #FDE8F4; }
.why-card:nth-child(5) .why-icon svg { color: #C056A0; }
.why-card:nth-child(6) .why-icon { background: #EEF0FE; }
.why-card:nth-child(6) .why-icon svg { color: #5A67E8; }
.why-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.why-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: linear-gradient(180deg, var(--bg) 0%, var(--green-pale) 100%); }
.faq-list { max-width: 750px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(46,139,87,0.25); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  user-select: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ============================================================
   ENQUIRY FORM
============================================================ */
.enquiry-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 55%, #1F6E40 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.enquiry-left { color: #fff; }
.enquiry-left .tag-pill { background: rgba(255,255,255,0.15); color: #fff; }
.enquiry-left .section-title { color: #fff; }
.enquiry-left .section-title span { color: var(--amber); }
.enquiry-left .section-sub { color: rgba(255,255,255,0.75); max-width: 400px; }
.enq-features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.enq-feat {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600; font-size: 0.92rem;
}
.enq-feat .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%; flex-shrink: 0;
}
.enquiry-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.4rem;
  color: var(--text); margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-weight: 700;
  font-size: 0.82rem; color: var(--text);
  margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #E4EDE6;
  border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--text);
  background: #FAFDF9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #BCCEBE; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,139,87,0.12);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: #fff; border: none;
  border-radius: 100px;
  font-weight: 800; font-size: 1.05rem;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(46,139,87,0.4);
  margin-top: 6px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,139,87,0.5); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
.form-error { background: #FDE8E8; color: #B91C1C; border-radius: 10px; padding: 10px 16px; font-size: 0.88rem; font-weight: 700; margin-bottom: 14px; }
.form-success-box { text-align:center; padding:30px 20px; }

/* ============================================================
   SAFETY / LEARNING APPROACH SECTION
============================================================ */
.safety-section {
  background: linear-gradient(160deg, var(--text) 0%, #2A3E2C 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.safety-section::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: rgba(46,139,87,0.12);
  border-radius: 50%;
}
.safety-section .container { position: relative; z-index: 1; }
.safety-section .section-title { color: #fff; }
.safety-section .section-title span { color: var(--amber); }
.safety-section .tag-pill { background: rgba(255,255,255,0.12); color: #fff; }
.safety-section .section-sub { color: rgba(255,255,255,0.65); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.safety-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.safety-item:hover {
  background: rgba(46,139,87,0.15);
  border-color: rgba(46,139,87,0.35);
  transform: translateY(-3px);
}
.safety-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.safety-icon svg { width: 26px; height: 26px; }
.si1 { background: rgba(61,169,107,0.25); color: var(--green-mid); }
.si2 { background: rgba(245,166,35,0.22); color: var(--amber); }
.si3 { background: rgba(74,158,204,0.22); color: var(--sky); }
.si4 { background: rgba(200,100,160,0.18); color: #C056A0; }
.safety-item-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 5px; }
.safety-item-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,0.12);
  padding: 2px;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: #fff; line-height: 1.2;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-desc { font-size: 0.85rem; line-height: 1.65; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contact { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.footer-contact svg { width: 15px; height: 15px; opacity: 0.7; flex-shrink: 0; }
.footer-heading { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--green-mid); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 10px; font-size: 0.82rem;
}

/* ============================================================
   FLOATING ELEMENTS
============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 90px; right: 22px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn svg { width: 26px; height: 26px; color: #fff; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: #fff;
  border-top: 1px solid #E4EDE6;
  padding: 10px 16px; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-mobile-bar a { flex: 1; text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; font-size: 0.9rem; }
.smb-call { background: var(--green-light); color: var(--green); }
.smb-enquire { background: var(--green); color: #fff; }

/* ============================================================
   SECTION HEADER UTILITY
============================================================ */
.section-header { margin-bottom: 10px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 10px auto 0; }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { max-width: 560px; margin: 0 auto; }
  .ratio-section .container { grid-template-columns: 1fr; }
  .ratio-img { max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-main { aspect-ratio: 16/9; max-width: 560px; }
  .transport-grid { grid-template-columns: 1fr; }
  .transport-img { max-width: 560px; }
  .principal-wrap { grid-template-columns: 1fr; }
  .principal-photo { max-width: 340px; aspect-ratio: 4/3; }
  .enquiry-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-actions .btn { padding: 12px 22px; font-size: 0.92rem; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .activity-card.tall { grid-row: auto; }
  .safety-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-float-card.card-1 { top: -10px; right: 0; }
  .hero-float-card.card-2 { bottom: 10px; left: 0; }
  .trust-badge { border-right: none; border-bottom: 1px solid rgba(46,139,87,0.1); }
  .trust-badge:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .enquiry-form { padding: 24px 20px; }
  .activities-grid { grid-template-columns: 1fr; }
}
