/* ============================================================
   Ma Shri Vindhyavasini Inter College — Master Stylesheet
   Theme: Prestige Academic Navy & Royal Gold (Luxury UI/UX)
   ============================================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Primary Prestige Palette */
  --navy:          #0a1f3f;
  --navy-deep:     #07152b;
  --navy-light:    #132e5d;
  --navy-soft:     #1e3d74;
  --gold:          #d4a843;
  --gold-light:    #f3d37a;
  --gold-dark:     #b08a2e;
  --gold-glow:     rgba(212, 168, 67, 0.25);

  /* Neutrals & Surfaces */
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --gray-50:       #f1f5f9;
  --gray-100:      #e2e8f0;
  --gray-200:      #cbd5e1;
  --gray-400:      #94a3b8;
  --gray-600:      #64748b;
  --gray-700:      #475569;
  --gray-800:      #334155;
  --gray-900:      #0f172a;
  --text:          #1e293b;
  --text-light:    #64748b;

  /* Accents */
  --success:       #16a34a;
  --danger:        #dc2626;
  --info:          #2563eb;

  /* Typography */
  --font-primary:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading:  'Poppins', 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-py:    5.5rem;
  --container-px:  1.5rem;
  --container-max: 1240px;

  /* Border Radius */
  --radius-sm:     0.4rem;
  --radius:        0.6rem;
  --radius-lg:     1rem;
  --radius-xl:     1.5rem;
  --radius-full:   9999px;

  /* Elevations */
  --shadow-sm:     0 2px 8px rgba(10, 31, 63, 0.04);
  --shadow:        0 8px 24px rgba(10, 31, 63, 0.07);
  --shadow-lg:     0 16px 40px rgba(10, 31, 63, 0.1);
  --shadow-xl:     0 24px 60px rgba(10, 31, 63, 0.14);
  --shadow-gold:   0 10px 25px rgba(212, 168, 67, 0.35);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition:      0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

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

.section--navy {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}

.section--navy-light {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.font-semibold { font-weight: 600; }
.font-medium   { font-weight: 500; }

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 168, 67, 0.25);
  margin-bottom: .85rem;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .85rem;
  letter-spacing: -0.5px;
}

.section--navy .section-header__title,
.section--navy-light .section-header__title {
  color: var(--white);
}

.section-header__line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.section-header__desc {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section--navy .section-header__desc,
.section--navy-light .section-header__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.85rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: .2px;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35);
  border: 1px solid rgba(212, 168, 67, 0.5);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.5);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.3);
  box-shadow: var(--shadow);
}

.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.btn--sm {
  padding: .55rem 1.25rem;
  font-size: .85rem;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}

/* ---------- Top Info Bar ---------- */
.top-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: .8rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar__link:hover {
  color: var(--gold-light);
}

.top-bar__divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar__admissions-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.7);
  animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.7); }
  70%  { transform: scale(1); box-shadow: 0 0 0 6px rgba(212, 168, 67, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 168, 67, 0); }
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.top-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: var(--transition-fast);
}

.top-bar__social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 31, 63, 0.06);
  box-shadow: 0 4px 20px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(10, 31, 63, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.navbar__logo-emblem {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 31, 63, 0.2);
  flex-shrink: 0;
  border: 1px solid rgba(212, 168, 67, 0.35);
}

