/* ==========================
   VARIABLES GLOBALES
========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root{

    --green-deep:#29b5f1;
    --green-mid:#3554a3;
    --green-light:#08d2ff;
    --gold:#ff6a00;
    --gold-light:#ff8c33;
    --cream:#fff5f0;
    --white:#ffffff;
    --dark:#093a4b;
    --text-body:#093f63;
    --text-muted:#5a6b5c;
    --border:#d0eadb;
    --shadow-sm:
        0 2px 12px rgba(14,143,68,.08);
    --shadow-md:
        0 8px 32px rgba(14,143,68,.14);
    --shadow-lg:
        0 20px 60px rgba(14,143,68,.18);
    --radius:12px;
    --radius-lg:20px;
    --transition:
        all .35s cubic-bezier(.4,0,.2,1);

}

/* ==========================
   RESET
========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text-body);
    background:var(--white);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

h1,
h2,
h3,
h4{

    font-family:
        'Playfair Display',
        serif;
    color:var(--dark);
    line-height:1.25;
}

/* ==========================
   UTILITAIRES
========================== */

.section-label{
    display:inline-block;
    margin-bottom:12px;
    font-size:.75rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--gold);
}

.section-title{
    font-size:
        clamp(
            1.8rem,
            3vw,
            2.6rem
        );
    font-weight:700;
    margin-bottom:16px;
}

.section-subtitle{
    max-width:560px;
    color:var(--text-muted);
    font-size:1.05rem;
}


.section-subtitle.center{
    margin-left:auto;
    margin-right:auto;
}

/* ==========================
   ANIMATIONS
========================== */

