/* =============================================================
   GLOBAL STYLESHEET — Biblical / Theological Institute
   Covers: Home, About, Admissions, Academics, News,
           Contact, Course Detail, Program Detail
   ============================================================= */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B2A4A;
  --navy-light: #123D6A;
  --navy-dark:  #071C32;
  --gold:       #C8A44D;
  --gold-light: #DEC07A;
  --gold-pale:  #F5EDD8;
  --white:      #FFFFFF;
  --offwhite:   #F8F5F0;
  --gray:       #6B7280;
  --gray-light: #F1EDE8;
  --text:       #1E2A3A;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }
p { font-family: 'Crimson Text', serif; font-size: 1.12rem; line-height: 1.85; color: #4B5563; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar { background: var(--navy-dark); height: 40px; display: flex; align-items: center; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-email { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.82rem; letter-spacing: 0.03em; }
.topbar-email i { color: var(--gold); font-size: 0.75rem; }
.topbar-links { display: flex; gap: 6px; list-style: none; }
.topbar-links a {
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 4px 12px; border: 1px solid rgba(200,164,77,0.3); border-radius: 2px;
  transition: all 0.25s; text-transform: uppercase;
}
.topbar-links a:hover,
.topbar-links .apply-btn { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.topbar-links .apply-btn:hover { background: var(--gold-light); }


/* ── NAVBAR ───────────────────────────────────────────────── */
nav.navbar {
  background: var(--white); position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 20px rgba(11,42,74,0.12); height: 80px; display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .logo-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo .logo-icon::after { content: '✝'; color: var(--gold); font-size: 1.6rem; }
.logo-text-wrap .inst-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); display: block; line-height: 1.1; }
.logo-text-wrap .inst-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

/* Desktop nav links */
.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px; padding: 10px 14px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--navy); transition: color 0.2s; border-radius: 3px;
}
.nav-menu > li > a i { font-size: 0.6rem; }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); }

/* Dropdowns */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; background: var(--white);
  min-width: 210px; box-shadow: 0 8px 30px rgba(11,42,74,0.15);
  border-top: 3px solid var(--gold); border-radius: 0 0 6px 6px;
  list-style: none; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all 0.2s; z-index: 100;
}
.nav-menu > li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 18px; font-size: 0.82rem; font-weight: 500; color: var(--navy);
  letter-spacing: 0.02em; border-bottom: 1px solid rgba(11,42,74,0.06); transition: all 0.2s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--gold-pale); color: var(--gold); padding-left: 24px; }

.nav-apply { background: var(--gold); color: var(--navy-dark) !important; padding: 10px 22px !important; border-radius: 3px; font-weight: 700 !important; }
.nav-apply:hover { background: var(--navy) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ── MOBILE MENU OVERLAY ──────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy-dark);
  z-index: 1000; flex-direction: column; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  background: var(--navy); flex-shrink: 0;
}
.mobile-logo-row { display: flex; align-items: center; gap: 10px; }
.mobile-logo-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 1.2rem; font-weight: 900; }
.mobile-logo-text { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.mobile-logo-sub { font-family: 'Jost', sans-serif; font-size: 0.65rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-close {
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-size: 1rem; cursor: pointer; padding: 8px 10px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.mobile-close:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.mobile-nav { list-style: none; flex: 1; padding: 8px 0; }
.mobile-nav > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav > li > .mobile-link-row { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav > li > .mobile-link-row > a {
  flex: 1; display: block; padding: 14px 20px;
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; transition: all 0.2s;
}
.mobile-nav > li > .mobile-link-row > a:hover,
.mobile-nav > li > .mobile-link-row > a.active { color: var(--gold); }
.mobile-toggle-btn {
  background: none; border: none; color: rgba(255,255,255,0.4); padding: 14px 20px;
  cursor: pointer; font-size: 0.7rem; transition: all 0.25s; flex-shrink: 0; display: flex; align-items: center;
}
.mobile-toggle-btn.open { color: var(--gold); transform: rotate(180deg); }
.mobile-sub { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: rgba(0,0,0,0.25); }
.mobile-sub.open { max-height: 400px; }
.mobile-sub li a {
  display: flex; align-items: center; gap: 8px; padding: 11px 20px 11px 36px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.2s;
}
.mobile-sub li a::before { content: '›'; color: var(--gold); font-size: 1rem; line-height: 1; }
.mobile-sub li:last-child a { border-bottom: none; }
.mobile-sub li a:hover { color: var(--gold); padding-left: 42px; }
.mobile-apply-wrap { padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.mobile-apply {
  display: block; background: var(--gold); color: var(--navy-dark); text-align: center;
  padding: 15px; border-radius: 4px; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold);
}
.mobile-apply:hover { background: transparent; color: var(--gold); }
.mobile-contact-row { padding: 0 20px 20px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.mobile-contact-row i { color: var(--gold); }


/* ── SHARED SECTION LABELS ────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px;
}
/* .section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); } */
.section-tag.center { justify-content: center; }
.section-tag.center::before { display: none; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 18px; }
.section-subtitle { font-family: 'Crimson Text', serif; font-size: 1.15rem; color: #6B7280; max-width: 620px; }

/* ── SHARED BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-dark); padding: 14px 34px;
  border-radius: 3px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 14px 34px;
  border-radius: 3px; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-dark); padding: 13px 30px;
  border-radius: 3px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white); padding: 13px 30px;
  border-radius: 3px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--navy);
}
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold); padding: 13px 30px;
  border-radius: 3px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }
.btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 13px 30px;
  border-radius: 3px; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-w:hover { background: var(--white); color: var(--navy); border-color: var(--white); }


/* ── PAGE BANNER (inner pages) ────────────────────────────── */
.page-banner {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(7,28,50,0.92) 0%, rgba(11,42,74,0.80) 100%),
              url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: flex-end; padding-bottom: 56px; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200,164,77,0.03) 60px, rgba(200,164,77,0.03) 61px);
}
.banner-content { position: relative; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb-nav a:hover { opacity: 0.8; }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.4); font-size: 0.6rem; }
.breadcrumb-nav .current { color: rgba(255,255,255,0.6); }
.banner-line { display: block; width: 60px; height: 3px; background: var(--gold); margin-bottom: 20px; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 14px; }
.page-banner .banner-sub { font-family: 'Crimson Text', serif; font-size: 1.2rem; color: rgba(255,255,255,0.72); max-width: 600px; line-height: 1.7; }
.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Program-style hero variant */
.prog-hero {
  background: linear-gradient(135deg, rgba(7,28,50,0.96) 0%, rgba(11,42,74,0.88) 60%, rgba(18,61,106,0.75) 100%),
              url('https://images.unsplash.com/photo-1529390079861-591de354faf5?w=1600&q=80') center/cover no-repeat;
  padding: 72px 0 56px; position: relative; overflow: hidden;
}
.prog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200,164,77,0.025) 60px, rgba(200,164,77,0.025) 61px);
}
.hero-inner { position: relative; }
.prog-level-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--navy-dark); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 18px; }
.prog-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 18px; max-width: 700px; }
.prog-hero .hero-desc { font-family: 'Crimson Text', serif; font-size: 1.18rem; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.75; margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; }
.hero-meta-item i { color: var(--gold); font-size: 0.82rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(200,164,77,0.18); border: 1px solid rgba(200,164,77,0.4); color: var(--gold-light); padding: 7px 16px; border-radius: 2px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumb-bar { background: var(--navy-dark); padding: 12px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.breadcrumb-inner a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb-inner a:hover { opacity: 0.8; }
.breadcrumb-inner i { font-size: 0.6rem; }


/* ── HOMEPAGE HERO ────────────────────────────────────────── */
.hero {
  min-height: 82vh;
  background: linear-gradient(135deg, rgba(7,28,50,0.88) 0%, rgba(11,42,74,0.75) 60%, rgba(11,42,74,0.5) 100%),
              url('https://images.unsplash.com/photo-1544396821-4dd40b938ad3?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200,164,77,0.03) 60px, rgba(200,164,77,0.03) 61px);
}
.hero-content { position: relative; text-align: center; max-width: 860px; margin: 0 auto; padding: 80px 0; }
.hero-pretitle { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px; }
.hero-pretitle::before, .hero-pretitle::after { content: '—'; opacity: 0.6; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 24px; font-weight: 700; line-height: 1.15; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-family: 'Crimson Text', serif; font-size: 1.25rem; color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounceDown 2s infinite;
}
.hero-scroll i { font-size: 1rem; }
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Stats bar */
.stats-bar { background: var(--navy); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }


/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section, .about-inst { padding: 100px 0; background: var(--white); }
.about-grid, .about-inst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap, .about-inst-image { position: relative; }
.about-image { width: 100%; height: 520px; object-fit: cover; border-radius: 4px; display: block; }
.about-image-placeholder, .img-placeholder {
  width: 100%; height: 520px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.about-image-placeholder i, .img-placeholder i { font-size: 4rem; color: var(--gold); opacity: 0.6; }
.about-image-placeholder span, .img-placeholder span { color: rgba(255,255,255,0.4); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-badge, .inst-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--navy-dark);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 8px 30px rgba(200,164,77,0.4);
}
.inst-badge { width: auto; height: auto; border-radius: 4px; padding: 20px 24px; right: -20px; }
.about-badge .num, .inst-badge .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge .lbl, .inst-badge .lbl { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.3; margin-top: 4px; }
.about-text p, .about-inst-text p { margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.about-feature { display: flex; gap: 12px; align-items: flex-start; }
.about-feature-icon { width: 38px; height: 38px; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-icon i { color: var(--gold); font-size: 0.9rem; }
.about-feature h5 { font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }

.inst-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.inst-stats .stat-item { background: var(--offwhite); border-radius: 4px; }
.inst-stats .snum { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.inst-stats .slbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }


/* ── PROGRAMS SECTION ─────────────────────────────────────── */
.programs-section { padding: 100px 0; background: var(--offwhite); }
.programs-header { text-align: center; margin-bottom: 56px; }
.programs-header .section-subtitle { margin: 0 auto; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: var(--white); border-radius: 4px; padding: 36px 28px;
  border-bottom: 3px solid transparent; box-shadow: 0 2px 16px rgba(11,42,74,0.06);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,42,74,0.12); }
.program-card:hover::before { transform: scaleX(1); }
.program-icon { width: 58px; height: 58px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.program-icon i { color: var(--gold); font-size: 1.4rem; }
.program-level { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.program-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.program-card p { font-size: 1rem; margin: 0; }
.program-card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); transition: gap 0.2s; }
.program-card .card-link:hover { color: var(--gold); gap: 10px; }
.programs-cta { text-align: center; margin-top: 48px; }


/* ── VIDEO SECTION ────────────────────────────────────────── */
.video-section { padding: 80px 0; background: var(--gray-light); }
.video-inner { text-align: center; }
.video-inner .section-tag { justify-content: center; }
.video-inner .section-tag::before { display: none; }
.video-wrap { max-width: 840px; margin: 40px auto 0; position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 60px rgba(11,42,74,0.2); }
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.video-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; }
.video-play-btn { width: 80px; height: 80px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; box-shadow: 0 0 0 16px rgba(200,164,77,0.15); }
.video-play-btn:hover { transform: scale(1.1); }
.video-play-btn i { color: var(--navy-dark); font-size: 1.8rem; margin-left: 4px; }
.video-placeholder p { color: rgba(255,255,255,0.7); font-size: 1rem; }


/* ── AFFILIATION SECTION ──────────────────────────────────── */
.affiliation-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.affiliation-section::before { content: '✝'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-size: 22rem; color: rgba(255,255,255,0.02); font-family: serif; line-height: 1; }
.affiliation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.affiliation-text .section-tag { color: var(--gold-light); }
.affiliation-text .section-tag::before { background: var(--gold-light); }
.affiliation-text .section-title { color: var(--white); }
.affiliation-text p { color: rgba(255,255,255,0.75); }
.affiliation-text p + p { margin-top: 16px; }
.affil-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; background: transparent; color: var(--gold); border: 2px solid var(--gold); padding: 12px 28px; border-radius: 3px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; }
.affil-btn:hover { background: var(--gold); color: var(--navy-dark); }
.affiliation-logos { display: flex; flex-direction: column; gap: 20px; }
.logo-partner { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,164,77,0.2); border-radius: 6px; padding: 28px 36px; display: flex; align-items: center; gap: 20px; transition: all 0.3s; }
.logo-partner:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,164,77,0.5); }
.partner-icon { width: 52px; height: 52px; background: var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-icon i { color: var(--navy-dark); font-size: 1.4rem; }
.partner-info h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.partner-info p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.4; }