.emblem-text {
  color: var(--gold-light);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.brand-sub {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .4px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.navbar__link {
  position: relative;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.navbar__link:hover {
  color: var(--navy);
  background: rgba(10, 31, 63, 0.04);
}

.navbar__link.active {
  color: var(--navy);
  background: rgba(212, 168, 67, 0.12);
  font-weight: 700;
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.navbar__cta {
  margin-left: .5rem;
}

/* Hamburger Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.navbar__toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 992px) {
  .navbar__toggle { display: flex; }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 330px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    gap: .35rem;
    box-shadow: var(--shadow-xl);
    transition: right .35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .navbar__menu.open { right: 0; }
  .navbar__link { width: 100%; padding: .85rem 1rem; font-size: 1.05rem; }
  .navbar__cta { margin-left: 0; margin-top: 1.25rem; width: 100%; text-align: center; }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 63, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .mobile-overlay.active { opacity: 1; pointer-events: all; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(19, 46, 93, 0.4) 0%, transparent 60%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-shapes span {
  position: absolute;
  border-radius: 50%;
}

.hero__bg-shapes span:nth-child(1) {
  width: 550px;
  height: 550px;
  top: -150px;
  right: -120px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
}

.hero__bg-shapes span:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(19, 46, 93, 0.25) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold-light);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.5px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 650px;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.hero__stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .4rem;
}

.hero__stat-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Highlight Cards ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.highlight-card {
  background: var(--white);
  border: 1px solid rgba(10, 31, 63, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(10, 31, 63, 0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity .3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 31, 63, 0.12);
  border-color: rgba(212, 168, 67, 0.3);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.06), rgba(212, 168, 67, 0.12));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.highlight-card:hover .highlight-card__icon {
  background: var(--navy);
  color: var(--gold-light);
  transform: scale(1.05);
}

.highlight-card__title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.highlight-card__desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- About Summary ---------- */
.about-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-summary__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.about-summary__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  gap: .75rem;
  padding: 2rem;
  text-align: center;
}

.about-summary__image-placeholder svg {
  color: var(--gold);
}

.about-summary__text p {
  color: var(--text-light);
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ---------- Feature Grid (Specialities Teaser) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.75rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 16px 35px rgba(10, 31, 63, 0.09);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(10, 31, 63, 0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: var(--navy);
  color: var(--gold);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.feature-card__desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(10, 31, 63, 0.09);
  border-color: rgba(212, 168, 67, 0.35);
}

.why-card__num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.12);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}

.why-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Our Approach ---------- */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.approach-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.approach-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.approach-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.approach-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.approach-step p {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

/* ---------- Google Reviews / Testimonials ---------- */
.reviews-section {
  background: var(--off-white);
}

.reviews-header {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--white);
  padding: 1.25rem 2.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(10, 31, 63, 0.07);
  border: 1px solid var(--gray-100);
}

.reviews-badge__rating {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.reviews-badge__count {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
}

.reviews-badge__stars {
  color: #fbbc05;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.reviews-badge__google {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: #4285F4;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10, 31, 63, 0.1);
  border-color: rgba(212, 168, 67, 0.35);
}

.testimonial-card__stars {
  color: #fbbc05;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.testimonial-card__role {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ---------- News Ticker / Notices ---------- */
.news-strip {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  padding: .65rem 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(212, 168, 67, 0.2);
}

.news-strip__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.news-strip__label {
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .3rem .9rem;
  background: var(--navy-deep);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.news-strip__marquee {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.news-strip__track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.news-strip__track span {
  font-size: .9rem;
  font-weight: 600;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Page Hero / Breadcrumb ---------- */
.page-hero {
  background: radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 4.5rem 0 3.5rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: .04;
  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='1'%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");
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.2rem;
  background: rgba(212, 168, 67, 0.18);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: .6rem;
  position: relative;
  letter-spacing: -0.5px;
}

.page-hero__subtitle {
  max-width: 680px;
  margin: 0 auto 1.25rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
}

.page-hero__breadcrumb a {
  color: var(--gold-light);
  font-weight: 600;
}

.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- About Page ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.philosophy-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
}

.philosophy-card:hover {
  box-shadow: 0 16px 35px rgba(10, 31, 63, 0.09);
  transform: translateY(-4px);
}

.philosophy-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
}

.philosophy-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Management message */
.management-msg {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 12px 40px rgba(10, 31, 63, 0.07);
  border: 1px solid var(--gray-100);
  border-left: 6px solid var(--gold);
  position: relative;
}

.management-msg::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 6rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: .25;
}

.management-msg__text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--gray-800);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.management-msg__author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.management-msg__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(10, 31, 63, 0.2);
}

.management-msg__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
}

.management-msg__role {
  font-size: .85rem;
  color: var(--text-light);
}

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.mv-card--mission {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 25px rgba(10, 31, 63, 0.05);
}

.mv-card--vision {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(10, 31, 63, 0.15);
}

.mv-card--vision h3 { color: var(--gold-light); }
.mv-card--vision p  { color: rgba(255, 255, 255, 0.85); }

.mv-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: .98rem;
  line-height: 1.8;
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.value-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 15px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(212, 168, 67, 0.18);
  transform: translateY(-4px);
}

.value-item__icon {
  font-size: 2rem;
  margin-bottom: .6rem;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

/* ---------- Specialities Page Grid ---------- */
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.spec-card {
  background: var(--white);
  border: 1px solid rgba(10, 31, 63, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  box-shadow: 0 16px 40px rgba(10, 31, 63, 0.1);
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.35);
}

.spec-card__image {
  height: 180px;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.05) 0%, rgba(212, 168, 67, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}

.spec-card:hover .spec-card__image {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--gold-light);
}