.reveal{
    opacity:0;
    transform:
        translateY(32px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

.reveal-left{
    opacity:0;
    transform:
        translateX(-40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal-left.visible{
    opacity:1;
    transform:none;
}


.reveal-right{
    opacity:0;
    transform:
        translateX(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal-right.visible{
    opacity:1;
    transform:none;
}

/* animation groupe */

.stagger-children > *{
    opacity:0;
    transform:
        translateY(24px);
    transition:
        opacity .5s ease,
        transform .5s ease;
}

.stagger-children.visible > *{

    opacity:1;
    transform:none;
}

.stagger-children.visible > *:nth-child(1){
transition-delay:0s;
}

.stagger-children.visible > *:nth-child(2){
transition-delay:.12s;
}

.stagger-children.visible > *:nth-child(3){
transition-delay:.24s;
}

.stagger-children.visible > *:nth-child(4){
transition-delay:.36s;
}

.stagger-children.visible > *:nth-child(5){
transition-delay:.48s;
}

.stagger-children.visible > *:nth-child(6){
transition-delay:.60s;
}

/* ==========================
   NAVBAR
========================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:
        rgba(255,255,255,.96);
    backdrop-filter:
        blur(12px);
    border-bottom:
        1px solid
        var(--border);
    transition:
        box-shadow .3s;
}

.site-header.scrolled{
    box-shadow:
        var(--shadow-md);
}

.navbar{
    padding:
        12px 0;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
}

/* logo texte */

.brand-logo{
    width:40px;
    height:40px;
    border-radius:50%;
    background:
        var(--green-deep);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
}

.brand-logo-img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
    border:
        2px solid
        rgba(14,143,68,.15);
    transition:
        var(--transition);
}

.navbar-brand:hover .brand-logo-img{
    transform:
        scale(1.06);
    border-color:
        var(--green-mid);
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand-name{
    font-family:
        'Playfair Display';
    font-weight:700;
}

.brand-tagline{
    font-size:.65rem;
    color:
        var(--text-muted);
}

/* liens */

.navbar-nav .nav-link{
    font-size:.9rem;
    font-weight:500;
    color:var(--text-body);
    padding:
        6px 16px
        !important;
    border-radius:
        100px;
    transition:
        var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:
        var(--green-mid);
    background:
        rgba(14,143,68,.08);
}

/* bouton */

.btn-support{
    background:
        var(--gold-light);
    color:white !important;
    border:none;
    border-radius:100px;
    padding:
        9px 22px;
    font-weight:600;
    transition:
        var(--transition);
}

.btn-support:hover{
    background:
        var(--green-mid);
    transform:
        translateY(-2px);
}

/* ==========================
   HERO CAROUSEL
========================== */

.hero-carousel-wrap{
    position:relative;
}

#heroCarousel .carousel-item img{
    width:100%;
    height:600px;
    object-fit:cover;
    filter:
        brightness(.55);
}

.carousel-caption-custom{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:
        80px
        5%
        60px;
    background:
        linear-gradient(
            to top,
            rgba(10,26,16,.85),
            transparent
        );
}

.carousel-caption-custom h2{
    color:white;
    font-size:
        clamp(
            1.8rem,
            4vw,
            3.2rem
        );
}

.carousel-caption-custom p{
    color:
        rgba(
            255,
            255,
            255,
            .82
        );
    max-width:600px;
}

.carousel-indicators [data-bs-target]{
    width:8px;
    height:8px;
    border:none;
    border-radius:50%;
}

.carousel-indicators .active{
    width:24px;
    border-radius:4px;
    background:
        var(--gold);
}

/* ==========================
   HERO TEXTE
========================== */

.hero-text{
    padding:
        80px
        0
        60px;
    background:
        var(--cream);
}

.hero-text h1{
    font-size:
        clamp(
            2rem,
            4vw,
            3.2rem
        );
    color:
        var(--green-deep);
    margin-bottom:20px;
}

.hero-text h1 em{
    color:
        var(--gold);
}

.hero-text .lead{
    color:
        var(--text-muted);
    max-width:500px;
    margin-bottom:32px;
}

.btn-primary-custom{
    background:
        var(--green-mid);
    color:white;
    border:none;
    border-radius:100px;
    padding:
        14px
        32px;
}

.btn-outline-custom{
    background:transparent;
    border:
        2px solid
        var(--green-mid);
    color:
        var(--green-mid);
    border-radius:100px;
    padding:
        12px
        30px;
}

/* responsive */

@media(max-width:991px){
#heroCarousel .carousel-item img{
height:380px;
}

}

@media(max-width:767px){
.hero-text{
padding:
50px
0
40px;
}

#heroCarousel .carousel-item img{
height:280px;
}

.carousel-caption-custom{
padding:
40px
5%
30px;
}
}

/* ==========================
   HERO TEXT SECTION
========================== */

.hero-text {
    padding: 80px 0 60px;
    background: var(--cream);
}

/* Variante avec image d'arrière-plan (pages internes) */
.hero-text.hero-text--bg {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

.hero-text.hero-text--bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 28, 31, 0.88) 0%, rgba(18, 143, 185, 0.78) 100%);
    z-index: -1;
}

.hero-text.hero-text--bg .section-label {
    color: var(--gold-light);
}

.hero-text.hero-text--bg h1 {
    color: var(--white);
}

.hero-text.hero-text--bg .lead {
    color: rgba(255,255,255,.85);
}

@media (max-width: 767px) {
    .hero-text.hero-text--bg {
        padding: 80px 0;
    }
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--green-deep);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-text .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-primary-custom {
    background: var(--green-deep);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,143,68,.3);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--green-deep);
    border: 2px solid var(--green-deep);
    border-radius: 100px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--green-deep);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Stat mini cards */
.stat-mini {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-mini h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-mid);
    margin-bottom: 4px;
}

.stat-mini p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* ==========================
   QUI SOMMES-NOUS
========================== */

.about-section{
    padding:
        90px
        0;
    background:
        var(--white);
}

.about-image-wrap{
    position:relative;
    overflow:hidden;
    border-radius:
        var(--radius-lg);
    box-shadow:
        var(--shadow-lg);
}

.about-image-wrap img{
    width:100%;
    height:460px;
    object-fit:cover;
    transition:
        transform .7s ease;
}

.about-image-wrap:hover img{
    transform:
        scale(1.03);
}

/* badge */

.about-badge{
    position:absolute;
    left:28px;
    bottom:28px;
    background:
        var(--green-deep);
    color:white;
    padding:
        14px
        20px;
    border-radius:
        var(--radius);
}

.about-badge .year{
    font-size:1.8rem;
    font-weight:900;
    line-height:1;
}

.about-badge .label{
    font-size:.75rem;
    opacity:.8;
}

.about-zone{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:14px;
    padding:
        8px
        16px;
    border-radius:
        100px;
    background:
        rgba(
            255,
            106,
            0,
            .12
        );
    border:
        1px solid
        rgba(
            255,
            106,
            0,
            .3
        );
    color:
        var(--green-deep);
}

/* ==========================
   ADN
========================== */

.adn-section{
    padding:
        90px
        0;
    background:
        var(--cream);
}

