/* =============================================
   GLOBAL STYLES & CSS VARIABLES
   ============================================= */
   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary: #1a3a5c;
  --primary-dark: #0e2240;
  --primary-dk:   #0e2240;
  --primary-lt:   #2d5986;
  --primary-light: #2d5986;
  --accent: #c8922a;
  --accent-light: #e8b44a;
  --accent-dark: #a57318;
  --accent-lt:    #e8b44a;
  --accent-dk:    #a57318;
  --cream: #f8f4ec;
  --cream-dark: #ede8db;
  --text-dark: #1c2635;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --red: #c0392b;
  --green: #27ae60;
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
  --shadow-md: 0 8px 30px rgba(26,58,92,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,92,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --txt:          #1c2635; 
  --txt-lt:       #718096;
   --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tr:           all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }


.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}
.label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--primary-dk);
  margin-bottom: 1rem;
}
.sec-sub {
  font-size: 1rem;
  color: var(--txt-mid);
  max-width: 580px;
  line-height: 1.8;
}
.sec-sub.center { margin: 0 auto; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,146,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.82rem;
}
.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ann-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  flex: 1;
}
.ann-label {
  background: var(--accent);
  color: var(--white);
  padding: 0.15rem 0.75rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-content {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  gap: 3rem;
}
.ticker-content span { color: rgba(255,255,255,0.85); }
@keyframes ticker { 0%{transform:translateX(100%)} 100%{transform:translateX(-100%)} }

.ann-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.ann-contacts a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.ann-contacts a:hover { color: var(--accent-light); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,58,92,0.1);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(26,58,92,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.logo-emblem {
  width: 58px;
  height: 58px;
  /*background: var(--primary);*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  /*overflow: hidden;*/
}
.logo-emblem::before {
  content: '';
  position: absolute;
  inset: 3px;
  /*border: 2px solid rgba(200,146,42,0.5);*/
  border-radius: 50%;
}
.logo-emblem svg { width: 34px; height: 34px; fill: var(--accent-light); }
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* NAV */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(26,58,92,0.06);
}
.nav-link.active { color: var(--accent); }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  transform: translateX(0) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(26,58,92,0.08);
  z-index: 2000;
  padding: 0.4rem 0;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(26,58,92,0.08);
  border-top: 1px solid rgba(26,58,92,0.08);
  transform: rotate(45deg);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(0) translateY(0); }
.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--cream); color: var(--primary); padding-left: 1.6rem; }

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-cta .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 2px solid rgba(26,58,92,0.15);
  border-radius: 8px;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,26,47,0.85) 0%,
    rgba(10,26,47,0.5) 60%,
    rgba(10,26,47,0.2) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.slide-content .container { max-width: 800px; }

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
}
.slide.active .slide-tag { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.7s, transform 0.7s 0.7s;
}
.slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.9s, transform 0.7s 0.9s;
}
.slide.active .slide-btns { opacity: 1; transform: translateY(0); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: all;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.25rem;
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }

/* Stats bar */
.stats-bar {
  background: var(--primary-dark);
  padding: 1.25rem 0;
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}


/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-sec { background: var(--primary-dk); position: relative; overflow: hidden; }
.why-sec::before {
  content: ''; position: absolute;
  top: -20%; right: -8%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse, rgba(200,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
  transform-origin: left;
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: -0.5rem; }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.65rem; }
.why-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* =============================================
   FEATURES / ACTIVITIES
   ============================================= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  border: 1px solid rgba(26,58,92,0.06);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--white); }
.feat-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 800; color: rgba(26,58,92,0.05); line-height: 1; position: absolute; top: 0.5rem; right: 1rem; }
.feat-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1rem; color: var(--primary-dk); margin-bottom: 0.6rem; }
.feat-card p { font-size: 0.82rem; color: var(--txt-mid); line-height: 1.75; }


/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text strong { font-size: 0.85rem; color: var(--primary-dark); display: block; }
.feature-text span { font-size: 0.75rem; color: var(--text-light); }

/* =============================================
   NEWS & EVENTS
   ============================================= */
.news-section { background: var(--white); }
.news-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(26,58,92,0.07);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-card-body { padding: 1.25rem; }
.news-date {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.news-card h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.news-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }

/* Sidebar */
.news-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }

