/* ==========================================================================
   PARLEMENT D'ENFANTS ZONE EST RDC (PARDE)
   Feuille de style institutionnelle - Design Système Nations Unies (ONU)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS (Palette Officielle ONU)
   -------------------------------------------------------------------------- */
:root {
    /* Couleurs Institutionnelles ONU */
    --un-blue: #006699;             /* Bleu Nations Unies emblématique */
    --un-blue-hover: #004c73;       /* Bleu ONU foncé pour survol */
    --un-blue-subtle: #e8f4fc;      /* Teinte douce pour badges et fonds */
    --un-navy: #0a192f;             /* Marine institutionnelle profonde */
    --un-navy-surface: #0f2444;     /* Marine pour cartes sur fond sombre */
    --un-navy-light: #1e3a5f;       /* Marine adoucie */
    --un-sky: #009edb;              /* Bleu azur / cyan UNICEF */
    --un-sky-light: #f0f9ff;
    --un-gold: #d97706;             /* Or / Ambre Humanitaire & ODD */
    --un-gold-light: #fef3c7;

    /* Neutres & Surfaces */
    --white: #ffffff;
    --bg-page: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --border-color-light: #f1f5f9;
    --border-color-hover: #cbd5e1;

    /* Typographie & Textes */
    --text-heading: #0a192f;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-inverse: #ffffff;

    /* Rayons de courbure institutionnels */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Ombres douces & Élévations */
    --shadow-xs: 0 1px 2px 0 rgba(10, 25, 47, 0.04);
    --shadow-sm: 0 2px 4px 0 rgba(10, 25, 47, 0.06);
    --shadow-md: 0 6px 16px -2px rgba(10, 25, 47, 0.08), 0 2px 6px -1px rgba(10, 25, 47, 0.04);
    --shadow-lg: 0 16px 32px -4px rgba(10, 25, 47, 0.12), 0 6px 14px -2px rgba(10, 25, 47, 0.05);
    --shadow-xl: 0 24px 48px -8px rgba(10, 25, 47, 0.16);
    --shadow-blue: 0 8px 20px -3px rgba(0, 102, 153, 0.28);

    /* Transitions */
    --transition-fast: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASES TYPOGRAPHIQUES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--un-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--un-blue-hover);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

/* --------------------------------------------------------------------------
   3. SYSTÈME DE BOUTONS & MICRO-INTERACTIONS
   -------------------------------------------------------------------------- */
.btn,
.btn-primary,
.btn-outline,
.btn-secondary,
.btn-white,
.btn-domains {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 24px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Bouton Primaire (Bleu ONU) */
.btn-primary {
    background: var(--un-blue);
    color: var(--white) !important;
    border-color: var(--un-blue);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--un-blue-hover);
    border-color: var(--un-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -2px rgba(0, 102, 153, 0.4);
    color: var(--white) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Bouton Outline (Contour Bleu ONU) */
.btn-outline {
    background: transparent;
    color: var(--un-blue) !important;
    border: 1.5px solid var(--un-blue);
}

.btn-outline:hover {
    background: var(--un-blue);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-outline:active {
    transform: translateY(0);
}

/* Bouton Secondaire (Marine Sombre) */
.btn-secondary {
    background: var(--un-navy);
    color: var(--white) !important;
    border-color: var(--un-navy);
}

.btn-secondary:hover {
    background: var(--un-navy-surface);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}

/* Bouton Blanc (Pour Hero et bannières) */
.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--un-navy) !important;
    border-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--un-blue) !important;
}

/* Bouton Spécifique Domaines */
.btn-domains {
    background: var(--un-navy);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    padding: 12px 28px;
    box-shadow: var(--shadow-md);
}

