/* ═══════════════════════════════════════════════════════════
   New Era Model Schools – Premium Public Site CSS
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&display=swap');

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

:root {
  --navy:         #0d1b2a;
  --navy2:        #142336;
  --navy3:        #1e3a5f;
  --gold:         #d4a520;       /* brighter, more vivid gold */
  --gold-light:   #f0d060;       /* much lighter gold for contrast on dark */
  --gold-dark:    #b8860b;
  --white:        #ffffff;
  --off-white:    #f4f6fa;
  --text:         #111827;       /* deeper for sharper contrast */
  --text-mid:     #374151;
  --text-light:   #6b7280;
  --border:       #e5e7eb;
  --header-h:     90px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(13,27,42,.08);
  --shadow-lg:    0 12px 48px rgba(13,27,42,.15);
  --shadow-card:  0 2px 16px rgba(13,27,42,.06);
  --transition:   .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }

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

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: var(--navy); }
.serif { font-family: 'Playfair Display', Georgia, serif; }
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .85rem;
  padding: .22rem .7rem;
  background: rgba(212,165,32,.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.section-title span { color: var(--gold-dark); font-style: italic; }
.section-subtitle { font-size: 1rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.text-center { text-align: center; }

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, #e8b820 0%, #c9900a 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(212,165,32,.45);
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,165,32,.6); filter: brightness(1.07); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,27,42,.3); }
.btn-outline-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  font-weight: 700;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.btn-sm { padding: .6rem 1.4rem; font-size: .82rem; }

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, #060c18 0%, #0a1628 50%, #0d1b2a 100%);
  padding: .42rem 0;
  font-size: .76rem;
  color: rgba(255,255,255,.72);
  border-bottom: 2px solid rgba(212,165,32,.3);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-left {
  display: flex; align-items: center; gap: .6rem;
  flex-wrap: wrap;
}
.topbar-left a, .topbar-right a {
  color: rgba(255,255,255,.68);
  display: inline-flex; align-items: center; gap: .3rem;
  transition: color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold-light); }
.topbar-left .tb-hide { color: rgba(255,255,255,.5); font-size: .72rem; }
.topbar-right { display: flex; gap: .5rem; align-items: center; }
.tb-link {
  color: rgba(255,255,255,.72) !important;
  padding: .22rem .7rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  transition: all var(--transition) !important;
  white-space: nowrap;
}
.tb-link:hover {
  color: #fff !important;
  border-color: rgba(212,165,32,.55) !important;
  background: rgba(212,165,32,.12);
}

/* ── Header / Nav ────────────────────────────────────────── */

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.12); }
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 2rem;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo img { height: 68px; width: auto; max-width: 320px; object-fit: contain; display: block; }

/* Footer logo – slightly smaller so it fits the dark brand column */
.site-footer .site-logo img { height: 60px; max-width: 280px; }

.site-nav { flex: 1; min-width: 0; display: flex; justify-content: flex-end; align-items: center; gap: .25rem; flex-wrap: nowrap; overflow: visible; }
.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .55rem .85rem;
  font-size: .87rem; font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--off-white); }
.nav-link.active { font-weight: 700; color: var(--gold-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .4rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: .5rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: .6rem .9rem;
  font-size: .85rem; color: var(--text);
  border-radius: 8px;
  transition: background var(--transition);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }

.header-cta { margin-left: .5rem; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 850;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; animation: fadeIn .25s ease; }
.mobile-nav a {
  display: block; padding: 1rem 0;
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-sub { padding: .5rem 1rem; font-size: .9rem; color: var(--text-mid); border-bottom: none; font-weight: 400; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy);
}

/* ── Hero Slider ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 550px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides { height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
  /* Boost image vibrancy — makes dull photos pop */
  filter: brightness(1.18) contrast(1.08) saturate(1.15);
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  /* Much lighter overlay — lets the image breathe and look vivid */
  background: linear-gradient(
    105deg,
    rgba(10,22,40,.62) 0%,
    rgba(10,22,40,.42) 50%,
    rgba(10,22,40,.12) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 2rem;
  animation: heroFadeUp 1s ease forwards;
}
@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  padding: .3rem .9rem;
  border: 1px solid rgba(240,208,96,.35);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4), 0 0 40px rgba(0,0,0,.2);
}
.hero-title span { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 2.4rem;
  max-width: 520px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-nav {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .5rem;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.5);
  cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.hero-dot.active { background: var(--gold-light); border-color: var(--gold-light); transform: scale(1.5); width: 22px; border-radius: 5px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  transition: background var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }
.hero-scroll-hint {
  position: absolute; bottom: 1.5rem; right: 2rem;
  z-index: 3; color: rgba(255,255,255,.5);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: .4rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  display: block;
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 50%, #0a1628 100%);
  padding: 2rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid rgba(212,165,32,.2);
}
.stats-bar .container { display: flex; justify-content: space-around; gap: 1rem; flex-wrap: wrap; }
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(240,208,96,.3);
}
.stat-suffix { color: var(--gold-light); font-size: 1.6rem; }
.stat-label { font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .12em; text-transform: uppercase; margin-top: .4rem; font-weight: 600; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ── About Section ───────────────────────────────────────── */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 130px;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge span { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.about-content .section-label { margin-bottom: .75rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--text-mid); margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 1.5rem 0; }
.about-value {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 600; color: var(--navy);
}
.about-value::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; border-radius: 50%;
  font-size: .7rem; font-weight: 800;
  flex-shrink: 0;
}

