
/* =========================================================
   FILLES POUR LA VIE
   FEUILLE DE STYLE PRINCIPALE
========================================================= */

:root {
    --primary-green: #16845b;
    --dark-green: #0d6545;
    --light-green: #eaf7f1;

    --primary-blue: #1769aa;
    --dark-blue: #0d4774;
    --light-blue: #eef7fc;

    --white: #ffffff;
    --off-white: #f8faf9;

    --dark: #17352d;
    --text: #52635e;
    --muted: #788681;

    --border: #e4ece8;

    --shadow-sm: 0 5px 20px rgba(23, 53, 45, 0.06);
    --shadow-md: 0 15px 40px rgba(23, 53, 45, 0.10);
    --shadow-lg: 0 25px 70px rgba(23, 53, 45, 0.14);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family:
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.topbar-content {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-info {
    display: flex;
    gap: 25px;
}

.topbar-info span,
.topbar-social a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar-social {
    display: flex;
    gap: 15px;
}

.topbar-social a {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-social a:hover {
    color: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid rgba(228, 236, 232, 0.8);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);

    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 82px;
    padding: 10px 0;
}


/* LOGO */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--primary-blue)
    );

    border-radius: 14px;

    font-size: 20px;

    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.logo-tagline {
    color: var(--primary-green);
    font-size: 11px;
    margin-top: 4px;
}


/* NAVIGATION */

.navbar-nav {
    gap: 3px;
}

.nav-link {
    color: #41534e !important;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 11px !important;

    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 11px;
    right: 11px;
    bottom: 2px;

    height: 2px;

    background: var(--primary-green);
    border-radius: 10px;
}


/* HEADER BUTTON */

.btn-accompagnement {
    background: var(--primary-green);
    color: white;

    border: none;

    border-radius: 8px;

    padding: 11px 17px;

    font-size: 13px;
    font-weight: 700;
}

.btn-accompagnement:hover {
    color: white;
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7, 52, 38, 0.92) 0%,
            rgba(7, 52, 38, 0.78) 45%,
            rgba(7, 52, 38, 0.20) 100%
        ),
        linear-gradient(
            135deg,
            #2f8f6c,
            #1769aa
        );

    overflow: hidden;
}


/*
   Lorsque vous aurez les vraies photos de l'ONG,
   vous pourrez remplacer le background ci-dessus par :

   background:
       linear-gradient(...),
       url("../img/hero.jpg") center/cover no-repeat;
*/

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,255,255,0.10),
            transparent 30%
        );
}

.min-vh-hero {
    min-height: 690px;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 22px;

    color: rgba(255,255,255,0.92);

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    backdrop-filter: blur(10px);
}

.hero-content h1 {
    margin-bottom: 20px;

    color: white;

    font-size: clamp(44px, 6vw, 74px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    color: #b8f0d6;
}

.hero-text {
    max-width: 650px;

    margin-bottom: 32px;

    color: rgba(255,255,255,0.88);

    font-size: 20px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 13px 21px;

    color: white !important;

    background: var(--primary-green);

    border: 1px solid var(--primary-green);
    border-radius: 9px;

    font-weight: 700;
    font-size: 14px;
}

.btn-primary-custom:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);

    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    color: white !important;

    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 9px;

    font-weight: 600;
    font-size: 14px;
}