/* ── BENEFITS SECTION ─────────────────────────────────────── */
.benefits-section { padding: 100px 0; background: var(--white); }
.benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 4px; transition: background 0.2s; }
.benefit-item:hover { background: var(--gold-pale); }
.benefit-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon i { color: var(--gold); font-size: 1rem; }
.benefit-text h5 { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: 0.01em; }
.benefit-text p { font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* Navy benefits grid (program pages) */
.benefits-section.dark { background: var(--navy); position: relative; overflow: hidden; }
.benefits-section.dark::before { content: '✝'; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); font-size: 22rem; color: rgba(255,255,255,0.02); font-family: serif; pointer-events: none; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,164,77,0.15); border-radius: 6px; padding: 30px 26px; transition: all 0.3s; }
.benefit-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,164,77,0.4); transform: translateY(-4px); }
.benefit-card-icon { width: 52px; height: 52px; background: rgba(200,164,77,0.12); border: 1px solid rgba(200,164,77,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.benefit-card-icon i { color: var(--gold); font-size: 1.2rem; }
.benefit-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.benefit-card p { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.65; }


/* ── NEWS SECTION ─────────────────────────────────────────── */
.news-section { padding: 100px 0; background: var(--offwhite); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.view-all-link { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.view-all-link:hover { gap: 10px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 2px 16px rgba(11,42,74,0.06); transition: all 0.3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,42,74,0.12); }
.news-card-img { height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.news-card-img i { font-size: 3rem; color: rgba(200,164,77,0.4); }
.news-date { position: absolute; bottom: 12px; left: 16px; background: var(--gold); color: var(--navy-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.news-card-body { padding: 24px; }
.news-category { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.news-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.news-card p { font-size: 0.98rem; margin-bottom: 16px; }
.news-link { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.news-link:hover { color: var(--gold); gap: 10px; }


/* ── DONATION SECTION ─────────────────────────────────────── */
.donation-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #3D2B0E 0%, #6B4A1A 50%, #4A3010 100%);
  position: relative; overflow: hidden;
}
.donation-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A44D' fill-opacity='0.05'%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");
}
.donation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.donation-text .section-tag { color: var(--gold-light); }
.donation-text .section-tag::before { background: var(--gold-light); }
.donation-text .section-title { color: var(--white); }
.donation-text p { color: rgba(255,255,255,0.75); }
.donation-text p + p { margin-top: 16px; }
.donate-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; background: var(--gold); color: var(--navy-dark); padding: 14px 34px; border-radius: 3px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold); }
.donate-btn:hover { background: transparent; color: var(--gold); }
.donation-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.qr-box { background: var(--white); border-radius: 8px; padding: 24px; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.qr-placeholder { width: 100%; height: 100%; border: 3px solid var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; position: relative; }
.qr-placeholder::before, .qr-placeholder::after { content: ''; position: absolute; width: 24px; height: 24px; border: 4px solid var(--navy); }
.qr-placeholder::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.qr-placeholder::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.qr-placeholder i { font-size: 2.5rem; color: var(--navy); opacity: 0.4; }
.qr-placeholder span { font-size: 0.6rem; text-align: center; color: var(--navy); opacity: 0.6; letter-spacing: 0.08em; text-transform: uppercase; }
.upi-id { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-align: center; font-family: 'Jost', sans-serif; }
.upi-id strong { color: var(--gold); font-weight: 600; display: block; margin-bottom: 4px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }


/* ── MISSION / VISION ─────────────────────────────────────── */
.mv-section { padding: 100px 0; background: var(--gray-light); }
.mv-header { text-align: center; margin-bottom: 56px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { border-radius: 4px; padding: 48px 40px; position: relative; overflow: hidden; }
.mv-card.vision { background: var(--navy); }
.mv-card.mission { background: var(--white); border: 1px solid rgba(11,42,74,0.1); }
.mv-card-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.mv-card.vision .mv-card-icon { background: rgba(200,164,77,0.15); }
.mv-card.mission .mv-card-icon { background: var(--gold-pale); }
.mv-card-icon i { color: var(--gold); font-size: 1.6rem; }
.mv-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.mv-card h3 { font-size: 1.6rem; margin-bottom: 20px; }
.mv-card.vision h3 { color: var(--white); }
.mv-card.mission h3 { color: var(--navy); }
.mv-card.vision p { color: rgba(255,255,255,0.75); }
.mv-card.mission p { margin-bottom: 16px; }
.mission-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.mission-list li { display: flex; align-items: flex-start; gap: 12px; }
.mission-list li::before { content: '✝'; color: var(--gold); font-size: 0.8rem; margin-top: 4px; flex-shrink: 0; }
.mission-list li span { font-family: 'Crimson Text', serif; font-size: 1.05rem; color: #4B5563; line-height: 1.6; }
.mv-card.vision::after { content: '◯'; position: absolute; right: -30px; bottom: -30px; font-size: 12rem; color: rgba(255,255,255,0.03); line-height: 1; }


/* ── STATEMENT OF FAITH / ACCORDION ──────────────────────── */
.faith-section { padding: 100px 0; background: var(--white); }
.faith-header { text-align: center; margin-bottom: 56px; }
.faith-intro { font-family: 'Crimson Text', serif; font-size: 1.15rem; color: #4B5563; max-width: 700px; margin: 0 auto; text-align: center; line-height: 1.8; }
.accordion { max-width: 860px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid rgba(11,42,74,0.1); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s; }
.accordion-item.open { box-shadow: 0 4px 24px rgba(11,42,74,0.1); }
.accordion-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; background: var(--white); transition: background 0.2s; }
.accordion-item.open .accordion-head { background: var(--navy); }
.accordion-head-left { display: flex; align-items: center; gap: 16px; }
.acc-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); font-family: 'Jost', sans-serif; }
.accordion-head h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); transition: color 0.2s; }
.accordion-item.open .accordion-head h4 { color: var(--white); }
.acc-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.accordion-item.open .acc-icon { background: var(--gold); transform: rotate(45deg); }
.acc-icon i { color: var(--navy); font-size: 0.8rem; }
.accordion-item.open .acc-icon i { color: var(--navy-dark); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 24px 24px 28px; border-top: 1px solid rgba(11,42,74,0.07); background: var(--offwhite); }
.accordion-body-inner p { font-size: 1.05rem; margin: 0; }


/* ── FACULTY SECTION ──────────────────────────────────────── */
.faculty-section { padding: 100px 0; background: var(--offwhite); }
.faculty-header { text-align: center; margin-bottom: 20px; }
.faculty-desc { font-family: 'Crimson Text', serif; font-size: 1.1rem; color: #4B5563; max-width: 760px; margin: 0 auto 20px; text-align: center; }
.faculty-responsibilities { background: var(--white); border-left: 4px solid var(--gold); border-radius: 0 4px 4px 0; padding: 24px 28px; max-width: 760px; margin: 0 auto 56px; }
.faculty-responsibilities h5 { font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.resp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.resp-list li { display: flex; align-items: flex-start; gap: 10px; }
.resp-list li i { color: var(--gold); font-size: 0.75rem; margin-top: 5px; flex-shrink: 0; }
.resp-list li span { font-family: 'Crimson Text', serif; font-size: 1.05rem; color: #4B5563; }
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.faculty-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 2px 16px rgba(11,42,74,0.07); transition: all 0.3s; }
.faculty-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,42,74,0.12); }
.faculty-photo { height: 220px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.faculty-photo i { font-size: 4rem; color: rgba(200,164,77,0.35); }
.faculty-badge { position: absolute; bottom: 0; left: 0; right: 0; background: var(--gold); padding: 6px 16px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-dark); text-align: center; }
.faculty-body { padding: 24px; }
.faculty-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.faculty-role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; font-family: 'Jost', sans-serif; }
.faculty-bio { font-size: 0.98rem; color: #6B7280; line-height: 1.65; margin: 0; }


/* ── ADMISSION PROCESS ────────────────────────────────────── */
.process-section { padding: 100px 0; background: var(--offwhite); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header p { max-width: 560px; margin: 0 auto; }

/* 4-step horizontal */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 44px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold)); z-index: 0; }
.step-card { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.step-circle { width: 88px; height: 88px; background: var(--white); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.3s; box-shadow: 0 4px 20px rgba(200,164,77,0.2); }
.step-card:hover .step-circle { background: var(--gold); }
.step-circle i { font-size: 1.6rem; color: var(--gold); transition: color 0.3s; }
.step-card:hover .step-circle i { color: var(--navy-dark); }
.step-num { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; background: var(--navy); color: var(--gold); border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; }
.step-card h3 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.02em; }
.step-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.step-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); transition: gap 0.2s; }
.step-link:hover { gap: 10px; }

