/* ============================================
   GLDF NIGERIA — Design System & Styles
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  /* Colors - Derived from your precise palette */
  --navy: #1B2A5B;
  --navy-dark: #121E42;
  --navy-light: #253C78;
  --burgundy: #721C34; /* More refined burgundy */
  --burgundy-dark: #5A1629;
  --burgundy-light: #8E2341;
  --gold: #D4A84B;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --light-gray: #F3F4F6;
  --mid-gray: #6B7280;
  --dark-gray: #374151;
  --text-dark: #111827;
  --text-body: #4B5563;
  --overlay-dark: rgba(18, 30, 66, 0.9);
  --overlay-medium: rgba(27, 42, 91, 0.6);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Outfit', -apple-system, sans-serif;
  --font-accent: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50%;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit; font-size: inherit; border: none;
}
button { cursor: pointer; background: none; }

/* Improve focus visibility for keyboard users */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Ensure links and buttons have clear focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-xl); }

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: var(--space-sm) var(--space-lg);
  z-index: 9999;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--navy);
  outline-offset: -4px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: var(--space-md); }
.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
}
.section-title { margin-top: var(--space-sm); margin-bottom: var(--space-lg); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm);
  padding: 0.8rem 2rem;
  font-family: var(--font-accent); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative; overflow: hidden;
  border: none;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--burgundy); color: var(--white); }
.btn-accent:hover { background: var(--burgundy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.8rem; font-size: 1rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.99);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--space-sm);
  font-family: var(--font-accent); font-weight: 700;
  color: var(--navy); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.nav-logo img { 
  height: 48px; width: auto; object-fit: contain; 
  mix-blend-mode: multiply; /* Removes white background */
}
.nav-logo span { max-width: 180px; line-height: 1.2; }
.nav-links {
  display: flex; align-items: center; gap: var(--space-xl);
}
.nav-links a {
  font-family: var(--font-accent); font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-dark); position: relative;
  padding: var(--space-sm) 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--burgundy);
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--burgundy); }
.nav-actions { display: flex; align-items: center; gap: var(--space-md); }
.nav-search {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark); background: transparent;
  transition: all var(--transition-fast);
}
.nav-search:hover { background: var(--light-gray); }
.nav-contact {
  font-family: var(--font-accent); font-size: 0.75rem;
  color: var(--mid-gray); display: flex; align-items: center; gap: var(--space-xs);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: var(--space-sm);
}
.hamburger span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all var(--transition-base);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Top bar */
.top-bar {
  background: var(--navy-dark);
  padding: 0.35rem 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-socials { display: flex; gap: var(--space-md); }
.top-bar-socials a { color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.top-bar-socials a:hover { color: var(--white); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 30, 66, 0.8) 0%, rgba(18, 30, 66, 0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: var(--space-4xl);
  color: var(--white); width: 100%;
}
.hero-text { flex: 1; max-width: 600px; }
.hero-text h1 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.hero-text p {
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,0.9); margin-bottom: var(--space-xl);
  max-width: 90%;
}
.hero-description {
  display: none; /* Removing the floating box in favor of a dedicated 'Who We Are' section below */
}

/* Hero small (interior pages) */
.hero-sm {
  min-height: 45vh;
  margin-top: var(--nav-height);
}
.hero-sm .hero-content { justify-content: center; text-align: center; }

/* ============================================
   PAGE TABS (About, Get Involved)
   ============================================ */
.page-tabs {
  background: var(--navy-dark);
  position: sticky; top: var(--nav-height); z-index: 99;
}
.page-tabs .container {
  display: flex; gap: 0;
}
.page-tabs a {
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-accent); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-base);
}
.page-tabs a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.page-tabs a.active {
  color: var(--white);
  background: var(--burgundy);
  border-bottom-color: var(--gold);
}

/* ============================================
   SECTIONS — General
   ============================================ */
