:root {
  --navy: #0f2057;
  --navy-mid: #1a3580;
  --navy-light: #e8edf8;
  --gold: #b8860b;
  --gold-mid: #d4a017;
  --gold-light: #fdf0c0;
  --white: #fff;
  --off: #f9f8f5;
  --cream: #faf7f0;
  --text: #1c1c2e;
  --mid: #44475a;
  --light: #7a7d94;
  --border: #e2e5f0;
  --green: #16a34a;
  --red: #dc2626;
  --orange: #ea580c;
  --s1: 0 2px 12px rgba(15, 32, 87, 0.07);
  --s2: 0 6px 30px rgba(15, 32, 87, 0.12);
  --s3: 0 16px 60px rgba(15, 32, 87, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-mid);
  border-radius: 3px;
}

/* ====== VIEWS ====== */
#public-view,
#admin-view {
  display: none;
}

#public-view.active,
#admin-view.active {
  display: block;
}

/* ====== PAGE LOADER ====== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.pl-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}
.pl-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15,32,87,0.18);
  animation: pl-pulse 1.4s ease-in-out infinite;
}
@keyframes pl-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 8px 32px rgba(15,32,87,0.18); }
  50%       { transform: scale(1.05); box-shadow: 0 14px 44px rgba(15,32,87,0.26); }
}
.pl-school-name {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-top: 4px;
  line-height: 1.3;
}
.pl-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.pl-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(15,32,87,0.10);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 14px;
}
.pl-bar {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--navy), #1a3a96, var(--gold));
  background-size: 200% 100%;
  animation: pl-shimmer 1.6s linear infinite;
  transition: width 0.22s ease;
}
@keyframes pl-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ====== PUBLIC NAV ====== */
.p-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  box-shadow: var(--s1);
}

.p-nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 72px;
}

.p-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  min-width: 0;
}

.p-emblem {
  flex-shrink: 0;
}

.p-emblem img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 12px rgba(15, 32, 87, 0.2);
  object-fit: contain;
}

.p-brand-name {
  min-width: 0;
  overflow: hidden;
}

.p-brand-name strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 2.2vw, 22px);
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.p-brand-name span {
  font-size: clamp(10px, 1.4vw, 13.5px);
  color: var(--light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.p-links {
  display: flex;
  gap: 2px;
  list-style: none;
}

.p-links a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}

.p-links a:hover,
.p-links a.active {
  color: var(--navy);
  background: var(--navy-light);
}

.p-links .p-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid)) !important;
  color: #fff !important;
  border-radius: 9px !important;
  font-weight: 600 !important;
}

.admin-toggle-btn {
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(184, 134, 11, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.admin-toggle-btn:hover {
  background: var(--gold-mid);
  color: #fff;
}

/* ====== MOBILE NAV ====== */
.mob-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  border: none;
  background: transparent;
  transition: background .2s;
}

.mob-menu-btn:hover {
  background: var(--navy-light);
}

.mob-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
}

.mob-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mob-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mob-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 899;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(15, 32, 87, 0.12);
  padding: 16px 20px 20px;
  transform: translateY(-8px);
  opacity: 0;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
}

.mob-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.mob-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}

.mob-nav-links a:hover,
.mob-nav-links a.active {
  color: var(--navy);
  background: var(--navy-light);
}

.mob-nav-links .mob-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin-top: 4px;
}

.mob-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mob-nav-admin {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--gold-light);
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.mob-nav-admin:hover {
  background: var(--gold-mid);
  color: #fff;
}

@media(max-width:900px) {
  .p-links {
    display: none;
  }

  .admin-toggle-btn {
    display: none;
  }

  .mob-menu-btn {
    display: flex;
  }

  .mob-nav-drawer {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-r {
    display: none;
  }

  .hero-l {
    padding: 40px 24px 48px;
  }

  .hero-h1 {
    font-size: 42px;
  }

  .prog-grid,
  .levels-g,
  .fac-g,
  .adm-g {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .adm-2col {
    grid-template-columns: 1fr;
  }

  .ct-2col {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }
}

@media(max-width:540px) {

  .prog-grid,
  .levels-g,
  .fac-g,
  .adm-g {
    grid-template-columns: 1fr;
  }

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

  .p-nav-inner {
    padding: 0 14px;
    height: 62px;
  }

  .p-emblem img {
    width: 42px;
    height: 42px;
  }

  .p-brand {
    gap: 9px;
  }

  .hero-l {
    padding: 32px 16px 40px;
  }

  .hero-h1 {
    font-size: 34px;
  }

  .sec {
    padding: 56px 16px;
  }

  .cta-band h2 {
    font-size: 32px;
  }

  .sec-title {
    font-size: 32px;
  }
}

/* ====== TICKER ====== */
.ticker {
  background: var(--navy);
  padding: 9px 0;
  overflow: hidden;
  width: 100%;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  z-index: 800;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 40s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track span {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  padding: 0 32px;
}

.ticker-track .sep {
  color: var(--gold-mid);
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* ====== HERO SLIDER ====== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
  background: var(--navy);
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .85s cubic-bezier(.4, 0, .2, 1), transform .85s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.04);
  pointer-events: none;
  z-index: 1;
}

.hs-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  will-change: transform;
}

.hs-slide.active .hs-bg {
  transform: scale(1.06);
}

.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(149, 163, 215, 0.85) 0%, rgba(104, 126, 201, 0.55) 60%, rgba(0, 0, 0, 0.25) 100%);
}

