:root {
    --green: #009245;
    --green-dark: #12372a;
    --green-soft: #eef5f0;

    --pink: #c94f74;

    --cream: #f8f3ee;
    --white: #ffffff;

    --text: #252a2e;
    --muted: #6f7774;

    --border: rgba(18, 55, 42, 0.10);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;

    --container: 1240px;

    --shadow:
        0 24px 70px rgba(18, 55, 42, 0.12);
}


/* ==============================
   RESET
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--white);
    color: var(--text);
    direction: rtl;
    line-height: 1.8;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font: inherit;
}


/* ==============================
   GLOBAL
============================== */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* ==============================
   TOPBAR
============================== */

.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-contact,
.topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar a {
    transition: .25s ease;
}

.topbar a:hover {
    color: #fff;
}

.separator {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.24);
}

.language-link {
    font-weight: 700;
}


/* ==============================
   NAVBAR
============================== */

.site-header {
    position: relative;
    z-index: 50;
}

.navbar {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 92px;
    max-height: 78px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #35413c;
    padding-block: 35px;
    transition: color .25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* ==============================
   BUTTONS
============================== */

.btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-donate,
.btn-primary {
    color: #fff;
    background: var(--green);
    box-shadow: 0 10px 26px rgba(0,146,69,.20);
}

.btn-donate:hover,
.btn-primary:hover {
    background: #007f3c;
    box-shadow: 0 14px 34px rgba(0,146,69,.28);
}

.btn-secondary {
    background: #fff;
    border: 1px solid rgba(18,55,42,.15);
    color: var(--green-dark);
}


/* ==============================
   HERO
============================== */

.hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 47%,
            #f5faf7 100%
        );
}

.hero-grid {
    min-height: 690px;

    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    align-items: center;
    gap: 85px;

    position: relative;
    z-index: 3;
}


/* ==============================
   HERO TEXT
============================== */

.eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--green);
    font-size: 14px;
    font-weight: 700;

    background: var(--green-soft);

    padding: 7px 14px;

    border-radius: 999px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pink);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.25;
    letter-spacing: -2px;

    font-weight: 800;

    color: var(--green-dark);

    margin-bottom: 26px;
}

.hero h1 span {
    color: var(--pink);
    position: relative;
}

.hero-description {
    max-width: 610px;

    font-size: 18px;
    line-height: 2;

    color: var(--muted);

    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 45px;
}

.arrow {
    font-size: 18px;
}


/* ==============================
   VALUES
============================== */

.hero-values {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.value-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green);

    font-size: 19px;
}

.value-item strong,
.value-item span {
    display: block;
}

.value-item strong {
    font-size: 14px;
    color: var(--green-dark);
}

.value-item span {
    font-size: 11px;
    color: var(--muted);
}


/* ==============================
   HERO VISUAL
============================== */

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;

    width: 100%;
    max-width: 555px;

    margin-inline: auto;

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    aspect-ratio: .9 / 1;

    background: #ddd;
}

.hero-image-card > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18,55,42,.18),
            transparent 45%
        );
}


/* ==============================
   FLOATING CARDS
============================== */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.7);

    box-shadow:
        0 12px 35px rgba(18,55,42,.16);

    border-radius: 18px;
}

.floating-card-top {
    left: 22px;
    top: 26px;

    padding: 14px 18px;
}

.floating-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--green);
}

.floating-label {
    font-size: 11px;
    color: var(--muted);
}

.floating-card-bottom {
    right: 22px;
    bottom: 24px;

    padding: 15px 18px;
}

.floating-symbol {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #fff1f5;
    color: var(--pink);

    font-size: 20px;
}

.floating-card-bottom strong,
.floating-card-bottom span {
    display: block;
}

.floating-card-bottom strong {
    color: var(--green-dark);
    font-size: 13px;
}

.floating-card-bottom span {
    color: var(--muted);
    font-size: 10px;
}


/* ==============================
   DECORATION
============================== */

.hero-circle {
    position: absolute;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    border: 1px solid rgba(0,146,69,.12);

    right: -80px;
    top: 50%;

    transform: translateY(-50%);

    z-index: -1;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
}

.hero-decoration-one {
    width: 380px;
    height: 380px;

    left: -210px;
    top: 40px;

    background: rgba(201,79,116,.035);
}