.adn-card{
    position:relative;
    overflow:hidden;
    background:
        var(--white);
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    padding:
        36px
        28px;
    height:100%;
    transition:
        var(--transition);
}

.adn-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:
        linear-gradient(
            90deg,
            var(--green-mid),
            var(--gold)
        );
    transform:
        scaleX(0);
    transform-origin:left;
    transition:
        transform .4s;
}

.adn-card:hover{
    transform:
        translateY(-8px);
    box-shadow:
        var(--shadow-lg);
    border-color:
        transparent;
}

.adn-card:hover::before{
    transform:
        scaleX(1);
}

.adn-icon{
    width:56px;
    height:56px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:1.4rem;
}

.adn-icon.blue{
    background:
        rgba(
            14,
            143,
            68,
            .08
        );
    color:
        var(--green-mid);
}

.adn-icon.green{
    background:
        rgba(
            255,
            106,
            0,
            .12
        );
    color:
        var(--gold);
}

.adn-icon.red{
    background:
        rgba(
            14,
            143,
            68,
            .12
        );
    color:
        var(--green-deep);
}

.adn-card h3{
    font-size:1.2rem;
    margin-bottom:12px;
}

.adn-card p{
    color:
        var(--text-muted);
    line-height:1.8;
}

/* ==========================
   DOMAINES D'INTERVENTION
========================== */

.domaines-section{
    padding:
        90px
        0;
    background:
        var(--white);
}

.domaine-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    height:100%;
    padding:
        24px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius);
    background:
        var(--white);
    transition:
        var(--transition);
}

.domaine-item:hover{
    transform:
        translateY(-4px);
    background:
        var(--cream);
    border-color:
        var(--green-light);
    box-shadow:
        var(--shadow-sm);
}

.domaine-icon{
    width:52px;
    height:52px;
    flex-shrink:0;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        linear-gradient(
            135deg,
            var(--green-deep),
            var(--green-light)
        );
    color:
        var(--gold-light);
    transition:
        var(--transition);
}

.domaine-item:hover .domaine-icon{
    transform:
        rotate(-6deg)
        scale(1.08);
}

.domaine-item h4{
    font-size:1rem;
    margin-bottom:8px;
}

.domaine-item p{
    color:
        var(--text-muted);
    font-size:.9rem;
    margin:0;
}

/* ==========================
   RÉALISATIONS
========================== */

.realisations-section{
    padding:
        90px
        0;
    background:
        var(--cream);
}

.project-card{
    overflow:hidden;
    height:100%;
    background:
        var(--white);
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius-lg);
    box-shadow:
        var(--shadow-sm);
    transition:
        var(--transition);
}

.project-card:hover{
    transform:
        translateY(-8px);
    border-color:
        transparent;
    box-shadow:
        var(--shadow-lg);
}

.project-card-img-wrap{
    overflow:hidden;
    position:relative;
}

.project-card-img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:
        transform .7s ease;
}

.project-card:hover .project-card-img{
    transform:
        scale(1.06);
}

.project-tag{
    position:absolute;
    top:14px;
    left:14px;
    background:
        var(--green-deep);
    color:white;
    padding:
        4px
        12px;
    border-radius:
        100px;
    font-size:.72rem;
    text-transform:uppercase;
}

.project-card-body{
    padding:
        24px;
}

.project-card-body h5{
    font-size:1.1rem;
    margin-bottom:10px;
}

.project-card-body p{
    color:
        var(--text-muted);
    margin:0;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:767px){
.about-section,
.adn-section,
.domaines-section,
.realisations-section{
padding:
60px
0;
}

.about-image-wrap img{
height:340px;
}

.adn-card{
padding:
28px
22px;
}

}

/* ==========================
   IMPACT EN CHIFFRES
========================== */

.impact-section{
    position:relative;
    overflow:hidden;
    padding:
        90px
        0;
    background:
        var(--green-deep);
}

.impact-section::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:
        rgba(
            255,
            106,
            0,
            .07
        );
}

.impact-section::after{
    content:"";
    position:absolute;
    left:-60px;
    bottom:-60px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:
        rgba(
            255,
            255,
            255,
            .03
        );
}

.impact-section .container{
    position:relative;
    z-index:2;
}

.impact-section .section-title{
    color:white;
}

.impact-section .section-subtitle{
    color:
        rgba(
            255,
            255,
            255,
            .7
        );
}

.impact-stat{
    text-align:center;
    padding:
        36px
        20px;
    border-radius:
        var(--radius-lg);
    background:
        rgba(
            255,
            255,
            255,
            .06
        );
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );
    transition:
        var(--transition);
}