.hs-content {
  position: relative;
  z-index: 3;
  max-width: 740px;
  padding: 0 64px;
  color: #fff;
}

.hs-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s .2s ease, transform .7s .2s ease;
}

.hs-slide.active .hs-pill {
  opacity: 1;
  transform: translateY(0);
}

.hs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hs-line1 {
  display: block;
  font-size: clamp(42px, 6vw, 82px);
  color: #fff;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s .35s ease, transform .7s .35s ease;
}

.hs-line2 {
  display: block;
  font-size: clamp(48px, 7vw, 96px);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s .5s ease, transform .7s .5s ease;
}

.hs-slide.active .hs-line1,
.hs-slide.active .hs-line2 {
  opacity: 1;
  transform: translateY(0);
}

.hs-line2 em {
  font-style: italic;
  background: linear-gradient(135deg, #f0c040, var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-sub {
  font-size: clamp(13px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s .65s ease, transform .7s .65s ease;
}

.hs-slide.active .hs-sub {
  opacity: 1;
  transform: translateY(0);
}

.hs-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s .8s ease, transform .7s .8s ease;
}

.hs-slide.active .hs-btns {
  opacity: 1;
  transform: translateY(0);
}

.hs-btn-primary {
  padding: 13px 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(184, 134, 11, 0.4);
  transition: all .25s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .2px;
}

.hs-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.5);
}

.hs-btn-ghost {
  padding: 13px 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all .25s;
  font-family: 'DM Sans', sans-serif;
}

.hs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all .25s;
  line-height: 1;
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.hs-prev {
  left: 24px;
}

.hs-next {
  right: 24px;
}

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.hs-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* Progress bar */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.hs-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-mid), #f5d060);
  border-radius: 2px;
}

/* Responsive */
@media(max-width:900px) {
  .hero-slider {
    height: 70vw;
    min-height: 420px;
    max-height: 580px;
  }

  .hs-content {
    padding: 0 40px;
  }
}

@media(max-width:540px) {
  .hero-slider {
    height: 85vw;
    min-height: 360px;
    max-height: 480px;
  }

  .hs-content {
    padding: 0 20px;
  }

  .hs-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .hs-prev {
    left: 10px;
  }

  .hs-next {
    right: 10px;
  }

  .hs-btns {
    gap: 10px;
  }

  .hs-btn-primary,
  .hs-btn-ghost {
    padding: 10px 20px;
    font-size: 12.5px;
  }
}

/* ====== PUBLIC PAGES ====== */
.pp {
  display: none;
  padding-top: 104px;
}

.pp.active {
  display: block;
}

/* ====== HERO ====== */
.hero {
  background: linear-gradient(150deg, #eef2ff 0%, #fdfcfa 55%, #fffcf0 100%);
  min-height: calc(100vh - 68px - 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

.hero-l {
  padding: 64px 44px 64px 64px;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
}

.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--gold);
  margin: 14px 0 0;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 420px;
  margin: 12px 0 24px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}

.hstat-n {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

.hstat-l {
  font-size: 10.5px;
  color: var(--light);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 3px;
}

.hero-btns {
  display: flex;
  gap: 12px;
}

.btn-navy {
  padding: 12px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(15, 32, 87, 0.25);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(15, 32, 87, 0.3);
}

.btn-ghost {
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy-light);
}

.hero-r {
  padding: 56px 56px 56px 16px;
  position: relative;
  z-index: 2;
}

.hero-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--s3);
  position: relative;
  z-index: 2;
}

.hero-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 360px;
  transition: transform .5s;
}

.hero-img:hover img {
  transform: scale(1.03);
}

.hero-img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hero-img-placeholder span {
  font-size: 48px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 11px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--s2);
  border: 1px solid var(--border);
  margin-top: 12px;
}

.badge-ico {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.badge-t strong {
  display: block;
  font-size: 12.5px;
  color: var(--navy);
  font-weight: 700;
}

.badge-t span {
  font-size: 11px;
  color: var(--light);
}

.hero-float {
  position: absolute;
  top: -10px;
  right: 44px;
  z-index: 5;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  border-radius: 11px;
  padding: 11px 14px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(184, 134, 11, 0.3);
  text-align: center;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-float b {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ====== SECTIONS ====== */
.sec {
  padding: 80px 28px;
}

.sec-alt {
  background: var(--off);
}

.sec-cream {
  background: var(--cream);
}

.sec-navy {
  background: linear-gradient(rgba(114, 148, 233, 0.817), rgba(120, 134, 255, 0.672)), url('/assets/images/school_image.jpeg') center/cover no-repeat;
}

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

.sec-hd {
  text-align: center;
  margin-bottom: 52px;
}

.label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-title-w {
  color: #fff;
}

.sec-title-w em {
  color: var(--gold-mid);
}

.sec-line {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  margin: 13px auto 0;
}

.sec-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
  margin: 12px auto 0;
}

/* ====== CARDS ====== */
.card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid var(--border);
  box-shadow: var(--s1);
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s3);
  border-color: rgba(15, 32, 87, 0.1);
}

/* ====== PROGRAMS ====== */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prog-top {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
}