section { padding: var(--space-4xl) 0; }
.section-header {
  text-align: center; max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

/* ============================================
   WHO WE ARE SECTION (NEW)
   ============================================ */
.who-we-are {
  background: var(--white);
  padding: var(--space-4xl) 0;
}
.who-we-are .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl); align-items: center;
}
.who-we-are-text h2 { color: var(--navy); margin-bottom: var(--space-lg); }
.who-we-are-text p {
  font-size: 1.1rem; color: var(--dark-gray); line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.who-we-are-image {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   AREAS OF WORK / WHAT WE DO
   ============================================ */
.areas-section {
  background: var(--off-white);
  padding: var(--space-4xl) 0;
}
.areas-header {
  text-align: center; color: var(--text-dark);
  margin-bottom: var(--space-3xl); max-width: 700px; margin-inline: auto;
}
.areas-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.area-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  display: flex; flex-direction: column; height: 100%;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--burgundy);
}
.area-icon {
  width: 60px; height: 60px;
  background: rgba(114, 28, 52, 0.08);
  color: var(--burgundy);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-lg);
}
.area-icon svg { width: 32px; height: 32px; }
.area-card h4 { color: var(--navy); margin-bottom: var(--space-md); font-family: var(--font-heading); font-size: 1.35rem; }
.area-card p { flex: 1; color: var(--dark-gray); font-size: 0.95rem; }
.area-link {
  font-family: var(--font-accent); font-weight: 600; font-size: 0.9rem;
  color: var(--burgundy); margin-top: var(--space-md);
  display: inline-flex; align-items: center; gap: var(--space-xs);
}
.area-link:hover { gap: var(--space-sm); }


/* ============================================
   HELP / SOCIAL MEDIA SECTION
   ============================================ */
.help-section .section-header h2 { color: var(--navy); }
.help-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.help-card {
  text-align: center; padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.help-card h4 { margin-bottom: var(--space-sm); }
.help-card p { font-size: 0.85rem; color: var(--mid-gray); }
.help-link {
  display: inline-block; margin-top: var(--space-md);
  color: var(--burgundy); font-weight: 600; font-size: 0.85rem;
}

/* ============================================
   NEWS & EVENTS
   ============================================ */
.news-section { background: var(--white); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-date {
  position: absolute; top: var(--space-md); left: var(--space-md);
  background: var(--burgundy); color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  text-align: center; line-height: 1.2;
}
.news-date .day { font-size: 1.4rem; font-weight: 700; display: block; }
.news-date .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.news-card-body { padding: var(--space-lg); }
.news-card-body h4 { margin-bottom: var(--space-sm); font-size: 1.1rem; }
.news-card-body .meta {
  font-size: 0.8rem; color: var(--mid-gray);
  margin-bottom: var(--space-sm);
}
.news-card-body p { font-size: 0.9rem; color: var(--dark-gray); }
.news-card-body .read-more {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  color: var(--burgundy); font-weight: 600; font-size: 0.85rem;
  margin-top: var(--space-sm);
}
.news-card-body .read-more:hover { gap: var(--space-sm); }

/* Featured news (large card) */
.news-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.news-featured .news-card-img { height: 100%; min-height: 300px; }
.news-featured .news-card-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-2xl);
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.newsletter .container {
  display: flex; align-items: center; gap: var(--space-3xl);
}
.newsletter-globe {
  flex-shrink: 0; width: 300px; height: 300px;
  position: absolute; right: -50px; top: 50%;
  transform: translateY(-50%) scale(1.5);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.newsletter-globe img { 
  width: 100%; height: 100%; object-fit: contain; 
  mix-blend-mode: multiply;
}
.newsletter .container { position: relative; z-index: 1; }
.newsletter-content { flex: 1; }
.newsletter-content h3 { font-family: var(--font-accent); font-size: 1.1rem; margin-bottom: var(--space-xs); color: var(--gold); }
.newsletter-content p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: var(--space-md); }
.newsletter-form {
  display: flex; gap: var(--space-sm); max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.newsletter-form input:focus { border-color: var(--navy); }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.team-card { text-align: center; }
.team-card-img {
  width: 160px; height: 160px;
  border-radius: var(--radius-full);
  overflow: hidden; margin: 0 auto var(--space-md);
  border: 4px solid var(--light-gray);
  transition: all var(--transition-base);
}
.team-card:hover .team-card-img { border-color: var(--burgundy); transform: scale(1.05); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-accent); font-size: 1rem; margin-bottom: var(--space-xs); }
.team-card p { font-size: 0.8rem; color: var(--burgundy); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ============================================
   VOLUNTEER / CONTACT FORM
   ============================================ */
.form-section {
  background: var(--navy);
  padding: var(--space-4xl) 0;
  color: var(--white);
}
.form-section .section-label { color: var(--gold); }
.form-section .section-header h2 { color: var(--white); }
.form-section .section-header p { color: rgba(255,255,255,0.7); }
.form-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 800px; margin: 0 auto;
}
.form-grid .full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.8rem; font-weight: 500;
  margin-bottom: var(--space-xs); color: rgba(255,255,255,0.7);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem var(--space-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all var(--transition-fast);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { text-align: center; margin-top: var(--space-xl); }

/* ============================================
   DONATE SECTION
   ============================================ */
.donate-hero {
  background: var(--navy);
  text-align: center; color: var(--white);
  padding: var(--space-4xl) 0;
}
.donate-hero h2 { color: var(--white); margin-bottom: var(--space-md); }
.donate-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto var(--space-xl); }

/* ============================================
   MISSION / ABOUT SNIPPET
   ============================================ */
.mission-section .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl); align-items: center;
}
.mission-text h2 { margin-bottom: var(--space-md); }
.mission-text p { color: var(--dark-gray); }
.mission-values {
  display: flex; flex-wrap: nowrap; justify-content: center; gap: var(--space-md);
  margin-top: var(--space-lg);
}
.mission-values span {
  padding: var(--space-sm) var(--space-md);
  background: var(--off-white);
  border-radius: var(--radius-xl);
  font-size: 0.85rem; font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--light-gray);
  white-space: nowrap;
}
.quote-block {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--white);
  position: relative;
  padding-left: var(--space-xl);
  border-left: 3px solid var(--gold);
}
.quote-author {
  display: block; font-style: normal;
  font-family: var(--font-accent);
  font-size: 0.9rem; margin-top: var(--space-md);
  color: var(--gold);
}