.impact-stat:hover{
    transform:
        translateY(-6px);
    background:
        rgba(
            255,
            255,
            255,
            .1
        );
}

.impact-stat .icon{
    width:54px;
    height:54px;
    margin:
        0 auto 18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        rgba(
            255,
            106,
            0,
            .16
        );
    color:
        var(--gold-light);
}

.impact-stat .number{
    display:block;
    margin-bottom:8px;
    font-family:
        'Playfair Display',
        serif;
    font-size:2.8rem;
    font-weight:900;
    color:
        var(--gold-light);
}

.impact-stat .label{
    color:
        rgba(
            255,
            255,
            255,
            .72
        );
}

/* ==========================
   PARTENAIRES
========================== */

.partenaires-section{
    padding:
        80px
        0;
    background:
        var(--white);
}

.partenaire-item{
    min-height:88px;
    padding:
        18px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius);
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        var(--white);
    transition:
        var(--transition);
}

.partenaire-item:hover{
    transform:
        scale(1.04);
    background:
        var(--cream);
    border-color:
        var(--green-mid);
    box-shadow:
        var(--shadow-sm);
}

.partenaire-item img{
    max-height:60px;
    object-fit:contain;
}

.partenaire-item span{
    text-align:center;
    color:
        var(--green-deep);
    font-size:.8rem;
    font-weight:700;
    text-transform:uppercase;
}

.partenaire-item span::before{
    content:"";
    display:block;
    width:28px;
    height:3px;
    margin:
        0 auto 8px;
    border-radius:3px;
    background:
        linear-gradient(
            90deg,
            var(--green-mid),
            var(--gold)
        );
}

/* ==========================
   CTA
========================== */

.cta-section{
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:
        100px
        0;
    background:
        linear-gradient(
            135deg,
            var(--green-deep),
            var(--green-mid)
        );
}

.cta-section h2{
    color:white;
    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );
    margin-bottom:18px;
}

.cta-section p{
    color:
        rgba(
            255,
            255,
            255,
            .76
        );
    max-width:600px;
    margin:
        0 auto 36px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
}

.btn-cta-white{
    padding:
        14px
        30px;
    border:none;
    border-radius:100px;
    background:white;
    color:
        var(--green-deep);
    font-weight:700;
    transition:
        var(--transition);
}

.btn-cta-white:hover{
    transform:
        translateY(-3px);
    background:
        var(--gold-light);
}

.btn-cta-outline{
    padding:
        12px
        30px;
    border-radius:100px;
    border:
        2px solid
        rgba(
            255,
            255,
            255,
            .5
        );

    color:white;
    transition:
        var(--transition);
}

.btn-cta-outline:hover{
    background:
        rgba(
            255,
            255,
            255,
            .08
        );
}

/* ==========================
   FOOTER
========================== */

.site-footer {
    background: var(--dark);
    padding: 70px 0 0;
    color: rgba(255,255,255,.7);
}

.footer-brand .brand-logo {
    background: var(--green-mid);
}

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tagline { color: rgba(255,255,255,.5); }

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-contact-item span {
    font-size: 0.87rem;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,.3);
    margin: 0;
}

.footer-bottom .gold-text { color: var(--gold); font-weight: 600; }

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .navbar-nav {
        padding: 16px 0;
    }
    .navbar-nav .nav-link {
        display: inline-block;
        margin: 4px 0;
    }
    .btn-support {
        margin-top: 12px;
        width: 100%;
        text-align: center;
    }
    #heroCarousel .carousel-item img {
        height: 380px;
    }
}

/* ==========================
   FORMULAIRES & ALERTES
========================== */

.form-label{
    display:block;
    margin-bottom:8px;
    font-size:.88rem;
    font-weight:600;
    color:
        var(--dark);
}

.form-control{
    width:100%;
    padding:
        12px
        16px;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius);
    background:
        var(--white);
    color:
        var(--text-body);
    transition:
        var(--transition);
}

.form-control:focus{
    outline:none;
    border-color:
        var(--green-mid);
    box-shadow:
        0 0 0 4px
        rgba(
            14,
            143,
            68,
            .12
        );
}

textarea.form-control{
    resize:vertical;
    min-height:140px;
}

.alert{
    padding:
        14px
        18px;
    border-radius:
        var(--radius);
    border:
        1px solid
        transparent;
}