.btn-domains:hover {
    background: var(--un-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Micro-interaction d'icône au survol */
.btn i, .btn-primary i, .btn-outline i, .btn-secondary i, .btn-white i, .btn-domains i {
    transition: transform 0.22s ease;
    font-size: 0.88em;
}

.btn:hover i.fa-arrow-right,
.btn-primary:hover i.fa-arrow-right,
.btn-outline:hover i.fa-arrow-right,
.btn-secondary:hover i.fa-arrow-right,
.btn-white:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.btn:hover i.fa-arrow-left,
.btn-outline:hover i.fa-arrow-left {
    transform: translateX(-4px);
}

/* Badges Institutionnels */
.badge, .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.badge-un {
    background: var(--un-blue-subtle);
    color: var(--un-blue);
    border: 1px solid rgba(0, 102, 153, 0.18);
}

.badge-white {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

/* --------------------------------------------------------------------------
   4. EN-TÊTE DU SITE : TOPBAR & NAVBAR
   -------------------------------------------------------------------------- */
.site-topbar {
    background: var(--un-navy);
    color: #cbd5e1;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-contact span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #cbd5e1;
    font-weight: 500;
}

.topbar-contact i {
    color: var(--un-sky);
    font-size: 0.85rem;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social a {
    color: #cbd5e1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.topbar-social a:hover {
    background: var(--un-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar Principale */
.main-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.site-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.03);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--un-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
    max-width: 320px;
    line-height: 1.3;
}

/* Menu de navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--un-blue);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:hover {
    color: var(--un-blue);
    background: rgba(0, 102, 153, 0.04);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--un-blue);
    background: var(--un-blue-subtle);
    font-weight: 700;
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

/* Masquage STRICT de la croix sur desktop */
.mobile-close-btn {
    display: none !important;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--un-navy);
    font-size: 1.4rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
    background: var(--bg-subtle);
    color: var(--un-blue);
}

/* --------------------------------------------------------------------------
   5. HERO CARROUSEL DYNAMIQUE
   -------------------------------------------------------------------------- */
.carousel {
    position: relative;
    width: 100%;
    height: 560px;
    background: var(--un-navy);
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 25, 47, 0.45) 0%,
        rgba(10, 25, 47, 0.78) 60%,
        rgba(10, 25, 47, 0.92) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 24px;
    transform: translateY(24px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-content {
    transform: translateY(0);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(0, 158, 219, 0.25);
    color: #bae6fd;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(0, 158, 219, 0.4);
    backdrop-filter: blur(6px);
    margin-bottom: 18px;
}

.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.03em;
}

.slide-content p {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Flèches Carousel */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-fast);
}

.arrow:hover {
    background: var(--un-blue);
    border-color: var(--un-blue);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-blue);
}

.arrow.prev { left: 24px; }
.arrow.next { right: 24px; }

.dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background: var(--un-sky);
    width: 30px;
    box-shadow: 0 0 10px rgba(0, 158, 219, 0.6);
}

/* --------------------------------------------------------------------------
   6. EN-TÊTES DE SECTIONS & BANNIÈRE UNIFIÉE (Page Banner)
   -------------------------------------------------------------------------- */
.section-header-group {
    text-align: center;
    margin-bottom: 45px;
}

.section-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--un-navy);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bannière Institutionnelle Standardisée */
.page-banner {
    background: linear-gradient(135deg, #0a192f 0%, #004c73 60%, #006699 100%);
    color: var(--white);
    padding: 68px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-badge {
    margin-bottom: 14px;
}

.page-banner h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.page-banner p {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.breadcrumb-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.breadcrumb-nav span.separator {
    color: #64748b;
}

/* --------------------------------------------------------------------------
   7. RÉALISATIONS (Projets de Terrain)
   -------------------------------------------------------------------------- */
.realisations {
    padding: 85px 0;
    background: var(--bg-subtle);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.realisation {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.realisation:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 153, 0.3);
    box-shadow: var(--shadow-lg);
}

.realisation-image {
    height: 230px;
    overflow: hidden;
    position: relative;
    background: var(--un-navy);
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.realisation:hover .realisation-image img {
    transform: scale(1.06);
}

.realisation-category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 25, 47, 0.82);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 2;
    display: inline-block;
}

.realisation-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.realisation-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--un-navy);
    margin-bottom: 12px;
    line-height: 1.35;
}

.realisation-content p {
    font-size: 0.93rem;
    color: var(--text-body);
    margin-bottom: 22px;
    flex: 1;
    line-height: 1.65;
}

.realisation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color-light);
    gap: 12px;
    flex-wrap: wrap;
}