/* ============================================
   OVERVIEW CARD (About page)
   ============================================ */
.overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  max-width: 700px;
  margin: -80px auto var(--space-3xl);
  position: relative; z-index: 10;
  text-align: center;
}
.overview-card .section-label { margin-bottom: var(--space-md); display: block; }
.overview-card p { color: var(--dark-gray); font-size: 0.95rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  padding: var(--space-3xl) 0 var(--space-lg);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: flex; justify-content: center;
  margin-bottom: var(--space-2xl);
}
.footer-logo {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
}
.footer-logo img { 
  height: 60px; width: auto; opacity: 1; 
}
.footer-logo span {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.8);
  text-align: center; max-width: 200px;
}
.footer-links {
  display: flex; justify-content: center; gap: var(--space-2xl);
  flex-wrap: wrap;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-xl);
}
.footer-links a {
  font-family: var(--font-accent); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-socials {
  display: flex; justify-content: center; gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}
.footer-socials a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.footer-bottom {
  text-align: center; font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-40px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}
.contact-info h3 { margin-bottom: var(--space-lg); }
.contact-item {
  display: flex; gap: var(--space-md); margin-bottom: var(--space-lg);
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--off-white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.contact-item h5 { font-family: var(--font-accent); font-size: 0.9rem; margin-bottom: var(--space-xs); }
.contact-item p { font-size: 0.9rem; color: var(--dark-gray); margin: 0; }
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}
.contact-form .form-grid { 
  grid-template-columns: 1fr 1fr; 
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--text-dark);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--navy);
}
.contact-form .form-group label { color: var(--dark-gray); }

/* ============================================
   NEWS LIST PAGE
   ============================================ */
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: var(--space-xl); }
  .who-we-are .container { grid-template-columns: 1fr; }
  .areas-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-contact, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  
  /* Mobile menu */
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--white);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    gap: var(--space-lg);
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 2.2rem; }
  .areas-cards { grid-template-columns: 1fr; }
  .help-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .newsletter .container { flex-direction: column; text-align: center; }
  .newsletter-globe { width: 100px; height: 100px; right: 50%; transform: translateX(50%) scale(1.5); }
  .newsletter-form { flex-direction: column; }
  .footer-links { gap: var(--space-md); }
  .page-tabs .container { overflow-x: auto; }
  .page-tabs a { white-space: nowrap; padding: var(--space-md); font-size: 0.7rem; }
  .mission-section .container { grid-template-columns: 1fr; }
  .news-list-grid { grid-template-columns: 1fr; }
  section { padding: var(--space-3xl) 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  h1 { font-size: 1.8rem; }
  .hero { min-height: 60vh; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MODALS / LIGHTBOX
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-lg);
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: var(--space-lg); right: var(--space-lg);
  background: none; border: none; font-size: 1.5rem; color: var(--mid-gray);
  cursor: pointer; transition: color 0.2s ease;
}
.modal-close:hover { color: var(--navy); }
.modal-header { margin-bottom: var(--space-xl); text-align: center; }
.modal-header h3 { color: var(--navy); margin-bottom: var(--space-xs); }
.modal-header p { color: var(--dark-gray); font-size: 0.95rem; }

.page-hero { padding: var(--space-4xl) 0; background: var(--off-white); }
.page-hero .container { display: flex; flex-direction: column; align-items: center; justify-content: center; }