.hero-decoration-two {
    width: 450px;
    height: 450px;

    right: -180px;
    bottom: -220px;

    background: rgba(0,146,69,.04);
}


/* ==============================
   MOBILE BUTTON
============================== */

.mobile-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: var(--green-dark);

    border-radius: 999px;
}


/* ==============================
   TABLET
============================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero-grid {
        gap: 40px;
    }

}


/* ==============================
   MOBILE / TABLET
============================== */

@media (max-width: 920px) {

    .topbar {
        display: none;
    }

    .nav-inner {
        min-height: 78px;
    }

    .brand img {
        width: 76px;
    }

    .mobile-toggle {
        display: block;
        margin-right: auto;
    }

    .nav-menu {
        display: none;

        position: absolute;

        top: 78px;
        right: 0;
        left: 0;

        background: #fff;

        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);

        padding: 22px 24px 28px;

        flex-direction: column;
        align-items: stretch;

        box-shadow:
            0 20px 40px rgba(18,55,42,.08);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-links a {
        display: block;

        padding: 12px 0;

        font-size: 15px;

        border-bottom: 1px solid var(--border);
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 55px;

        padding-block: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow {
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-values {
        justify-content: center;
    }

    .hero-image-card {
        max-width: 520px;
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .hero-grid {
        padding-block: 52px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-values {
        grid-template-columns: 1fr;
        gap: 16px;

        text-align: right;
    }

    .value-item {
        justify-content: center;
    }

    .floating-card-top {
        left: 12px;
        top: 12px;
    }

    .floating-card-bottom {
        right: 12px;
        bottom: 12px;
    }

}

/* ==============================
   ABOUT SECTION
============================== */

.about-section {
    padding: 120px 0 110px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 100px;
    align-items: center;
}


/* LABEL */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--green);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 22px;
}

.section-label span {
    width: 30px;
    height: 2px;

    background: var(--pink);
}


/* TEXT */

.about-content h2 {
    max-width: 650px;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.35;

    color: var(--green-dark);

    margin-bottom: 30px;

    font-weight: 700;
}

.about-content h2 strong {
    display: block;
    color: var(--green);
    font-weight: 800;
}

.about-content p {
    max-width: 680px;

    color: var(--muted);

    font-size: 16px;
    line-height: 2;

    margin-bottom: 18px;
}

.about-content .about-lead {
    color: #3d4944;

    font-size: 18px;
    font-weight: 500;
}


/* LINK */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 15px;

    color: var(--green);

    font-size: 15px;
    font-weight: 700;

    transition: gap .25s ease;
}

.text-link:hover {
    gap: 18px;
}

.text-link span {
    font-size: 20px;
}


/* IMAGE */

.about-visual {
    position: relative;
    padding: 15px 0 30px 15px;
}

.about-image-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    aspect-ratio: 0.9 / 1;

    background: var(--green-soft);

    box-shadow:
        0 25px 60px rgba(18,55,42,.13);
}

.about-image-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(18,55,42,.14)
        );

    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
	 object-position: 5% center;
}

.about-image-wrapper:hover img {
    transform: scale(1.035);
}


/* DECORATIVE SHAPE */

.about-visual::before {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    left: -18px;
    top: -18px;

    border-radius: 50%;

    background: var(--green);

    opacity: .08;
}


/* BADGE */

.about-badge {
    position: absolute;

    left: -20px;
    bottom: 5px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px 20px;

    background: rgba(255,255,255,.96);

    border-radius: 18px;

    box-shadow:
        0 18px 40px rgba(18,55,42,.14);

    z-index: 3;
}

.about-badge-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff1f5;

    color: var(--pink);

    font-size: 19px;
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    color: var(--green-dark);
    font-size: 14px;
}

.about-badge span {
    color: var(--muted);
    font-size: 11px;
}


/* HIGHLIGHTS */

.about-highlights {
    margin-top: 90px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 35px 35px;

    min-height: 135px;
}

.highlight + .highlight {
    border-right: 1px solid var(--border);
}

.highlight-number {
    font-size: 15px;
    font-weight: 800;

    color: var(--pink);
}

.highlight strong {
    display: block;

    color: var(--green-dark);

    font-size: 17px;

    margin-bottom: 4px;
}