.prog-top::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.prog-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  transition: transform .3s;
}

.card:hover .prog-ico {
  transform: scale(1.1) rotate(-5deg);
}

.prog-top h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 3px;
}

.prog-top p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

.prog-body {
  padding: 20px 24px 24px;
}

.prog-body p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.75;
}

.prog-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid rgba(184, 134, 11, 0.2);
  font-size: 10.5px;
  font-weight: 700;
}

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--s1);
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--light);
}

.gallery-item-placeholder span {
  font-size: 28px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 32, 87, 0.7), transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

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

.gallery-caption {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ====== ACADEMICS ====== */
.levels-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lvl-hd {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  padding: 24px 26px 20px;
}

.lvl-hd h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 3px;
}

.lvl-hd p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

.lvl-bd {
  padding: 20px 26px;
}

.lvl-bd ul {
  list-style: none;
}

.lvl-bd li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 9px;
}

.lvl-bd li:last-child {
  border-bottom: none;
}

.lvl-bd li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

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

.cocu-c {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--s1);
  transition: all .3s;
}

.cocu-c:hover {
  transform: translateY(-5px);
  box-shadow: var(--s2);
  border-color: var(--gold-mid);
}

.cocu-c .ico {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  transition: transform .3s;
}

.cocu-c:hover .ico {
  transform: scale(1.2) rotate(-10deg);
}

.cocu-c h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}

/* ====== FACILITIES ====== */
.fac-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fac-ico-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--navy-light);
  transition: all .3s;
}

.card:hover .fac-ico-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  font-size: 36px;
}

.fac-bd {
  padding: 20px 22px 24px;
}

.fac-bd h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
}

.fac-bd p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.fac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.ftag {
  padding: 3px 11px;
  border-radius: 100px;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 600;
  border: 1px solid rgba(15, 32, 87, 0.08);
}

.card:hover .ftag {
  background: var(--gold-light);
  color: var(--gold);
  border-color: rgba(184, 134, 11, 0.2);
}

/* ====== ADMISSIONS ====== */
.adm-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.adm-c {
  padding: 32px 26px;
}

.adm-c .ico {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.adm-c h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}

.adm-c p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.75;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 44px;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-ball {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(15, 32, 87, 0.3);
  border: 3px solid #fff;
  transition: all .3s;
}

.step:hover .step-ball {
  transform: scale(1.15);
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
}

.step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
}

.adm-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.info-bx {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--s1);
}

.info-bx h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 18px;
}

.info-tbl {
  width: 100%;
  border-collapse: collapse;
}

.info-tbl tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.info-tbl tr:hover {
  background: var(--navy-light);
}

.info-tbl td {
  padding: 9px 4px;
  font-size: 13px;
}

.info-tbl td:first-child {
  color: var(--mid);
}

.info-tbl td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
}

/* ====== NOTICES ====== */
.notices-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--s1);
  transition: all .3s;
}

.notice-item:hover {
  transform: translateX(6px);
  box-shadow: var(--s2);
}

.notice-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.notice-ico.red {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.notice-ico.blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.notice-ico.green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.notice-ico.gold {
  background: var(--gold-light);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.notice-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.notice-content p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

.notice-date {
  font-size: 11px;
  color: var(--light);
  margin-top: 6px;
}

/* ====== NEWS ====== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-acc {
  height: 4px;
}

.news-body {
  padding: 22px;
}

.news-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.news-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.news-meta {
  font-size: 11.5px;
  color: var(--light);
  margin-top: 13px;
}

/* ====== CTA BAND ====== */
.cta-band {
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.1), transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04), transparent 50%);
}

.cta-band * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 14px;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-mid);
}

.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  padding: 12px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(184, 134, 11, 0.4);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 134, 11, 0.5);
}

.btn-ow {
  padding: 12px 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
}

.btn-ow:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ====== PAGE HERO ====== */
.page-hero {
  background: linear-gradient(150deg, #eef2ff 0%, #fdfcfa 60%, #fffcf0 100%);
  padding: 72px 28px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero p {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ====== CONTACT ====== */
.ct-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.ct-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 24px;
}

.ct-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  transition: transform .3s;
}

.ct-item:hover {
  transform: translateX(5px);
}

.ct-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--navy-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.ct-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.ct-item p {
  font-size: 13px;
  color: var(--mid);
}

.ct-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--s2);
}

.ct-form h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 22px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  transition: all .2s;
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 32, 87, 0.07);
}

.fg textarea {
  height: 90px;
  resize: vertical;
}

.fg-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(145deg, #0c1a48, #0f2057);
  padding: 64px 28px 0;
}

.ft-g {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}

.ft-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 14px;
}

.ft-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 10px;
}

.ft-brand .tl {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-mid);
  font-size: 14px;
}

.ft-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 12.5px;
  color: #fff;
  letter-spacing: .4px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-col ul {
  list-style: none;
}

.ft-col li {
  margin-bottom: 9px;
}

.ft-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.ft-col a:hover {
  color: var(--gold-mid);
  padding-left: 4px;
}

.ft-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.ft-bar span {
  color: var(--gold-mid);
}