.btn-outline-light-custom:hover {
    color: var(--dark) !important;
    background: white;

    transform: translateY(-2px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 28px;

    color: rgba(255,255,255,0.78);

    font-size: 13px;
}

.hero-note i {
    color: #b8f0d6;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section-padding {
    padding: 95px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.section-title {
    margin-bottom: 17px;

    color: var(--dark);

    font-size: clamp(31px, 4vw, 45px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.8px;
}

.section-subtitle {
    max-width: 680px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 16px;
}

.section-text {
    color: var(--text);
    font-size: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.intro-section {
    background: white;
}

.about-image-wrapper {
    position: relative;

    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-placeholder {
    min-height: 480px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 15px;

    color: white;

    background:
        linear-gradient(
            135deg,
            rgba(22,132,91,0.88),
            rgba(23,105,170,0.88)
        );

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

    font-size: 18px;
    font-weight: 700;
}

.about-image-placeholder i {
    font-size: 80px;
    opacity: 0.9;
}

.experience-card {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 20px;

    background: white;

    border-radius: 15px;

    box-shadow: var(--shadow-md);
}

.experience-card > i {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    background: var(--primary-green);

    border-radius: 12px;
}

.experience-card strong,
.experience-card small {
    display: block;
}

.experience-card strong {
    color: var(--dark);
    font-size: 14px;
}

.experience-card small {
    color: var(--muted);
    font-size: 12px;
}

.mission-box {
    display: flex;
    gap: 16px;

    margin: 25px 0;

    padding: 20px;

    background: var(--light-green);

    border-left: 4px solid var(--primary-green);

    border-radius: 10px;
}

.mission-icon {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-green);

    background: white;

    border-radius: 12px;
}

.mission-box h5 {
    margin-bottom: 5px;

    color: var(--dark);
    font-weight: 750;
}

.mission-box p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-green);

    font-weight: 700;
    font-size: 14px;
}

.text-link:hover {
    color: var(--dark-green);
    gap: 12px;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    background: var(--off-white);
}

.value-card {
    height: 100%;

    padding: 28px 18px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    color: var(--primary-green);

    background: var(--light-green);

    border-radius: 16px;

    font-size: 23px;
}

.value-card h5 {
    margin: 0;

    color: var(--dark);

    font-size: 15px;
    font-weight: 750;
}


/* =========================================================
   ACTIONS
========================================================= */

.actions-section {
    background: white;
}

.action-card {
    height: 100%;

    padding: 32px 28px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22,132,91,0.18);

    box-shadow: var(--shadow-md);
}

.action-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: var(--primary-green);

    background: var(--light-green);

    border-radius: 15px;

    font-size: 24px;
}

.action-card h4 {
    margin-bottom: 12px;

    color: var(--dark);

    font-size: 20px;
    font-weight: 750;
}

.action-card p {
    min-height: 76px;

    color: var(--text);

    font-size: 14px;
}

.action-card a,
.program-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-green);

    font-size: 13px;
    font-weight: 750;
}

.action-card a:hover,
.program-content a:hover {
    gap: 12px;
}


/* =========================================================
   SUPPORT BANNER
========================================================= */

.support-banner {
    position: relative;

    padding: 65px 0;

    color: white;

    background:
        linear-gradient(
            110deg,
            var(--dark-green),
            var(--primary-blue)
        );

    overflow: hidden;
}

.support-banner::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -150px;
    top: -220px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}

.support-content {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.support-label {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    color: rgba(255,255,255,0.7);
}

.support-content h2 {
    margin: 8px 0 10px;

    color: white;

    font-size: clamp(27px, 4vw, 40px);
    font-weight: 800;
}

.support-content p {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,0.82);
}

.btn-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 20px;

    color: var(--dark) !important;

    background: white;

    border: none;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 750;

    white-space: nowrap;
}

.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* =========================================================
   PROGRAMMES
========================================================= */

.programs-section {
    background: var(--off-white);
}

.program-card {
    height: 100%;

    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.program-image {
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--primary-blue)
        );

    font-size: 55px;
}

.program-content {
    padding: 26px;
}

.program-category {
    color: var(--primary-green);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.program-content h4 {
    margin: 8px 0 12px;

    color: var(--dark);

    font-size: 19px;
    font-weight: 750;
    line-height: 1.4;
}

.program-content p {
    margin-bottom: 18px;

    color: var(--text);

    font-size: 14px;
}


/* =========================================================
   FORUM
========================================================= */

.forum-section {
    background: white;
}

.forum-card {
    padding: 38px;

    background:
        linear-gradient(
            145deg,
            var(--light-green),
            var(--light-blue)
        );

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);
}

.forum-card-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--primary-blue)
        );

    border-radius: 17px;

    font-size: 27px;
}

.forum-card h4 {
    margin-bottom: 12px;

    color: var(--dark);

    font-size: 21px;
    font-weight: 750;
}

.forum-card p {
    color: var(--text);
    font-size: 14px;
}

.forum-features {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 20px;
}

.forum-features span {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--dark);

    font-size: 13px;
    font-weight: 600;
}

.forum-features i {
    color: var(--primary-green);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--off-white);
}