.highlight p {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* ==============================
   ABOUT RESPONSIVE
============================== */

@media (max-width: 920px) {

    .about-section {
        padding: 85px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-content {
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .about-content p {
        margin-inline: auto;
    }

    .text-link {
        justify-content: center;
    }

    .about-visual {
        max-width: 600px;
        width: 100%;
        margin-inline: auto;
    }

}


@media (max-width: 600px) {

    .about-section {
        padding: 65px 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content .about-lead {
        font-size: 16px;
    }

    .about-highlights {
        grid-template-columns: 1fr;

        margin-top: 60px;
    }

    .highlight + .highlight {
        border-right: 0;
        border-top: 1px solid var(--border);
    }

    .highlight {
        padding: 25px 10px;
    }

    .about-badge {
        left: 8px;
        bottom: 0;
    }

}

/* ==============================
   AREAS SECTION
============================== */

.areas-section {
    background: #12372a !important;
}

.areas-section {
    padding: 115px 0 125px;
    background: var(--green-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    left: -260px;
    bottom: -300px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.areas-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    top: -150px;

    border-radius: 50%;

    background: rgba(0,146,69,.16);
}


/* HEADER */

.areas-header {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr .65fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 65px;
}

.areas-header .section-label {
    color: #bde8d0;
}

.areas-header h2 {
    max-width: 650px;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.3;

    font-weight: 700;
}

.areas-header h2 strong {
    color: #49c982;
}

.areas-header > p {
    color: rgba(255,255,255,.68);

    font-size: 16px;
    line-height: 2;
}


/* LIST */

.areas-list {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255,255,255,.13);
}


/* CARD */

.area-card {
    min-height: 260px;

    padding: 34px 35px;

    position: relative;

    display: grid;
    grid-template-columns: 50px 1fr 50px;

    gap: 18px;

    border-bottom: 1px solid rgba(255,255,255,.13);

    transition:
        background .3s ease,
        transform .3s ease;
}

.area-card:nth-child(odd) {
    border-left: 1px solid rgba(255,255,255,.13);
}

.area-card:hover {
    background: rgba(255,255,255,.035);
}

.area-number {
    font-size: 13px;
    font-weight: 700;

    color: #4bc982;
}

.area-content h3 {
    font-size: 22px;
    line-height: 1.5;

    margin-bottom: 14px;

    color: #fff;
}

.area-content p {
    max-width: 470px;

    color: rgba(255,255,255,.62);

    font-size: 14px;
    line-height: 2;
}

.area-symbol {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;

    color: #4bc982;

    font-size: 20px;

    transition:
        background .3s ease,
        color .3s ease;
}

.area-card:hover .area-symbol {
    background: #009245;
    color: #fff;
    border-color: #009245;
}


/* FEATURED */

.area-featured {
    background: rgba(0,146,69,.16);
}

.area-featured .area-content h3 {
    font-size: 25px;
}

.area-featured .area-symbol {
    background: #009245;
    border-color: #009245;
    color: #fff;
}


/* LINK */

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 22px;

    color: #55d18b;

    font-size: 13px;
    font-weight: 700;
}

.area-link span {
    font-size: 18px;
}

.area-link:hover {
    color: #fff;
}


/* =========================================
   AREAS - DOMAINES D'INTERVENTION
========================================= */

.areas-section {
    padding: 110px 0 120px;
    background: #103d2f;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -350px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.areas-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -180px;
    top: -180px;
    background: rgba(0,146,69,0.15);
    border-radius: 50%;
    pointer-events: none;
}


/* HEADER */

.areas-header {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 90px;
    align-items: end;

    margin-bottom: 60px;
}

.areas-header .section-label {
    color: #54cf8a;
}

.areas-header h2 {
    margin: 20px 0 0;

    max-width: 650px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.3;
    font-weight: 700;
}

.areas-header h2 strong {
    color: #4dcc83;
}

.areas-header > p {
    margin: 0;

    color: rgba(255,255,255,0.68);

    font-size: 16px;
    line-height: 2;
}


/* LIST */

.areas-list {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid rgba(255,255,255,0.14);
}


/* CARDS */

.area-card {
    min-height: 260px;

    padding: 35px;

    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 50px;
    gap: 20px;

    border-bottom: 1px solid rgba(255,255,255,0.14);

    transition: background 0.3s ease;
}

.area-card:nth-child(odd) {
    border-left: 1px solid rgba(255,255,255,0.14);
}

.area-card:hover {
    background: rgba(255,255,255,0.035);
}


/* NUMBER */

.area-number {
    color: #4dcc83;

    font-size: 13px;
    font-weight: 700;
}


/* CONTENT */

.area-content h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.5;
}

.area-content p {
    margin: 0;

    max-width: 500px;

    color: rgba(255,255,255,0.65);

    font-size: 14px;
    line-height: 2;
}


/* SYMBOL */

.area-symbol {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;

    color: #4dcc83;

    font-size: 19px;
}

.area-featured {
    background: rgba(0,146,69,0.15);
}

.area-featured .area-content h3 {
    font-size: 25px;
}

.area-featured .area-symbol {
    background: #009245;
    border-color: #009245;
    color: #ffffff;
}


/* LINK */

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 22px;

    color: #55d18b;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.area-link:hover {
    color: #ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 920px) {

    .areas-section {
        padding: 85px 0;
    }

    .areas-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .area-card:nth-child(odd) {
        border-left: 0;
    }
}


@media (max-width: 600px) {

    .areas-section {
        padding: 70px 0;
    }

    .areas-header h2 {
        font-size: 38px;
    }

    .area-card {
        grid-template-columns: 35px 1fr;
        padding: 28px 20px;
    }

    .area-symbol {
        display: none;
    }

    .area-content h3 {
        font-size: 19px;
    }

    .area-featured .area-content h3 {
        font-size: 21px;
    }
}

/* =========================================
   BENEFICIARIES
========================================= */

.beneficiaries-section {
    padding: 115px 0 125px;
    background: #f8faf8;
    position: relative;
    overflow: hidden;
}

.beneficiaries-header {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 60px;
}

.beneficiaries-header h2 {
    margin: 18px 0 0;
    max-width: 600px;

    color: var(--green-dark);

    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.35;
}

.beneficiaries-header h2 strong {
    color: var(--green);
}

.beneficiaries-header > p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 2;
}