/* Timeline variant */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(200,164,77,0.2)); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: start; margin-bottom: 48px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-left { text-align: right; padding-right: 40px; padding-top: 8px; }
.tl-right { padding-left: 40px; padding-top: 8px; }
.tl-center { display: flex; flex-direction: column; align-items: center; }
.tl-num { width: 56px; height: 56px; background: var(--navy); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--offwhite); }
.tl-connector { width: 2px; flex: 1; background: rgba(200,164,77,0.2); min-height: 60px; }
.tl-box { background: var(--white); border-radius: 6px; padding: 24px 26px; box-shadow: 0 2px 16px rgba(11,42,74,0.08); border-bottom: 3px solid var(--gold); transition: all 0.3s; }
.tl-box:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(11,42,74,0.12); }
.tl-step-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-family: 'Jost', sans-serif; }
.tl-box h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.tl-box p { font-size: 0.95rem; margin: 0; line-height: 1.65; }
.tl-item:nth-child(even) .tl-left { text-align: left; padding-left: 40px; padding-right: 0; order: 3; }
.tl-item:nth-child(even) .tl-right { text-align: right; padding-right: 40px; padding-left: 0; order: 1; }
.tl-item:nth-child(even) .tl-center { order: 2; }


/* ── ELIGIBILITY SECTION ──────────────────────────────────── */
.eligibility-section { padding: 100px 0; background: var(--white); }
.eligibility-grid, .elig-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: flex-start; }
.eligibility-text p, .elig-text p { margin-bottom: 20px; }
.elig-list { display: flex; flex-direction: column; gap: 14px; }
.elig-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--offwhite); border-radius: 4px; border-left: 3px solid var(--gold); transition: all 0.25s; }
.elig-item:hover { background: var(--gold-pale); transform: translateX(4px); }
.elig-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.elig-icon i { color: var(--gold); font-size: 1rem; }
.elig-item h5 { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.elig-item p { font-size: 0.88rem; margin: 0; line-height: 1.5; color: #6B7280; }
.elig-note { margin-top: 24px; padding: 18px 22px; background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 0 4px 4px 0; }
.elig-note p { font-size: 1rem; margin: 0; color: #4B5563; }

/* Accordion eligibility (admissions page) */
.acc-item { border: 0.5px solid rgba(11,42,74,0.12); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s; }
.acc-item.open { box-shadow: 0 4px 20px rgba(11,42,74,0.08); }
.acc-head { display: flex; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; background: var(--white); transition: background 0.2s; user-select: none; }
.acc-head:hover { background: var(--gold-pale); }
.acc-item.open .acc-head { background: var(--navy); }
.acc-icon { width: 40px; height: 40px; border-radius: 4px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.acc-icon i { color: var(--gold); font-size: 0.95rem; }
.acc-item.open .acc-icon { background: rgba(200,164,77,0.2); }
.acc-head-text { flex: 1; }
.acc-level { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.acc-item.open .acc-level { color: var(--gold-light); }
.acc-head-text h4 { font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--navy); transition: color 0.2s; }
.acc-item.open .acc-head-text h4 { color: var(--white); }
.acc-chevron { color: var(--gray); font-size: 0.75rem; transition: transform 0.3s; }
.acc-item.open .acc-chevron { transform: rotate(180deg); color: var(--gold); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-body-inner { padding: 18px 22px; border-top: 1px solid rgba(11,42,74,0.06); background: var(--offwhite); }
.acc-body-inner p { font-size: 1rem; margin: 0; }


/* ── APPLICATION FORM ─────────────────────────────────────── */
.apply-section, .form-section { padding: 100px 0; background: var(--offwhite); }
.apply-header, .form-section .apply-header { text-align: center; margin-bottom: 56px; }
.form-card { background: var(--white); border-radius: 6px; box-shadow: 0 4px 40px rgba(11,42,74,0.1); overflow: hidden; max-width: 900px; margin: 0 auto; }
.form-card-header { background: var(--navy); padding: 28px 40px; display: flex; align-items: center; gap: 16px; }
.form-card-header i { color: var(--gold); font-size: 1.4rem; }
.form-card-header h3 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.form-card-header p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.4; }
.form-body { padding: 40px; }
.form-section-label { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); padding-bottom: 10px; border-bottom: 1px solid var(--gold-pale); margin-bottom: 22px; margin-top: 32px; display: flex; align-items: center; gap: 8px; }
.form-section-label:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea,
.fg input, .fg select, .fg textarea,
.form-input, .form-select, .form-textarea {
  padding: 11px 14px; border: 1px solid rgba(11,42,74,0.18); border-radius: 3px;
  font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.fg input:focus, .fg select:focus, .fg textarea:focus,
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,77,0.12);
}
.form-group textarea, .form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group select, .form-select, .fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C8A44D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
.fg label, .form-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); font-family: 'Jost', sans-serif; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section-divider { grid-column: 1 / -1; padding: 12px 0 4px; border-top: 1px solid rgba(11,42,74,0.08); margin-top: 8px; }
.form-section-divider span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-family: 'Jost', sans-serif; }
.form-actions, .form-submit { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 24px; border-top: 1px solid var(--gold-pale); }
.form-submit p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-dark); padding: 14px 40px;
  border-radius: 3px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid var(--gold);
  cursor: pointer; transition: all 0.3s;
}
.submit-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.upload-box { border: 2px dashed rgba(200,164,77,0.4); border-radius: 4px; padding: 24px 20px; text-align: center; cursor: pointer; transition: all 0.3s; position: relative; }
.upload-box:hover { border-color: var(--gold); background: var(--gold-pale); }
.upload-box input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-box i { font-size: 1.5rem; color: var(--gold); margin-bottom: 8px; display: block; }
.upload-box p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.5; }
.upload-box span { font-size: 0.76rem; color: rgba(75,85,99,0.6); display: block; margin-top: 4px; }
.upload-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.form-note { font-family: 'Jost', sans-serif; font-size: 0.78rem; color: var(--gray); background: var(--offwhite); border-radius: 3px; padding: 12px 16px; margin-bottom: 28px; display: flex; align-items: flex-start; gap: 8px; }
.form-note i { color: var(--gold); margin-top: 2px; font-size: 0.85rem; flex-shrink: 0; }
.success-msg { display: none; text-align: center; padding: 48px 32px; }
.success-msg.show { display: block; }
.success-msg i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.success-msg h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.6rem; margin-bottom: 10px; }
.success-msg p { font-size: 1rem; max-width: 460px; margin: 0 auto; }
.wa-btn { display: flex; align-items: center; gap: 8px; background: #25D366; color: var(--white); padding: 13px 22px; border-radius: 3px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; }
.wa-btn:hover { background: #1DA851; }


/* ── CONTACT PAGE ─────────────────────────────────────────── */
.cards-section { padding: 80px 0 0; background: var(--white); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card { text-align: center; padding: 36px 22px; border: 0.5px solid rgba(11,42,74,0.1); border-radius: 4px; transition: all 0.3s; position: relative; overflow: hidden; background: var(--white); }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.contact-card:hover { box-shadow: 0 12px 40px rgba(11,42,74,0.1); transform: translateY(-4px); }
.contact-card:hover::before { transform: scaleX(1); }
.card-icon { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.card-icon i { color: var(--gold); font-size: 1.3rem; }
.contact-card h4 { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-card p { font-size: 0.95rem; margin: 0; line-height: 1.6; }
.contact-card a { color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; display: block; margin-top: 10px; transition: opacity 0.2s; }
.contact-card a:hover { opacity: 0.75; }
.contact-main { padding: 80px 0 100px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: flex-start; }
.contact-sidebar h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 16px; }
.contact-sidebar > p { margin-bottom: 32px; }
.info-blocks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.info-block { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 0.5px solid rgba(11,42,74,0.1); border-radius: 4px; transition: background 0.2s; }
.info-block:hover { background: var(--gold-pale); }
.info-block-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-block-icon i { color: var(--gold); font-size: 0.95rem; }
.info-block-text h5 { font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.info-block-text p { font-size: 0.95rem; margin: 0; line-height: 1.5; }
.info-block-text a { color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.88rem; display: block; transition: opacity 0.2s; }
.info-block-text a:hover { opacity: 0.75; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid rgba(11,42,74,0.15); border-radius: 3px; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--navy); transition: all 0.2s; }
.social-btn i { font-size: 0.9rem; }
.social-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.social-btn.wa { color: #25D366; border-color: #25D366; }
.social-btn.wa:hover { background: #25D366; color: var(--white); }
.map-section { background: var(--offwhite); padding: 80px 0; }
.map-header { text-align: center; margin-bottom: 40px; }
.map-frame { border-radius: 6px; overflow: hidden; box-shadow: 0 8px 40px rgba(11,42,74,0.12); }
.map-frame iframe { width: 100%; height: 420px; border: none; display: block; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-channel { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(200,164,77,0.15); border-radius: 4px; padding: 18px 22px; transition: all 0.3s; text-decoration: none; }
.contact-channel:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,164,77,0.5); }
.channel-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-icon i { color: var(--navy-dark); font-size: 1.05rem; }
.channel-info h4 { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.channel-info p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.4; }


/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: flex-start; }
.faq-text h2 { margin-bottom: 16px; }
.faq-text p { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 0.5px solid rgba(11,42,74,0.1); border-radius: 4px; overflow: hidden; }
.faq-item.open { box-shadow: 0 4px 20px rgba(11,42,74,0.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--navy); background: var(--white); transition: background 0.2s; user-select: none; }
.faq-q:hover { background: var(--gold-pale); }
.faq-item.open .faq-q { background: var(--navy); color: var(--white); }
.faq-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; background: var(--white); transition: background 0.2s; }
.faq-item.open .faq-head { background: var(--navy); }
.faq-head h5 { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--navy); transition: color 0.2s; line-height: 1.4; }
.faq-item.open .faq-head h5 { color: var(--white); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-icon i { color: var(--navy); font-size: 0.75rem; }
.faq-q i { font-size: 0.75rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--gold); }
.faq-a, .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a,
.faq-item.open .faq-body { max-height: 300px; }
.faq-a-inner, .faq-body-inner { padding: 14px 20px; background: var(--offwhite); border-top: 1px solid rgba(11,42,74,0.06); }
.faq-a-inner p, .faq-body-inner p { font-size: 0.95rem; margin: 0; }


/* ── COURSE / PROGRAM DETAIL ──────────────────────────────── */
.course-layout, .prog-body { padding: 72px 0 100px; background: var(--white); }
.course-grid, .prog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: flex-start; }

/* Tab navigation */
.tab-nav { display: flex; border-bottom: 2px solid rgba(11,42,74,0.1); margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn { background: none; border: none; padding: 14px 22px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #6B7280; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; font-family: 'Jost', sans-serif; }
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Semester tabs */
.sem-tabs { display: flex; margin-bottom: 36px; border: 1px solid rgba(11,42,74,0.12); border-radius: 4px; overflow: hidden; }
.sem-tab { flex: 1; padding: 12px 8px; text-align: center; font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gray); background: var(--white); border: none; cursor: pointer; transition: all 0.2s; border-right: 1px solid rgba(11,42,74,0.12); }
.sem-tab:last-child { border-right: none; }
.sem-tab:hover { background: var(--gold-pale); color: var(--navy); }
.sem-tab.active { background: var(--navy); color: var(--gold); }
.sem-panel { display: none; }
.sem-panel.active { display: block; }
.sem-header { background: var(--navy); border-radius: 4px 4px 0 0; padding: 20px 28px; display: flex; align-items: center; gap: 16px; }
.sem-header-icon { width: 44px; height: 44px; background: rgba(200,164,77,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sem-header-icon i { color: var(--gold); font-size: 1.1rem; }
.sem-header h3 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.sem-header p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.3; }
.papers-list { border: 1px solid rgba(11,42,74,0.1); border-top: none; border-radius: 0 0 4px 4px; overflow: hidden; }
.paper-item { border-bottom: 1px solid rgba(11,42,74,0.08); }
.paper-item:last-child { border-bottom: none; }
.paper-head { display: flex; align-items: center; gap: 16px; padding: 18px 24px; cursor: pointer; background: var(--white); transition: background 0.2s; user-select: none; }
.paper-head:hover, .paper-item.open .paper-head { background: var(--gold-pale); }
.paper-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.paper-item.open .paper-num { background: var(--gold); color: var(--navy-dark); }
.paper-title { flex: 1; font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.paper-chevron { color: var(--gray); font-size: 0.72rem; transition: transform 0.3s; }
.paper-item.open .paper-chevron { transform: rotate(180deg); color: var(--gold); }
.paper-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.paper-body-inner { padding: 16px 24px 20px 72px; background: var(--offwhite); border-top: 1px solid rgba(11,42,74,0.06); }
.paper-body-inner ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.paper-body-inner ul li { display: flex; align-items: flex-start; gap: 10px; font-family: 'Jost', sans-serif; font-size: 0.84rem; color: #4B5563; }
.paper-body-inner ul li::before { content: '→'; color: var(--gold); font-size: 0.7rem; margin-top: 2px; flex-shrink: 0; }
.paper-body-inner p { font-size: 0.95rem; margin: 0; }

/* Subjects grid */
.subjects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.subject-item { background: var(--offwhite); border-radius: 4px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; border-left: 3px solid var(--gold); transition: all 0.2s; }
.subject-item:hover { background: var(--gold-pale); }
.subject-item i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.subject-item-text h5 { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.subject-item-text p { font-size: 0.88rem; color: #6B7280; margin: 0; line-height: 1.5; }

/* Info cards (duration/fees) */
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.info-card { background: var(--white); border: 1px solid rgba(11,42,74,0.1); border-radius: 4px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(11,42,74,0.05); }
.info-card-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.info-card-icon i { color: var(--gold); font-size: 1.2rem; }
.info-card h5 { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.info-card p { font-size: 0.95rem; color: var(--navy); font-weight: 600; margin: 0; font-family: 'Jost', sans-serif; }

/* Fees table */
.fees-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.fees-table th { background: var(--navy); color: var(--white); padding: 14px 18px; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; }
.fees-table td { padding: 14px 18px; border-bottom: 1px solid rgba(11,42,74,0.07); font-family: 'Jost', sans-serif; font-size: 0.88rem; color: #4B5563; }
.fees-table tr:nth-child(even) td { background: var(--offwhite); }
.fees-table tr:last-child td { border-bottom: none; font-weight: 700; color: var(--navy); }
.fees-note { background: var(--gold-pale); border: 1px solid rgba(200,164,77,0.3); border-radius: 4px; padding: 16px 20px; margin-top: 20px; }
.fees-note p { font-size: 0.95rem; margin: 0; color: #4B5563; }
.fees-note p strong { color: var(--navy); }

/* Sidebar – enrolment card */
.sidebar, .prog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--white); border: 0.5px solid rgba(11,42,74,0.12); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 30px rgba(11,42,74,0.08); margin-bottom: 24px; }
.sidebar-card-header { background: var(--navy); padding: 20px 24px; }
.sidebar-card-header h4 { font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.sidebar-card-header p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.4; }
.sidebar-card-body { padding: 20px 24px; }
.meta-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(11,42,74,0.07); }
.meta-row:last-child { border-bottom: none; }
.meta-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.meta-icon i { color: var(--gold); font-size: 0.85rem; }
.meta-label { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 1px; }
.meta-value { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.sidebar-apply { display: block; background: var(--gold); color: var(--navy-dark); text-align: center; padding: 15px; border-radius: 3px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold); }
.sidebar-apply:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sidebar-contact { display: block; margin-top: 10px; background: transparent; color: var(--navy); text-align: center; padding: 13px; border-radius: 3px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; border: 2px solid rgba(11,42,74,0.2); }
.sidebar-contact:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.sidebar-enroll { background: var(--navy); }
.sidebar-enroll-head { padding: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.enroll-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-family: 'Jost', sans-serif; }
.enroll-prog-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); line-height: 1.3; }
.sidebar-enroll-meta { padding: 20px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.enroll-meta-list { display: flex; flex-direction: column; gap: 12px; }
.enroll-meta-item { display: flex; justify-content: space-between; align-items: center; }
.enroll-meta-item .em-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 6px; }
.enroll-meta-item .em-label i { color: var(--gold); font-size: 0.72rem; }
.enroll-meta-item .em-value { font-size: 0.82rem; font-weight: 700; color: var(--white); font-family: 'Jost', sans-serif; }
.sidebar-enroll-btns { padding: 20px 28px; display: flex; flex-direction: column; gap: 12px; }
.enroll-btn { display: block; background: var(--gold); color: var(--navy-dark); text-align: center; padding: 14px; border-radius: 3px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold); }
.enroll-btn:hover { background: transparent; color: var(--gold); }
.whatsapp-btn, .wa-inquiry-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: var(--white); text-align: center; padding: 12px; border-radius: 3px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; }
.whatsapp-btn:hover, .wa-inquiry-btn:hover { background: #1DA851; }
.whatsapp-btn i, .wa-inquiry-btn i { font-size: 1rem; }
.related-title { font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(200,164,77,0.25); }
.related-link { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(11,42,74,0.07); font-family: 'Jost', sans-serif; font-size: 0.84rem; font-weight: 500; color: var(--navy); transition: all 0.2s; }
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--gold); padding-left: 4px; }
.related-link i { font-size: 0.7rem; color: var(--gold); }


/* ── NEWS / BLOG PAGE ─────────────────────────────────────── */
.filter-bar { background: var(--offwhite); border-bottom: 1px solid rgba(11,42,74,0.08); position: sticky; top: 80px; z-index: 50; }
.filter-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.filter-tabs { display: flex; }
.ftab { background: none; border: none; border-bottom: 3px solid transparent; padding: 16px 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9CA3AF; cursor: pointer; font-family: 'Jost', sans-serif; transition: all 0.2s; }
.ftab:hover { color: var(--navy); }
.ftab.active { color: var(--navy); border-bottom-color: var(--gold); }
.filter-search-box { display: flex; padding: 8px 0; }
.filter-search-box input { padding: 9px 14px; border: 1px solid rgba(11,42,74,0.15); border-right: none; border-radius: 3px 0 0 3px; font-size: 0.82rem; font-family: 'Jost', sans-serif; color: var(--navy); outline: none; width: 190px; background: var(--white); }
.filter-search-box input:focus { border-color: var(--gold); }
.filter-search-box button { padding: 9px 14px; background: var(--navy); color: var(--gold); border: none; border-radius: 0 3px 3px 0; cursor: pointer; transition: background 0.2s; }
.filter-search-box button:hover { background: var(--gold); color: var(--navy-dark); }
.content-panel { display: none; }
.content-panel.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.news-body { padding: 64px 0 100px; background: var(--white); }
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.featured-post { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); border-radius: 6px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 8px 40px rgba(11,42,74,0.15); transition: transform 0.3s, box-shadow 0.3s; }
.featured-post:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(11,42,74,0.2); }
.fp-img { min-height: 340px; background: linear-gradient(135deg, #0B2A4A 0%, #123D6A 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.fp-img i { font-size: 5rem; color: rgba(200,164,77,0.2); }
.fp-badge { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--navy-dark); border-radius: 4px; width: 54px; height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fp-badge .fpd { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; line-height: 1; }
.fp-badge .fpm { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.fp-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.fp-cat { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; font-family: 'Jost', sans-serif; }
.fp-body h2 { font-size: 1.45rem; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.fp-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.fp-meta span { font-size: 0.7rem; color: rgba(255,255,255,0.4); font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 5px; }
.fp-meta span i { color: var(--gold); font-size: 0.62rem; }
.fp-body p { font-size: 0.98rem; color: rgba(255,255,255,0.62); margin-bottom: 22px; line-height: 1.7; }
.fp-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: gap 0.2s; }
.fp-link:hover { gap: 10px; }

/* News cards grid (2-col inside layout) */
.nc { background: var(--white); border: 1px solid rgba(11,42,74,0.08); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 12px rgba(11,42,74,0.05); transition: all 0.3s; }
.nc:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(11,42,74,0.12); }
.nc-img { height: 190px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.nc-img i { font-size: 2.8rem; color: rgba(200,164,77,0.28); }
.nc-date-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy-dark); border-radius: 3px; width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.nc-date-badge .ncd { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; line-height: 1; }
.nc-date-badge .ncm { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.nc-cat-tag { position: absolute; bottom: 10px; right: 10px; background: rgba(7,28,50,0.82); color: var(--gold); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; font-family: 'Jost', sans-serif; }
.nc-body { padding: 20px 20px 22px; }
.nc-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; transition: color 0.2s; cursor: pointer; }
.nc:hover .nc-body h3 { color: var(--gold); }
.nc-body p { font-size: 0.92rem; margin-bottom: 14px; line-height: 1.62; }
.nc-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid rgba(11,42,74,0.07); }
.nc-meta { display: flex; gap: 10px; }
.nc-meta span { font-size: 0.68rem; color: #9CA3AF; font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 4px; }
.nc-meta span i { color: var(--gold); font-size: 0.6rem; }
.nc-read { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
.nc-read:hover { color: var(--gold); gap: 8px; }

/* Events list */
.events-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.ev-item { display: flex; background: var(--white); border: 1px solid rgba(11,42,74,0.08); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(11,42,74,0.04); transition: all 0.3s; }
.ev-item:hover { box-shadow: 0 6px 28px rgba(11,42,74,0.12); transform: translateX(4px); }
.ev-date-col { width: 76px; flex-shrink: 0; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ev-date-col .evd { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ev-date-col .evm { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.ev-date-col .evy { font-size: 0.58rem; color: rgba(255,255,255,0.25); font-family: 'Jost', sans-serif; }
.ev-body { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }
.ev-body .ev-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; font-family: 'Jost', sans-serif; }
.ev-body h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 8px; transition: color 0.2s; }
.ev-item:hover .ev-body h4 { color: var(--gold); }
.ev-body-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.ev-body-meta span { font-size: 0.7rem; color: #9CA3AF; font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 4px; }
.ev-body-meta span i { color: var(--gold); font-size: 0.62rem; }
.ev-arrow { width: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ev-arrow i { color: rgba(11,42,74,0.18); font-size: 0.85rem; transition: all 0.2s; }
.ev-item:hover .ev-arrow i { color: var(--gold); transform: translateX(3px); }

/* Announcements */
.ann-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.ann-item { display: flex; gap: 18px; padding: 20px; background: var(--offwhite); border-radius: 4px; border-left: 4px solid var(--gold); transition: all 0.25s; }
.ann-item:hover { background: var(--gold-pale); transform: translateX(4px); }
.ann-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ann-icon i { color: var(--gold); font-size: 1rem; }
.ann-body { flex: 1; }
.ann-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; font-family: 'Jost', sans-serif; }
.ann-body h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 6px; }
.ann-body p { font-size: 0.92rem; margin: 0 0 10px; line-height: 1.6; }
.ann-link { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; transition: all 0.2s; }
.ann-link:hover { color: var(--gold); gap: 8px; }
.ann-date { font-size: 0.68rem; color: #9CA3AF; font-family: 'Jost', sans-serif; margin-top: 6px; display: flex; align-items: center; gap: 4px; }
.ann-date i { color: var(--gold); font-size: 0.6rem; }

/* Ministry updates */
.ministry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 40px; }
.min-card { background: var(--navy); border-radius: 6px; padding: 26px; position: relative; overflow: hidden; transition: transform 0.3s; }
.min-card:hover { transform: translateY(-4px); }
.min-card::after { content: '✝'; position: absolute; right: -20px; bottom: -20px; font-size: 8rem; color: rgba(255,255,255,0.03); font-family: serif; pointer-events: none; }
.min-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-family: 'Jost', sans-serif; }
.min-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.min-card p { font-size: 0.92rem; color: rgba(255,255,255,0.58); margin-bottom: 18px; line-height: 1.65; }
.min-footer { display: flex; justify-content: space-between; align-items: center; }
.min-date { font-size: 0.66rem; color: rgba(255,255,255,0.28); font-family: 'Jost', sans-serif; }
.min-read { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.min-read:hover { gap: 8px; }

/* News sidebar widgets */
.sw { background: var(--white); border: 1px solid rgba(11,42,74,0.08); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 12px rgba(11,42,74,0.05); }
.sw-head { background: var(--navy); padding: 14px 18px; }
.sw-title { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.sw-body { padding: 18px; }
.cat-list { display: flex; flex-direction: column; gap: 6px; }
.cat-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 11px; border-radius: 3px; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.cat-item:hover, .cat-item.act { background: var(--gold-pale); border-color: rgba(200,164,77,0.3); }
.cat-left { display: flex; align-items: center; gap: 9px; }
.cat-left i { color: var(--gold); font-size: 0.78rem; width: 14px; }
.cat-left span { font-size: 0.83rem; font-weight: 500; color: var(--navy); font-family: 'Jost', sans-serif; }
.cat-num { font-size: 0.62rem; background: var(--navy); color: var(--white); padding: 2px 7px; border-radius: 10px; font-weight: 700; }
.cat-item.act .cat-num { background: var(--gold); color: var(--navy-dark); }
.recent-list { display: flex; flex-direction: column; gap: 14px; }
.recent-item { display: flex; gap: 12px; align-items: flex-start; }
.recent-thumb { width: 54px; height: 46px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 3px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.recent-thumb i { color: rgba(200,164,77,0.45); font-size: 1rem; }
.recent-info h5 { font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 3px; transition: color 0.2s; cursor: pointer; }
.recent-info h5:hover { color: var(--gold); }
.recent-info span { font-size: 0.66rem; color: #9CA3AF; font-family: 'Jost', sans-serif; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.soc-btn { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border-radius: 3px; transition: opacity 0.2s, transform 0.2s; }
.soc-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.soc-btn.fb { background: #1877F2; }
.soc-btn.yt { background: #FF0000; }
.soc-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.soc-btn.wa { background: #25D366; }
.soc-btn i { color: var(--white); font-size: 0.95rem; }
.soc-btn span { font-size: 0.72rem; font-weight: 700; color: var(--white); font-family: 'Jost', sans-serif; }


/* ── NEWSLETTER / SOCIAL ──────────────────────────────────── */
.nl-section { padding: 72px 0; background: var(--gold-pale); }
.nl-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.nl-text p { margin-top: 6px; }
.nl-form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-row-inp { flex: 1; min-width: 180px; padding: 12px 15px; border: 1px solid rgba(11,42,74,0.15); border-radius: 3px; font-size: 0.88rem; font-family: 'Jost', sans-serif; color: var(--navy); background: var(--white); outline: none; }
.nl-row-inp:focus { border-color: var(--gold); }
.nl-row-btn { padding: 12px 26px; background: var(--navy); color: var(--white); border: 2px solid var(--navy); border-radius: 3px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-family: 'Jost', sans-serif; white-space: nowrap; }
.nl-row-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.nl-note { font-size: 0.72rem; color: #9CA3AF; margin-top: 8px; font-family: 'Jost', sans-serif; }
.nl-widget { background: var(--navy); border-radius: 6px; padding: 24px; text-align: center; }
.nl-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.nl-widget h4 { font-size: 1rem; color: var(--white); margin-bottom: 7px; }
.nl-widget p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; line-height: 1.6; }
.nl-inputs { display: flex; flex-direction: column; gap: 9px; }
.nl-inp { padding: 9px 13px; border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; background: rgba(255,255,255,0.07); color: var(--white); font-size: 0.83rem; font-family: 'Jost', sans-serif; outline: none; }
.nl-inp::placeholder { color: rgba(255,255,255,0.28); }
.nl-inp:focus { border-color: var(--gold); }
.nl-btn { background: var(--gold); color: var(--navy-dark); padding: 10px 14px; border: none; border-radius: 3px; font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-family: 'Jost', sans-serif; }
.nl-btn:hover { background: var(--gold-light); }


/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.testimonials-section::before { content: '✝'; position: absolute; left: -60px; top: 50%; transform: translateY(-50%); font-size: 20rem; color: rgba(255,255,255,0.02); font-family: serif; }
.test-header { text-align: center; margin-bottom: 52px; position: relative; }
.test-header .section-tag { color: var(--gold-light); justify-content: center; }
.test-header .section-tag::before { display: none; }
.test-header .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.test-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,164,77,0.15); border-radius: 6px; padding: 32px 28px; transition: all 0.3s; }
.test-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,164,77,0.35); }
.test-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.test-stars i { color: var(--gold); font-size: 0.8rem; }
.test-quote { font-family: 'Crimson Text', serif; font-size: 1.08rem; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.test-quote::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.test-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.test-avatar { width: 46px; height: 46px; background: rgba(200,164,77,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.test-avatar i { color: var(--gold); font-size: 1.1rem; }
.test-author-info h5 { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.test-author-info p { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin: 0; font-family: 'Jost', sans-serif; }


/* ── CLOSING / CTA SECTIONS ───────────────────────────────── */
.closing-section {
  padding: 120px 0; background: var(--navy); text-align: center; position: relative; overflow: hidden;
}
.closing-section::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 60px; background: var(--gold); opacity: 0.5; }
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; }
.closing-cross { font-size: 2.5rem; color: var(--gold); margin-bottom: 24px; display: block; }
.closing-section .section-title { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.closing-section p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 16px auto 0; font-size: 1.2rem; }
.closing-section .quote,
.quote-block {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--gold-light);
  margin: 24px auto 0; padding: 20px 32px; border-left: 3px solid var(--gold);
  background: rgba(200,164,77,0.08); border-radius: 0 4px 4px 0; text-align: left;
}
.closing-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; background: var(--gold); color: var(--navy-dark); padding: 16px 44px; border-radius: 3px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.3s; border: 2px solid var(--gold); }
.closing-btn:hover { background: transparent; color: var(--gold); }
.cta-section, .app-cta, .cta-sec { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section { background: var(--gold-pale); }
.cta-sec { background: var(--navy); }
.app-cta { background: var(--gold-pale); }
.cta-section::before,
.app-cta::before,
.cta-sec::before { content: '✝'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 22rem; color: rgba(200,164,77,0.08); font-family: serif; pointer-events: none; }
.cta-sec::before { color: rgba(255,255,255,0.02); }
.cta-inner, .app-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-cross, .app-cta-cross { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; display: block; }
.cta-sec .section-tag { color: var(--gold-light); justify-content: center; }
.cta-sec .section-tag::before { display: none; }
.cta-sec .section-title { color: var(--white); }
.cta-sec p { color: rgba(255,255,255,0.62); max-width: 540px; margin: 0 auto 12px; font-size: 1.1rem; }
.cta-btns, .app-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }


/* ── PARTNER NETWORK ──────────────────────────────────────── */
.network-section { padding: 90px 0; background: var(--offwhite); }
.network-inner { text-align: center; }
.network-inner > p { max-width: 580px; margin: 0 auto 52px; font-size: 1.1rem; }
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
.net-card { background: var(--white); border: 1px solid rgba(11,42,74,0.08); border-radius: 6px; padding: 32px 24px; text-align: center; transition: all 0.3s; box-shadow: 0 2px 12px rgba(11,42,74,0.05); }
.net-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(11,42,74,0.12); border-color: rgba(200,164,77,0.3); }
.net-icon { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.net-icon i { color: var(--gold); font-size: 1.4rem; }
.net-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.net-card p { font-size: 0.92rem; margin: 0; line-height: 1.6; }


/* ── INTRO / OVERVIEW STRIPS ──────────────────────────────── */
.intro-section { padding: 80px 0; background: var(--white); text-align: center; }
.intro-inner, .intro-text { max-width: 820px; margin: 0 auto; }
.intro-inner p, .intro-text p { margin-bottom: 18px; font-size: 1.15rem; }
.intro-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.pillar { background: var(--offwhite); border-radius: 6px; padding: 28px 22px; text-align: center; border-top: 3px solid var(--gold); transition: all 0.3s; }
.pillar:hover { background: var(--gold-pale); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(11,42,74,0.1); }
.pillar-icon { width: 56px; height: 56px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pillar-icon i { color: var(--gold); font-size: 1.2rem; }
.pillar h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.pillar p { font-size: 0.95rem; margin: 0; line-height: 1.6; }
.overview-strip { padding: 72px 0; background: var(--offwhite); }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.overview-card { background: var(--white); border-radius: 4px; padding: 32px 24px; border-left: 4px solid var(--gold); box-shadow: 0 2px 16px rgba(11,42,74,0.05); transition: transform 0.3s; }
.overview-card:hover { transform: translateY(-4px); }
.overview-card i { font-size: 1.6rem; color: var(--gold); margin-bottom: 16px; display: block; }
.overview-card h4 { font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.overview-card p { font-size: 0.95rem; margin: 0; }


/* ── RELATED PROGRAMS ─────────────────────────────────────── */
.related-programs { margin-top: 56px; }
.related-programs > h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid rgba(11,42,74,0.08); }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.related-card { background: var(--offwhite); border-radius: 4px; padding: 24px; border-bottom: 3px solid transparent; transition: all 0.3s; }
.related-card:hover { background: var(--white); border-bottom-color: var(--gold); box-shadow: 0 4px 20px rgba(11,42,74,0.1); }
.related-card-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.related-card-icon i { color: var(--gold); font-size: 1rem; }
.related-card-level { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-family: 'Jost', sans-serif; }
.related-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.related-card p { font-size: 0.92rem; margin: 0 0 14px; line-height: 1.5; }
.related-card .related-link { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.related-card .related-link:hover { color: var(--gold); gap: 10px; }


/* ── ACADEMIC AFFILIATION (programs page) ─────────────────── */
.academic-section { padding: 90px 0; background: var(--offwhite); }
.academic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.academic-text p { margin-bottom: 18px; }
.affil-badge { display: flex; align-items: center; gap: 20px; background: var(--white); border: 1px solid rgba(200,164,77,0.25); border-radius: 6px; padding: 24px 28px; margin-top: 28px; box-shadow: 0 2px 16px rgba(11,42,74,0.07); }
.affil-badge-icon { width: 64px; height: 64px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.affil-badge-icon i { color: var(--gold); font-size: 1.8rem; }
.affil-badge-text h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.affil-badge-text p { font-size: 0.9rem; margin: 0; color: #6B7280; line-height: 1.5; }
.affil-badge-text span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 6px; font-family: 'Jost', sans-serif; }
.academic-visual { background: var(--navy); border-radius: 8px; padding: 48px 36px; text-align: center; position: relative; overflow: hidden; }
.academic-visual::before { content: '✝'; position: absolute; right: -30px; bottom: -30px; font-size: 14rem; color: rgba(255,255,255,0.03); font-family: serif; }
.av-cross { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.av-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.av-sub { font-family: 'Crimson Text', serif; font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.av-divider { width: 50px; height: 2px; background: var(--gold); margin: 0 auto 20px; }
.av-partner { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); font-family: 'Jost', sans-serif; }
.av-partner-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-top: 4px; }


/* ── SIDEBAR PROGRAM NAV ──────────────────────────────────── */
.sidebar-widget { padding: 24px 28px; }
.sidebar-widget-title { font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); padding-bottom: 12px; margin-bottom: 16px; border-bottom: 2px solid var(--gold); }
.prog-nav-list { display: flex; flex-direction: column; gap: 4px; }
.prog-nav-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: 3px; transition: all 0.2s; border: 1px solid transparent; }
.prog-nav-item:hover { background: var(--gold-pale); border-color: rgba(200,164,77,0.3); }
.prog-nav-item.active { background: var(--navy); border-color: var(--navy); }
.prog-nav-left { display: flex; align-items: center; gap: 10px; }
.prog-nav-left i { color: var(--gold); font-size: 0.9rem; width: 16px; text-align: center; }
.prog-nav-item.active .prog-nav-left i { color: var(--gold-light); }
.prog-nav-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); font-family: 'Jost', sans-serif; }
.prog-nav-item.active .prog-nav-name { color: var(--white); }
.prog-nav-badge { font-size: 0.6rem; background: var(--gold-pale); color: var(--gold); padding: 2px 7px; border-radius: 10px; font-weight: 700; letter-spacing: 0.05em; }
.prog-nav-item.active .prog-nav-badge { background: rgba(200,164,77,0.2); }
.contact-quick { display: flex; flex-direction: column; gap: 12px; }
.cq-item { display: flex; align-items: flex-start; gap: 12px; }
.cq-icon { width: 32px; height: 32px; background: var(--gold-pale); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cq-icon i { color: var(--gold); font-size: 0.8rem; }
.cq-text { font-size: 0.82rem; color: #6B7280; font-family: 'Jost', sans-serif; line-height: 1.5; }
.cq-text strong { color: var(--navy); display: block; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }
.sidebar-share { padding: 16px 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 12px; }
.share-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-family: 'Jost', sans-serif; }
.share-icons { display: flex; gap: 8px; }
.share-icon { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.75rem; transition: all 0.2s; }
.share-icon:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }


/* ── INQUIRY / WHY STUDY ──────────────────────────────────── */
.why-section { padding: 80px 0; background: var(--offwhite); }
.why-header { text-align: center; margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--white); border-radius: 4px; transition: all 0.25s; }
.why-item:hover { box-shadow: 0 4px 20px rgba(11,42,74,0.1); transform: translateY(-2px); }
.why-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon i { color: var(--gold); font-size: 1rem; }
.why-text h5 { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-text p { font-size: 0.95rem; margin: 0; line-height: 1.55; }
.inquiry-section { padding: 80px 0; background: var(--white); }
.inquiry-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.inquiry-info p { margin-bottom: 16px; }
.inquiry-contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.ici { display: flex; gap: 14px; align-items: flex-start; }
.ici-icon { width: 42px; height: 42px; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ici-icon i { color: var(--gold); }
.ici-text strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 2px; }
.ici-text span { font-size: 0.88rem; color: #6B7280; }
.inquiry-form-wrap { background: var(--offwhite); border-radius: 6px; padding: 36px; }
.form-title { font-size: 1.2rem; color: var(--navy); margin-bottom: 24px; }
.form-btn { display: flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); padding: 13px 28px; border-radius: 3px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; font-family: 'Jost', sans-serif; }
.form-btn:hover { background: var(--gold); color: var(--navy-dark); }
.form-card.offwhite { background: var(--offwhite); border-radius: 8px; padding: 40px; }


/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--navy-dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon { width: 44px; height: 44px; background: rgba(200,164,77,0.15); border: 1px solid rgba(200,164,77,0.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon span { color: var(--gold); font-size: 1.4rem; }
.footer-logo-text .name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-logo-text .sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.footer-desc { font-family: 'Crimson Text', serif; font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-contacts, .f-contacts { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contacts li, .f-contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contacts li i, .f-contacts li i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; }
.footer-contacts a, .f-contacts a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contacts a:hover, .f-contacts a:hover { color: var(--gold); }
.footer-heading, .f-heading { font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,164,77,0.2); }
.footer-links, .f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .f-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; color: var(--gold); opacity: 0; transition: opacity 0.2s; font-size: 0.75rem; }
.footer-links a:hover, .f-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-copyright a { color: var(--gold); }
.footer-social, .footer-socials { display: flex; gap: 10px; }
.social-icon, .fsoc, .soc-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: all 0.2s;
}
.social-icon:hover, .fsoc:hover, .soc-icon:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.load-more-wrap { text-align: center; margin-top: 8px; }


/* ── SCROLL-TO-TOP ────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--navy); color: var(--gold); border: none; border-radius: 4px;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 16px rgba(11,42,74,0.3); transition: all 0.2s; z-index: 500;
}
#scrollTop.show { display: flex; }
#scrollTop:hover { background: var(--gold); color: var(--navy-dark); }


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .about-grid, .about-inst-grid,
  .affiliation-grid, .donation-grid,
  .benefits-layout, .academic-grid,
  .elig-layout, .eligibility-grid,
  .mv-grid { grid-template-columns: 1fr; gap: 48px; }

  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .network-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .intro-pillars { grid-template-columns: 1fr; }

  .course-grid, .prog-layout { grid-template-columns: 1fr; }
  .sidebar, .prog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }

  .news-layout { grid-template-columns: 1fr; }
  .sidebar.news-sidebar { display: grid; grid-template-columns: 1fr 1fr; }

  .contact-grid, .faq-grid,
  .form-layout, .inquiry-layout { grid-template-columns: 1fr; gap: 48px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .nl-banner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .topbar-links { display: none; }
  .hamburger { display: flex; }
  nav.navbar { height: 68px; }

  .about-features { grid-template-columns: 1fr; }
  .programs-grid, .news-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .benefits-list { grid-template-columns: 1fr; }
  .benefits-grid, .network-grid { grid-template-columns: 1fr; }
  .inst-stats { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; }

  /* Timeline mobile */
  .timeline::before { left: 28px; }
  .tl-item { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .tl-left, .tl-item:nth-child(even) .tl-left { display: none; }
  .tl-center { order: 1 !important; grid-row: 1 / 3; }
  .tl-right, .tl-item:nth-child(even) .tl-right { order: 2 !important; padding-left: 20px; padding-right: 0; text-align: left; grid-column: 2; }
  .tl-num { width: 48px; height: 48px; font-size: 1rem; }

  .form-row, .form-grid { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr; }
  .upload-grid { grid-template-columns: 1fr 1fr; }
  .fg.full { grid-column: 1; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-body { padding: 24px; }
  .form-card-header { padding: 20px 24px; }

  .featured-post { grid-template-columns: 1fr; }
  .fp-img { min-height: 200px; }
  .ministry-grid { grid-template-columns: 1fr; }
  .subjects-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sidebar, .prog-sidebar { grid-template-columns: 1fr; }
  .paper-body-inner { padding-left: 24px; }

  .filter-bar-inner { flex-direction: column; align-items: flex-start; }
  .filter-search-box { width: 100%; padding: 8px 16px; }
  .filter-search-box input { flex: 1; width: auto; }

  .page-banner { min-height: 300px; padding-bottom: 40px; }
  .page-banner h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
  .banner-line { width: 40px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .social-row { flex-wrap: wrap; }
  .faculty-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sem-tab { flex: none; width: 50%; }
  .tab-btn { padding: 12px 14px; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .page-banner .banner-sub { font-size: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .inst-stats { grid-template-columns: 1fr 1fr 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .filter-tabs { flex-wrap: wrap; }
  .ftab { padding: 12px 14px; font-size: 0.72rem; }
  .sem-tab { width: 100%; }
}

/* ================================================================
   ADD THIS BLOCK AT THE BOTTOM OF YOUR global.css
   Nested / fly-out sub-dropdown for Courses menu
   ================================================================ */

/* ── Parent item that contains a sub-dropdown ─────────────── */
.dropdown li.has-sub {
  position: relative;
}

/* ── The fly-out sub-dropdown panel ───────────────────────── */
.sub-dropdown {
  position: absolute;
  top: -3px;           /* align flush with parent dropdown border */
  left: 100%;          /* fly out to the right */
  background: var(--white);
  min-width: 230px;
  list-style: none;
  box-shadow: 0 8px 30px rgba(11,42,74,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 0 6px 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

/* Show on hover of the parent <li> */
.dropdown li.has-sub:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ── Sub-dropdown link styles ──────────────────────────────── */
.sub-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(11,42,74,0.06);
  transition: all 0.2s;
  /* reset any inherited letter-spacing from .dropdown li a */
  letter-spacing: 0.02em;
}
.sub-dropdown li:last-child a {
  border-bottom: none;
}
.sub-dropdown li a:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 24px;
}

/* ── Right-arrow icon inside parent row ────────────────────── */
/* The <i class="fas fa-chevron-right sub-arr"> sits inside the
   parent <a> tag and needs to be pushed all the way to the right */
.dropdown li.has-sub > a {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* text left, arrow right */
  gap: 8px;
}
.sub-arr {
  font-size: 0.55rem;
  color: rgba(11,42,74,0.35);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
/* Highlight arrow + row on hover */
.dropdown li.has-sub:hover > a {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 24px;
}
.dropdown li.has-sub:hover > a .sub-arr {
  color: var(--gold);
  transform: translateX(3px);
}

/* ── Mobile: group-label dividers inside .mobile-sub ──────── */
.mobile-sub-group-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 20px 4px 36px;
  pointer-events: none;
  border-bottom: none !important;
  /* override any list-item border from .mobile-sub li */
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2px;
}
/* Remove the ::before arrow that .mobile-sub li a::before adds
   — group labels are <li> elements but contain no <a> */
.mobile-sub li.mobile-sub-group-label::before {
  display: none;
}

/* ── Optional: flip sub-dropdown to the LEFT when near screen edge ──
   Uncomment if the sub-menu gets clipped on smaller desktops:

@media (max-width: 1180px) {
  .sub-dropdown {
    left: auto;
    right: 100%;
    border-radius: 6px 0 6px 6px;
  }
}
*/