.contact-box {
    padding: 50px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);
}

.contact-box h2 {
    margin-bottom: 13px;

    color: var(--dark);

    font-size: clamp(27px, 4vw, 39px);

    font-weight: 800;
}

.contact-box p {
    max-width: 760px;

    margin: 0;

    color: var(--text);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 25px;

    color: rgba(255,255,255,0.68);

    background: #102b24;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 20px;
}

.footer-logo {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--primary-green);

    border-radius: 13px;
}

.footer-brand h4 {
    margin: 0;

    color: white;

    font-size: 16px;
    font-weight: 800;
}

.footer-brand span {
    font-size: 11px;
    color: #91c9b1;
}

.footer p {
    max-width: 480px;

    font-size: 13px;
}

.footer h5 {
    margin-bottom: 20px;

    color: white;

    font-size: 14px;
    font-weight: 750;
}

.footer-links,
.footer-contact {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
    padding-left: 3px;
}

.footer-contact li {
    display: flex;
    gap: 10px;

    margin-bottom: 13px;

    font-size: 13px;
}

.footer-contact i {
    color: #8fd0af;
}

.footer hr {
    margin: 45px 0 22px;

    border-color: rgba(255,255,255,0.10);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    margin-left: 20px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;
}

.footer-bottom a:hover {
    color: white;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--primary-green);

    border: none;
    border-radius: 12px;

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dark-green);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1199px) {

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .btn-accompagnement {
        padding: 10px 12px;
        font-size: 12px;
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 991px) {

    .topbar {
        display: none;
    }

    .navbar {
        min-height: 70px;
    }

    .navbar-collapse {
        margin-top: 15px;

        padding: 15px;

        background: white;

        border: 1px solid var(--border);

        border-radius: 15px;

        box-shadow: var(--shadow-md);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        padding: 11px 8px !important;
    }

    .nav-link.active::after {
        display: none;
    }

    .header-actions {
        margin-top: 10px;
        margin-left: 0 !important;
    }

    .btn-accompagnement {
        display: block;
        width: 100%;

        text-align: center;
    }

    .hero-section {
        min-height: 620px;
    }

    .min-vh-hero {
        min-height: 620px;
    }

    .hero-content h1 {
        letter-spacing: -1px;
    }

    .support-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-box {
        padding: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 18px;
    }

}


/* =========================================================
   RESPONSIVE SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .section-padding {
        padding: 70px 0;
    }

    .logo-name {
        font-size: 14px;
    }

    .logo-mark {
        width: 41px;
        height: 41px;
    }

    .hero-section {
        min-height: 600px;
    }

    .min-vh-hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-image-placeholder {
        min-height: 350px;
    }

    .about-image-wrapper {
        padding-right: 15px;
        padding-bottom: 25px;
    }

    .experience-card {
        right: 0;
    }

    .mission-box {
        flex-direction: column;
    }

    .forum-card {
        padding: 27px;
    }

    .contact-box {
        padding: 27px;
    }

    .footer {
        padding-top: 55px;
    }

}


/* =========================================================
   PAGE ABOUT / QUI SOMMES-NOUS
========================================================= */


/* =========================================================
   HERO INTERNE
========================================================= */

.page-hero {
    position: relative;

    padding: 95px 0 90px;

    color: white;

    background:
        linear-gradient(
            115deg,
            rgba(10, 91, 62, 0.96),
            rgba(20, 91, 145, 0.91)
        );

    overflow: hidden;
}

.page-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -220px;

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 50%;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -130px;
    bottom: -150px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: rgba(255,255,255,0.82);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.page-hero-content h1 {
    margin-bottom: 18px;

    color: white;

    font-size: clamp(42px, 6vw, 64px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.page-hero-content > p {
    max-width: 700px;

    margin-bottom: 25px;

    color: rgba(255,255,255,0.82);

    font-size: 17px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
}

.breadcrumb-custom a {
    color: white;
    font-weight: 700;
}

.breadcrumb-custom span {
    color: rgba(255,255,255,0.65);
}

.breadcrumb-custom i {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
}


/* =========================================================
   PRÉSENTATION
========================================================= */

.about-institution {
    background: white;
}

.institution-visual {
    position: relative;

    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

.institution-main-card {
    width: 100%;
    min-height: 370px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 50px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--primary-green),
            var(--primary-blue)
        );

    border-radius: 28px;

    box-shadow: var(--shadow-lg);
}

.institution-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--primary-green);

    background: white;

    border-radius: 20px;

    font-size: 30px;
}