.spec-card__body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.spec-card__body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
  font-size: 1.22rem;
}

.spec-card__body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Mandatory Public Disclosure (Executive UI/UX) ---------- */
.disclosure-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.overview-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(10, 31, 63, 0.04);
  transition: var(--transition);
}

.overview-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 31, 63, 0.08);
  border-color: rgba(212, 168, 67, 0.4);
}

.overview-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(10, 31, 63, 0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.overview-item:hover .overview-item__icon {
  background: var(--navy);
  color: var(--gold);
}

.overview-item__content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.overview-item__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-light);
  margin-bottom: .2rem;
}

.overview-item__val {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}

.overview-item small {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .15rem;
}

/* Interactive Controls: Tabs & Search */
.disclosure-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--white);
  padding: .85rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.05);
  margin-bottom: 2rem;
  position: sticky;
  top: 72px;
  z-index: 95;
  backdrop-filter: blur(12px);
}

.disclosure-tabs {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.disclosure-tab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  background: transparent;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.disclosure-tab .tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  transition: var(--transition);
}

.disclosure-tab:hover {
  background: var(--off-white);
  color: var(--navy);
  border-color: var(--gray-200);
}

.disclosure-tab.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 31, 63, 0.2);
}

.disclosure-tab.active .tab-badge {
  background: var(--gold);
  color: var(--navy);
}

.disclosure-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.disclosure-search {
  position: relative;
  display: flex;
  align-items: center;
}

.disclosure-search__icon {
  position: absolute;
  left: .9rem;
  color: var(--gray-400);
  pointer-events: none;
}

.disclosure-search input {
  padding: .55rem 2.2rem .55rem 2.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  font-size: .85rem;
  color: var(--text);
  width: 230px;
  transition: var(--transition);
}

.disclosure-search input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 31, 63, 0.08);
  width: 270px;
}

.disclosure-search__clear {
  position: absolute;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--gray-400);
  cursor: pointer;
  display: none;
  line-height: 1;
}

.btn--outline-dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.search-result-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  padding: .65rem 1.25rem;
  border-radius: var(--radius);
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.search-result-notice button {
  background: none;
  border: none;
  color: #1e40af;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

/* Disclosure Cards */
.disclosure-card {
  background: var(--white);
  border: 1px solid rgba(10, 31, 63, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 24px rgba(10, 31, 63, 0.04);
  margin-bottom: 2.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.disclosure-card:hover {
  box-shadow: 0 10px 32px rgba(10, 31, 63, 0.07);
  border-color: rgba(212, 168, 67, 0.3);
}

.disclosure-card__header {
  background: linear-gradient(135deg, #fafbfe 0%, #f3f5fa 100%);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.disclosure-card__header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .9rem;
  background: var(--navy);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(10, 31, 63, 0.15);
}

.disclosure-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.disclosure-card__subtitle {
  font-size: .84rem;
  color: var(--text-light);
  margin-top: .25rem;
}

.disclosure-card__count {
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* Disclosure Table */
.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-bottom: 0;
}

.disclosure-table thead tr {
  background: linear-gradient(to right, var(--navy), var(--navy-light));
}

.disclosure-table th {
  padding: 1rem 1.25rem;
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: none;
}

.disclosure-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
  color: var(--text);
  transition: background 0.15s ease;
}

.disclosure-table tbody tr:nth-child(even) {
  background: rgba(247, 248, 250, 0.6);
}

.disclosure-table tbody tr:hover {
  background: rgba(212, 168, 67, 0.05);
}

.td-sl {
  text-align: center;
  width: 70px;
}

.sl-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(10, 31, 63, 0.06);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  transition: var(--transition);
}

.disclosure-table tbody tr:hover .sl-pill {
  background: var(--gold);
  color: var(--navy);
}

.td-title {
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .2px;
}

/* Status Badges */
.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  line-height: 1.2;
}

.doc-badge--pending {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.doc-badge--pending svg { color: #d97706; }

.link-styled {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
}

.link-styled:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.address-box {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}

.address-box svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gold-dark);
}

.teacher-breakdown {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .6rem;
  padding-left: .5rem;
}

.teacher-breakdown__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
}

.breakdown-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--gray-200);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Subtables (Results) */
.result-subtable-block {
  padding: 1.75rem 2rem;
  border-top: 2px solid var(--gray-100);
}

