/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix mobile overflow (anti-décalage horizontal) */
html, body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typographie premium – titres */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .cta-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

/* Images responsive */
img {
  max-width: 100%;
  height: auto;
}

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

/* ===== COLOR SCHEME ===== */
:root {
  /* Primary Colors */
  --primary-green: #2E8B57;      /* Sea Green */
  --primary-blue: #1E90FF;       /* Dodger Blue */
  --primary-white: #FFFFFF;      /* White */

  /* Secondary Colors */
  --secondary-green: #228B22;    /* Forest Green */
  --secondary-blue: #4169E1;     /* Royal Blue */
  --light-green: #90EE90;        /* Light Green */
  --light-blue: #87CEEB;         /* Sky Blue */

  /* Neutral Colors */
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #CCCCCC;
  --background-gray: #F8F9FA;

  /* Text helpers */
  --text-dark: #333333;

  /* Status Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-green), var(--secondary-blue));

  /* WOW / Impact */
  --shadow-glow: 0 0 40px rgba(46, 139, 87, 0.25);
  --shadow-card-hover: 0 20px 50px rgba(46, 139, 87, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Water For People – couleurs officielles */
  --wfp-teal: #00A3E0;
  --wfp-blue: #00A3E0;
  --wfp-dark: #003D5C;
  --wfp-blue-dark: #003D5C;
  --wfp-blue-light: #4DC3F7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-white);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), 0 8px 25px rgba(46, 139, 87, 0.4);
}

.btn-secondary {
  background: var(--secondary-blue);
  color: var(--primary-white);
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(30, 144, 255, 0.35), 0 8px 25px rgba(30, 144, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--primary-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn i { margin-right: 8px; }

/* ===== HEADER & NAVIGATION ===== */
.header {
  background: var(--primary-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: auto;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Barre de navigation principale */
.navbar {
  padding: 0.2rem 0; /* Hauteur contrôlée */
}

/* Conteneur général logo + menu */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 120px;
  margin-right: 0;
}

.logo-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-green);
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2.5rem;
}

/* Liens du menu */
.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Menu responsive */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1rem;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  margin: 3px 0;
  transition: 0.3s;
}

/* ===== HEADER STYLE WATER FOR PEOPLE (exact) ===== */
.header-wfp {
  background: var(--wfp-dark);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-wfp .nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.header-wfp .nav-link:hover,
.header-wfp .nav-link.active {
  color: #fff;
}
.header-wfp .nav-link::after {
  background: #fff;
}
.header-wfp .logo {
  filter: brightness(0) invert(1);
  height: 44px;
}
.header-wfp .bar { background: #fff; }
.btn-donate {
  background: #fff;
  color: var(--wfp-dark);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-donate:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.nav-cta { margin-left: 0.5rem; }
@media (max-width: 768px) {
  .header-wfp .nav-menu {
    background: var(--wfp-dark);
  }
  .header-wfp .nav-link { color: #fff; }
}

/* ===== HERO SECTION – PRO & WOW ===== */
.hero {
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero-pro {
  padding: 140px 0 0;
  background: linear-gradient(165deg, #f0f7f4 0%, #e8f4f0 35%, #fff 70%);
}

.hero-pro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--medium-gray);
  line-height: 1.7;
  max-width: 92%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(46, 139, 87, 0.4);
  transition: var(--transition-smooth);
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-green);
  background: transparent;
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image {
  animation: fadeInRight 0.8s ease-out;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
  transition: var(--transition-smooth);
}

.hero-image:hover .hero-img {
  transform: scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.16);
}

/* Barre de chiffres clés – pleine largeur, style pro */
.hero-stats-bar {
  width: 100%;
  background: linear-gradient(135deg, #1e5c3e 0%, #2E8B57 50%, #1a4d32 100%);
  color: #fff;
  padding: 2rem 1rem;
  position: relative;
  z-index: 2;
}

.hero-stats-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-block {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.stat-block-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  display: inline;
}

.stat-block-suffix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  opacity: 0.9;
}

.stat-block-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Ancienne grille stats (pour autres pages) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-stats .stat-item {
  text-align: center;
  background: var(--primary-white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.hero-stats .stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.hero-stats .stat-number {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  color: var(--medium-gray);
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--dark-gray);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ===== SECTION REVEAL (WOW) ===== */
.about-preview,
.projects-preview,
.cta {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-preview.section-reveal,
.projects-preview.section-reveal,
.cta.section-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview {
  padding: 80px 0;
  background: var(--primary-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mission-point {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--background-gray);
  border-radius: 10px;
  transition: var(--transition-smooth);
  border-left: 3px solid transparent;
}

.mission-point:hover {
  transform: translateX(6px);
  border-left-color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(46, 139, 87, 0.12);
}

.mission-point i {
  color: var(--primary-green);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-image { position: relative; }

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== PROJECTS PREVIEW SECTION ===== */
.projects-preview {
  padding: 80px 0;
  background: var(--background-gray);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--primary-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(46, 139, 87, 0.06);
  transition: var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(46, 139, 87, 0.1);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img { transform: scale(1.1); }

.project-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--wfp-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-overlay i {
  color: var(--primary-white);
  font-size: 1.5rem;
}

.project-content { padding: 2rem; }

.project-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--wfp-dark);
  margin-bottom: 1rem;
}

.project-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.project-link:hover { color: var(--primary-green); }

.project-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.project-link:hover i { transform: translateX(5px); }

.text-center { text-align: center; }

/* ===== CALL TO ACTION SECTION ===== */
.cta {
  padding: 90px 0;
  background: var(--gradient-primary);
  color: var(--primary-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23fff" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--primary-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--primary-white);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--primary-white);
  color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta .btn-primary:hover {
  background: var(--background-gray);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta .btn-outline {
  border-color: var(--primary-white);
  color: var(--primary-white);
}

.cta .btn-outline:hover {
  background: var(--primary-white);
  color: var(--primary-green);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  color: var(--primary-white);
  padding: 60px 0 20px;
}

/* Footer style Water For People – même bleu foncé que le header */
.footer-wfp {
  background: var(--wfp-dark) !important;
  color: #fff;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-wfp .footer-section h4,
.footer-wfp .footer-logo h3 { color: #fff; }
.footer-wfp .footer-section p,
.footer-wfp .footer-bottom p { color: rgba(255, 255, 255, 0.85); }
.footer-wfp .footer-links a,
.footer-wfp .footer-bottom-links a { color: rgba(255, 255, 255, 0.85); }
.footer-wfp .footer-links a:hover,
.footer-wfp .footer-bottom-links a:hover { color: var(--wfp-teal); }
/* Bloc Contact du footer : pas de fond clair, texte blanc lisible */
.footer-wfp .footer-section .contact-info {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-wfp .contact-info p {
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 0.5rem;
}
.footer-wfp .contact-info i { color: var(--wfp-teal); }
.footer-wfp .social-link {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.footer-wfp .social-link:hover { background: var(--wfp-teal); }
.footer-wfp .footer-bottom { border-top-color: rgba(255, 255, 255, 0.15); }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo h3 {
  color: var(--primary-white);
  font-size: 1.1rem;
}

.footer-section h4 {
  color: var(--primary-white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary-green); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--primary-white);
  text-decoration: none;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-link:hover { transform: translateY(-3px); }

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-green);
  width: 20px;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 10px 15px;
  background: var(--gradient-primary);
  color: var(--primary-white);
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover { background: var(--gradient-secondary); }

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--light-gray);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--primary-green); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Header fix mobile */
  .nav-container { padding: 0 16px; }
  .logo { height: 60px; } /* important */

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-toggle { display: flex; }

  .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-bottom: 2.5rem;
  }

  .hero-pro { padding-top: 120px; }

  .hero-content {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .hero-description { margin-left: auto; margin-right: auto; }

  .hero-title { font-size: 2rem; }
  .hero-buttons { justify-content: center; }

  .hero-stats-bar-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-divider { display: none; }

  .stat-block { min-width: 100px; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-points { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form { flex-direction: column; }

  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 0.5rem;
  }

  .newsletter-form button { border-radius: 5px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }

  .hero { padding: 100px 0 60px; }
  .hero-pro { padding-top: 100px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 2rem; }

  .hero-stats-bar-inner { gap: 1rem; }

  .stat-block {
    min-width: calc(50% - 0.75rem);
    flex: 1 1 45%;
  }

  .hero-stats { grid-template-columns: 1fr; }

  .hero-stats .stat-item { padding: 1.5rem; }

  .hero-stats .stat-number { font-size: 2rem; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== LOADING ANIMATION ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-control.error { border-color: var(--danger); }

.form-error {
  color: var(--danger);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ===== CARD STYLES ===== */
.card {
  background: var(--primary-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1.5rem;
  background: var(--background-gray);
  border-bottom: 1px solid var(--light-gray);
}

.card-body { padding: 1.5rem; }

.card-footer {
  padding: 1rem 1.5rem;
  background: var(--background-gray);
  border-top: 1px solid var(--light-gray);
}

/* ===== ALERT STYLES ===== */
.alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  border-left: 4px solid;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--warning);
  color: var(--warning);
}

.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

.alert-info {
  background: rgba(23, 162, 184, 0.1);
  border-color: var(--info);
  color: var(--info);
}

/* ===== PAGE HEADER STYLES ===== */
.page-header {
  padding: 120px 0 60px;
  background: var(--gradient-primary);
  color: var(--primary-white);
  text-align: center;
}

/* Style Water For People : bandeau sobre (fond clair, texte foncé) sur toutes les pages internes */
.page-header.page-header-wfp {
  padding: 100px 0 48px;
  background: #f5f7fa;
  color: var(--dark-gray);
  border-bottom: 3px solid var(--wfp-blue);
}

.page-header.page-header-wfp .page-header-content h1 {
  color: var(--dark-gray);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header.page-header-wfp .page-header-content p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  opacity: 1;
}

.page-header.page-header-wfp .breadcrumb a {
  color: var(--wfp-teal);
  opacity: 1;
}

.page-header.page-header-wfp .breadcrumb a:hover {
  text-decoration: underline;
}

.page-header.page-header-wfp .breadcrumb span {
  color: var(--medium-gray);
  opacity: 1;
}

.page-header-content h1 {
  color: var(--primary-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header-content p {
  color: var(--primary-white);
  opacity: 0.9;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--primary-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover { opacity: 1; }

.breadcrumb span {
  color: var(--primary-white);
  opacity: 0.6;
}

/* ===== PAGES INTERNES – EN-TÊTES DE SECTION WOW (WFP) ===== */
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--wfp-dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--wfp-teal);
  display: inline-block;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== ABOUT PAGE STYLES – BEAU, ATTRACTIF, WOW ===== */
.about-overview {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wfp-teal);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--wfp-teal);
}

.about-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.about-text .lead strong,
.about-text .lead b { color: var(--wfp-teal); }

.about-text p {
  color: var(--medium-gray);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-stats .stat-item {
  text-align: center;
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 12px;
  border: 2px solid #e8eef2;
  box-shadow: 0 4px 20px rgba(0, 163, 224, 0.08);
  transition: all 0.35s ease;
}

.about-stats .stat-item:hover {
  border-color: var(--wfp-teal);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 163, 224, 0.15);
}

.about-stats .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--wfp-teal);
  margin-bottom: 0.5rem;
}

.about-stats .stat-label {
  color: var(--medium-gray);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-image { position: relative; }
.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 61, 92, 0.12);
  border: 1px solid rgba(0, 163, 224, 0.1);
}

/* ===== MISSION VISION VALUES – WOW ===== */
.mission-vision-values {
  padding: 90px 0;
  background: linear-gradient(180deg, #f0f7fa 0%, #fff 100%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 61, 92, 0.08);
  border-top: 4px solid var(--wfp-teal);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 163, 224, 0.15);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  background: var(--wfp-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mvv-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.mvv-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wfp-dark);
  margin-bottom: 1.25rem;
}

.mvv-card p,
.values-list li {
  color: var(--medium-gray);
  line-height: 1.7;
}

.values-list {
  list-style: none;
  text-align: left;
}

.values-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wfp-teal);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===== OBJECTIVES SECTION – WOW ===== */
.objectives {
  padding: 90px 0;
  background: #fff;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.objective-card {
  background: #fff;
  padding: 2.25rem 1.75rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 61, 92, 0.08);
  border: 2px solid #e8eef2;
  border-top: 4px solid var(--wfp-teal);
  transition: all 0.35s ease;
}

.objective-card:hover {
  border-color: var(--wfp-teal);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 163, 224, 0.14);
}

.objective-icon {
  width: 64px;
  height: 64px;
  background: var(--wfp-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.objective-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.objective-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wfp-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.objective-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== ORGANIZATION STRUCTURE – WOW ===== */
.organization-structure {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.structure-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.structure-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--wfp-dark);
  margin-bottom: 1rem;
}

.structure-text p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.structure-levels { margin-top: 2rem; }

.structure-level {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 24px rgba(0, 61, 92, 0.08);
  border-left: 4px solid var(--wfp-teal);
  transition: all 0.3s ease;
}

.structure-level:hover {
  box-shadow: 0 10px 32px rgba(0, 163, 224, 0.12);
}

.structure-level h4 {
  color: var(--wfp-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.structure-level h4 i {
  margin-right: 0.5rem;
  color: var(--wfp-teal);
}

.structure-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== TIMELINE STYLES ===== */
.history-timeline {
  padding: 90px 0;
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--wfp-teal);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--wfp-teal);
  border-radius: 50%;
  top: 0;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--wfp-teal);
}

.timeline-item:nth-child(odd)::before { right: -10px; }
.timeline-item:nth-child(even)::before { left: -10px; }

.timeline-date {
  background: var(--wfp-teal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.timeline-content {
  background: var(--background-gray);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--wfp-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ===== IMPACT SECTION ===== */
.impact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f0f7fa 0%, #fff 100%);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.impact-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 61, 92, 0.08);
  border-top: 4px solid var(--wfp-teal);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 163, 224, 0.15);
}

.impact-icon {
  width: 72px;
  height: 72px;
  background: var(--wfp-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.impact-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.impact-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wfp-teal);
  margin-bottom: 0.75rem;
}

.impact-description {
  color: var(--medium-gray);
  font-weight: 500;
  line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */
@media (max-width: 768px) {
  .page-header-content h1 { font-size: 2rem; }

  .about-content,
  .structure-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mvv-grid { grid-template-columns: 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 30px; }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 20px !important;
    right: auto !important;
  }

  .impact-grid { grid-template-columns: 1fr; }
}

/* ===== PROJECTS PAGE STYLES ===== */
.project-categories {
  padding: 40px 0;
  background: var(--background-gray);
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--primary-white);
  border: 2px solid var(--light-gray);
  border-radius: 25px;
  color: var(--medium-gray);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--primary-white);
}

/* ===== ACTION OED & WE CARE – 100 ENFANTS DJOUGOU ===== */
.action-wecare-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f0f7f4 0%, var(--primary-white) 100%);
}

.action-wecare-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.action-wecare-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(46, 139, 87, 0.12);
  border-radius: 6px;
}

.action-wecare-header h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.action-wecare-intro {
  font-size: 1.05rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.action-wecare-header .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Page galerie dédiée */
.gallery-page-section {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #f0f7f4 0%, var(--primary-white) 100%);
}
.gallery-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-page-actions .btn { display: inline-flex; align-items: center; gap: 0.5rem; }

.action-wecare-gallery {
  margin-top: 0;
}
.gallery-page-section .action-wecare-gallery {
  margin-top: 0;
}

.action-wecare-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 0;
}

.action-wecare-gallery .gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
  background: #f5f5f5;
}

.action-wecare-gallery .gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.action-wecare-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .action-wecare-section { padding: 40px 0 60px; }
  .action-wecare-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .action-wecare-gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.featured-projects {
  padding: 80px 0;
  background: var(--primary-white);
}

.all-projects {
  padding: 80px 0;
  background: var(--background-gray);
}

.projects-grid.detailed {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-card.featured {
  border: 2px solid var(--wfp-teal);
  border-top: 4px solid var(--wfp-teal);
}

.project-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.project-status:not(.completed) {
  background: var(--wfp-teal);
  color: #fff;
}

.project-status.completed {
  background: var(--success);
  color: var(--primary-white);
}

/* Projets à venir – badge "À venir" */
.project-status-upcoming {
  background: #e67e22 !important;
  color: #fff !important;
}

/* Bouton Faire un don pour projets à venir */
.project-actions-donate {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.btn-donate-project {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--wfp-teal);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-donate-project:hover {
  background: var(--wfp-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.4);
}

/* Catégories principales – Projets menés / À venir */
.category-filter-main {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.category-filter-main .filter-btn {
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* Grille projets à venir – 3 colonnes sur grand écran */
.projets-a-venir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.projets-realises-grid {
  max-width: 900px;
  margin: 0 auto;
}

.project-category {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: var(--background-gray);
  border-radius: 10px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.project-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.project-actions .btn {
  flex: 1;
  text-align: center;
}

.donate-btn {
  background: var(--secondary-blue);
  color: var(--primary-white);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.donate-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* ===== PROJECT MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.modal-content {
  background: var(--primary-white);
  margin: 2% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 2rem;
  background: var(--gradient-primary);
  color: var(--primary-white);
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 { color: var(--primary-white); margin: 0; }

.modal-close {
  background: none;
  border: none;
  color: var(--primary-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.modal-close:hover { background: rgba(255, 255, 255, 0.2); }

.modal-body { padding: 2rem; }

.project-detail-image { margin-bottom: 2rem; }

.project-detail-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.project-detail-content { display: grid; gap: 2rem; }

.project-detail-category {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.project-detail-status {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--primary-green);
  color: var(--primary-white);
}

.project-detail-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.project-detail-objectives h4,
.project-detail-results h4,
.project-detail-gallery h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.project-detail-objectives ul { list-style: none; padding: 0; }

.project-detail-objectives li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.project-detail-objectives li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.result-card {
  background: var(--background-gray);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.result-card:hover { transform: translateY(-5px); }

.result-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.result-icon i {
  color: var(--primary-white);
  font-size: 1.2rem;
}

.result-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.05); }

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.modal-footer {
  padding: 2rem;
  background: var(--background-gray);
  border-radius: 0 0 15px 15px;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ===== PROJECT STATISTICS ===== */
.project-statistics {
  padding: 80px 0;
  background: var(--primary-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--primary-white);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stat-card .stat-icon i {
  font-size: 1.8rem;
  color: var(--primary-white);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.stat-card .stat-label {
  color: var(--medium-gray);
  font-weight: 500;
}

/* ===== RESPONSIVE DESIGN FOR PROJECTS PAGE ===== */
@media (max-width: 768px) {
  .category-filter { flex-direction: column; align-items: center; }
  .filter-btn { width: 200px; text-align: center; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-stats { grid-template-columns: 1fr; }
  .project-actions { flex-direction: column; }

  .modal-content { width: 95%; margin: 5% auto; }
  .modal-header { padding: 1.5rem; }
  .modal-body { padding: 1.5rem; }

  .modal-footer {
    padding: 1.5rem;
    flex-direction: column;
  }

  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .project-detail-image img { height: 200px; }
}

/* ===== JOIN PAGE STYLES ===== */
.join-options {
  padding: 80px 0;
  background: var(--primary-white);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.option-card {
  background: var(--primary-white);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.option-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.option-icon i {
  font-size: 2rem;
  color: var(--primary-white);
}

.option-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.option-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== MEMBERSHIP BENEFITS ===== */
.membership-benefits {
  padding: 80px 0;
  background: var(--background-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover { transform: translateY(-5px); }

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--primary-white);
}

.benefit-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* ===== JOIN FORM STYLES ===== */
.join-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group { margin: 2rem 0; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-radius: 3px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--primary-blue);
  text-decoration: none;
}

.checkbox-label a:hover { text-decoration: underline; }

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

/* ===== DONATION FORM STYLES ===== */
.donation-form {
  max-width: 700px;
  margin: 0 auto;
}

.donation-info {
  background: var(--background-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}

.donation-amounts h4,
.donation-type h4,
.donation-frequency h4,
.donor-info h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.amount-btn {
  padding: 15px 10px;
  background: var(--primary-white);
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-weight: 600;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--primary-white);
  transform: translateY(-2px);
}

.custom-amount { margin-bottom: 2rem; }

.type-options,
.frequency-options {
  display: grid;
  gap: 1rem;
}

.radio-label {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--background-gray);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.radio-label:hover {
  background: var(--primary-white);
  border-color: var(--light-green);
}

.radio-label input[type="radio"] { display: none; }

.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.radio-label input[type="radio"]:checked + .radio-mark { border-color: var(--primary-green); }

.radio-label input[type="radio"]:checked + .radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ .radio-content { color: var(--primary-green); }

.radio-label:has(input[type="radio"]:checked) {
  background: var(--primary-white);
  border-color: var(--primary-green);
}

.radio-content { flex: 1; }

.radio-content strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.radio-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* ===== SUCCESS STORIES ===== */
.success-stories {
  padding: 80px 0;
  background: var(--primary-white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.story-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-green);
}

.story-content { position: relative; }

.story-quote {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-quote i {
  color: var(--primary-white);
  font-size: 1.2rem;
}

.story-content p {
  font-style: italic;
  margin-bottom: 2rem;
  padding-left: 2rem;
  line-height: 1.6;
  color: var(--medium-gray);
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  color: var(--primary-green);
  font-size: 1.1rem;
}

.author-info span {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN FOR JOIN PAGE ===== */
@media (max-width: 768px) {
  .options-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .amount-buttons { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }

  .form-actions { flex-direction: column; }
  .story-content p { padding-left: 1.5rem; }
}

@media (max-width: 480px) {
  .amount-buttons { grid-template-columns: 1fr; }

  .option-card,
  .benefit-card,
  .story-card { padding: 1.5rem; }

  .story-content p { padding-left: 1rem; }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info {
  padding: 60px 0;
  background: var(--background-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover { transform: translateY(-5px); }

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--primary-white);
}

.contact-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0;
  line-height: 1.6;
}

.contact-main {
  padding: 80px 0;
  background: var(--primary-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-section {
  background: var(--background-gray);
  padding: 3rem;
  border-radius: 15px;
}

.contact-map-section {
  position: sticky;
  top: 100px;
}

.map-container { margin-bottom: 2rem; }

.map {
  width: 100%;
  height: 400px;
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.map-placeholder { text-align: center; color: var(--medium-gray); }

.map-marker {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.map-info h4 { color: var(--primary-green); margin-bottom: 0.5rem; }
.map-info p { margin-bottom: 0.25rem; }
.map-info small { color: var(--medium-gray); }

.map-info { display: grid; gap: 1.5rem; }

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-gray);
  border-radius: 10px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 1.2rem;
}

.info-item h4 {
  color: var(--primary-green);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.info-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* ===== FAQ STYLES ===== */
.contact-faq {
  padding: 80px 0;
  background: var(--background-gray);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--primary-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-white);
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question h4 {
  color: var(--primary-green);
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--medium-gray);
}

/* ===== SOCIAL MEDIA STYLES ===== */
.social-media {
  padding: 80px 0;
  background: var(--primary-white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-card.facebook:hover { border-color: #1877F2; }
.social-card.instagram:hover { border-color: #E4405F; }
.social-card.linkedin:hover { border-color: #0A66C2; }
.social-card.twitter:hover { border-color: #1DA1F2; }

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-white);
}
/§
.social-card.facebook .social-icon { background: #1877F2; }
.social-card.instagram .social-icon { background: linear-gradient(45deg, #F56040, #E4405F, #833AB4); }
.social-card.linkedin .social-icon { background: #0A66C2; }
.social-card.twitter .social-icon { background: #1DA1F2; }

.social-info h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.social-info p {
  margin-bottom: 0.25rem;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.social-info span {
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== RESPONSIVE DESIGN FOR CONTACT PAGE ===== */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-section { padding: 2rem; }

  .contact-map-section { position: static; }
  .map { height: 300px; }

  .map-info { grid-template-columns: 1fr; }

  .social-grid { grid-template-columns: 1fr; }
  .social-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .contact-form-section { padding: 1.5rem; }
  .contact-card { padding: 1.5rem; }

  .faq-question { padding: 1rem; }
  .faq-answer { padding: 0 1rem 1rem; }

  .social-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== TEAM PAGE STYLES ===== */
.team-intro {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

/* ===== TEAM STATS (FIX: scoped to avoid conflicts) ===== */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.intro-stats .stat-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 61, 92, 0.08);
  border-top: 4px solid var(--wfp-teal);
  transition: all 0.35s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.intro-stats .stat-item:hover { transform: translateY(-5px); }

.intro-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.intro-stats .stat-label {
  font-size: 1.1rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.leadership-team, .core-team { padding: 80px 0; }
.leadership-team { background: var(--background-gray); }

.team-grid {
  display: grid;
  gap: 40px;
  margin-top: 50px;
}

.team-grid.leadership { grid-template-columns: 1fr; }
.team-grid.core { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.team-member {
  background: var(--primary-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member.featured {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.team-member.featured .member-info {
  text-align: left;
}

.member-photo { position: relative; overflow: hidden; }

.member-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo img { transform: scale(1.05); }

.member-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 61, 92, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay { opacity: 1; }

.member-info { padding: 30px; }

.member-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wfp-dark);
  margin-bottom: 10px;
}

.position {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.bio {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.member-quote {
  background: var(--light-green);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

.member-quote i {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.member-quote p {
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.advisory-board {
  padding: 80px 0;
  background: var(--background-gray);
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.advisory-member {
  background: var(--primary-white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advisory-member:hover { transform: translateY(-5px); }

.advisory-member .member-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--light-green);
}

.team-values { padding: 80px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--primary-white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover { transform: translateY(-5px); }

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 2rem;
  color: var(--primary-white);
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.join-team {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--primary-white);
}

.join-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.join-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.join-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.join-benefits { margin-bottom: 30px; }

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.benefit i {
  color: var(--light-green);
  font-size: 1.2rem;
}

.join-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.join-actions .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  text-align: center;
}

/* ===== NEWS PAGE STYLES ===== */
.featured-news {
  padding: 80px 0;
  background: var(--background-gray);
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--primary-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image { position: relative; overflow: hidden; }

.article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-article:hover .article-image img { transform: scale(1.05); }

.article-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-green);
  color: var(--primary-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.article-content { padding: 40px; }

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.article-meta i {
  margin-right: 5px;
  color: var(--primary-green);
}

.article-content h2 {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-content p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Article complet (page Actualités) */
.article-full-section {
  padding: 60px 0 80px;
  background: var(--background-gray);
}

.article-full {
  max-width: 720px;
  margin: 0 auto;
  background: var(--primary-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.article-full-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.article-full-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.article-full-header h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.article-full-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.article-full-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-full-meta i {
  color: var(--primary-green);
  width: 1rem;
}

.article-full-body p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-full-signature {
  margin-top: 2rem;
  font-style: italic;
  color: var(--medium-gray);
}

#article-we-care-full {
  scroll-margin-top: 100px;
}

/* ===== PAGE ARTICLE : fil d'Ariane sobre + contenu éditorial ===== */
.article-breadcrumb-bar {
  padding: 100px 0 1rem;
  background: var(--primary-white);
  border-bottom: 1px solid var(--light-gray);
}

.breadcrumb-article {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
  justify-content: flex-start;
}

.breadcrumb-article a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-article a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--light-gray);
  user-select: none;
}

.breadcrumb-current {
  color: var(--dark-gray);
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .breadcrumb-current { white-space: normal; }
}

.container-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section article : fond discret, carte épurée */
.article-full-section {
  padding: 2.5rem 0 4rem;
  background: #f5f7f6;
}

.article-full {
  max-width: 100%;
  margin: 0 auto;
  background: var(--primary-white);
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.article-full-image-journal {
  margin-bottom: 0;
  text-align: center;
  background: #fafafa;
  padding: 1.5rem 1.5rem 0;
}

.article-full-image-journal img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.article-full-image-caption {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--medium-gray);
  font-style: italic;
}

.article-full-header {
  margin-bottom: 0;
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: none;
}

.article-full-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.article-full-title {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.article-full-header h1,
.article-full-header h2 {
  font-size: inherit;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.article-full-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.article-full-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-full-meta i {
  color: var(--primary-green);
  width: 1rem;
  opacity: 0.9;
}

.article-full-body {
  padding: 0 2.5rem 2.5rem;
}

.article-full-body p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-full-signature {
  margin-top: 2rem;
  font-style: italic;
  color: var(--medium-gray);
}

.article-full-footer {
  margin-top: 0;
  padding: 1.5rem 2.5rem 2rem;
  border-top: 1px solid var(--light-gray);
  background: #fafafa;
}

.page-header-article .page-header-content h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 0.5rem;
}

.page-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.page-header-meta i {
  margin-right: 0.35rem;
}

.news-categories {
  padding: 40px 0;
  background: var(--primary-white);
  border-bottom: 1px solid var(--light-gray);
}

.news-grid-section { padding: 80px 0; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background: var(--primary-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img { transform: scale(1.05); }

.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--wfp-teal);
  color: var(--primary-white);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-content { padding: 25px; }

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--medium-gray);
}

.news-meta i {
  margin-right: 5px;
  color: var(--primary-green);
}

.news-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wfp-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.read-more:hover { color: var(--wfp-dark); }

.load-more-section {
  text-align: center;
  margin-top: 50px;
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--primary-white);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.newsletter-form form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 30px;
  border-radius: 25px;
  white-space: nowrap;
}

.archive-section {
  padding: 80px 0;
  background: var(--background-gray);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.archive-item {
  background: var(--primary-white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.archive-item:hover { transform: translateY(-3px); }

.archive-item h3 {
  color: var(--primary-green);
  margin-bottom: 10px;
}

.archive-item p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN FOR TEAM AND NEWS PAGES ===== */
@media (max-width: 768px) {
  .team-member.featured { grid-template-columns: 1fr; }
  .team-grid.core { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: 1fr; }

  .join-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-article { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  .article-full { padding: 0; }
  .article-full-header { padding: 1.5rem 1.25rem 1rem; }
  .article-full-body { padding: 0 1.25rem 1.5rem; }
  .article-full-footer { padding: 1rem 1.25rem 1.5rem; }
  .article-full-image-journal { padding: 1rem 1rem 0; }
  .article-full-meta { flex-direction: column; gap: 0.5rem; }

  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form form { flex-direction: column; }

  .category-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-btn { white-space: nowrap; }
}

@media (max-width: 480px) {
  .intro-stats .stat-number { font-size: 2.5rem; }
  .member-info h3 { font-size: 1.5rem; }
  .featured-article .article-content h2 { font-size: 1.5rem; }
  .newsletter-text h2 { font-size: 2rem; }
}

/* ===== PAYMENT SECTION STYLES ===== */
.payment-section {
  margin: 30px 0;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.payment-section h4 {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-info {
  background: #e8f5e8;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-green);
}

.payment-info p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.payment-methods { margin-bottom: 25px; }

.payment-method {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--primary-white);
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.payment-method:hover {
  border-color: var(--primary-green);
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
}

.payment-method.active {
  border-color: var(--primary-green);
  background: #f0f8f0;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-white);
  font-size: 1.5rem;
}

.method-info { flex: 1; }

.method-info h5 {
  margin: 0 0 5px 0;
  color: var(--primary-green);
  font-size: 1.1rem;
}

.method-info p {
  margin: 0;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.method-selected {
  width: 30px;
  height: 30px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-method.active .method-selected { opacity: 1; }

.card-details {
  background: var(--primary-white);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.card-input-container { position: relative; }

.card-input { padding-right: 120px; }

.card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.card-icon {
  height: 24px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.card-icon.active { opacity: 1; }

.security-info {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.security-badge i {
  color: var(--primary-green);
  font-size: 1rem;
}

.selected-amount-display {
  margin-top: 20px;
  padding: 20px;
  background: var(--primary-white);
  border-radius: 10px;
  border: 2px solid var(--light-green);
}

.amount-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.amount-label { color: var(--medium-gray); }

.amount-value {
  color: var(--primary-green);
  font-size: 1.4rem;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive paiement */
@media (max-width: 768px) {
  .payment-section { padding: 20px; }
  .payment-method { padding: 15px; }

  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .card-details { padding: 20px; }
  .card-input { padding-right: 100px; }
  .card-icons { right: 10px; }

  .card-icon { height: 20px; }

  .security-badges { gap: 10px; }

  .security-badge {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .amount-display {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .amount-value { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .payment-section { padding: 15px; }
  .card-details { padding: 15px; }

  .security-badges {
    flex-direction: column;
    align-items: center;
  }

  .security-badge {
    width: 100%;
    justify-content: center;
  }
}

/* ===== STYLES POUR CHAMPS OBLIGATOIRES ===== */
.form-label.required::after {
  content: " *";
  color: #dc3545;
  font-weight: 700;
  font-size: 1.1rem;
}

.form-label.required { position: relative; }

.form-label.required::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #dc3545;
  border-radius: 2px;
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.field-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

.field-error::before { content: "⚠️"; font-size: 0.9rem; }

.form-control.valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.field-success {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

.field-success::before { content: "✅"; font-size: 0.9rem; }

.required-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #dc3545;
  font-size: 0.9rem;
  margin-left: 5px;
}

.required-indicator::before {
  content: "*";
  font-weight: 700;
  font-size: 1.1rem;
}

.field-help {
  color: var(--medium-gray);
  font-size: 0.8rem;
  margin-top: 3px;
  font-style: italic;
}

.form-group.required-group { position: relative; }

.form-group.required-group::before {
  content: "Champs obligatoires";
  position: absolute;
  top: -10px;
  left: 0;
  background: #dc3545;
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-control.validating {
  border-color: #ffc107;
  background-color: #fff3cd;
}

.form-progress { margin-bottom: 20px; }

.progress-bar {
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  transition: width 0.3s ease;
}

.progress-text {
  text-align: center;
  margin-top: 5px;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.validate-btn {
  background: #17a2b8;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.3s ease;
}

.validate-btn:hover { background: #138496; }
.validate-btn:disabled { background: #6c757d; cursor: not-allowed; }

.form-info { margin-bottom: 20px; }

.info-box {
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
  border: 1px solid var(--light-green);
  border-left: 4px solid var(--primary-green);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-box i {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-box p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-box strong { color: var(--primary-green); }

/* Responsive indicateurs */
@media (max-width: 768px) {
  .form-label.required::before {
    left: -10px;
    width: 2px;
    height: 12px;
  }

  .form-group.required-group::before {
    font-size: 0.6rem;
    padding: 1px 6px;
  }

  .info-box {
    padding: 12px 15px;
    flex-direction: column;
    gap: 8px;
  }

  .info-box i { align-self: center; }
}

/* ===== HOME PAGE – STYLE WATER FOR PEOPLE ===== */

/* Hero WFP – base (fallback si pas .hero-wfp-banner) */
.hero-wfp {
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Hero bannière : image pleine largeur + texte en overlay à gauche (style référence) */
.hero-wfp-banner {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}
.hero-wfp-banner .hero-wfp-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-wfp-banner .hero-wfp-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-wfp-banner .hero-wfp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 61, 92, 0.94) 0%,
    rgba(0, 61, 92, 0.75) 35%,
    rgba(0, 61, 92, 0.35) 55%,
    transparent 75%
  );
  pointer-events: none;
}
.hero-wfp-banner .hero-wfp-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-wfp-banner .hero-wfp-content {
  max-width: 520px;
  text-align: left;
}
.hero-wfp-lead {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-wfp-title,
.hero-wfp-title-main,
.hero-wfp-title-sub {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.hero-wfp-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.hero-wfp-title-main { display: block; }
.hero-wfp-title-sub { display: block; font-weight: 700; }
.hero-wfp-tagline,
.hero-wfp-tagline-sub {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.25rem;
}
.hero-wfp-tagline-sub { margin-bottom: 1.5rem; }
.hero-wfp-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-wfp-stat,
.hero-wfp-stat span {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-wfp-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-wfp-stat i {
  font-size: 1.5rem;
  color: #fff;
}

/* Fallback image si hero-banner.png absent */
.hero-wfp-banner .hero-wfp-bg {
  background-color: var(--wfp-dark);
}

/* Trois piliers */
.pillars-wfp {
  padding: 80px 0;
  background: #fff;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.pillar-card:hover {
  border-color: var(--wfp-blue);
  box-shadow: 0 8px 32px rgba(0, 102, 161, 0.12);
}
.pillar-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  color: var(--wfp-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pillar-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}
.pillar-link {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--wfp-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.pillar-link:hover { color: var(--wfp-dark); text-decoration: underline; }

/* Bloc don */
.donate-block-wfp {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f7fc 0%, #e8f4fa 100%);
  text-align: center;
}
.donate-block-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}
.donate-block-content p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}
.donate-block-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-donate-primary {
  background: var(--wfp-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}
.btn-donate-primary:hover {
  background: var(--wfp-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 102, 161, 0.35);
}
.btn-donate-secondary {
  background: #fff;
  color: var(--wfp-blue);
  border: 2px solid var(--wfp-blue);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.btn-donate-secondary:hover {
  background: var(--wfp-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Croyance */
.belief-wfp {
  padding: 80px 0;
  background: #fff;
}
.belief-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.belief-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}
.belief-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--medium-gray);
}
.belief-content .btn-primary {
  background: var(--wfp-blue);
  color: #fff;
}
.belief-content .btn-primary:hover { background: var(--wfp-blue-dark); }

/* Belief section – grille texte + image fictive */
.belief-grid-wfp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.belief-grid-wfp .belief-content {
  max-width: none;
  margin: 0;
  text-align: left;
}
.belief-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.belief-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 280px;
}
@media (max-width: 768px) {
  .belief-grid-wfp {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .belief-grid-wfp .belief-content { text-align: center; }
  .belief-media { order: -1; }
}

/* Spotlight */
.spotlight-wfp {
  padding: 80px 0;
  background: var(--background-gray);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.spotlight-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wfp-blue);
  margin-bottom: 0.5rem;
}
.spotlight-content h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}
.spotlight-content p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
  line-height: 1.65;
}
.spotlight-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.spotlight-media a { display: block; }
.spotlight-media a:hover img { opacity: 0.95; }

/* Donation QA */
.donation-qa-wfp {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.donation-qa-wfp h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}
.donation-qa-wfp p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}
.donation-qa-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* People grid */
.people-wfp {
  padding: 80px 0;
  background: var(--background-gray);
}
.section-header-wfp {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header-wfp h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}
.section-header-wfp p {
  color: var(--medium-gray);
  margin: 0;
}
.people-grid-wfp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.people-card-wfp {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}
.people-card-wfp:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.people-card-image {
  height: 220px;
  overflow: hidden;
}
.people-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people-card-wfp h4 {
  font-size: 1.1rem;
  color: var(--dark-gray);
  padding: 1rem 1.25rem 0.25rem;
  margin: 0;
}
.people-card-wfp p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}
.people-wfp-cta { text-align: center; }
.people-wfp-cta .btn-primary { background: var(--wfp-blue); }
.people-wfp-cta .btn-primary:hover { background: var(--wfp-blue-dark); }

/* Where we work */
.where-wfp {
  padding: 80px 0;
  background: #fff;
}
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.where-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark-gray);
  margin-bottom: 1rem;
}
.where-link {
  font-weight: 600;
  color: var(--wfp-blue);
  text-decoration: none;
}
.where-link:hover { text-decoration: underline; }
.where-stats { text-align: center; }
.where-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--wfp-blue);
  display: block;
  line-height: 1.1;
}
.where-stat-label {
  font-size: 0.95rem;
  color: var(--medium-gray);
}
.where-place {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

/* Approach */
.approach-wfp {
  padding: 80px 0;
  background: var(--background-gray);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.approach-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}
.approach-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--medium-gray);
}
.approach-content .btn-primary {
  margin-top: 0.5rem;
  background: var(--wfp-blue);
}
.approach-content .btn-primary:hover { background: var(--wfp-blue-dark); }
.approach-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* CTA final */
.cta-wfp {
  padding: 80px 0;
  background: var(--wfp-dark);
  color: #fff;
  text-align: center;
}
.cta-wfp-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-wfp-content p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cta-wfp-content .btn-donate-primary,
.cta-wfp-content .btn-donate-secondary {
  margin: 0 0.5rem;
}
.cta-wfp .btn-donate-primary {
  background: #fff;
  color: var(--wfp-dark);
}
.cta-wfp .btn-donate-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--wfp-dark);
}
.cta-wfp .btn-donate-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-wfp .btn-donate-secondary:hover {
  background: #fff;
  color: var(--wfp-dark);
}

/* Home WFP – responsive */
@media (max-width: 768px) {
  .hero-wfp { padding: 130px 20px 60px; }
  .hero-wfp-banner { min-height: 75vh; padding: 100px 20px 60px; }
  .hero-wfp-banner .hero-wfp-overlay {
    background: linear-gradient(to right, rgba(0, 61, 92, 0.96) 0%, rgba(0, 61, 92, 0.85) 50%, rgba(0, 61, 92, 0.6) 100%);
  }
  .hero-wfp-stats { gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-media img { height: 260px; }
  .where-grid { grid-template-columns: 1fr; text-align: center; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-visual { order: -1; }
  .approach-visual img { height: 260px; }
}