/* ====== RESPONSIVE ====== */
@media(max-width:960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-l {
    padding: 44px 24px;
  }

  .hero-r {
    padding: 0 24px 44px;
  }

  .hero-h1 {
    font-size: 38px;
  }

  .prog-grid,
  .levels-g,
  .fac-g,
  .adm-g,
  .ct-2col,
  .news-grid,
  .adm-2col {
    grid-template-columns: 1fr;
  }

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

  .ft-g {
    grid-template-columns: 1fr 1fr;
  }

  .p-links {
    display: none;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .steps-row::before {
    display: none;
  }
}

/* ===================== ADMIN PANEL ===================== */
.admin-wrap {
  display: flex;
  min-height: 100vh;
  background: var(--off);
}

/* Sidebar */
.adm-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0c1a48, #0f2057);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.adm-logo {
  padding: 24px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.adm-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.adm-logo h2 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
}

.adm-logo p {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.adm-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.adm-nav-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  padding: 16px 10px 6px;
}

.adm-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
}

.adm-nav-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.adm-nav-item.active {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(184, 134, 11, 0.1));
  color: #fff;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.adm-nav-item .nav-ico {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

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

.back-to-site {
  width: 100%;
  padding: 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}

.back-to-site:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Main content */
.adm-main {
  margin-left: 260px;
  flex: 1;
  min-height: 100vh;
}

.adm-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--s1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.adm-topbar h1 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--navy);
}

.adm-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.save-btn {
  padding: 8px 20px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green), #15803d);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.save-indicator {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  display: none;
}

.adm-content {
  padding: 32px;
}

/* Panels */
.adm-panel {
  display: none;
}

.adm-panel.active {
  display: block;
}

/* Dashboard */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dash-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--s1);
}

.dash-card .dc-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.dash-card .dc-label {
  font-size: 12px;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px;
}

.dash-card .dc-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.recent-activity {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--s1);
}

.recent-activity h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 18px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
  border-bottom: none;
}

.act-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.act-dot.green {
  background: var(--green);
}

.act-dot.gold {
  background: var(--gold-mid);
}

.act-dot.blue {
  background: #3b82f6;
}

.act-txt {
  flex: 1;
  font-size: 13px;
  color: var(--mid);
}

.act-time {
  font-size: 11px;
  color: var(--light);
}

/* Form controls */
.form-section {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--s1);
  margin-bottom: 24px;
}

.form-section h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  transition: all .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 32, 87, 0.07);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  font-size: 11px;
  color: var(--light);
}

/* Item lists (notices, gallery, etc.) */
.items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow .2s;
}

.item-row:hover {
  box-shadow: var(--s2);
}

.item-row-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.item-row-info {
  flex: 1;
  min-width: 0;
}

.item-row-info h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-row-info p {
  font-size: 12px;
  color: var(--light);
}

.item-row-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-edit {
  padding: 6px 13px;
  border-radius: 7px;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.btn-edit:hover {
  background: var(--navy);
  color: #fff;
}

.btn-del {
  padding: 6px 10px;
  border-radius: 7px;
  background: #fef2f2;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.btn-del:hover {
  background: var(--red);
  color: #fff;
}

.add-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 32, 87, 0.25);
}

.add-btn-gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0;
  background: var(--off);
  border-radius: 11px;
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.tab {
  flex: 1;
  padding: 9px;
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}

.tab.active {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--s1);
}

/* Gallery admin */
.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gal-thumb {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid var(--border);
  background: var(--navy-light);
}

.gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--light);
}

.gal-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gal-thumb:hover .gal-thumb-overlay {
  opacity: 1;
}

.gal-del-btn {
  padding: 6px 11px;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  background: var(--off);
  cursor: pointer;
  transition: all .2s;
}

.upload-zone:hover {
  border-color: var(--navy);
  background: var(--navy-light);
}

.upload-zone p {
  font-size: 13.5px;
  color: var(--mid);
  margin-top: 10px;
}

.upload-zone span {
  font-size: 32px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.toast.show {
  display: flex;
  animation: toastIn .35s ease;
}

@keyframes toastIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast.success {
  border-left: 4px solid var(--green);
}

.toast.error {
  border-left: 4px solid var(--red);
}

/* Modal */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1500;
  align-items: center;
  justify-content: center;
}

.modal-bg.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 18px;
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.modal h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 22px;
}

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

.btn-cancel {
  padding: 9px 18px;
  border-radius: 9px;
  background: var(--off);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-save {
  padding: 9px 20px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.status-badge.active {
  background: #f0fdf4;
  color: var(--green);
  border: 1px solid #bbf7d0;
}

.status-badge.draft {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fde68a;
}

/* ====== APPLY PAGE ====== */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.apply-sidebar .info-bx {
  margin-bottom: 20px;
}

.apply-sidebar .info-bx h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.apply-sidebar .info-bx p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.apply-steps-mini {
  list-style: none;
  counter-reset: steps;
}

.apply-steps-mini li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--mid);
}

.apply-steps-mini li:last-child {
  border-bottom: none;
}

.apply-steps-mini li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.apply-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--s2);
}

.apply-form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}

.apply-form-card p.sub {
  font-size: 13.5px;
  color: var(--mid);
  margin-bottom: 28px;
}

.form-divider {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  padding: 14px 0 10px;
  border-bottom: 1.5px solid var(--gold-light);
  margin-bottom: 18px;
}

.apply-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.apply-row.full {
  grid-template-columns: 1fr;
}