.realisation-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.realisation-date i {
    color: var(--un-sky);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--white);
    transition: var(--transition-fast);
}

.page-link:hover {
    background: var(--bg-subtle);
    border-color: var(--un-blue);
    color: var(--un-blue);
}

.page-link.active {
    background: var(--un-blue);
    color: var(--white);
    border-color: var(--un-blue);
    box-shadow: var(--shadow-blue);
}

/* --------------------------------------------------------------------------
   8. PRÉSENTATION & MOT DU COORDONNATEUR
   -------------------------------------------------------------------------- */
.presentation {
    padding: 90px 0;
    background: var(--white);
}

.presentation-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.presentation-text .quote-badge {
    margin-bottom: 16px;
}

.presentation-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--un-navy);
    margin-bottom: 20px;
    position: relative;
}

.presentation-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--un-blue);
    border-radius: var(--radius-full);
    margin-top: 10px;
}

.presentation-text .lead-message {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.coord-signature {
    margin-top: 24px;
    padding-left: 18px;
    border-left: 3px solid var(--un-blue);
}

.coord-signature strong {
    font-size: 1.1rem;
    color: var(--un-navy);
    display: block;
}

.coord-signature span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.presentation-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.presentation-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.presentation-image-wrapper:hover img {
    transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   9. MISSION / VISION / VALEURS (Piliers Institutionnels)
   -------------------------------------------------------------------------- */
.mvv {
    background: var(--un-navy);
    color: var(--white);
    padding: 75px 0;
    position: relative;
}

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

.mvv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 38px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.mvv-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
    border-color: rgba(0, 158, 219, 0.4);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.mvv-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.mvv-card.mission .mvv-icon-box {
    background: rgba(0, 158, 219, 0.2);
    color: var(--un-sky);
    border: 1px solid rgba(0, 158, 219, 0.35);
}

.mvv-card.vision .mvv-icon-box {
    background: rgba(217, 119, 6, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(217, 119, 6, 0.35);
}

.mvv-card.values .mvv-icon-box {
    background: rgba(225, 29, 72, 0.2);
    color: #fb7185;
    border: 1px solid rgba(225, 29, 72, 0.35);
}

.mvv-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 0.94rem;
    color: #cbd5e1;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. NOS ACTIONS (Axes d'Intervention Prioritaires)
   -------------------------------------------------------------------------- */
.actions {
    padding: 85px 0;
    background: var(--bg-subtle);
}

.actions .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.actions .card {
    background: var(--white);
    padding: 38px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
}

.actions .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: var(--un-blue);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.actions .card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 153, 0.3);
    box-shadow: var(--shadow-lg);
}

.actions .card:hover::before {
    opacity: 1;
}

.action-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--un-blue-subtle);
    color: var(--un-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.actions .card:hover .action-icon-box {
    background: var(--un-blue);
    color: var(--white);
    transform: scale(1.08);
}

.actions .card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--un-navy);
    margin-bottom: 12px;
}

.actions .card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. STATS (Chiffres Clés & Impact Vérifié)
   -------------------------------------------------------------------------- */