.institution-main-card > span {
    margin-bottom: 8px;

    color: rgba(255,255,255,0.68);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.institution-main-card h3 {
    margin-bottom: 12px;

    color: white;

    font-size: 31px;
    font-weight: 800;
}

.institution-main-card p {
    max-width: 360px;

    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 14px;
}

.institution-small-card {
    position: absolute;

    right: -5px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 20px;

    background: white;

    border-radius: 15px;

    box-shadow: var(--shadow-md);
}

.institution-small-card > i {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--primary-green);

    border-radius: 12px;
}

.institution-small-card strong,
.institution-small-card small {
    display: block;
}

.institution-small-card strong {
    color: var(--dark);

    font-size: 14px;
}

.institution-small-card small {
    color: var(--muted);

    font-size: 11px;
}

.institution-highlight {
    display: flex;
    gap: 15px;

    margin-top: 25px;
    padding: 20px;

    background: var(--light-green);

    border-radius: 13px;
}

.institution-highlight i {
    color: var(--primary-green);

    font-size: 25px;
}

.institution-highlight p {
    margin: 0;

    color: var(--dark);

    font-size: 14px;
    font-weight: 650;
}


/* =========================================================
   VISION
========================================================= */

.vision-section {
    background: var(--off-white);
}

.vision-card {
    position: relative;

    padding: 55px;

    color: white;

    background:
        linear-gradient(
            120deg,
            var(--dark-green),
            var(--primary-blue)
        );

    border-radius: 28px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.vision-card::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -200px;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 50%;
}

.vision-card .section-label {
    color: #aee8c9;
}

.vision-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: var(--primary-green);

    background: white;

    border-radius: 18px;

    font-size: 28px;
}

.vision-card h2 {
    position: relative;
    z-index: 1;

    color: white;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 800;
}

.vision-text {
    position: relative;
    z-index: 1;

    margin: 0;

    color: rgba(255,255,255,0.87);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   MISSION
========================================================= */

.mission-section {
    background: white;
}

.mission-large-card {
    position: relative;

    padding: 38px;

    background: var(--light-green);

    border: 1px solid #d9eee5;

    border-radius: 22px;
}

.mission-large-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: white;

    background: var(--primary-green);

    border-radius: 15px;

    font-size: 23px;
}

.mission-large-card p {
    margin: 0;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   OBJECTIFS
========================================================= */

.objectives-section {
    background: var(--off-white);
}

.objective-card {
    position: relative;

    height: 100%;

    padding: 30px 27px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition: var(--transition);

    overflow: hidden;
}

.objective-card:hover {
    transform: translateY(-7px);

    border-color: transparent;

    box-shadow: var(--shadow-md);
}

.objective-number {
    position: absolute;

    right: 18px;
    top: 12px;

    color: rgba(22,132,91,0.08);

    font-size: 55px;

    font-weight: 900;

    line-height: 1;
}

.objective-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: var(--primary-green);

    background: var(--light-green);

    border-radius: 14px;

    font-size: 22px;
}

.objective-card h4 {
    position: relative;

    margin-bottom: 12px;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.4;

    font-weight: 750;
}

.objective-card p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
}


/* =========================================================
   VALEURS
========================================================= */

.about-values-section {
    background: white;
}

.about-value-card {
    height: 100%;

    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 19px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 14px;

    transition: var(--transition);
}

.about-value-card:hover {
    background: var(--light-green);

    border-color: #d5ebe1;

    transform: translateY(-3px);
}

.about-value-icon {
    flex-shrink: 0;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-green);

    background: white;

    border-radius: 11px;
}

.about-value-card h5 {
    margin-bottom: 4px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 750;
}

.about-value-card p {
    margin: 0;

    color: var(--text);

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   APPROCHE
========================================================= */

.approach-section {
    background: var(--off-white);
}

.approach-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.approach-item {
    position: relative;

    padding: 30px 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition: var(--transition);
}

.approach-item:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.approach-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: var(--primary-blue);

    background: var(--light-blue);

    border-radius: 15px;

    font-size: 22px;
}