/* GRID */

.beneficiaries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
}


/* CARD */

.beneficiary {
    position: relative;

    min-height: 245px;

    padding: 32px 35px;

    display: grid;
    grid-template-columns: 45px 1fr 45px;
    gap: 20px;

    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #ffffff;

    transition:
        background .3s ease,
        transform .3s ease;
}

.beneficiary:hover {
    background: #f1f7f3;
}

.beneficiary-number {
    color: var(--pink);

    font-size: 13px;
    font-weight: 800;
}

.beneficiary-content h3 {
    margin: 0 0 15px;

    color: var(--green-dark);

    font-size: 24px;
    line-height: 1.5;
}

.beneficiary-content p {
    margin: 0;

    max-width: 450px;

    color: var(--muted);

    font-size: 14px;
    line-height: 2;
}

.beneficiary-arrow {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--green);

    font-size: 19px;

    transition:
        background .3s ease,
        color .3s ease;
}

.beneficiary:hover .beneficiary-arrow {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}


/* FEATURED */

.beneficiary-large {
    background: var(--green-dark);
}

.beneficiary-large .beneficiary-number,
.beneficiary-large .beneficiary-content h3 {
    color: #ffffff;
}

.beneficiary-large .beneficiary-content p {
    color: rgba(255,255,255,.68);
}

.beneficiary-large .beneficiary-arrow {
    border-color: rgba(255,255,255,.2);
    color: #55d18b;
}

.beneficiary-wide {
    grid-column: span 2;
    min-height: 210px;
}

.beneficiary-accent {
    background: #fff2f6;
}

.beneficiary-accent .beneficiary-number {
    color: var(--pink);
}


/* RESPONSIVE */

@media (max-width: 920px) {

    .beneficiaries-section {
        padding: 85px 0;
    }

    .beneficiaries-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .beneficiaries-grid {
        grid-template-columns: 1fr;
    }

    .beneficiary-wide {
        grid-column: span 1;
    }

}


@media (max-width: 600px) {

    .beneficiaries-section {
        padding: 70px 0;
    }

    .beneficiaries-header h2 {
        font-size: 38px;
    }

    .beneficiary {
        min-height: auto;
        padding: 28px 20px;

        grid-template-columns: 35px 1fr;
    }

    .beneficiary-arrow {
        display: none;
    }

    .beneficiary-content h3 {
        font-size: 20px;
    }

}

