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

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1f44;
  --navy-light: #1a3a6b;
  --navy-dark: #060f22;
  --gold: #c8a951;
  --gold-light: #e0c97a;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --red: #8b1a1a;
  --red-light: #c62828;
  --light-bg: #f0f4f8;
  --card-bg: #ffffff;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --dark-bg: #060f22;
  --text: #1e293b;
  --text-light: #475569;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(10,31,68,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(10,31,68,.12), 0 4px 8px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 60px rgba(10,31,68,.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.25,.46,.45,.94);
}

/* ===== BASE RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--light-bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: rgba(255,255,255,.9);
  padding: 9px 0;
  font-size: 13px;
  font-weight: 500;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar .contact-info { display: flex; gap: 0; flex-wrap: wrap; }
.top-bar .contact-info span {
  margin-right: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-member {
  background: rgba(255,255,255,.15);
  color: white;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-member:hover {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.social-icons { display: flex; align-items: center; gap: 6px; }
.social-icons a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 12px;
  color: white;
  transition: var(--transition);
}
.social-icons a:hover {
  background: white;
  color: var(--green);
  border-color: white;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(10,31,68,.12);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(10,31,68,.25);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .brand {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  letter-spacing: .5px;
}
.logo-text .sub {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 20px 13px;
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: .2px;
}
.nav-links > li > a:hover { color: var(--green); }
.nav-links > li > a.active { color: var(--green); }
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 3px 3px 0 0;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -8px;
  background: white;
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
  padding: 6px;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--navy);
  padding-left: 18px;
}
.dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: .7; }

.btn-involved {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(139,26,26,.3);
  white-space: nowrap;
}
.btn-involved:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,26,26,.4);
}
.btn-involved::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-toggle:hover { border-color: var(--navy); background: var(--light-bg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(6,15,34,.92) 0%, rgba(10,31,68,.85) 50%, rgba(26,58,107,.78) 100%),
              url('https://images.unsplash.com/photo-1509099836639-18ba4637e4c3?w=1800&q=80') center/cover no-repeat;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200,169,81,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(46,125,50,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--light-bg));
}
.hero .container {
  padding: 100px 24px 140px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 28px 32px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  width: 100%;
  transition: var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,.11); }
.stat-number {
  font-size: 52px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  opacity: .75;
  font-weight: 500;
}
.stat-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,81,.5), transparent);
  margin: 0 auto;
}

/* Hero content */
.hero-content h3 {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  opacity: .9;
}
.hero-content h1 {
  font-size: 50px;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content p {
  font-size: 16px;
  line-height: 1.85;
  opacity: .85;
  margin-bottom: 36px;
  color: rgba(255,255,255,.9);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,169,81,.4);
  border: 2px solid transparent;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,169,81,.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 14px;
  position: relative;
}
.section-title p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-title .underline {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  margin: 18px auto 0;
  border-radius: 4px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(6,15,34,.93) 0%, rgba(10,31,68,.88) 50%, rgba(26,58,107,.85) 100%),
              url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80') center/cover no-repeat fixed;
  padding: 100px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,81,.08) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: white; font-size: 44px; margin-bottom: 16px; }
.cta-banner p {
  opacity: .85;
  font-size: 17px;
  margin-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-banner .subtitle {
  color: var(--gold-light);
  font-size: 12px;
  margin-bottom: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* ===== EVENTS SECTION ===== */
.events-section { background: var(--light-bg); }

/* ===== DONATE SECTION ===== */
.donate-section { background: white; padding: 80px 0; }
.donate-card {
  background: white;
  padding: 48px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.donate-amounts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0; }
.donate-amounts span {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.donate-amounts span:hover,
.donate-amounts span.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(10,31,68,.25);
}

/* ===== IMPACT CARDS ===== */
.impact-section { background: white; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.impact-card {
  text-align: center;
  padding: 44px 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.impact-card:hover::before { transform: scaleX(1); }
.impact-card .icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(10,31,68,.2);
  transition: var(--transition);
}
.impact-card:hover .icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 30px rgba(10,31,68,.3);
}
.impact-card h3 { font-size: 20px; margin-bottom: 12px; }
.impact-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.75; }

/* ===== PHONE BANNER ===== */
.phone-banner {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  padding: 22px 0;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
}
.phone-banner i { margin-right: 10px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, rgba(6,15,34,.92), rgba(26,58,107,.85)),
              url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80') center/cover no-repeat;
  padding: 110px 0 70px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(200,169,81,.08) 0%, transparent 60%);
}
.page-header h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.page-header .breadcrumb {
  position: relative;
  opacity: .75;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
}
.page-header .breadcrumb a { color: var(--gold-light); }
.page-header .breadcrumb a:hover { color: white; }

