/* ================================================================
   EOAE Worldwide — Main Stylesheet
   Brand: Blue #00609e | Orange/Gold #ffa100 | Dark #1a1a2e
   Fonts: Playfair Display (headings) | Nunito (body) | Oswald (labels)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@300;400;600;700&family=Oswald:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --blue:       #00609e;
  --blue-dark:  #004d7f;
  --blue-light: #e8f4fd;
  --orange:     #ffa100;
  --orange-dark:#e08e00;
  --dark:       #1a1a2e;
  --gray-900:   #212529;
  --gray-700:   #495057;
  --gray-500:   #adb5bd;
  --gray-200:   #e9ecef;
  --gray-100:   #f8f9fa;
  --white:      #ffffff;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);
  --transition: .2s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Nunito', system-ui, sans-serif;
  --font-label: 'Oswald', 'Arial Narrow', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label-font { font-family: var(--font-label); letter-spacing: .05em; }
.section-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm   { max-width: 860px;  margin: 0 auto; padding: 0 1.25rem; }
.container-xs   { max-width: 560px;  margin: 0 auto; padding: 0 1.25rem; }
.section        { padding: 5rem 0; }
.section-sm     { padding: 3rem 0; }
.section-lg     { padding: 7rem 0; }
.grid           { display: grid; gap: 1.5rem; }
.grid-2         { grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr)); }
.grid-3         { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.grid-4         { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.flex           { display: flex; }
.flex-center    { display: flex; align-items: center; justify-content: center; }
.flex-between   { display: flex; align-items: center; justify-content: space-between; }
.flex-col       { flex-direction: column; }
.gap-1          { gap: .5rem; }
.gap-2          { gap: 1rem; }
.gap-3          { gap: 1.5rem; }
.text-center    { text-align: center; }
.text-right     { text-align: right; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; padding: 0 1.25rem;
  max-width: 1200px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { color: var(--white); }
.nav-logo-text strong {
  display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--orange);
}
.nav-logo-text span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-label);
  font-size: .88rem;
  letter-spacing: .04em;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); background: rgba(255,255,255,.12); }

/* ── NAV DROPDOWNS ──────────────────────────────────────────── */
.nav-menu li { position: relative; list-style: none; }
.nav-menu .has-dropdown > a::after {
  content: ' \25BE';
  font-size: .7rem;
  opacity: .7;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
  z-index: 200;
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  pointer-events: none;
}
.nav-dropdown a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .85rem;
  border-radius: 0;
  white-space: nowrap;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown a:hover { background: rgba(255,255,255,.08); color: var(--white); padding-left: 1.6rem; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem; padding: .25rem;
}

/* ── PAGE SPINNER ────────────────────────────────────────────── */
#eoaeSpinner {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity .4s ease, visibility .4s ease;
}
#eoaeSpinner.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.spinner-ring {
  width: 56px; height: 56px;
  border: 4px solid rgba(0,96,158,.15);
  border-top-color: var(--blue);
  border-right-color: var(--orange);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-logo {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); letter-spacing: .1em;
}
.spinner-logo span { color: var(--orange); }

/* ── TOP BAR ─────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  padding: .45rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar a { color: rgba(255,255,255,.55); }
.top-bar a:hover { color: var(--orange); }
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.top-bar-contact {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}
.top-bar-contact span {
  display: flex; align-items: center; gap: .4rem;
}
.top-bar-contact i { color: var(--orange); }
.top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar-social { display: flex; gap: .5rem; }
.top-bar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  transition: background var(--transition), color var(--transition);
}
.top-bar-social a:hover { background: var(--orange); color: var(--dark); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--orange); color: var(--dark);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; z-index: 500;
  box-shadow: 0 4px 16px rgba(255,161,0,.4);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); color: var(--white); }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 3.5rem 0;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; text-align: center;
}
.stats-strip-item { position: relative; }
.stats-strip-item + .stats-strip-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 50%; width: 1px;
  background: rgba(255,255,255,.12);
}
.stats-strip-num {
  font-family: var(--font-label);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--orange);
  display: block; line-height: 1;
}
.stats-strip-label {
  font-size: .8rem; color: rgba(255,255,255,.65);
  margin-top: .5rem; text-transform: uppercase;
  letter-spacing: .12em; font-family: var(--font-label);
}

/* ── SECTION BADGE (gradient) ────────────────────────────────── */
.section-badge-grad {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ffc317);
  color: var(--dark);
  font-family: var(--font-label); font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem 1.15rem; border-radius: 100px; margin-bottom: 1rem;
}