.approach-item > span {
    position: absolute;

    right: 20px;
    top: 20px;

    color: rgba(22,132,91,0.25);

    font-size: 12px;

    font-weight: 800;
}

.approach-item h4 {
    margin-bottom: 8px;

    color: var(--dark);

    font-size: 18px;

    font-weight: 750;
}

.approach-item p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
}


/* =========================================================
   CTA ABOUT
========================================================= */

.about-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            110deg,
            var(--dark-green),
            var(--primary-blue)
        );
}

.about-cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.about-cta-content > div:first-child {
    max-width: 760px;
}

.about-cta-content > div:first-child > span {
    color: rgba(255,255,255,0.65);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.about-cta h2 {
    margin: 9px 0 10px;

    color: white;

    font-size: clamp(26px, 4vw, 39px);

    line-height: 1.25;

    font-weight: 800;
}

.about-cta p {
    margin: 0;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE ABOUT
========================================================= */

@media (max-width: 991px) {

    .page-hero {
        padding: 75px 0;
    }

    .institution-visual {
        min-height: 400px;
    }

    .vision-card {
        padding: 40px;
    }

    .approach-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 575px) {

    .page-hero {
        padding: 60px 0;
    }

    .page-hero-content h1 {
        font-size: 42px;
    }

    .page-hero-content > p {
        font-size: 15px;
    }

    .institution-visual {
        min-height: 350px;

        padding: 10px;
    }

    .institution-main-card {
        min-height: 330px;

        padding: 30px;
    }

    .institution-main-card h3 {
        font-size: 25px;
    }

    .institution-small-card {
        right: -2px;
    }

    .vision-card {
        padding: 30px 25px;
    }

    .vision-text {
        font-size: 15px;
    }

    .mission-large-card {
        padding: 25px;
    }

    .approach-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .about-value-card {
        padding: 15px;
    }

    .about-cta {
        padding: 55px 0;
    }

}





/* =========================================================
   HERO CAROUSEL — FILLES POUR LA VIE
   VERSION PROFESSIONNELLE
========================================================= */

.hero-carousel {
    position: relative;
    width: 100%;
    height: min(780px, calc(100vh - 120px));
    min-height: 650px;
    overflow: hidden;
    background: #0b3024;
}


/* =========================================================
   SLIDE
========================================================= */

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
    width: 100%;
    height: 100%;
    min-height: 650px;
}


.hero-slide {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.hero-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);

    transition:
        transform 8s cubic-bezier(0.2, 0.7, 0.2, 1);
}


/*
   Léger zoom uniquement sur le slide actif.
   Donne un effet premium de mouvement.
*/

.carousel-item.active .hero-background {
    transform: scale(1.08);
}


/* =========================================================
   OVERLAY PROFESSIONNEL
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 39, 28, 0.96) 0%,
            rgba(5, 39, 28, 0.90) 28%,
            rgba(5, 39, 28, 0.68) 52%,
            rgba(5, 39, 28, 0.25) 78%,
            rgba(5, 39, 28, 0.12) 100%
        );

    pointer-events: none;
}


/*
   Deuxième couche légère pour améliorer
   la lisibilité du texte.
*/

.hero-slide::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255,255,255,0.08),
            transparent 28%
        );

    pointer-events: none;
}


/* =========================================================
   DECORATIONS
========================================================= */

.hero-glow {
    position: absolute;
    z-index: 2;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    pointer-events: none;
}


.hero-glow-one {
    right: -160px;
    top: -120px;
}


.hero-glow-two {
    right: 15%;
    bottom: -250px;

    width: 450px;
    height: 450px;
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 5;

    height: 100%;
}


.hero-container > .row {
    min-height: 100%;
}


/* =========================================================
   CONTENU
========================================================= */

.hero-content {
    max-width: 760px;

    padding-top: 20px;

    color: #ffffff;
}


/* =========================================================
   COMPTEUR
========================================================= */

.hero-topline {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 22px;
}


.hero-counter {
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;
}


.hero-counter-total {
    color: rgba(255,255,255,0.45);

    font-size: 12px;
    font-weight: 600;
}