.subtable-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.subtable-badge {
  padding: .3rem .8rem;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  border-radius: 6px;
}

.subtable-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.disclosure-table--sub th {
  background: #1e3a66;
}

/* Official Declaration Footer */
.disclosure-signoff {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.03) 0%, rgba(212, 168, 67, 0.05) 100%);
  border: 1px solid rgba(10, 31, 63, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}

.disclosure-signoff__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclosure-signoff__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.disclosure-signoff__text {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: .6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10, 31, 63, 0.03);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 31, 63, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.06);
  border: 1px solid var(--gray-100);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 31, 63, 0.12);
  border-color: rgba(212, 168, 67, 0.4);
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  gap: .6rem;
  font-size: .9rem;
  padding: 1.5rem;
  text-align: center;
}

.gallery-item__placeholder svg {
  color: var(--gold);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 43, 0.9) 0%, rgba(7, 21, 43, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item__label {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}

/* ---------- Events ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(10, 31, 63, 0.05);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: 0 16px 40px rgba(10, 31, 63, 0.1);
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.35);
}

.event-card__date-bar {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}

.event-card__date {
  text-align: center;
  min-width: 54px;
}

.event-card__date-day {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
}

.event-card__date-month {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  font-weight: 700;
}

.event-card__time {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.75);
}

.event-card__category {
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  margin-left: auto;
  letter-spacing: .5px;
}

.event-card__body {
  padding: 2rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: .65rem;
  line-height: 1.35;
}

.event-card__desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.event-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  transition: var(--transition-fast);
}

.event-card__link:hover {
  color: var(--gold-dark);
  gap: .65rem;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 45px rgba(10, 31, 63, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.18);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-info-item__text h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: .25rem;
}

.contact-info-item__text p,
.contact-info-item__text a {
  color: var(--white);
  font-size: .95rem;
  line-height: 1.55;
}

.contact-info-item__text a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.contact-form-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 35px rgba(10, 31, 63, 0.06);
  border: 1px solid var(--gray-100);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: .35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .86rem;
  color: var(--navy);
  margin-bottom: .45rem;
}

.form-group label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: .85rem 1.15rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 31, 63, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
}

.form-message {
  padding: 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-message--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.form-message--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.map-container {
  margin-top: 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(10, 31, 63, 0.08);
  border: 1px solid var(--gray-100);
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- Blog ---------- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.blog-grid {
  display: grid;
  gap: 2rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.05);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: 0 16px 40px rgba(10, 31, 63, 0.1);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.3);
}

.blog-card__image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: .95rem;
  min-height: 220px;
  gap: .5rem;
}

.blog-card__image svg {
  color: var(--gold);
}

.blog-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  display: inline-block;
  padding: .25rem .85rem;
  background: rgba(10, 31, 63, 0.08);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .85rem;
  width: fit-content;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: .65rem;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .82rem;
  color: var(--gray-400);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(10, 31, 63, 0.04);
  border: 1px solid var(--gray-100);
}

.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--gold);
  font-size: 1.15rem;
}

.sidebar-widget ul li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--gray-50);
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  font-size: .92rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.sidebar-widget ul li a:hover {
  color: var(--navy);
  transform: translateX(3px);
}

/* ---------- Pre-Footer High-Impact CTA Strip ---------- */
.pre-footer-cta {
  background: radial-gradient(circle at top right, rgba(212, 168, 67, 0.15), transparent 60%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 168, 67, 0.25);
}

.pre-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.pre-footer-cta__badge {
  display: inline-block;
  padding: .35rem .95rem;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: .85rem;
  text-transform: uppercase;
}

.pre-footer-cta__title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .6rem;
}

.pre-footer-cta__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.65;
}

.pre-footer-cta__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__logo {
  margin-bottom: 1.25rem;
}

.footer__brand-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.footer__google-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.google-badge-top {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--white);
}

.google-stars {
  color: #fbbc05;
  letter-spacing: 2px;
  font-size: .95rem;
}

