/* public/css/main.css
   ─────────────────────────────────────────────────────────────────────────────
   Jewel Leadership Academy — Main Stylesheet
   Brand Guide: JLA Gold #D9B500 · Navy Deep #070B19
   Fonts: Playfair Display (display) · DM Sans (body)
   ─────────────────────────────────────────────────────────────────────────────
*/

/* ── 0. CSS Custom Properties (Brand Tokens) ──────────────────────────────── */
:root {
  --gold:        #d9b500;
  --gold-light:  #f0d04a;
  --gold-pale:   #fdf6d0;
  --gold-dark:   #a88c00;
  --navy:        #070b19;
  --navy-mid:    #0f1630;
  --navy-soft:   #1a2240;
  --navy-100:    rgba(7,11,25,.06);
  --white:       #ffffff;
  --off-white:   #fafaf7;
  --gray-light:  #f2f1ec;
  --gray-mid:    #9b9a94;
  --gray-text:   #4a4a46;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'Courier New', monospace;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(7,11,25,.08);
  --shadow-md:  0 4px 16px rgba(7,11,25,.10);
  --shadow-lg:  0 12px 40px rgba(7,11,25,.14);

  --transition: 0.22s ease;
  --max-w:      1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 2. Typography Scale ──────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 600; font-family: var(--font-body); }

p  { font-size: 16px; color: var(--gray-text); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

/* ── 3. Layout Utilities ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── 4. Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,181,0,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-pale); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── 5. Navigation ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,11,25,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217,181,0,.12);
  transition: background var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-logo img { width: 38px; height: 38px; }
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.navbar-logo-text span { display: block; font-size: 8px; font-family: var(--font-body); font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }

.navbar-cta { margin-left: 12px; }

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(217,181,0,.1);
  padding: 16px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { width: 100%; padding: 12px 16px; }

/* ── 6. Hero Sections ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(217,181,0,.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(217,181,0,.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; display: block; }

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .highlight { color: var(--gold); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.65); max-width: 560px; margin-bottom: 40px; font-weight: 300; line-height: 1.75; }
.hero-trust { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 24px; letter-spacing: 0.5px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Page hero (shorter variant for inner pages) */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content:''; position:absolute; top:-80px; right:-80px; width:400px; height:400px; border:1px solid rgba(217,181,0,.06); border-radius:50%; pointer-events:none; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .hero-eyebrow { color: var(--gold); }
.page-hero .hero-sub { color: rgba(255,255,255,.6); font-size: 17px; max-width: 620px; }

/* ── 7. Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-100);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-dark {
  background: var(--navy);
  border-color: rgba(217,181,0,.12);
  color: var(--white);
}
.card-gold { background: var(--gold-pale); border-color: rgba(168,140,0,.18); }

/* Programme cards */
.prog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-100);
  transition: all var(--transition);
}
.prog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.prog-card-top {
  height: 6px;
  background: var(--gold);
}
.prog-card-body { padding: 28px; }
.prog-card-icon { font-size: 28px; margin-bottom: 16px; }
.prog-card h3 { font-size: 18px; margin-bottom: 10px; }
.prog-card p  { font-size: 14px; margin-bottom: 20px; }

/* Hub cards */
.hub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--navy-100);
  text-align: center;
  transition: all var(--transition);
}
.hub-card:hover { background: var(--navy); color: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hub-card:hover p { color: rgba(255,255,255,.7); }
.hub-card:hover .hub-icon { background: rgba(217,181,0,.2); }
.hub-card:hover h3 { color: var(--gold); }
.hub-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  transition: background var(--transition);
}

/* Team cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-100);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100%;
  height: 200px;
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.team-bar { height: 3px; background: var(--gold); }
.team-info { padding: 20px; }
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gold-dark); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.team-bio  { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* Testimonial cards */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--navy-100);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.testi-quote { font-size: 15px; color: var(--gray-text); line-height: 1.75; font-style: italic; margin-bottom: 20px; padding-top: 20px; }
.testi-author-name  { font-weight: 700; font-size: 14px; }
.testi-author-title { font-size: 12px; color: var(--gold-dark); letter-spacing: 0.5px; }

/* Partner logo cards */
.partner-logo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  text-align: center;
  transition: all var(--transition);
}
.partner-logo-card:hover { border-color: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }

/* ── 8. Impact Stats ──────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(217,181,0,.15);
}
.stat-block {
  padding: 40px 24px;
  text-align: center;
  background: rgba(255,255,255,.04);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: 0.5px; }

/* ── 9. Forms ─────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1.5px solid rgba(7,11,25,.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,181,0,.15);
}
.form-control::placeholder { color: var(--gray-mid); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b9a94' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Newsletter inline form */
.newsletter-form { display: flex; gap: 0; max-width: 420px; }
.newsletter-form .form-control { border-radius: var(--radius-sm) 0 0 var(--radius-sm); border-right: none; }
.newsletter-form .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ── 10. Section Headers ──────────────────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 600px; font-size: 17px; }
.section-header.centered p { margin: 0 auto; }
.section-header .eyebrow { margin-bottom: 10px; }