.apply-row.tri {
  grid-template-columns: 1fr 1fr 1fr;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fg label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
}

.fg input,
.fg select,
.fg textarea {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  transition: all .2s;
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 32, 87, 0.07);
}

.fg textarea {
  resize: vertical;
  min-height: 80px;
}

.fg .req {
  color: var(--red);
}

.apply-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.apply-footer p {
  font-size: 12px;
  color: var(--light);
  max-width: 280px;
  line-height: 1.6;
}

.app-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.app-success .tick {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.app-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 8px;
}

.app-success p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.token-box {
  background: var(--navy-light);
  border: 2px dashed var(--navy-mid);
  border-radius: 12px;
  padding: 18px 24px;
  display: inline-block;
  margin: 16px 0;
}

.token-box span {
  display: block;
  font-size: 11px;
  color: var(--light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.token-box strong {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 3px;
}

/* ====== TRACKING PAGE ====== */
.track-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--s2);
  max-width: 600px;
  margin: 0 auto;
}

.track-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}

.track-result {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.track-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.track-status-row h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--navy);
}

.status-pill {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}

.status-pill.pending {
  background: #fef9ec;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.status-pill.review {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.status-pill.shortlisted {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}

.status-pill.rejected {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.track-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.track-info-item {
  background: var(--off);
  border-radius: 10px;
  padding: 12px 14px;
}

.track-info-item span {
  font-size: 11px;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: .8px;
  display: block;
  margin-bottom: 3px;
}

.track-info-item strong {
  font-size: 13.5px;
  color: var(--navy);
}

.track-timeline {
  margin-top: 20px;
}

.track-timeline h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.tl-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.tl-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tl-dot.done {
  background: #f0fdf4;
  border: 2px solid #86efac;
}

.tl-dot.active {
  background: var(--navy-light);
  border: 2px solid var(--navy-mid);
}

.tl-dot.pending {
  background: var(--off);
  border: 2px dashed var(--border);
}

.tl-item-info h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.tl-item-info p {
  font-size: 12px;
  color: var(--light);
}

/* ====== ENQUIRY INBOX ====== */
.inbox-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--s1);
  min-height: 480px;
}

.inbox-list-pane {
  border-right: 1px solid var(--border);
  overflow-y: auto;
  max-height: 600px;
}

.inbox-list-header {
  padding: 16px 18px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inbox-list-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--navy);
}

.inbox-count {
  background: var(--navy);
  color: #fff;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
}

.inbox-item {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  position: relative;
}

.inbox-item:hover {
  background: var(--navy-light);
}

.inbox-item.active {
  background: var(--navy-light);
  border-left: 3px solid var(--navy);
}

.inbox-item.unread::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.inbox-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-item p {
  font-size: 11.5px;
  color: var(--light);
}

.inbox-detail-pane {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.inbox-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--light);
  gap: 10px;
}

.inbox-empty-state span {
  font-size: 40px;
}

.inbox-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.inbox-detail-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
}

.inbox-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.inbox-meta-item span {
  font-size: 11px;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: .7px;
  display: block;
}

.inbox-meta-item strong {
  font-size: 13px;
  color: var(--text);
}

.inbox-msg-box {
  background: var(--off);
  border-radius: 10px;
  padding: 16px;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.inbox-actions {
  display: flex;
  gap: 10px;
}

.inbox-status-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  outline: none;
}

.inbox-status-select:focus {
  border-color: var(--navy);
}

.enq-type-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--navy-light);
  color: var(--navy);
}

@media(max-width:700px) {
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-sidebar {
    display: none;
  }

  .apply-row.tri {
    grid-template-columns: 1fr 1fr;
  }

  .track-info-grid {
    grid-template-columns: 1fr;
  }

  .inbox-layout {
    grid-template-columns: 1fr;
  }

  .inbox-list-pane {
    max-height: 220px;
  }
}

/* ====== FLOATING ACTION CLUSTER ====== */
/* AI Chat button — stays RIGHT */
.fab-cluster {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* WhatsApp + Call — move LEFT */
.fab-cluster-left {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  flex-shrink: 0;
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.fab-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fab-btn::before {
  content: attr(data-tip);
  position: absolute;
  right: 62px;
  background: #1c1c2e;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all .2s;
  pointer-events: none;
  font-family: 'DM Sans', sans-serif;
}

.fab-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.fab-ai {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  width: 58px;
  height: 58px;
}

.fab-ai svg {
  width: 26px;
  height: 26px;
}

.fab-ai::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-mid);
  animation: fabPulse 2.5s ease-in-out infinite;
  opacity: 0;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ====== AI CHATBOT WINDOW ====== */
.chatbot-window {
  position: fixed;
  bottom: 108px;
  right: 28px;
  width: 370px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 70px rgba(15, 32, 87, 0.18);
  z-index: 1199;
  display: flex;
  flex-direction: column;
  transform: scale(0.88) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  overflow: hidden;
}

.chatbot-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.chat-header-info {
  flex: 1;
}

.chat-header-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}

.chat-header-info p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-online-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.chat-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  min-height: 180px;
}