/* =========================================
   CENTRE SOCIAL DE PROXIMITE
========================================= */

.center-section {
    padding: 120px 0;
    background: #ffffff;
}

.center-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 90px;
    align-items: center;
}


/* VISUAL */

.center-visual {
    position: relative;
    padding: 15px 15px 35px 0;
}

.center-image {
    position: relative;

    width: 100%;
    aspect-ratio: 0.92 / 1;

    overflow: hidden;

    border-radius: 30px;

    background: #e9f2ed;

    box-shadow: 0 25px 60px rgba(18,55,42,.12);
}

.center-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(16,61,47,.18)
    );
}

.center-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}

.center-image:hover img {
    transform: scale(1.04);
}


/* LOCATION */

.center-location {
    position: absolute;

    left: -20px;
    bottom: 5px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px 22px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 18px 40px rgba(18,55,42,.14);

    z-index: 2;
}

.center-location > span {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff1f5;

    font-size: 18px;
}

.center-location strong,
.center-location small {
    display: block;
}

.center-location strong {
    color: var(--green-dark);
    font-size: 14px;
}

.center-location small {
    margin-top: 2px;

    color: var(--muted);
    font-size: 11px;
}


/* CONTENT */

.center-content {
    max-width: 650px;
}

.center-content h2 {
    margin: 18px 0 25px;

    color: var(--green-dark);

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.35;
}

.center-content h2 strong {
    color: var(--green);
}

.center-intro {
    max-width: 620px;

    margin-bottom: 38px;

    color: var(--muted);

    font-size: 17px;
    line-height: 2;
}


/* SERVICES */

.center-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.center-service {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 25px 20px 25px 0;
}

.center-service + .center-service {
    border-right: 1px solid var(--border);
    padding-right: 25px;
}

.service-icon {
    color: var(--pink);

    font-size: 12px;
    font-weight: 800;
}

.center-service h3 {
    margin: 0 0 7px;

    color: var(--green-dark);

    font-size: 16px;
}

.center-service p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.9;
}


/* CONTACT */

.center-contact {
    margin-top: 28px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);

    color: #ffffff;

    font-size: 17px;
}

.center-contact span,
.center-contact a {
    display: block;
}

.center-contact span {
    margin-bottom: 3px;

    color: var(--muted);

    font-size: 11px;
}

.center-contact a {
    color: var(--green-dark);

    font-size: 21px;
    font-weight: 800;

    text-decoration: none;
}


/* BUTTON */

.center-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    padding: 13px 21px;

    border: 1px solid var(--green);

    border-radius: 30px;

    color: var(--green);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}

.center-button:hover {
    background: var(--green);
    color: #ffffff;
}

.center-button span {
    font-size: 18px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 920px) {

    .center-section {
        padding: 90px 0;
    }

    .center-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .center-visual {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .center-content {
        max-width: 700px;
        margin: auto;
    }

}


@media (max-width: 600px) {

    .center-section {
        padding: 70px 0;
    }

    .center-content h2 {
        font-size: 38px;
    }

    .center-services {
        grid-template-columns: 1fr;
    }

    .center-service + .center-service {
        border-right: 0;
        border-top: 1px solid var(--border);

        padding-right: 0;
    }

    .center-service {
        padding: 20px 0;
    }

    .center-location {
        left: 8px;
    }

    .center-contact a {
        font-size: 18px;
    }

}

/* ==========================================================
   PARTNERS
   ========================================================== */

.partners-section {
    padding: 95px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf8 100%
        );
}

.partners-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.partners-heading .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #009245;
    font-size: 14px;
    font-weight: 700;
}

.partners-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(32px, 4vw, 46px);
    color: #1d2d24;
    font-weight: 800;
}