.alert-success{
    color:
        var(--green-deep);
    background:
        rgba(
            14,
            143,
            68,
            .08
        );
    border-color:
        rgba(
            14,
            143,
            68,
            .22
        );
}

.alert-danger{
    color:
        #b95300;
    background:
        rgba(
            255,
            106,
            0,
            .08
        );
    border-color:
        rgba(
            255,
            106,
            0,
            .22
        );
}

/* ==========================
   SECTION HEADER
========================== */

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    margin-bottom:14px;
    font-size:
        clamp(
            1.8rem,
            3vw,
            2.7rem
        );
}

.section-header p{
    max-width:620px;
    margin:auto;
    color:
        var(--text-muted);
}

.section-header.light h2{
    color:white;
}

.section-header.light p{
    color:
        rgba(
            255,
            255,
            255,
            .7
        );
}
/* ==========================
   TIMELINE — NOTRE HISTOIRE
========================== */

.timeline-section {
    padding: 90px 0;
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-mid), var(--gold));
    opacity: .3;
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--green-mid);
    box-shadow: 0 0 0 4px var(--cream);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--green-mid);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================
   VISION / MISSION
========================== */

.vision-mission {
    padding: 90px 0;
    background: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.vision-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vision-icon {
    color: var(--green-mid);
    margin-bottom: 20px;
}

.vision-card:nth-child(2) .vision-icon {
    color: var(--gold);
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.vision-card p {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ==========================
   OBJECTIFS
========================== */

.objectifs-section{
    padding:
        90px
        0;
    background:
        var(--cream);
}

.objectifs-grid{
    display:grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                260px,
                1fr
            )
        );
    gap:20px;
}

.objectif-card{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:
        24px;
    background:
        white;
    border:
        1px solid
        var(--border);
    border-radius:
        var(--radius);
    transition:
        var(--transition);
}

.objectif-card:hover{
    transform:
        translateY(-4px);
    box-shadow:
        var(--shadow-sm);
    border-color:
        var(--green-mid);
}

.objectif-icon{
    width:40px;
    height:40px;
    flex-shrink:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        rgba(
            14,
            143,
            68,
            .1
        );
    color:
        var(--green-mid);
}

.objectif-card p{
    margin:0;
    line-height:1.7;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:767px){
.timeline-section,
.vision-mission,
.objectifs-section{
padding:
60px
0;
}

.timeline{
padding-left:34px;
}

.timeline-dot{
left:-34px;
}

.vision-grid{
grid-template-columns:1fr;
}
}

/* ==========================
   DOMAINES — DÉTAILS
========================== */

.domaines-details {
    padding: 90px 0;
    background: var(--white);
}

.domaines-details .domaine-item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 70px;
    border-radius: 0;
    transition: none;
}

.domaines-details .domaine-item:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.domaines-details .domaine-item:last-child {
    margin-bottom: 0;
}

.domaines-details .domaine-item.reverse {
    flex-direction: row-reverse;
}

.domaines-details .domaine-text {
    flex: 1;
}

.domaines-details .domaine-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.domaines-details .domaine-title img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.domaines-details .domaine-title i {
    width: 48px;
    text-align: center;
}

.domaines-details .domaine-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.domaines-details .domaine-text > p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.domaines-details .domaine-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.domaines-details .domaine-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.domaines-details .domaine-text ul li {
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.domaines-details .domaine-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,106,0,.12);
    color: var(--gold);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domaines-details .domaine-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.domaines-details .domaine-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.domaines-details .domaine-image:hover img {
    transform: scale(1.05);
}

/* ==========================
   PERSPECTIVES PTA
========================== */

.perspectives {
    padding: 90px 0;
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.perspectives::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,106,0,.08);
}

.perspectives::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}

.perspectives .container {
    position: relative;
    z-index: 1;
}

.perspectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.perspective-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: var(--transition);
}

.perspective-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}

.perspective-icon {
    flex-shrink: 0;
    width: 44px;
    text-align: center;
    color: var(--gold-light);
    opacity: .9;
}

.perspective-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.perspective-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    line-height: 1.6;
}

/* ==========================
   SECTION ÉQUIPE
========================== */

.equipe {
    padding: 90px 0;
    background: var(--cream);
}

/* La card est le conteneur de positionnement */
.equipe-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
    cursor: default;
    aspect-ratio: 4 / 5;
    max-width: 320px;
    margin: 0 auto;
}

.equipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Photo occupe toute la card */
.equipe-photo-wrap {
    position: absolute;
    inset: 0;
}