.chat-messages::-webkit-scrollbar {
  width: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.chat-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  animation: msgIn .25s ease;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.bot {
  background: var(--navy-light);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 13px;
  background: var(--navy-light);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}

.chat-typing span {
  width: 7px;
  height: 7px;
  background: var(--light);
  border-radius: 50%;
  animation: typeDot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: .2s;
}

.chat-typing span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes typeDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

.chat-quick-btns {
  padding: 0 14px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chat-qbtn {
  padding: 6px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}

.chat-qbtn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
}

.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}

.chat-input:focus {
  border-color: var(--navy);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.1);
}

.chat-send-btn svg {
  width: 16px;
  height: 16px;
}

@media(max-width:480px) {
  .chatbot-window {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 96px;
  }

  .fab-cluster {
    bottom: 16px;
    right: 16px;
  }

  .fab-btn::before {
    display: none;
  }
}

/* ====== WHY CHOOSE US ====== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  border-radius: 16px;
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s3);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: .07;
  transition: transform .5s;
}

.pillar-card:hover::before {
  transform: scale(2.2);
}

.pillar-ico {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform .3s;
}

.pillar-card:hover .pillar-ico {
  transform: scale(1.15) rotate(-8deg);
}

.pillar-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

.pillar-card.p1 {
  background: linear-gradient(145deg, #eef2ff, #f5f7ff);
  border: 1px solid rgba(15, 32, 87, 0.08);
}

.pillar-card.p1::before {
  background: var(--navy);
}

.pillar-card.p2 {
  background: linear-gradient(145deg, #fdf9ec, #fffef5);
  border: 1px solid rgba(184, 134, 11, 0.12);
}

.pillar-card.p2::before {
  background: var(--gold);
}

.pillar-card.p3 {
  background: linear-gradient(145deg, #f0fdf4, #f7fff9);
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.pillar-card.p3::before {
  background: #16a34a;
}

.pillar-card.p4 {
  background: linear-gradient(145deg, #fff1f2, #fff8f9);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.pillar-card.p4::before {
  background: #dc2626;
}

/* ====== PROGRAMS SHOWCASE ====== */
.prog-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prog-sc-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--s1);
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  cursor: pointer;
}

.prog-sc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s3);
}

.prog-sc-top {
  padding: 30px 26px 24px;
  position: relative;
  overflow: hidden;
}

.prog-sc-top::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.prog-sc-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.prog-sc-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.prog-sc-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.prog-sc-body {
  background: #fff;
  padding: 20px 26px 24px;
}

.prog-sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.prog-sc-tag {
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: var(--off);
  color: var(--navy);
  border: 1px solid var(--border);
}

.prog-sc-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.prog-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: gap .2s;
}

.prog-sc-link:hover {
  gap: 10px;
}

/* ====== PRINCIPAL MESSAGE ====== */
.principal-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: center;
}

.principal-img-side {
  position: relative;
}

.principal-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--s3);
  position: relative;
  background: linear-gradient(145deg, var(--gold), var(--gold-mid));
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.principal-img-frame span {
  font-size: 56px;
}

.principal-badge-float {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--s2);
  border: 1px solid var(--border);
  white-space: nowrap;
  text-align: center;
  min-width: 200px;
}

.principal-badge-float strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--navy);
}

.principal-badge-float span {
  font-size: 11px;
  color: var(--light);
}

.principal-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
}

.principal-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 52px;
  color: var(--gold-mid);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  opacity: .6;
}

.principal-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.principal-title {
  font-size: 12.5px;
  color: var(--light);
}

.principal-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.principal-sig {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ====== ACHIEVEMENTS COUNTER ====== */
.achv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.achv-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.achv-num {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.achv-num .achv-plus {
  font-size: 28px;
  color: var(--gold-mid);
}

.achv-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ====== TESTIMONIALS ====== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--s1);
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  position: relative;
}

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

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--gold-light);
  line-height: .7;
  margin-bottom: 10px;
  display: block;
}

.testi-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.testi-role {
  font-size: 11.5px;
  color: var(--light);
}

.testi-stars {
  color: var(--gold-mid);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* ====== LIFE AT SCHOOL ====== */
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.life-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 24px 18px;
  text-align: center;
  transition: all .3s;
  box-shadow: var(--s1);
}

.life-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--s2);
  border-color: var(--gold-mid);
}

.life-ico {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  transition: transform .3s;
}

.life-item:hover .life-ico {
  transform: scale(1.2) rotate(-5deg);
}

.life-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 12.5px;
  color: var(--navy);
  margin-bottom: 6px;
}

.life-item p {
  font-size: 12px;
  color: var(--light);
  line-height: 1.6;
}

/* ====== ADMISSIONS SNAPSHOT ====== */
.adm-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.adm-snap-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.adm-snap-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.adm-snap-left p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.adm-snap-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.adm-snap-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.adm-snap-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 32, 87, 0.2);
}

.adm-snap-step-info h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

.adm-snap-step-info p {
  font-size: 12.5px;
  color: var(--light);
}

.adm-snap-right {
  background: linear-gradient(145deg, var(--navy), #1a3a96);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.adm-snap-right::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.adm-snap-right h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold-mid);
  margin-bottom: 22px;
}

.adm-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-date-row:last-child {
  border-bottom: none;
}

.adm-date-row span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.adm-date-row strong {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.adm-snap-cta {
  margin-top: 24px;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
  transition: all .25s;
}

.adm-snap-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(184, 134, 11, 0.45);
}

/* ====== TRUST BAR ====== */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}