/* ===== CONTENT SECTION ===== */
.content-section { background: white; padding: 70px 0; }
.content-section .container { max-width: 900px; }
.content-section p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-light);
  margin-bottom: 22px;
}
.content-section h2 { margin-bottom: 24px; font-size: 36px; }
.content-section h3 { margin: 34px 0 14px; font-size: 22px; color: var(--navy-light); }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.team-card .photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a5298 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  position: relative;
  overflow: hidden;
}
.team-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.team-card:hover .photo img { transform: scale(1.06); }
.team-card .info { padding: 20px 16px 22px; }
.team-card .info h3 { font-size: 16px; margin-bottom: 6px; }
.team-card .info p { color: var(--text-light); font-size: 13px; line-height: 1.5; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.contact-card .icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(10,31,68,.2);
  transition: var(--transition);
}
.contact-card:hover .icon { transform: scale(1.1) rotate(-5deg); }
.contact-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-card p { color: var(--text-light); font-size: 14px; line-height: 1.65; }

.contact-form {
  max-width: 720px;
  margin: 50px auto 0;
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 16px;
  transition: var(--transition);
  outline: none;
  background: var(--light-bg);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(10,31,68,.08);
}
.contact-form textarea { height: 150px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form button {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 15px 44px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,31,68,.3);
}
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,31,68,.4);
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

/* ===== STRUCTURE TABLE ===== */
.structure-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.structure-table th {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.structure-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.structure-table tr:last-child td { border-bottom: none; }
.structure-table tr:nth-child(even) td { background: var(--light-bg); }
.structure-table tr:hover td {
  background: rgba(10,31,68,.04);
}

/* ===== TEAM PAGE SPECIFIC ===== */
.team-section { background: var(--light-bg); padding: 80px 0; }
.team-hierarchy { margin-top: 40px; }
.team-tier { margin-bottom: 60px; }
.team-tier-header { text-align: center; margin-bottom: 28px; }
.team-tier-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  padding: 10px 28px;
  background: white;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.team-tier-title i { color: var(--gold); }
.team-tier-title .member-count {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
  padding: 2px 10px;
  border-radius: 20px;
}
.team-grid-leadership {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
  margin: 0 auto;
}
.team-stats-bar {
  text-align: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: rgba(255,255,255,.85);
  font-size: 14px;
  margin-bottom: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.team-stats-bar strong { color: var(--gold-light); }

.team-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
}
.team-nav a {
  padding: 8px 18px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-nav a:hover,
.team-nav a.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(10,31,68,.2);
}

.banner-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.banner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  position: relative;
  box-shadow: var(--shadow);
}
.banner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.banner-img:hover img { transform: scale(1.07); }
.banner-img .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(6,15,34,.85));
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
}

/* Team card enhanced (our-team.html inline overrides come after) */
.team-card .photo .initials {
  font-size: 40px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  z-index: 1;
}
.team-card.director .photo {
  background: linear-gradient(135deg, #060f22 0%, #0a1f44 50%, #c8a951 100%);
  height: 230px;
}
.team-card.director .info h3 { font-size: 17px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-light), var(--gold), var(--green));
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer p { font-size: 14px; line-height: 1.85; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  transition: transform .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { transform: translateX(3px); }

.footer .social-footer { display: flex; gap: 10px; margin-top: 22px; }
.footer .social-footer a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: var(--transition);
}
.footer .social-footer a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(200,169,81,.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--gold); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== NEWSLETTER ===== */
.newsletter-form {
  display: flex;
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: none;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,.08);
  color: white;
  font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .5px;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
  transform: none;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; max-width: 500px; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }
  .top-bar .contact-info { justify-content: center; }

  .mobile-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: 12px;
    gap: 2px;
    border-top: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-links > li > a { padding: 13px 16px; border-radius: var(--radius-sm); }
  .nav-links > li > a.active::after { display: none; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
    background: transparent;
  }
  .dropdown-menu li a { color: var(--text-light); }

  .hero .container { grid-template-columns: 1fr; padding: 70px 24px 100px; gap: 40px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .stat-item { padding: 18px 20px; width: auto; flex: 1; min-width: 120px; }
  .stat-number { font-size: 36px; }
  .stat-divider { display: none; }
  .hero-content h1 { font-size: 34px; }
  .page-header h1 { font-size: 32px; }
  .cta-banner h2 { font-size: 30px; }
  .section-title h2 { font-size: 28px; }
  .impact-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .banner-images { grid-template-columns: 1fr; }
  .team-grid-leadership { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .team-grid-leadership { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
}