.sidebar-box {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-box-header {
  background: var(--primary);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sidebar-box-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sidebar-box-body { padding: 1rem 1.25rem; }

/* Events */
.event-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.event-item:last-child { border-bottom: none; padding-bottom: 0; }
.event-date-box {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-date-box .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.event-date-box .mon {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.event-info h5 { font-size: 0.85rem; color: var(--primary-dark); margin-bottom: 0.25rem; line-height: 1.35; }
.event-info span { font-size: 0.75rem; color: var(--text-light); }

/* Social Sidebar */
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  color: var(--white);
}
.social-link:hover { transform: translateX(4px); filter: brightness(1.1); }
.social-link.fb { background: #1877F2; }
.social-link.yt { background: #FF0000; }
.social-link.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.wa { background: #25D366; }
.social-link svg { width: 18px; height: 18px; fill: var(--white); flex-shrink: 0; }

/* =============================================
   WHY CHOOSE US (Doon Style)
   ============================================= */
.why-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(200,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-header { text-align: center; margin-bottom: 4rem; }
.why-header .section-label { justify-content: center; }
.why-header .section-label::before { display: none; }
.why-header .section-title { color: var(--white); }
.why-header .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(200,146,42,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--accent); transform: scale(1.1); }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* =============================================
   FEATURES SECTION (GSMSS Style)
   ============================================= */
.features-section { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  border: 1px solid rgba(26,58,92,0.05);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(26,58,92,0.04);
  line-height: 1;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.2);
}
.fc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.feature-card:hover .fc-icon { transform: rotate(-5deg) scale(1.05); }
.feature-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.feature-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   PRINCIPAL MESSAGE (Vantage Hall Style)
   ============================================= */
.principal-section { background: var(--white); }
.principal-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.principal-image-wrap { position: relative; }
.principal-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.principal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.principal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,47,0.7) 0%, transparent 60%);
}
.principal-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--white);
}
.principal-caption h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.principal-caption span {
  font-size: 0.8rem;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.principal-sig {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.principal-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.55;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  position: relative;
}
.principal-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.principal-message p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* =============================================
   GALLERY SECTION (GSMSS Style)
   ============================================= */
.gallery-section { background: var(--cream); }
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--white);
  color: var(--text-mid);
  transition: var(--transition);
  border-color: var(--cream-dark);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover .gallery-item-img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,26,47,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.gallery-item-overlay span { font-size: 0.8rem; opacity: 0.75; }

/* =============================================
   INSPIRE BANNER (GSMSS Style)
   ============================================= */
.inspire-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.inspire-section::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='%23ffffff' fill-opacity='0.03'%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");
}
.inspire-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0;
}
.inspire-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.inspire-title em { color: var(--accent-light); font-style: italic; }
.inspire-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.inspire-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,42,0.2);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author-info strong { font-size: 0.9rem; color: var(--primary-dark); display: block; }
.testimonial-author-info span { font-size: 0.77rem; color: var(--text-light); }

/* =============================================
   FOOTER (GSMSS Style)
   ============================================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.footer-logo .logo-emblem { background: rgba(255,255,255,0.1); }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-about p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-links a::before { content: '›'; font-size: 1.1rem; color: var(--accent); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(200,146,42,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--accent-light);
}
.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--accent-light); }

/* =============================================
   PAGE HERO (Internal Pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Counter animation */