/* ── KING / OBA SECTION ──────────────────────────────────────── */
.king-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
  margin-bottom: 4rem;
}
.king-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffa100' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.king-image-wrap { position: relative; z-index: 1; }
.king-image-wrap img {
  border-radius: var(--radius-lg); width: 100%; object-fit: cover;
  border: 4px solid var(--orange);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.king-content { position: relative; z-index: 1; }
.king-subtitle {
  font-family: var(--font-label); font-size: .82rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .75rem;
}
.king-name { font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--white); margin-bottom: .4rem; }
.king-title {
  font-family: var(--font-label); font-size: 1rem;
  color: #ffc317; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.king-divider {
  width: 56px; height: 3px;
  background: var(--orange); border-radius: 3px; margin-bottom: 1.5rem;
}
.king-text { color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 2rem; }
@media (max-width: 900px) {
  .king-section { grid-template-columns: 1fr; padding: 2.5rem; gap: 2rem; }
}

/* ── COUNCIL CARD ────────────────────────────────────────────── */
.council-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.council-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.council-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.council-photo { height: 200px; overflow: hidden; }
.council-photo img { width: 100%; height: 100%; object-fit: cover; }
.council-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-dark), var(--dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.3);
}
.council-info { padding: 1.1rem 1rem; }
.council-name { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.council-title { font-size: .8rem; color: var(--blue); font-weight: 600; font-family: var(--font-label); letter-spacing: .04em; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 60%, #003a5c 100%);
  color: var(--white); padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.15rem; opacity: .85; max-width: 580px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,165,0,.15); border: 1px solid rgba(255,161,0,.3);
  color: var(--orange); padding: .35rem .9rem;
  border-radius: 100px; font-size: .8rem;
  font-family: var(--font-label); letter-spacing: .08em;
  margin-bottom: 1rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-label); font-size: .88rem; letter-spacing: .06em;
  font-weight: 500; padding: .7rem 1.6rem; border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary   { background: var(--blue);   color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.btn-orange    { background: var(--orange);  color: var(--dark);  border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--dark); }
.btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-ghost     { background: transparent; color: var(--gray-700); border-color: var(--gray-200); }
.btn-ghost:hover { background: var(--gray-100); border-color: var(--gray-500); }
.btn-danger    { background: #dc3545; color: var(--white); border-color: #dc3545; }
.btn-danger:hover { background: #c82333; border-color: #c82333; color: var(--white); }
.btn-success   { background: #28a745; color: var(--white); border-color: #28a745; }
.btn-sm  { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg  { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-loading::after {
  content: ''; width: 14px; height: 14px;
  border: 2px solid currentColor; border-top-color: transparent;
  border-radius: 50%; animation: spin .7s linear infinite; margin-left: .4rem;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-meta {
  font-size: .8rem; color: var(--gray-500);
  font-family: var(--font-label); letter-spacing: .04em;
  margin-bottom: .5rem; display: flex; gap: 1rem; flex-wrap: wrap;
}
.card-title { font-size: 1.2rem; margin-bottom: .5rem; }
.card-title a { color: var(--dark); }
.card-title a:hover { color: var(--blue); }
.card-excerpt { color: var(--gray-700); font-size: .92rem; }

.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blue);
  display: flex; flex-direction: column; gap: .5rem;
}
.stat-card .stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); font-family: var(--font-label); }
.stat-card .stat-value { font-size: 2rem; font-weight: 700; color: var(--dark); font-family: var(--font-head); }
.stat-card.orange { border-left-color: var(--orange); }
.stat-card.green  { border-left-color: #28a745; }
.stat-card.red    { border-left-color: #dc3545; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-700); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 2px; margin: .75rem auto 0;
}
.divider-left { margin-left: 0; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group    { margin-bottom: 1.25rem; }
.form-label    { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--gray-900); }
.form-control  {
  width: 100%; padding: .7rem 1rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; color: var(--gray-900);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,96,158,.12);
}
.form-control.is-invalid { border-color: #dc3545; }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220,53,69,.12); }
.form-control::placeholder { color: var(--gray-500); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error    { font-size: .82rem; color: #dc3545; margin-top: .3rem; }
.form-hint     { font-size: .82rem; color: var(--gray-500); margin-top: .3rem; }
.form-row      { display: grid; gap: 1rem; }
.form-row-2    { grid-template-columns: 1fr 1fr; }
.form-check    { display: flex; align-items: flex-start; gap: .6rem; }
.form-check input[type="checkbox"],
.form-check input[type="radio"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }

/* ── ALERTS / FLASH ─────────────────────────────────────────── */
.alert {
  padding: .95rem 1.25rem; border-radius: var(--radius);
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .93rem; margin-bottom: 1.25rem;
  border-left: 4px solid transparent;
}
.alert-success { background: #d4edda; border-color: #28a745; color: #155724; }
.alert-error   { background: #f8d7da; border-color: #dc3545; color: #721c24; }
.alert-info    { background: var(--blue-light); border-color: var(--blue); color: var(--blue-dark); }
.alert-warning { background: #fff3cd; border-color: var(--orange); color: #856404; }
.alert-icon    { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.alert-close   { margin-left: auto; background: none; border: none; cursor: pointer; opacity: .5; font-size: 1.1rem; }
.alert-close:hover { opacity: 1; }

/* ── BADGE / PILL ────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: .25rem .65rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  font-family: var(--font-label);
}
.badge-blue    { background: var(--blue-light);  color: var(--blue); }
.badge-orange  { background: #fff3cd;             color: #856404; }
.badge-green   { background: #d4edda;             color: #155724; }
.badge-red     { background: #f8d7da;             color: #721c24; }
.badge-gray    { background: var(--gray-200);     color: var(--gray-700); }

/* ── TABLES ──────────────────────────────────────────────────── */
.table-wrap  { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.table       { width: 100%; border-collapse: collapse; background: var(--white); }
.table th    { background: var(--dark); color: var(--white); font-family: var(--font-label); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .9rem 1rem; text-align: left; }
.table td    { padding: .9rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: middle; font-size: .93rem; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: var(--gray-100); }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a,
.pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem;
  border: 2px solid var(--gray-200);
  color: var(--gray-700); transition: all var(--transition);
}
.pagination a:hover  { border-color: var(--blue); color: var(--blue); }
.pagination .active  { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pagination .disabled{ opacity: .4; pointer-events: none; }

/* ── MEMBER CARD ─────────────────────────────────────────────── */
.member-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; margin: 0 auto .75rem;
  border: 3px solid var(--blue-light);
}
.member-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); font-family: var(--font-head); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem; letter-spacing: .05em;
}
.member-name  { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: .2rem; }
.member-reg   { font-size: .78rem; color: var(--gray-500); font-family: var(--font-label); letter-spacing: .1em; }
.member-role  { margin-top: .5rem; }

/* ── EXECUTIVE CARD ──────────────────────────────────────────── */
.exec-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.exec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.exec-card-photo {
  width: 100%; aspect-ratio: 3/3.5; object-fit: cover; object-position: top;
}
.exec-card-photo-placeholder {
  width: 100%; aspect-ratio: 3/3.5;
  background: linear-gradient(135deg, var(--blue-light), #dceeff);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2.5rem; color: var(--blue);
}
.exec-card-body  { padding: 1.25rem; }
.exec-card-name  { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.exec-card-pos   { font-family: var(--font-label); font-size: .8rem; color: var(--orange); letter-spacing: .06em; text-transform: uppercase; }

/* ── EXECUTIVE PROFILE CARD ──────────────────────────────────── */
.exec-intro { font-size: 1rem; color: var(--gray-600); line-height: 1.85; max-width: 640px; margin: 0 auto 3rem; border-left: 3px solid var(--blue); padding-left: 1.25rem; }
.exec-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.75rem; }
.exec-profile-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.exec-profile-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.exec-president { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.exec-photo-wrap { position: relative; background: var(--gray-100); display: flex; align-items: center; justify-content: center; height: 200px; overflow: hidden; }
.exec-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s ease; }
.exec-profile-card:hover .exec-photo { transform: scale(1.05); }
.exec-photo-placeholder { width: 90px; height: 90px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--white); font-family: var(--font-head); }
.exec-president-badge { position: absolute; bottom: .6rem; left: .6rem; background: var(--orange); color: var(--white); font-size: .72rem; font-family: var(--font-label); text-transform: uppercase; letter-spacing: .06em; padding: .25rem .65rem; border-radius: 20px; }
.exec-profile-body { padding: 1.25rem; }
.exec-profile-name { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: .25rem; }
.exec-profile-pos  { font-size: .8rem; font-family: var(--font-label); text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }
.exec-profile-term { font-size: .76rem; color: var(--gray-400); margin-top: .35rem; display: flex; align-items: center; gap: .35rem; }
.exec-profile-bio  { font-size: .85rem; color: var(--gray-600); line-height: 1.65; margin-top: .75rem; }
.exec-read-more    { margin-top: .55rem; font-size: .72rem; color: var(--gray-400); display: flex; align-items: center; gap: .35rem; }
.exec-empty        { text-align: center; padding: 5rem 1rem; }
.exec-empty i      { font-size: 3.5rem; color: var(--gray-300); margin-bottom: 1rem; display: block; }
.exec-empty h3     { color: var(--gray-700); margin-bottom: .5rem; }

/* ── EXECUTIVE BIO MODAL ─────────────────────────────────────── */
.emodal-overlay { position: fixed; inset: 0; background: rgba(10,15,28,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9900; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.emodal-overlay[hidden] { display: none !important; }
.emodal-box { background: #fff; border-radius: 18px; width: 100%; max-width: 720px; max-height: 88vh; overflow: hidden; display: flex; flex-direction: column; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.08); animation: eModalIn .22s cubic-bezier(.22,1,.36,1); }
@keyframes eModalIn { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.emodal-close { position: absolute; top: 12px; right: 12px; z-index: 20; width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer; background: rgba(0,0,0,.1); color: #374151; font-size: .95rem; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.emodal-close:hover { background: rgba(0,0,0,.2); color: #111; }
.emodal-inner { display: flex; flex: 1; min-height: 0; overflow: hidden; }
.emodal-photo-col { width: 240px; flex-shrink: 0; position: relative; overflow: hidden; background: linear-gradient(160deg, #0f172a, #1e293b); display: flex; align-items: stretch; }
.emodal-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.emodal-placeholder { width: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head, Georgia, serif); font-size: 4.5rem; font-weight: 800; color: rgba(255,161,0,.45); }
.emodal-photo-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue, #1d4ed8), var(--orange, #f59e0b)); }
.emodal-content { flex: 1; overflow-y: auto; padding: 2rem 1.75rem; min-width: 0; }
.emodal-pres-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .28rem .9rem; border-radius: 100px; background: var(--orange, #f59e0b); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.emodal-position { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue, #1d4ed8); margin-bottom: .45rem; }
.emodal-name { font-family: var(--font-head, Georgia, serif); font-size: clamp(1.15rem, 3vw, 1.5rem); color: var(--dark, #111827); margin: 0 0 .5rem; line-height: 1.3; }
.emodal-term { display: flex; align-items: center; gap: .55rem; font-size: .83rem; color: var(--gray-600, #4b5563); margin-bottom: .2rem; }
.emodal-term i { color: var(--blue, #1d4ed8); flex-shrink: 0; }
.emodal-divider { height: 1px; background: #f3f4f6; margin: 1rem 0; }
.emodal-section-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-400, #9ca3af); display: flex; align-items: center; gap: .4rem; margin-bottom: .65rem; }
.emodal-bio { font-size: .93rem; line-height: 1.9; color: var(--gray-700, #374151); white-space: pre-wrap; }
.emodal-no-bio { display: flex; gap: .65rem; align-items: flex-start; padding: .9rem 1rem; border-radius: 8px; background: #f9fafb; border: 1px solid #e5e7eb; font-size: .87rem; color: var(--gray-500, #6b7280); line-height: 1.6; }
.emodal-no-bio i { flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 600px) {
  .emodal-inner       { flex-direction: column; }
  .emodal-photo-col   { width: 100%; max-height: 220px; flex-shrink: 0; }
  .emodal-placeholder { min-height: 200px; }
  .emodal-content     { padding: 1.25rem 1.1rem 1.5rem; }
  .emodal-name        { font-size: 1.2rem; }
}

/* ── DONATE / CAUSE ──────────────────────────────────────────── */
.cause-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.cause-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.cause-card-body { padding: 1.5rem; }
.progress-bar-wrap { background: var(--gray-200); border-radius: 100px; height: 10px; overflow: hidden; margin: .75rem 0; }
.progress-bar { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--orange)); transition: width .4s ease; }
.progress-meta { display: flex; justify-content: space-between; font-size: .82rem; color: var(--gray-500); }
.progress-meta strong { color: var(--dark); }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); color: var(--white); font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: var(--white); font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 3.5rem 0 3rem; color: var(--white); position: relative;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
}
.page-header h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); }
.page-header .breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .85rem; opacity: .7; margin-top: .5rem;
}
.page-header .breadcrumb a { color: var(--white); }
.page-header .breadcrumb a:hover { color: var(--orange); }
.page-header .breadcrumb .sep { opacity: .4; }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: .5rem; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.6rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--blue); }

/* ── DONATION AMOUNT BUTTONS ─────────────────────────────────── */
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1rem; }
.amount-btn {
  padding: .8rem; border: 2px solid var(--gray-200); border-radius: var(--radius);
  background: var(--white); cursor: pointer; font-weight: 700; font-size: 1rem;
  color: var(--gray-700); transition: all var(--transition); font-family: var(--font-body);
}
.amount-btn:hover  { border-color: var(--blue); color: var(--blue); }
.amount-btn.active { border-color: var(--blue); background: var(--blue); color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 4rem 0 2rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo-text {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--white); letter-spacing: -.02em; line-height: 1; margin-bottom: .5rem;
}
.footer-logo-text span { color: var(--orange); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-top: .5rem; }
.footer-heading { font-family: var(--font-label); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: background var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--dark); }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact-item i { color: var(--orange); margin-top: .15rem; flex-shrink: 0; font-size: .9rem; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.site-footer .newsletter-form {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.site-footer .newsletter-form input {
  flex: 1; min-width: 0; padding: .55rem .85rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08);
  color: var(--white); font-size: .88rem;
}
.site-footer .newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.site-footer .newsletter-form button {
  padding: .55rem 1rem; background: var(--orange); border: none;
  border-radius: var(--radius); color: var(--dark); font-weight: 700;
  font-size: .85rem; cursor: pointer; white-space: nowrap;
  transition: background var(--transition);
}
.site-footer .newsletter-form button:hover { background: #ffb733; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .83rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }
.footer-motto { font-family: var(--font-head); font-style: italic; color: var(--orange); opacity: .8; }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.5);
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; left: 0; top: 0; bottom: 0; width: 280px;
  background: var(--dark); padding: 1.5rem; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s ease;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close { position: absolute; right: 1rem; top: 1rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav-links a { display: block; color: rgba(255,255,255,.85); padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-family: var(--font-label); font-size: .95rem; letter-spacing: .04em; }
.mobile-nav-links a:hover { color: var(--orange); }
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: .25rem; margin-bottom: .25rem; }
.mobile-nav-label {
  display: block;
  color: var(--orange);
  font-family: var(--font-label);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 0 .25rem;
  font-weight: 700;
}
.mobile-nav-group a { border-bottom: none; padding: .5rem 0 .5rem 1.25rem; font-size: .9rem; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.p-0  { padding: 0; }
.p-2  { padding: 1rem; }
.p-3  { padding: 1.5rem; }
.d-none { display: none; }
.d-flex { display: flex; }
.w-100  { width: 100%; }
.text-muted  { color: var(--gray-500); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-success { color: #28a745; }
.text-danger  { color: #dc3545; }
.text-dark    { color: var(--dark); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm  { font-size: .875rem; }
.fs-xs  { font-size: .78rem; }
.rounded-full { border-radius: 100px; }
.shadow  { box-shadow: var(--shadow); }
.bg-blue-light { background: var(--blue-light); }
.bg-light      { background: var(--gray-100); }

/* ── NEWSLETTER FORM (standalone use outside footer) */
.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 180px; }

/* ── NAV DROPDOWN LABEL (non-clickable parent) ───────────────── */
.nav-dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  cursor: default;
  color: rgba(255,255,255,.85);
  font-family: var(--font-label);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem .65rem;
  border-radius: var(--radius);
  user-select: none;
  transition: background var(--transition), color var(--transition);
}
.has-dropdown:hover .nav-dropdown-label { color: var(--white); background: rgba(255,255,255,.12); }
.nav-dropdown-label .fa-caret-down { font-size: .75rem; opacity: .7; }

/* ── NAV FESTIVAL LINK ───────────────────────────────────────── */
.nav-festival-link {
  background: var(--orange) !important;
  color: var(--dark) !important;
  border-radius: var(--radius) !important;
  padding: .35rem .85rem !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-festival-link:hover { background: var(--orange-dark, #d97706) !important; color: var(--white) !important; }

/* ── SEARCH BAR ──────────────────────────────────────────────── */
.search-bar { position: relative; }
.search-bar input { padding-right: 3rem; }
.search-bar button { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--blue); font-size: 1rem; cursor: pointer; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn .4s ease forwards; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu, .nav-actions .btn:not(.btn-sm) { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 4rem 0 3.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }
  .newsletter-form { flex-direction: column; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: .8rem 1.5rem; font-size: .9rem; }
  .stat-card .stat-value { font-size: 1.6rem; }
}

/* ── PRINT (ID Card) ─────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .btn, .alert { display: none; }
}