.partners-heading p {
    margin: 0;
    color: #6d7b73;
    font-size: 16px;
    line-height: 1.9;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.partner-card {
    min-height: 250px;
    padding: 30px 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e5ece8;
    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 12px 35px rgba(33, 66, 48, 0.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 146, 69, .22);

    box-shadow:
        0 20px 45px rgba(33, 66, 48, 0.11);
}

.partner-logo {
    height: 105px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
}

.partner-logo img {
    display: block;

    max-width: 175px;
    max-height: 100px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: saturate(.92);
}

.partner-card h3 {
    margin: 0;

    color: #283a30;

    font-size: 15px;
    line-height: 1.8;
    font-weight: 700;
}


/* Responsive */

@media (max-width: 1050px) {

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .partners-section {
        padding: 70px 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: 220px;
    }

}

/* ==========================================================
   HOME — DIRECTION ARTISTIQUE / CONTRASTE
   Ajout AESP - 28/08/2026
   ========================================================== */

/* --- Rythme général : conserver le Hero/About, resserrer la suite --- */
.about-section {
    padding-bottom: 95px;
}

.about-highlights {
    margin-top: 72px;
}

/* ==========================================================
   CENTRE SOCIAL — RUPTURE VISUELLE FORTE
   ========================================================== */

.center-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--green-dark);
    color: #ffffff;
}

.center-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -250px;
    bottom: -330px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}

.center-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -190px;
    top: -210px;
    border-radius: 50%;
    background: rgba(0,146,69,.18);
    pointer-events: none;
}

.center-section .container {
    position: relative;
    z-index: 2;
}

.center-grid {
    gap: 80px;
}

.center-image {
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 70px rgba(0,0,0,.22);
}

.center-image::after {
    background: linear-gradient(
        180deg,
        transparent 48%,
        rgba(10,38,29,.34)
    );
}

.center-location {
    border: 1px solid rgba(255,255,255,.70);
    box-shadow: 0 18px 45px rgba(0,0,0,.20);
}

.center-content .section-label {
    color: #bde8d0;
}

.center-content h2 {
    color: #ffffff;
}

.center-content h2 strong {
    color: #54cf8a;
}

.center-intro {
    color: rgba(255,255,255,.72);
}

.center-services {
    border-top-color: rgba(255,255,255,.15);
    border-bottom-color: rgba(255,255,255,.15);
}

.center-service + .center-service {
    border-right-color: rgba(255,255,255,.15);
}

.center-service h3 {
    color: #ffffff;
}

.center-service p {
    color: rgba(255,255,255,.66);
}

.service-icon {
    color: #f0a2b8;
}

.center-contact {
    width: fit-content;
    margin-top: 32px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}

.center-contact .contact-icon {
    background: #ffffff;
    color: var(--green);
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

.center-contact span {
    color: rgba(255,255,255,.62);
}

.center-contact a {
    color: #ffffff;
    letter-spacing: .3px;
}

.center-button {
    margin-top: 22px;
    border-color: rgba(255,255,255,.70);
    color: #ffffff;
}

.center-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--green-dark);
}

/* ==========================================================
   DERNIERES ACTIVITES — PLUS DE PRESENCE, MOINS DE VIDE
   Les !important compensent le bloc <style> actuellement dans index.php
   ========================================================== */

.home-activities-section {
    padding: 88px 0 92px !important;
    background: var(--cream) !important;
}

.home-activities-header {
    gap: 55px !important;
    margin-bottom: 38px !important;
}

.home-activities-header h2 {
    font-size: clamp(34px, 4vw, 48px) !important;
}

.home-activities-grid {
    gap: 26px !important;
}

.home-activity-card {
    border-radius: 22px !important;
    border: 1px solid rgba(18,55,42,.09) !important;
    box-shadow: 0 16px 38px rgba(18,55,42,.08) !important;
}

.home-activity-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 24px 52px rgba(18,55,42,.14) !important;
}

.home-activity-image {
    height: 270px !important;
}

.home-activity-body {
    padding: 25px 26px 28px !important;
}

.home-activity-body h3 {
    font-size: 22px !important;
}

.home-activity-body time {
    color: var(--pink) !important;
}

.home-activity-category {
    box-shadow: 0 7px 20px rgba(18,55,42,.12);
}

/* ==========================================================
   PARTENAIRES — PLUS DE RELIEF, TOUJOURS INSTITUTIONNEL
   ========================================================== */

.partners-section {
    padding: 82px 0 88px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f8f5 100%
        );
}

.partners-heading {
    margin-bottom: 40px;
}

.partners-grid {
    gap: 20px;
}

.partner-card {
    position: relative;
    min-height: 235px;
    padding: 24px 20px 26px;
    overflow: hidden;
    border-color: rgba(18,55,42,.09);
    box-shadow: 0 12px 32px rgba(18,55,42,.055);
}

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--green);
    opacity: .65;
}