/* Gold accent line under heading */
.heading-accent { position: relative; display: inline-block; }
.heading-accent::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 48px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ── 11. Divider & Visual Elements ───────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--navy-100); margin: 0; }
.gold-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0; }
.gold-line.centered { margin: 16px auto; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-gold  { background: var(--gold-pale); color: var(--gold-dark); }
.badge-navy  { background: var(--navy); color: var(--gold); }

/* CAC badge */
.cac-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(168,140,0,.25);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ── 12. Membership Tiers ─────────────────────────────────────────────────── */
.membership-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--navy-100);
  overflow: hidden;
  transition: all var(--transition);
}
.tier-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg); }
.tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.tier-top {
  background: var(--navy);
  padding: 28px;
  text-align: center;
  position: relative;
}
.tier-top.gold { background: var(--gold); }
.tier-badge-featured {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.tier-icon { font-size: 32px; margin-bottom: 12px; }
.tier-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.tier-top.gold .tier-name { color: var(--navy); }
.tier-sub { font-size: 12px; color: rgba(255,255,255,.55); }
.tier-top.gold .tier-sub { color: rgba(7,11,25,.55); }

.tier-body { padding: 28px; }
.tier-body h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }
.tier-body ul li { font-size: 14px; color: var(--gray-text); padding: 7px 0; border-bottom: 1px solid var(--navy-100); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.tier-body ul li::before { content:'✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.tier-body ul li:last-child { border-bottom: none; }
.tier-cta { margin-top: 20px; }

/* ── 13. Partnership Tiers ────────────────────────────────────────────────── */
.partner-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ptier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-100);
  padding: 28px;
}
.ptier-icon { font-size: 28px; margin-bottom: 14px; }
.ptier-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.ptier-fit  { font-size: 11px; color: var(--gold-dark); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }

/* ── 14. Blog / News ──────────────────────────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-100);
  margin-bottom: 48px;
}
.blog-featured-image {
  background: var(--navy-soft);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { background: var(--white); padding: 40px; display: flex; flex-direction: column; justify-content: center; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-100);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-image { height: 180px; background: var(--navy-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.3; }
.blog-card p  { font-size: 13px; margin-bottom: 16px; }
.blog-meta { font-size: 11px; color: var(--gray-mid); display: flex; align-items: center; gap: 8px; }

/* Article page */
.article-body { max-width: 740px; margin: 0 auto; }
.article-body h2 { font-size: 26px; margin: 40px 0 16px; }
.article-body h3 { font-size: 20px; margin: 32px 0 12px; }
.article-body p  { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; font-size: 16px; color: var(--gray-text); }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; background: var(--gold-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 28px 0; font-style: italic; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  border: 1.5px solid var(--navy-100);
  color: var(--gray-text);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ── 15. Impact / Timeline ────────────────────────────────────────────────── */
.impact-hero-stats {
  background: var(--navy);
  padding: 60px 0;
}

.timeline { position: relative; padding-left: 32px; }
.timeline::before { content:''; position:absolute; left:8px; top:0; bottom:0; width:2px; background:var(--gold-pale); }
.tl-item { position: relative; margin-bottom: 40px; }
.tl-dot { position: absolute; left: -32px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid var(--off-white); top: 4px; }
.tl-body { background: var(--white); border-radius: var(--radius-md); padding: 20px 24px; border: 1px solid var(--navy-100); }

/* ── 16. Contact ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-icon-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.contact-icon-value { font-size: 15px; font-weight: 500; color: var(--navy); }

/* Social links */
.social-links { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  color: var(--gray-text);
}
.social-link:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ── 17. Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 80px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); margin: 16px 0 24px; max-width: 280px; }
.footer-cac { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,.35); margin-top: 8px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── 18. Alert / Notification ─────────────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #eef8f2; color: #1d6e3b; border: 1px solid #b8e6cc; }
.alert-error   { background: #fdf0f0; color: #b03030; border: 1px solid #f5c1c1; }
.alert-info    { background: #eef4ff; color: #2b5db0; border: 1px solid #b8cdf5; }

/* ── 19. Values Grid ──────────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--navy-100); border-top: 3px solid var(--gold); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* Org Structure */
.org-tiers { display: grid; gap: 8px; }
.org-tier {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.org-tier-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); opacity: .5; min-width: 36px; }
.org-tier-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.org-tier-desc { font-size: 13px; color: rgba(255,255,255,.55); }

/* ── 20. Pull Quote ───────────────────────────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* ── 21. Search ───────────────────────────────────────────────────────────── */
.search-form { display: flex; gap: 0; max-width: 480px; }
.search-form .form-control { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.search-form .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ── 22. Scroll reveal animation ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Counter animation class */
.count-up { display: inline-block; }

/* ── 23. Sticky Apply button (mobile) ────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  box-shadow: var(--shadow-lg);
}

/* ── 24. Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-featured { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .membership-tiers, .partner-tiers { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }

  .navbar-nav, .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
  .hero { padding: 120px 0 72px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .form-control { border-radius: var(--radius-sm); border-right: 1.5px solid rgba(7,11,25,.15); }
  .newsletter-form .btn { border-radius: var(--radius-sm); }
  .sticky-cta { display: flex; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}

/* ── 25. Print ────────────────────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .sticky-cta { display: none !important; }
  body { padding-top: 0; }
}