.equipe-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.equipe-card:hover .equipe-photo {
    transform: scale(1.06);
}

/* Overlay dégradé — sur la card */
.equipe-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 31, 14, 0.93) 0%,
        rgba(10, 31, 14, 0.5)  45%,
        transparent             80%
    );
    transition: var(--transition);
    z-index: 1;
}

.equipe-card:hover::after {
    background: linear-gradient(
        to top,
        rgba(10, 31, 14, 0.96) 0%,
        rgba(10, 31, 14, 0.6)  55%,
        transparent             85%
    );
}

/* Infos au-dessus de l'overlay */
.equipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px 24px;
    z-index: 2;
    text-align: left;
}

.equipe-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}

.equipe-poste {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    line-height: 1.6;
}

/* Barre accent haut — z-index 3 au-dessus de ::after */
.equipe-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.equipe-card:hover::before {
    transform: scaleX(1);
}


#apercu-actions{
    padding:
        90px
        0;
}

#apercu-actions .col-md-6,
#apercu-actions .col-lg-4{
    display:flex;
}

#apercu-actions .domaine-item{
    width:100%;
    display:flex;
    flex-direction:column;
    padding:0;
    overflow:hidden;
    border:none;
    background:
        var(--white);
    border-radius:
        var(--radius-lg);
    box-shadow:
        var(--shadow-md);
    transition:
        .4s;
}

#apercu-actions .domaine-item:hover{
    transform:
        translateY(-8px);
    box-shadow:
        var(--shadow-lg);
}

/* contenu texte */

#apercu-actions .domaine-content{
    padding:
        34px
        28px
        26px;
}

#apercu-actions .domaine-icon{
    width:74px;
    height:74px;
    margin:
        0 auto 20px;
    border-radius:50%;
    background:
        linear-gradient(
            135deg,
            var(--green-mid),
            var(--green-deep)
        );
    color:white;
    font-size:28px;
}

#apercu-actions h4{
    text-align:center;
    margin-bottom:14px;
}

#apercu-actions p{
    text-align:center;
    color:
        var(--text-muted);
}

/* IMAGE */
#apercu-actions .action-image{
    width:100%;
    height:280px;
    overflow:hidden;
    margin-top:auto;
}

#apercu-actions .action-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:
        transform .8s ease;
}

#apercu-actions .domaine-item:hover .action-image img{
    transform:
        scale(1.08);
}

/* images spécifiques */

#apercu-actions .action-1{
    object-position:center;
}

#apercu-actions .action-2{
    object-position:center;
}

#apercu-actions .action-3{
    object-position:center;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:767px){
.domaines-details,
.perspectives,
.equipe,
#apercu-actions{
padding:
60px
0;
}
.domaines-details .domaine-item{
flex-direction:column;
gap:30px;
}
.domaines-details .domaine-image img{
height:240px;
}
#apercu-actions .action-image{
height:220px;
}
#apercu-actions .domaine-content{
padding:
26px
22px
20px;
}
}

@media(prefers-reduced-motion:reduce){
*{
transition:none !important;
animation:none !important;
}
}

/* ==========================
   GALERIE PHOTO
========================== */

.galerie-section {
    padding: 90px 0;
    background: var(--cream);
}

.galerie-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: var(--white);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.galerie-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galerie-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,31,14,.88) 0%,
        rgba(14,143,68,.35) 60%,
        transparent 100%
    );
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.galerie-item:hover img    { transform: scale(1.08); }
.galerie-item:hover::after { opacity: 1; }

.galerie-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 14px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.galerie-item:hover .galerie-caption { transform: translateY(0); }

.galerie-caption span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 100px;
}

/* === LIGHTBOX === */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 8, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
    display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,.1);
    border: none;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-close { top: 20px; right: 24px; width: 44px; height: 44px; font-size: 1.4rem; }
.lightbox-prev  { top: 50%; left: 16px;  transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.1rem; }
.lightbox-next  { top: 50%; right: 16px; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.1rem; }

.lightbox-close:hover  { background: var(--gold); }
.lightbox-prev:hover,
.lightbox-next:hover   { background: var(--green-mid); }

.lightbox-counter {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    z-index: 10000;
}

@media (max-width: 767px) {
    .galerie-section  { padding: 60px 0; }
    .galerie-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .galerie-item     { aspect-ratio: 1; }
    .lightbox-prev    { left: 6px; }
    .lightbox-next    { right: 6px; }
}