.trust-item span {
  font-size: 22px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

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

  .prog-showcase {
    grid-template-columns: 1fr;
  }

  .principal-wrap {
    grid-template-columns: 1fr;
  }

  .principal-img-side {
    display: none;
  }

  .achv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .adm-snap-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .achv-num {
    font-size: 32px;
  }
}

/* ====== ABOUT PAGE ====== */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-intro-text .sec-title {
  text-align: left;
  margin-bottom: 14px;
}

.about-intro-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-intro-img {
  position: relative;
}

.about-img-frame img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  overflow: hidden;
  box-shadow: var(--s3);
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

.about-img-frame span {
  font-size: 60px;
}

.principal-img-frame img {
  transition: transform 0.4s ease;
}

.principal-img-frame:hover img {
  transform: scale(1.05);
}

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--s2);
  border: 1px solid var(--border);
  text-align: center;
}

.about-img-badge strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--navy);
}

.about-img-badge span {
  font-size: 11px;
  color: var(--light);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 30px 24px;
  box-shadow: var(--s1);
  text-align: center;
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-light), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--s3);
}

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

.value-card .v-ico {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
  transition: transform .3s;
}

.value-card:hover .v-ico {
  transform: scale(1.15) rotate(-6deg);
}

.value-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  position: relative;
}

.about-leadership {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.leader-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--s1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .3s;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s3);
}

.leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(15, 32, 87, 0.2);
}

.leader-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.leader-info .role {
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 10px;
  display: block;
}

.leader-info p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

.about-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--navy-light), var(--gold-light), var(--navy-light));
  transform: translateX(-50%);
}

.tl-event {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.tl-event:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.tl-event-content {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: var(--s1);
  transition: all .3s;
}

.tl-event-content:hover {
  box-shadow: var(--s2);
  transform: translateY(-3px);
}

.tl-event-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 32, 87, 0.25);
  position: relative;
  z-index: 1;
}

.tl-year {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tl-event-content h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.tl-event-content p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

.about-affil-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.affil-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: var(--s1);
  min-width: 160px;
  transition: all .3s;
}

.affil-badge:hover {
  box-shadow: var(--s2);
  transform: translateY(-4px);
}

.affil-badge .ab-ico {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.affil-badge h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 4px;
}

.affil-badge p {
  font-size: 11px;
  color: var(--light);
}

@media(max-width:900px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro-img {
    display: none;
  }

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

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

  .about-timeline::before {
    left: 20px;
  }

  .tl-event,
  .tl-event:nth-child(odd) {
    flex-direction: row;
    text-align: left;
  }
}

@media(max-width:540px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   IMAGE UPLOAD — Drag & Drop, Previews, Gallery Admin Thumbs
   ================================================================ */

/* Drop zones */
.img-drop-zone {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  background: var(--off);
  position: relative;
}

.img-drop-zone:hover {
  border-color: var(--gold-mid);
  background: var(--cream);
}

.img-drop-zone.drag-over {
  border-color: var(--navy);
  background: var(--navy-light);
  transform: scale(1.01);
}

.img-drop-zone-icon {
  font-size: 34px;
  margin-bottom: 10px;
  display: block;
}

.img-drop-zone-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.img-drop-zone-sub {
  font-size: 12px;
  color: var(--light);
}

/* Pending preview rows */
.img-preview-row {
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  gap: 12px;
  align-items: start;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  transition: border-color .2s;
}

.img-preview-row:hover {
  border-color: var(--navy-mid);
}

.img-preview-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 7px;
  display: block;
  border: 1px solid var(--border);
}

.img-preview-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.img-preview-fields input,
.img-preview-fields select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}

.img-preview-fields input:focus,
.img-preview-fields select:focus {
  border-color: var(--navy);
}

.img-preview-remove {
  background: none;
  border: none;
  color: var(--red);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: opacity .2s;
}

.img-preview-remove:hover {
  opacity: .6;
}

/* Gallery admin thumbnails */
.gal-admin-thumb {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1.5px solid var(--border);
  background: var(--navy-light);
  cursor: default;
}

.gal-admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.gal-admin-thumb:hover img {
  transform: scale(1.06);
}

.gal-admin-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 32, 87, .82), transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  gap: 3px;
}

.gal-admin-thumb:hover .gal-admin-thumb-overlay {
  opacity: 1;
}

.gal-thumb-caption {
  font-size: 11.5px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.gal-thumb-cat {
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  display: block;
  margin-bottom: 4px;
}

.gal-del-btn {
  align-self: flex-start;
  background: rgba(220, 38, 38, .88);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.gal-del-btn:hover {
  background: var(--red);
}

/* Hero image preview */
.hero-img-preview-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  position: relative;
}

.hero-img-preview-wrap img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.hero-img-preview-info {
  padding: 8px 12px;
  background: var(--off);
  font-size: 11.5px;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-img-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(220, 38, 38, .9);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.hero-img-remove-btn:hover {
  background: var(--red);
}

/* Add button full-width gold */
.add-btn-upload {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(184, 134, 11, .28);
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-btn-upload:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, .38);
}

/* Gallery filter bar */
.gal-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.gal-filter-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}

.gal-filter-select:focus {
  border-color: var(--navy);
}