.partner-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 44px rgba(18,55,42,.12);
}

.partner-logo {
    height: 112px;
    margin-bottom: 18px;
    padding: 13px;
    border-radius: 16px;
    background: #f8faf8;
}

.partner-logo img {
    max-width: 168px;
    max-height: 88px;
    filter: saturate(1);
}

.partner-card h3 {
    color: var(--green-dark);
}

/* ==========================================================
   RESPONSIVE — HOME
   ========================================================== */

@media (max-width: 920px) {
    .center-section {
        padding: 82px 0;
    }

    .center-grid {
        gap: 52px;
    }

    .home-activities-section {
        padding: 78px 0 !important;
    }

    .home-activity-image {
        height: 250px !important;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding-bottom: 62px;
    }

    .about-highlights {
        margin-top: 52px;
    }

    .center-section {
        padding: 68px 0;
    }

    .center-contact {
        width: 100%;
    }

    .center-service + .center-service {
        border-right: 0;
        border-top-color: rgba(255,255,255,.15);
    }

    .home-activities-section {
        padding: 65px 0 70px !important;
    }

    .home-activities-header {
        margin-bottom: 30px !important;
    }

    .home-activity-image {
        height: 225px !important;
    }

    .partners-section {
        padding: 68px 0 72px;
    }

    .partner-card {
        min-height: 215px;
    }
}

/* =========================================
   HOME - Highlights plus vivants
   ========================================= */

.about-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:32px;
}

.about-highlights .highlight{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:16px;

    padding:26px 24px;

    background:#fff;
    border:1px solid rgba(18,55,42,.08);
    border-radius:18px;

    box-shadow:0 10px 28px rgba(18,55,42,.06);

    transition:.25s ease;
}

.about-highlights .highlight:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 36px rgba(18,55,42,.10);
    border-color:rgba(0,146,69,.18);
}

.highlight-number{
    flex:0 0 44px;
    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#eef5f0;
    color:#c94f74;

    font-size:14px;
    font-weight:800;
}

.about-highlights .highlight strong{
    display:block;
    margin:2px 0 7px;

    color:#12372a;
    font-size:21px;
    font-weight:800;
}

.about-highlights .highlight p{
    margin:0;
    color:#6f7774;
    font-size:14px;
    line-height:1.9;
}

/* Petite touche couleur */
.about-highlights .highlight::after{
    content:"";
    position:absolute;
    bottom:0;
    right:24px;

    width:42px;
    height:3px;

    border-radius:8px 8px 0 0;
    background:#009245;
}

.about-highlights .highlight:nth-child(2)::after{
    background:#c94f74;
}


/* =========================================
   Réduire l'espace avant la section centre
   ========================================= */

/* section qui contient les highlights */
.home-about,
.about-section{
    padding-bottom:50px !important;
}

/* section suivante */
.center-section{
    margin-top:0 !important;
    padding-top:55px !important;
}


/* =========================================
   Responsive
   ========================================= */

@media(max-width:900px){

    .about-highlights{
        grid-template-columns:1fr;
        gap:14px;
    }

    .about-highlights .highlight{
        padding:22px 20px;
    }

    .center-section{
        padding-top:35px !important;
    }

}

/* =========================================
   AESP - Bureau de l'association
   ========================================= */

.board-section{
    padding:90px 0;
    background:#f8f3ee;
}

.board-section .section-heading{
    max-width:720px;
    margin:0 auto 45px;
    text-align:center;
}

.board-section .section-eyebrow{
    display:inline-block;
    margin-bottom:10px;
    color:#c94f74;
    font-size:13px;
    font-weight:800;
}

.board-section .section-heading h2{
    margin:0 0 12px;
    color:#12372a;
    font-size:38px;
    font-weight:800;
}

.board-section .section-heading p{
    margin:0;
    color:#6f7774;
    line-height:1.9;
}

.board-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:22px;
}

.board-card{
    grid-column:span 2;
}

/* Les deux cartes de la deuxième ligne sont centrées */
.board-card:nth-child(4){
    grid-column:2 / span 2;
}

.board-card:nth-child(5){
    grid-column:4 / span 2;
}

.board-card{
    overflow:hidden;
    background:#fff;
    border:1px solid rgba(18,55,42,.08);
    border-radius:22px;
    box-shadow:0 12px 34px rgba(18,55,42,.06);
    transition:.25s ease;
}