.counter { font-variant-numeric: tabular-nums; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-card h4 { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card p { font-size: 0.95rem; color: var(--primary-dark); font-weight: 500; }

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,58,92,0.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,58,92,0.07);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Map */
.map-section { background: var(--cream); padding-bottom: 0; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  gap: 0.5rem;
}

/* =============================================
   ADMISSION PAGE
   ============================================= */
.admission-steps { display: flex; flex-direction: column; gap: 0; }
.admission-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2.5rem;
}
.admission-step:last-child { padding-bottom: 0; }
.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  border: 3px solid var(--cream-dark);
}
.step-line {
  width: 2px;
  background: var(--cream-dark);
  flex: 1;
  min-height: 60px;
}
.admission-step:last-child .step-line { display: none; }
.step-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  flex: 1;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  margin-top: 0.25rem;
}
.step-content:hover { box-shadow: var(--shadow-md); border-color: rgba(200,146,42,0.2); }
.step-content h3 { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.step-content p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* Fee Table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fee-table th {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.fee-table td {
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.fee-table tr:nth-child(even) td { background: var(--cream); }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:hover td { background: rgba(200,146,42,0.06); }

/* =============================================
   FACILITIES PAGE
   ============================================= */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.facility-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.facility-card:hover .facility-card-img img { transform: scale(1.06); }
.facility-card-body { padding: 2rem; }
.facility-card-body h3 { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
.facility-card-body p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .news-layout { grid-template-columns: 1fr; }
  .principal-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .facilities-grid { grid-template-columns: 1fr; }
  .ann-contacts { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    padding: 5.5rem 1.5rem 2rem;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    border-left: 1px solid rgba(26,58,92,0.08);
  }
  .main-nav.open { transform: translateX(0); }

  /* Overlay when menu open */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.open { display: block; }

  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-item { width: 100%; border-bottom: 1px solid var(--cream-dark); }
  .nav-link {
    font-size: 1rem;
    padding: 0.9rem 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(26,58,92,0.04);
    padding: 0.25rem 0;
    margin: 0;
    display: none;
    border-radius: 0;
  }
  .dropdown::before { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent);
    margin: 0.1rem 0;
  }
  .dropdown a:hover { padding-left: 1.6rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 2rem 1.5rem; }
  .section-pad { padding: 60px 0; }
  .about-badge { display: none; }
  .about-image-secondary { display: none; }

  /* Mobile admission steps */
  .admission-step { flex-direction: column; gap: 1rem; }
  .step-num-wrap { flex-direction: row; align-items: center; }
  .step-line { width: 30px; height: 2px; min-height: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   GALLERY SLIDER
   ============================================= */
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.gallery-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-slide {
  flex: 0 0 100%;
  position: relative;
}
.gallery-slide-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
}
.gallery-slide-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-slide-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-slide-cell {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s ease;
}
.gallery-slide-item:first-child .gallery-slide-cell { font-size: 4rem; min-height: 300px; }
.gallery-slide-item:hover .gallery-slide-cell { transform: scale(1.05); }
.gallery-slide-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,26,47,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1rem;
  text-align: center;
}
.gallery-slide-item:hover .gallery-slide-item-overlay { opacity: 1; }
.gallery-slide-item-overlay h5 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.gallery-slide-item-overlay span { font-size: 0.75rem; opacity: 0.8; }

.gslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: var(--transition);
}
.gslider-btn:hover { background: var(--accent); border-color: var(--accent); }
.gslider-btn.prev { left: 1rem; }
.gslider-btn.next { right: 1rem; }

.gslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.gslider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.gslider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb:hover { border-color: rgba(200,146,42,0.5); }
.gallery-thumb-cell {
  width: 100%; height: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media(max-width: 768px) {
  .gallery-slide-inner { grid-template-columns: repeat(2,1fr); }
  .gallery-slide-item:first-child { grid-column: span 2; }
  .gallery-slide-item:first-child .gallery-slide-cell { min-height: 180px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================
   MANDATORY DISCLOSURE
   ============================================= */
.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}
.disclosure-table th {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.disclosure-table td {
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: top;
  line-height: 1.6;
}
.disclosure-table tr:nth-child(even) td { background: var(--cream); }
.disclosure-table tr:last-child td { border-bottom: none; }
.disclosure-table td:first-child { font-weight: 600; color: var(--primary-dark); width: 40%; }
.disclosure-table a { color: var(--accent); text-decoration: underline; }
.disclosure-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.disclosure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,146,42,0.1);
  color: var(--accent-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(200,146,42,0.25);
  margin-bottom: 1.5rem;
}



/* =============================================
   FIXED SOCIAL MEDIA SIDEBAR (Right Middle)
   ============================================= */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0;
  filter: drop-shadow(-3px 3px 12px rgba(0,0,0,0.25));
}
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 48px;
  height: 46px;
  border-radius: 8px 0 0 8px;
  text-decoration: none;
  color: white;
  font-size: 1.15rem;
  position: relative;
  overflow: hidden;
  transition: width 0.32s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.2s;
  cursor: pointer;
}
.social-sidebar a:hover {
  width: 130px;
}
.social-sidebar a .ssb-icon {
  width: 48px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}
.social-sidebar a .ssb-label {
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s 0.05s, transform 0.25s 0.05s;
  position: absolute;
  left: 10px;
}
.social-sidebar a:hover .ssb-label {
  opacity: 1;
  transform: translateX(0);
}
.social-sidebar a.ssb-fb  { background: #1877F2; }
.social-sidebar a.ssb-yt  { background: #FF0000; }
.social-sidebar a.ssb-wa  { background: #25D366; }
.social-sidebar a.ssb-ig  { background: linear-gradient(145deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-sidebar a.ssb-tw  { background: #1DA1F2; }
.social-sidebar a svg { width: 20px; height: 20px; fill: white; }

@media (max-width: 768px) {
  .social-sidebar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    background: rgba(10,26,47,0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    gap: 0;
    border-radius: 0;
    filter: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  }
  .social-sidebar a {
    width: 20%;
    height: 52px;
    border-radius: 0;
    justify-content: center;
    flex-direction: column;
    font-size: 0.9rem;
  }
  .social-sidebar a:hover { width: 20%; }
  .social-sidebar a .ssb-label {
    font-size: 0.6rem;
    position: static;
    transform: none;
    opacity: 1;
    margin-top: 2px;
    letter-spacing: 0;
  }
  .social-sidebar a .ssb-icon { width: auto; height: auto; font-size: 1.1rem; }
  body { padding-bottom: 52px; }
}


/* =============================================
   FIXED SOCIAL SIDEBAR (Right Middle)
   ============================================= */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 888;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.18);
}
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: width 0.3s ease, padding 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.social-sidebar a .soc-label {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 0.4rem;
  letter-spacing: 0.02em;
}
.social-sidebar a:hover {
  width: 120px;
  padding-right: 0.75rem;
  justify-content: flex-start;
  padding-left: 0.85rem;
}
.social-sidebar a:hover .soc-label { display: inline; }
.social-sidebar a:hover .soc-icon { flex-shrink: 0; }

.social-sidebar .soc-fb { background: #1877F2; }
.social-sidebar .soc-yt { background: #FF0000; }
.social-sidebar .soc-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-sidebar .soc-wa { background: #25D366; }
.social-sidebar .soc-tw { background: #1DA1F2; }

.soc-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; flex-shrink: 0; }

@media(max-width: 768px) {
  .social-sidebar {
    top: auto;
    bottom: 80px;
    transform: none;
  }
  .social-sidebar a { width: 40px; height: 40px; font-size: 0.95rem; }
  .social-sidebar a:hover { width: 40px; padding-left: 0; padding-right: 0; justify-content: center; }
  .social-sidebar a:hover .soc-label { display: none; }
}





/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.g-tab {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid rgba(26,58,92,0.15);
  color: var(--txt-mid);
  background: transparent;
  transition: var(--tr);
  cursor: pointer;
}
.g-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.g-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: var(--tr);
}

.g-item:hover { transform: scale(0.98); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,34,64,0.7);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  padding: 1rem;
  text-align: center;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay h5 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.g-overlay span { font-size: 0.72rem; opacity: 0.8; }

/* Gallery Slider (gallery page) */
.gsl-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--primary-dk); }
.gsl-track { display: flex; transition: transform 0.6s var(--ease); }
.gsl-slide { flex: 0 0 100%; }
.gsl-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.5rem; }
.gsl-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  transition: var(--tr);
}
.gsl-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 280px; font-size: 4.5rem; }
.gsl-item:hover { transform: scale(0.98); }
.gsl-item .g-overlay { opacity: 0; }
.gsl-item:hover .g-overlay { opacity: 1; }

/* Slider arrows */
.gsl-prev, .gsl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: var(--tr);
}
.gsl-prev { left: 1rem; }
.gsl-next { right: 1rem; }
.gsl-prev:hover, .gsl-next:hover { background: var(--accent); border-color: var(--accent); }

/* Slider dots */
.gsl-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1rem; }
.gsl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cream-dk); border: none; cursor: pointer; transition: var(--tr); }
.gsl-dot.active { background: var(--accent); width: 22px; border-radius: 3px; }

/* Thumbnails */
.gsl-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; margin-top: 0.75rem; }
.gsl-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--tr);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.gsl-thumb.active { border-color: var(--accent); }
.gsl-thumb:hover:not(.active) { border-color: rgba(200,146,42,0.45); }


/* View toggle */
.view-toggle { display: flex; gap: 0.4rem; }
.v-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 2px solid rgba(26,58,92,0.15);
  background: var(--white);
  color: var(--txt-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--tr);
}
.v-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner { max-width: 860px; width: 92%; text-align: center; position: relative; }
.lb-close { position: absolute; top: -3.2rem; right: 0; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }
.lb-img { border-radius: var(--radius-lg); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 7rem; }
.lb-cap { color: rgba(255,255,255,0.8); margin-top: 0.9rem; font-size: 0.9rem; }
.lb-nav-wrap { position: absolute; top: 50%; transform: translateY(-50%); width: calc(100% + 80px); left: -40px; display: flex; justify-content: space-between; pointer-events: none; }
.lb-nav-btn { pointer-events: all; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: var(--tr); }
.lb-nav-btn:hover { background: var(--accent); border-color: var(--accent); }