@media(max-width:540px) {
  .img-preview-row {
    grid-template-columns: 64px 1fr 24px;
  }

  .img-preview-thumb {
    width: 64px;
    height: 48px;
  }
}

/* =========================================================
   GALLERY PAGE — ENHANCED
   ========================================================= */

/* --- Hero Banner --- */
/* ── Gallery Hero Banner — Saffron & Deep Brown ── */
.gal-hero-banner {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  background: #dde4f5;
}

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

.gal-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

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

/* No background image — pure colour only */
.gal-hero-slide-img {
  display: none;
}

.gal-hero-slide.active .gal-hero-slide-img {
  display: none;
}

/* Pure colour overlay — subtle depth only, no image to mask */
.gal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(180,195,240,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(255,230,140,0.38) 0%, transparent 55%),
    linear-gradient(to bottom, transparent 0%, rgba(200,210,240,0.12) 100%);
  z-index: 1;
}

/* ── Mandala Corner Watermark ── */
.gal-mandala-wrap {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 260px;
  height: 260px;
  z-index: 2;
  pointer-events: none;
}

.gal-mandala-outer {
  position: absolute;
  inset: 0;
  animation: mandala-spin-cw 32s linear infinite;
  will-change: transform;
  transform-origin: center center;
}

.gal-mandala-mid {
  position: absolute;
  inset: 30px;
  animation: mandala-spin-ccw 22s linear infinite;
  will-change: transform;
  transform-origin: center center;
}

.gal-mandala-inner {
  position: absolute;
  inset: 70px;
  animation: mandala-spin-cw 14s linear infinite;
  will-change: transform;
  transform-origin: center center;
}

@keyframes mandala-spin-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mandala-spin-ccw {
  to {
    transform: rotate(-360deg);
  }
}

/* Faint saffron vignette glow at top-right where mandala sits */
.gal-mandala-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.14) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ── Hero Content ── */
.gal-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px 56px;
  gap: 12px;
}

.gal-hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 20px;
  padding: 5px 18px;
}

.gal-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--navy);
  line-height: 1.08;
  font-weight: 700;
  margin: 0;
  text-shadow: none;
}

.gal-hero-title em {
  color: #f5a820;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.gal-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.65;
  margin: 0;
}

/* ── Slide Dots ── */
.gal-hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.gal-hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 180, 80, 0.30);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}

.gal-hdot.active {
  background: #f5a820;
  transform: scale(1.5);
}

/* --- Stat Strip --- */
.gal-stat-strip {
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 32, 87, 0.06);
}

.gal-stat-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  gap: 0;
}

.gal-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.gal-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.gal-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.gal-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 8px;
  flex-shrink: 0;
}

/* --- Filter Bar --- */
.gal-filter-sec {
  background: #FDF8F2;
  padding: 28px 0 4px;
  border-bottom: 1px solid #efe8dc;
}

.gal-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.gal-filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--mid);
  cursor: pointer;
  transition: all .22s ease;
  letter-spacing: 0.01em;
}

.gal-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(15, 32, 87, 0.04);
}

.gal-filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 3px 10px rgba(15, 32, 87, 0.2);
}

/* --- Masonry Gallery --- */
.gal-main-sec {
  background: #FDF8F2;
  padding: 36px 0 60px;
}

.gal-masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.gal-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 32, 87, 0.09);
  position: relative;
  cursor: pointer;
  background: #fff;
  transition: transform .28s ease, box-shadow .28s ease;
  display: block;
}

.gal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(15, 32, 87, 0.16);
}

.gal-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.gal-card:hover img {
  transform: scale(1.07);
}

.gal-card-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 12px;
  min-height: 160px;
}

.gal-card-placeholder .gal-ph-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.gal-card-placeholder .gal-ph-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

/* Hover overlay */
.gal-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 32, 87, 0.82) 0%, rgba(15, 32, 87, 0.35) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .28s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  gap: 6px;
}

.gal-card:hover .gal-card-hover {
  opacity: 1;
}

.gal-card-hover-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.gal-card-hover-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gal-card-cat-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.85);
  color: #fff;
}

.gal-card-zoom {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

/* Fade-in animation for filter */
@keyframes gal-card-fadein {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gal-card.gal-anim {
  animation: gal-card-fadein 0.35s ease both;
}

/* Responsive */
@media (max-width: 900px) {
  .gal-masonry-grid {
    columns: 2;
  }

  .gal-hero-banner {
    height: 340px;
  }

  .gal-mandala-wrap {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -20px;
  }

  .gal-mandala-glow {
    width: 260px;
    height: 260px;
  }

  .gal-stat-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .gal-stat-divider {
    display: none;
  }

  .gal-stat-item {
    flex: 1 1 40%;
  }
}

@media (max-width: 560px) {
  .gal-masonry-grid {
    columns: 1;
  }

  .gal-hero-banner {
    height: 280px;
  }

  .gal-hero-title {
    font-size: 2rem;
  }

  .gal-mandala-wrap {
    width: 140px;
    height: 140px;
    top: -10px;
    right: -10px;
  }

  .gal-mandala-glow {
    width: 180px;
    height: 180px;
  }

  .gal-filter-bar {
    gap: 6px;
  }

  .gal-filter-btn {
    font-size: 11.5px;
    padding: 6px 12px;
  }
}