.footer__google-badge small {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: .6rem;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer__links li {
  margin-bottom: .7rem;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}

.link-arrow {
  font-size: .75rem;
  color: var(--gold);
  transition: transform .2s ease;
}

.footer__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__links a:hover .link-arrow {
  transform: translateX(3px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.15rem;
  font-size: .9rem;
  line-height: 1.6;
}

.contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer-link-gold {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-link-gold:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .84rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__bottom-links a:hover {
  color: var(--gold-light);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 168, 67, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 99;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

/* ---------- Admission Enquiry Floating Button (Mobile) ---------- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: .85rem 2.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: .92rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  white-space: nowrap;
}

/* ---------- Scroll Reveal Animations (Fail-Safe & Progressive Enhancement) ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}

.stagger-children > * {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}

/* When JS is initialized, hide unrevealed elements until scrolled into view */
.js-loaded .reveal:not(.visible),
.js-loaded .reveal-left:not(.visible),
.js-loaded .reveal-right:not(.visible) {
  opacity: 0;
}

.js-loaded .reveal:not(.visible) { transform: translateY(24px); }
.js-loaded .reveal-left:not(.visible) { transform: translateX(-24px); }
.js-loaded .reveal-right:not(.visible) { transform: translateX(24px); }

.js-loaded .reveal.visible,
.js-loaded .reveal-left.visible,
.js-loaded .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.js-loaded .stagger-children:not(.visible) > * {
  opacity: 0;
  transform: translateY(20px);
}

.js-loaded .stagger-children.visible > *:nth-child(1) { transition-delay: .05s; }
.js-loaded .stagger-children.visible > *:nth-child(2) { transition-delay: .1s; }
.js-loaded .stagger-children.visible > *:nth-child(3) { transition-delay: .15s; }
.js-loaded .stagger-children.visible > *:nth-child(4) { transition-delay: .2s; }
.js-loaded .stagger-children.visible > *:nth-child(5) { transition-delay: .25s; }
.js-loaded .stagger-children.visible > *:nth-child(6) { transition-delay: .3s; }
.js-loaded .stagger-children.visible > *:nth-child(7) { transition-delay: .35s; }
.js-loaded .stagger-children.visible > *:nth-child(8) { transition-delay: .4s; }
.js-loaded .stagger-children.visible > *:nth-child(9) { transition-delay: .45s; }

.js-loaded .stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility: Overflow table wrapper ---------- */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- New UI/UX Components ---------- */

/* Stat Ribbon */
.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 16px 45px rgba(10, 31, 63, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.25);
  margin-top: -3.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.stat-ribbon__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-right: 1px solid var(--gray-100);
  padding-right: 1.5rem;
}

.stat-ribbon__item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-ribbon__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.06), rgba(212, 168, 67, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-ribbon__val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.stat-ribbon__lbl {
  font-size: .82rem;
  color: var(--text-light);
  margin-top: .25rem;
}

/* Enhanced Speciality Card */
.spec-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(10, 31, 63, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 31, 63, 0.12);
  border-color: rgba(212, 168, 67, 0.35);
}

.spec-card__header {
  padding: 2rem 2rem 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.spec-card__category {
  display: inline-block;
  padding: .25rem .75rem;
  background: rgba(10, 31, 63, 0.06);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.spec-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(10, 31, 63, 0.2);
}

.spec-card__body {
  padding: 0 2rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spec-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.spec-card__body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.spec-card__check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.spec-card__check-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--text);
  font-weight: 500;
}

.spec-card__check-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Gallery Enhancements */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn .count-pill {
  font-size: .72rem;
  padding: .1rem .45rem;
  background: rgba(10, 31, 63, 0.08);
  border-radius: var(--radius-full);
  color: inherit;
  font-weight: 700;
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-filter-btn.active .count-pill {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.07);
  border: 1px solid var(--gray-100);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(10, 31, 63, 0.14);
  border-color: rgba(212, 168, 67, 0.4);
}

.gallery-card__thumb {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #07152b 0%, #0a1f3f 50%, #173b70 100%);
  color: var(--white);
  position: relative;
  padding: 1.5rem;
  text-align: center;
  transition: transform .4s ease;
}

.gallery-card:hover .gallery-card__thumb {
  transform: scale(1.03);
}

.gallery-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: .75rem;
}

.gallery-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.gallery-card__info {
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.gallery-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}

.gallery-card__sub {
  font-size: .82rem;
  color: var(--text-light);
}

/* Gallery Modal / Lightbox */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 43, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

.gallery-modal__content {
  background: var(--navy-deep);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-2xl);
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.gallery-modal__preview {
  height: 350px;
  background: linear-gradient(135deg, #050d1a 0%, #0a1f3f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  padding: 2rem;
  text-align: center;
}

.gallery-modal__caption {
  padding: 1.5rem 2rem;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.gallery-modal__close:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* Event Enhancements */
.events-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.event-filter-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.event-filter-btn:hover, .event-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.06);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(10, 31, 63, 0.12);
  border-color: rgba(212, 168, 67, 0.35);
}

.event-card__header {
  padding: 1.5rem 1.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-50);
}