.board-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 42px rgba(18,55,42,.11);
}

.board-photo{
    height:275px;
    overflow:hidden;
    background:#eef5f0;
}

.board-photo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center top;
}

.board-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#eef5f0,#e4efe8);
}

.board-placeholder span{
    width:92px;
    height:92px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#fff;
    border:1px solid rgba(0,146,69,.12);

    color:#009245;
    font-size:28px;
    font-weight:800;

    box-shadow:0 10px 25px rgba(18,55,42,.07);
}

.board-content{
    padding:24px 22px 26px;
}

.board-role{
    display:inline-block;
    margin-bottom:8px;
    color:#c94f74;
    font-size:12px;
    font-weight:800;
}

.board-content h3{
    margin:0 0 10px;
    color:#12372a;
    font-size:22px;
    font-weight:800;
}

.board-content p{
    margin:0;
    color:#6f7774;
    font-size:13px;
    line-height:1.9;
}

/* légère mise en avant de la présidente */
.board-card-featured{
    border-color:rgba(0,146,69,.18);
}

@media(max-width:1050px){
    .board-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:620px){
    .board-section{
        padding:65px 0;
    }

    .board-grid{
        grid-template-columns:1fr;
    }

    .board-photo{
        height:320px;
    }

    .board-section .section-heading h2{
        font-size:31px;
    }
}

.phone-ltr{
    direction:ltr;
    unicode-bidi:isolate;
    display:inline-block;
}

/* Personnage dans le choix "تحدث مع أمل" */
.aesp-chat-character{
    display:block;
    width:58px !important;
    height:58px !important;
    min-width:58px;
    max-width:58px;

    object-fit:cover;
    object-position:50% 12%;

    border-radius:18px;
    background:#eef5f0;

    box-shadow:0 8px 18px rgba(18,55,42,.14);
}

/* Petit avatar dans la conversation */
.aesp-chat-avatar-img{
    flex:0 0 52px !important;

    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    max-width:52px !important;

    display:block !important;

    object-fit:cover !important;
    object-position:50% 12% !important;

    border-radius:50% !important;

    background:#eef5f0;
    border:2px solid #fff;

    box-shadow:0 5px 14px rgba(18,55,42,.14);
}

.aesp-chat-heading{
    display:flex;
    align-items:center;
    gap:12px;
}

/* =========================================================
   AMAL - VIDEO HOME
   ========================================================= */

.amal-video-section{
    padding:70px 0;
    background:#f8f3ee;
    overflow:hidden;
}

.amal-video-section .container{
    width:min(1240px, calc(100% - 40px));
    margin-inline:auto;
}

.amal-video-grid{
    display:grid;
    grid-template-columns:minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap:50px;
    align-items:center;
    width:100%;
}

.amal-video-content{
    min-width:0;
}

.amal-video-content h2{
    margin:10px 0 18px;
    color:#12372a;
    font-size:42px;
    line-height:1.25;
}

.amal-video-content p{
    max-width:500px;
    margin:0 0 28px;
    color:#6f7774;
    font-size:17px;
    line-height:2;
}

.amal-video-media{
    min-width:0;
    width:100%;
    overflow:hidden;
    border-radius:28px;
    background:#12372a;
    box-shadow:0 25px 55px rgba(18,55,42,.16);
}

.amal-video-media video{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
}

@media(max-width:900px){

    .amal-video-section{
        padding:45px 0;
    }

    .amal-video-section .container{
        width:min(100% - 28px, 1240px);
        margin-inline:auto;
    }

    .amal-video-grid{
        display:flex;
        flex-direction:column;
        gap:28px;
        width:100%;
    }

    .amal-video-content{
        width:100%;
        max-width:none;
        text-align:right;
    }

    .amal-video-content h2{
        font-size:32px;
        line-height:1.35;
        margin:8px 0 14px;
    }

    .amal-video-content p{
        width:100%;
        max-width:none;
        font-size:15px;
        line-height:1.9;
        margin:0 0 22px;
    }

    .amal-video-media{
        width:100%;
        max-width:100%;
        margin:0 auto;
        border-radius:20px;
    }

    .amal-video-media video{
        display:block;
        width:100%;
        height:auto;
    }
}

.amal-video-media{
    width:100%;
    max-width:520px;
    justify-self:center;
}