.hero-line {
    display: block;

    width: 65px;
    height: 1px;

    margin-left: 5px;

    background: rgba(255,255,255,0.35);
}


/* =========================================================
   BADGE
========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 15px;

    margin-bottom: 23px;

    color: rgba(255,255,255,0.94);

    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.3px;
}


.hero-badge i {
    color: #a9ebc9;

    font-size: 13px;
}


.hero-badge span {
    color: rgba(255,255,255,0.45);
}


/* =========================================================
   TITRE
========================================================= */

.hero-title {
    max-width: 820px;

    margin: 0 0 23px;

    color: #ffffff;

    font-size: clamp(43px, 5.3vw, 72px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.hero-title span {
    display: block;

    margin-top: 5px;

    color: #b8efd5;
}


/* =========================================================
   TEXTE
========================================================= */

.hero-text {
    max-width: 650px;

    margin: 0 0 31px;

    color: rgba(255,255,255,0.84);

    font-size: clamp(16px, 1.4vw, 19px);

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   BOUTONS
========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.btn-hero-primary,
.btn-hero-secondary {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 13px 22px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.btn-hero-primary {
    color: #ffffff !important;

    background: var(--primary-green);

    border: 1px solid var(--primary-green);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);
}


.btn-hero-primary:hover {
    color: #ffffff !important;

    background: var(--dark-green);

    border-color: var(--dark-green);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.25);
}


.btn-hero-primary i {
    font-size: 16px;

    transition: transform 0.3s ease;
}


.btn-hero-primary:hover i {
    transform: translateX(4px);
}


.btn-hero-secondary {
    color: #ffffff !important;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.50);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.btn-hero-secondary:hover {
    color: var(--dark) !important;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);
}


/* =========================================================
   NOTE
========================================================= */

.hero-note {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 28px;
}


.hero-note-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #a9ebc9;

    background: rgba(255,255,255,0.09);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 50%;
}


.hero-note-icon i {
    font-size: 14px;
}


.hero-note strong,
.hero-note span {
    display: block;
}


.hero-note strong {
    margin-bottom: 1px;

    color: rgba(255,255,255,0.94);

    font-size: 12px;
    font-weight: 700;
}


.hero-note span {
    color: rgba(255,255,255,0.60);

    font-size: 11px;
}


/* =========================================================
   CARTE LATERALE
========================================================= */

.hero-side-card {
    width: 280px;

    padding: 28px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.15),
            rgba(255,255,255,0.06)
        );

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 22px;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.18);
}


.hero-side-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--primary-blue)
        );

    border-radius: 15px;

    font-size: 22px;
}


.hero-side-card > span {
    display: block;

    margin-bottom: 9px;

    color: rgba(255,255,255,0.60);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.hero-side-card strong {
    display: block;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.45;

    font-weight: 750;
}


.hero-side-line {
    width: 45px;
    height: 2px;

    margin: 20px 0 13px;

    background: #9fe5c1;

    border-radius: 10px;
}


.hero-side-card small {
    color: rgba(255,255,255,0.58);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   INDICATEURS
========================================================= */

.hero-indicators {
    position: absolute;

    z-index: 20;

    left: auto;
    right: 70px;
    bottom: 45px;

    width: auto;

    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;
}


.hero-indicators button {
    width: 39px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: rgba(255,255,255,0.50);

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 7px;

    opacity: 1;

    transition: all 0.3s ease;
}


.hero-indicators button span {
    font-size: 10px;
    font-weight: 700;
}


.hero-indicators button:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.15);
}


.hero-indicators button.active {
    width: 52px;

    color: #ffffff;

    background: var(--primary-green);

    border-color: var(--primary-green);
}


/* =========================================================
   FLECHES
========================================================= */

.hero-control {
    position: absolute;

    z-index: 20;

    top: auto;
    bottom: 42px;

    width: 42px;
    height: 42px;

    opacity: 1;

    transform: none;
}


.carousel-control-prev.hero-control {
    left: auto;
    right: 194px;
}


.carousel-control-next.hero-control {
    left: auto;
    right: 140px;
}


.hero-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50%;

    backdrop-filter: blur(8px);

    transition: all 0.3s ease;
}