.event-card__date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 60px;
  box-shadow: 0 4px 12px rgba(10, 31, 63, 0.15);
}

.event-card__date-day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  padding: .25rem 0 0;
}

.event-card__date-month {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: .15rem 0;
}

.event-card__chips {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: flex-end;
}

.event-card__chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--gray-600);
  font-weight: 500;
}

.event-card__chip svg {
  color: var(--gold);
}

.event-card__status {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(212, 168, 67, 0.15);
  color: #926f1a;
}

.event-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
  line-height: 1.4;
}

.event-card__desc {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-50);
}

/* Quick Contact Cards */
.contact-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.quick-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.06);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 31, 63, 0.1);
  border-color: rgba(212, 168, 67, 0.35);
}

.quick-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.quick-card__info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.quick-card__info p, .quick-card__info a {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.5;
  display: block;
}

.quick-card__info a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Blog Featured Card */
.blog-featured-card {
  background: radial-gradient(circle at top right, rgba(212, 168, 67, 0.18), transparent 50%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(10, 31, 63, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--white);
  padding: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--gold-light);
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.blog-featured-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
  max-width: 750px;
}

.blog-featured-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 750px;
  margin-bottom: 1.75rem;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

/* Notice Box */
.notice-box {
  background: #fdfaf3;
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.notice-box__text {
  font-size: .95rem;
  color: var(--gray-800);
}

.notice-box__text strong {
  color: var(--navy);
}

/* Value Item Custom SVG */
.value-item__icon-svg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.08), rgba(212, 168, 67, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto .75rem;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

/* Philosophy Card Icon */
.philosophy-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(10, 31, 63, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---------- Responsive Overrides ---------- */
@media (max-width: 1024px) {
  .hero__title { font-size: 2.85rem; }
  .highlights { grid-template-columns: repeat(2, 1fr); margin-top: -2.5rem; }
  .about-summary { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-quick-cards { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 200px 1fr; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .disclosure-overview { grid-template-columns: repeat(2, 1fr); }
  .specialities-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-ribbon { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; padding: 1.75rem; }
  .stat-ribbon__item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 3.75rem;
  }

  .top-bar__left { display: none; }

  .hero { padding: 4.5rem 0 3.5rem; min-height: auto; }
  .hero__title { font-size: 2.2rem; }
  .hero__desc { font-size: 1rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .highlights { grid-template-columns: 1fr 1fr; margin-top: -1.5rem; gap: 1rem; }
  .highlight-card { padding: 1.75rem 1.25rem; }

  .section-header__title { font-size: 1.9rem; }
  .why-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
  .specialities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .events-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .pre-footer-cta__inner { flex-direction: column; text-align: center; }
  .pre-footer-cta__actions { justify-content: center; width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .page-hero__title { font-size: 2rem; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card__image { min-height: 160px; }

  .management-msg { padding: 2.25rem 1.5rem; }
  .management-msg::before { font-size: 4rem; }

  .disclosure-overview { grid-template-columns: 1fr; }
  .disclosure-controls { flex-direction: column; align-items: stretch; gap: .75rem; position: static; }
  .disclosure-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .25rem; -webkit-overflow-scrolling: touch; }
  .disclosure-tab { white-space: nowrap; }
  .disclosure-actions { flex-direction: column; width: 100%; }
  .disclosure-search { width: 100%; }
  .disclosure-search input { width: 100% !important; }
  .print-btn { width: 100%; justify-content: center; }
  .disclosure-card__header { padding: 1.25rem 1rem; flex-direction: column; align-items: flex-start; }
  .disclosure-card__header-left { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .result-subtable-block { padding: 1.25rem 1rem; }
  .disclosure-signoff { flex-direction: column; gap: .75rem; }

  .disclosure-table { font-size: .82rem; }
  .disclosure-table th, .disclosure-table td { padding: .75rem .6rem; }

  .approach-steps { grid-template-columns: 1fr 1fr; }
  .floating-cta { display: inline-flex; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .highlights { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .approach-steps { grid-template-columns: 1fr; }
  .disclosure-card { border-radius: var(--radius-lg); }
  .disclosure-table { font-size: .78rem; }
  .disclosure-table th, .disclosure-table td { padding: .6rem .5rem; }
  .reviews-badge { flex-direction: column; border-radius: var(--radius-xl); text-align: center; gap: .75rem; }
}