.stats {
    background: linear-gradient(135deg, #0a192f 0%, #004c73 50%, #006699 100%);
    padding: 75px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.3;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.stat i {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
    color: var(--un-sky);
}

.stat strong.counter {
    font-size: 2.6rem;
    font-weight: 800;
    display: block;
    line-height: 1.15;
    margin-bottom: 6px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat span {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.4;
}

.stat small {
    color: #94a3b8;
    font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   12. DOMAINES D'INTERVENTION
   -------------------------------------------------------------------------- */
.domains {
    padding: 85px 0;
    background: var(--white);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.domain-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.domain-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.domain-card:hover {
    background: var(--un-blue);
    color: var(--white) !important;
    border-color: var(--un-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.domain-card i {
    font-size: 2rem;
    color: var(--un-blue);
    margin-bottom: 14px;
    transition: var(--transition-fast);
}

.domain-card:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.domain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--un-navy);
    transition: color 0.2s ease;
}

.domain-card:hover h3 {
    color: var(--white);
}

/* Page Dédiée Domaines */
.domain-detail {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.domain-detail:hover {
    border-color: rgba(0, 102, 153, 0.3);
    box-shadow: var(--shadow-md);
}

.domain-detail .domain-header {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.domain-detail .domain-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--un-blue-subtle);
    color: var(--un-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 102, 153, 0.15);
}

.domain-detail .domain-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--un-navy);
    margin-bottom: 6px;
}

.domain-detail .domain-text p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.6;
}

.btn-read-more {
    align-self: flex-start;
    margin-top: 14px;
    padding: 6px 16px;
    background: var(--un-blue-subtle);
    border: 1px solid rgba(0, 102, 153, 0.2);
    border-radius: var(--radius-full);
    color: var(--un-blue);
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-read-more:hover {
    background: var(--un-blue);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.domain-more {
    overflow: hidden;
    height: 0;
    transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.domain-more p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-top: 12px;
    border-left: 2px solid var(--un-sky);
    padding-left: 14px;
}

/* --------------------------------------------------------------------------
   13. PARTENAIRES INSTITUTIONNELS (Toujours en couleur originale)
   -------------------------------------------------------------------------- */
.partners {
    padding: 75px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-header h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--un-navy);
    margin-bottom: 8px;
}

.partners-header p {
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 620px;
    margin: 0 auto;
}

/* Grille Institutionnelle des Partenaires */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    width: 175px;
    height: 98px;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
}

/* Logos TOUJOURS EN COULEURS NATURELLES (pas de noir et blanc) */
.partner-card img,
.partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.22s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--un-blue);
}

.partner-card:hover img,
.partner:hover img {
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   14. GALERIE PHOTO & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-page {
    padding: 75px 0;
    background: var(--bg-subtle);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 7px 18px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-body);
    font-size: 0.86rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background: var(--un-blue-subtle);
    color: var(--un-blue);
    border-color: rgba(0, 102, 153, 0.25);
}

.filter-btn.active {
    background: var(--un-blue);
    color: var(--white);
    border-color: var(--un-blue);
    box-shadow: var(--shadow-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 153, 0.3);
}

.gallery-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 25, 47, 0.75);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.gallery-info {
    padding: 18px 20px;
}

.gallery-info h3 {
    font-size: 1.05rem;
    color: var(--un-navy);
    margin-bottom: 6px;
}

.gallery-info p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-content {
    max-width: 900px;
    max-height: 90vh;
    background: var(--un-navy);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
}

.lightbox-content img {
    max-height: 75vh;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.lightbox-content h4 {
    padding: 16px 20px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    background: var(--un-navy);
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 14px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--un-blue);
}

/* --------------------------------------------------------------------------
   15. ÉQUIPE INSTITUTIONNELLE
   -------------------------------------------------------------------------- */
.team-page {
    padding: 75px 0;
    background: var(--bg-subtle);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 153, 0.3);
}

.team-image-box {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--un-navy);
}

.team-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-content {
    padding: 24px 20px;
}

.team-content h3 {
    font-size: 1.2rem;
    color: var(--un-navy);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    color: var(--un-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   16. PIED DE PAGE INSTITUTIONNEL (Footer Style ONU)
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--un-navy);
    color: #cbd5e1;
    padding-top: 75px;
    border-top: 4px solid var(--un-blue);
    position: relative;
}

.footer-sdg-bar {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-bottom: 50px;
}

.footer-sdg-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-sdg-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.footer-sdg-text i {
    color: var(--un-sky);
    font-size: 1.4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 55px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--un-sky);
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--un-sky);
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover i {
    transform: translateX(2px);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.footer-contact-list i {
    color: var(--un-sky);
    margin-top: 4px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-fast);
}

.footer-social-links a:hover {
    background: var(--un-blue);
    border-color: var(--un-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 102, 153, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.84rem;
    color: #64748b;
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE & MOBILE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .presentation-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .slide-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .site-topbar {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--white);
        box-shadow: -6px 0 25px rgba(0,0,0,0.2);
        padding: 80px 24px 30px;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu.open .mobile-close-btn {
        display: flex !important;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 25, 47, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--bg-subtle);
        border: none;
        font-size: 20px;
        color: var(--un-navy);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .carousel {
        height: 480px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .page-banner {
        padding: 48px 0;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .domains-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