.hero-control:hover .hero-arrow {
    color: #ffffff;

    background: var(--primary-green);

    border-color: var(--primary-green);

    transform: scale(1.06);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll {
    position: absolute;

    z-index: 20;

    left: 50%;
    bottom: 34px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.48);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;

    transform: translateX(-50%);
}


.hero-scroll i {
    font-size: 13px;

    animation: heroScroll 1.8s infinite;
}


@keyframes heroScroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }

}


/* =========================================================
   ANIMATION DU CONTENU
========================================================= */

.carousel-item .hero-content {
    opacity: 0;

    transform: translateY(25px);

}


.carousel-item.active .hero-content {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.8s ease 0.25s,
        transform 0.8s ease 0.25s;
}


.carousel-item .hero-side-card {
    opacity: 0;

    transform: translateX(35px);
}


.carousel-item.active .hero-side-card {
    opacity: 1;

    transform: translateX(0);

    transition:
        opacity 0.9s ease 0.45s,
        transform 0.9s ease 0.45s;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1199px) {

    .hero-title {
        font-size: clamp(42px, 5.8vw, 64px);
    }

    .hero-side-card {
        width: 250px;
        padding: 24px;
    }

    .hero-indicators {
        right: 45px;
    }

    .carousel-control-prev.hero-control {
        right: 169px;
    }

    .carousel-control-next.hero-control {
        right: 115px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .hero-carousel {
        height: 700px;
        min-height: 700px;
    }


    .hero-carousel .carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide {
        min-height: 700px;
    }


    .hero-background {
        object-position: center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,39,28,0.94),
                rgba(5,39,28,0.75)
            );
    }


    .hero-content {
        max-width: 700px;

        padding: 30px 0 100px;
    }


    .hero-title {
        max-width: 700px;

        font-size: clamp(40px, 7vw, 58px);

        letter-spacing: -1.8px;
    }


    .hero-text {
        max-width: 600px;

        font-size: 17px;
    }


    .hero-indicators {
        left: 50%;
        right: auto;
        bottom: 27px;

        transform: translateX(-50%);
    }


    .hero-control {
        bottom: 80px;
    }


    .carousel-control-prev.hero-control {
        left: 25px;
        right: auto;
    }


    .carousel-control-next.hero-control {
        left: 77px;
        right: auto;
    }


    .hero-scroll {
        display: none;
    }

}


/* =========================================================
   PETIT MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-carousel {
        height: 670px;
        min-height: 670px;
    }


    .hero-carousel .carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide {
        min-height: 670px;
    }


    .hero-container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .hero-content {
        padding-top: 25px;
        padding-bottom: 95px;
    }


    .hero-topline {
        margin-bottom: 17px;
    }


    .hero-badge {
        margin-bottom: 19px;

        padding: 8px 12px;

        font-size: 10px;
    }


    .hero-title {
        margin-bottom: 18px;

        font-size: clamp(35px, 10vw, 48px);

        line-height: 1.04;

        letter-spacing: -1.5px;
    }


    .hero-text {
        margin-bottom: 25px;

        font-size: 15px;

        line-height: 1.6;
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }


    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;

        min-height: 50px;

        padding: 12px 17px;
    }


    .hero-note {
        margin-top: 21px;
    }


    .hero-note span {
        font-size: 10px;
    }


    .hero-indicators {
        bottom: 25px;
    }


    .hero-indicators button {
        width: 32px;
        height: 30px;
    }


    .hero-indicators button.active {
        width: 43px;
    }


    .hero-control {
        width: 36px;
        height: 36px;

        bottom: 74px;
    }


    .hero-arrow {
        width: 36px;
        height: 36px;
    }


    .carousel-control-prev.hero-control {
        left: 22px;
    }


    .carousel-control-next.hero-control {
        left: 67px;
    }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 420px) {

    .hero-carousel {
        height: 650px;
        min-height: 650px;
    }


    .hero-carousel .carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide {
        min-height: 650px;
    }


    .hero-title {
        font-size: 34px;
    }


    .hero-text {
        font-size: 14px;
    }


    .hero-note {
        display: none;
    }


    .hero-content {
        padding-bottom: 90px;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-background,
    .hero-content,
    .hero-side-card,
    .hero-arrow,
    .hero-scroll i {
        transition: none !important;
        animation: none !important;
    }

}