/* Dynamic content area — makes UL lists from the CMS look premium */
.about-dynamic-content { margin-bottom: 1.5rem; }
.about-dynamic-content p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.about-dynamic-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .5rem;
  list-style: none;
  margin: 1.1rem 0;
  padding: 0;
}
.about-dynamic-content ul li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 600; color: var(--navy);
}
.about-dynamic-content ul li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; border-radius: 50%;
  font-size: .7rem; font-weight: 800;
}
.about-dynamic-content ol { padding-left: 1.4rem; color: var(--text-mid); line-height: 1.8; margin: .75rem 0; }
.about-dynamic-content h3 { font-size: 1.1rem; color: var(--navy); margin: 1rem 0 .5rem; }
.about-dynamic-content strong { color: var(--navy); }

/* ── Academics Cards ─────────────────────────────────────── */
.academic-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.academic-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.academic-card:hover img { transform: scale(1.06); }
.academic-card img {
  /* Boost vibrancy of academic card images */
  filter: brightness(1.12) contrast(1.05) saturate(1.15);
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.academic-card:hover img { transform: scale(1.06); filter: brightness(1.18) contrast(1.07) saturate(1.2); }
.academic-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.88) 30%, rgba(10,22,40,.05) 100%);
  transition: background var(--transition);
}
.academic-card:hover .academic-card-overlay { background: linear-gradient(to top, rgba(10,22,40,.92) 40%, rgba(10,22,40,.15) 100%); }
.academic-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  color: #fff;
}
.academic-card-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .85rem;
}
.academic-card-body h3 { font-size: 1.3rem; margin-bottom: .5rem; color: #fff; }
.academic-card-body p { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.academic-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold-light);
  font-size: .8rem; font-weight: 600;
  margin-top: .75rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.academic-card:hover .academic-card-link { opacity: 1; transform: translateY(0); }

/* ── Gallery Grid ────────────────────────────────────────── */
.gallery-filter {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem; justify-content: center;
}
.filter-btn {
  padding: .5rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: .83rem; font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.gallery-masonry {
  columns: 4 220px;
  gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  min-height: 160px;
  object-fit: cover;
  background: #e2e8f0;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(1.05) contrast(1.04) saturate(1.08);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.12) contrast(1.06) saturate(1.15); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: 2rem; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-bg { background: var(--off-white); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform .5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 1rem .5rem;
}
.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  position: relative;
}
.testimonial-inner blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: -2rem; left: -1rem;
  line-height: 1;
  opacity: .5;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  color: #fff; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-author span { font-size: .78rem; color: var(--text-light); }
.testimonial-nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding:0; transition: background var(--transition); }
.t-dot.active { background: var(--gold); }

/* ── News Cards ──────────────────────────────────────────── */
.news-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1.5rem; background: var(--white); }
.news-type {
  display: inline-block; padding: .2rem .7rem; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: .7rem;
}
.news-type.news   { background: #eff6ff; color: #1e40af; }
.news-type.event  { background: #fffbeb; color: #92400e; }
.news-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.news-card-body p  { font-size: .83rem; color: var(--text-mid); line-height: 1.65; }
.news-date { font-size: .75rem; color: var(--text-light); margin-top: .8rem; }

/* ── Contact Section ─────────────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .8rem; color: var(--text-light); font-weight: 600; margin-bottom: .15rem; }
.contact-info-item p { font-size: .9rem; color: var(--navy); font-weight: 500; }
.contact-info-item a { color: var(--navy); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; background: var(--white);
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,62,.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  padding: 2.5rem 0 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1rem; }
.breadcrumb a, .breadcrumb span { font-size: .8rem; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; margin-bottom: .35rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: .95rem; }
.breadcrumb { margin-bottom: .6rem; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #060e1a 0%, #0f1f3d 40%, #1a3a5c 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.cta-section::after {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,162,62,.08);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .site-logo { margin-bottom: 1.1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; font-family: 'Inter', sans-serif;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--gold); color: #fff; }

/* Footer logo image — keep small and tidy */
.site-footer .site-logo img { height: 44px; max-width: 140px; object-fit: contain; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: .3rem; }
.footer-contact-item { display: flex; gap: .6rem; font-size: .83rem; color: rgba(255,255,255,.65); margin-bottom: .6rem; }
.footer-contact-item span:first-child { flex-shrink: 0; }

.footer-bottom {
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 0 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── Form Success / Error ────────────────────────────────── */
.alert { padding: 1rem 1.25rem; border-radius: 10px; font-size: .9rem; margin-top: 1rem; display: none; }
.alert.show { display: block; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ── AOS Animations ──────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-left"] { transform: translateX(-24px); }
[data-aos="fade-left"].aos-animate { transform: none; }
[data-aos="fade-right"] { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate { transform: none; }
[data-aos="zoom-in"] { transform: scale(.94); }
[data-aos="zoom-in"].aos-animate { transform: none; }

/* ── Utility ─────────────────────────────────────────────── */
.gold { color: var(--gold); }
.navy { color: var(--navy); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-left { display: none; }
  .hero { height: 85vh; }
  .about-badge { bottom: -1rem; right: -1rem; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section { padding: 3.5rem 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar .container { gap: 1.5rem; }
  .gallery-masonry { columns: 2 160px; }
  .hero-arrows { display: none; }
  .hero-content { padding: 0 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
