/* =========================================
   CCM — Cabinet Conseil en Management
   Palette : Blanc & Vert uniquement
   ========================================= */

:root {
    --green-dark:   #1B4332;
    --green-main:   #2D6A4F;
    --green-mid:    #40916C;
    --green-light:  #74C69D;
    --green-pale:   #D8F3DC;
    --green-bg:     #F0F7F2;
    --white:        #FFFFFF;
    --off-white:    #F8FAF9;
    --text:         #1A1A1A;
    --text-light:   #5A6B63;
    --border:       #E0EDE5;
    --shadow-sm:    0 2px 12px rgba(27,67,50,0.07);
    --shadow:       0 8px 40px rgba(27,67,50,0.10);
    --shadow-lg:    0 20px 60px rgba(27,67,50,0.14);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

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

/* ── LABELS & TITLES ── */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 28px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--green-light);
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1rem;
}
.section-title.white { color: #fff; }
.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.8;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0.9rem 0;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 48px; width: auto; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
}
.logo-text small {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.04em;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-link {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--green-main);
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--green-main); }
.btn-rdv {
    background: var(--green-main);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-rdv:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px 80px;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.hero-eyebrow span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-mid);
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--green-light); }
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.hero-title em {
    font-style: normal;
    color: var(--green-main);
    position: relative;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: var(--green-pale);
    z-index: -1;
    border-radius: 2px;
}
.hero-tagline {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.hero-desc {
    font-size: 0.98rem;
    color: var(--text-light);
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
    background: var(--green-main);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,79,0.3); }
.btn-outline {
    border: 2px solid var(--green-main);
    color: var(--green-main);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline:hover { background: var(--green-main); color: #fff; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stat {}
.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
    display: block;
}
.hero-stat .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}
.hero-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Right - photo panel */
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 80px;
    background: linear-gradient(to right, var(--white), transparent);
    z-index: 2;
}
.hero-right::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}
.hero-caption {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    background: rgba(27,67,50,0.9);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    text-align: right;
    backdrop-filter: blur(8px);
}
.hero-caption strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.95rem; }
.hero-caption span { font-size: 0.72rem; opacity: 0.8; letter-spacing: 0.05em; }

/* ── CCM DESCRIPTION ── */
.ccm-description {
    background: var(--green-bg);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
}
.ccm-description-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}
.ccm-desc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.ccm-desc-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ccm-desc-icon {
    width: 44px; height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ccm-desc-icon svg { stroke: var(--green-main); }
.ccm-desc-item strong { display: block; font-size: 0.92rem; color: var(--green-dark); margin-bottom: 0.3rem; font-weight: 700; }
.ccm-desc-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ── VISION BLOCK ── */
.vision-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--green-dark);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
}
.vision-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    flex-shrink: 0;
}
.vision-label svg { stroke: var(--green-light); flex-shrink: 0; }
.vision-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    border: none;
    padding: 0;
    margin: 0;
}

/* ── MISSION SECTION ── */
.mission { padding: 100px 0; background: var(--green-bg); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-style: italic;
    border-left: 3px solid var(--green-light);
    padding-left: 1.2rem;
}
.mission-text { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; }
.mission-targets { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.mission-target {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.mission-target-icon {
    width: 42px; height: 42px;
    background: var(--green-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mission-target strong { display: block; font-size: 0.9rem; color: var(--green-dark); margin-bottom: 0.2rem; }
.mission-target span { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }
.mission-cta-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.8rem; }
.mission-stats-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mission-stat-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--green-bg);
}
.mission-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.mission-stat-item:first-child { padding-top: 0; }
.mission-stat-item svg { stroke: var(--green-main); flex-shrink: 0; margin-top: 2px; }
.mission-stat-item strong { display: block; font-size: 0.9rem; color: var(--green-dark); margin-bottom: 0.15rem; }
.mission-stat-item span { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ── ATOUTS TITLE ── */
.atouts-title { font-size: 0.95rem; color: var(--green-dark); margin: 1.8rem 0 0.8rem; }
.atouts-list .atout-body span { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ── PROMOTEUR BIO ── */
.promoteur-bio {
    margin-top: 4rem;
    background: var(--green-bg);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}
.promoteur-bio-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.promoteur-bio-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--green-pale);
}
.promoteur-bio-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.promoteur-bio-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.2rem; }
.promoteur-bio-role { font-size: 0.8rem; color: var(--text-light); font-style: italic; }
.promoteur-bio-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 0.8rem;
}
.promoteur-bio-text p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1024px) {
    .ccm-desc-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vision-block { flex-direction: column; gap: 1rem; }
    .promoteur-bio-header { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .ccm-desc-grid { grid-template-columns: 1fr; }
    .mission-targets { gap: 0.8rem; }
}

/* ── WHY CHOOSE ── */
.why { padding: 100px 0; background: var(--white); }
.why-header { margin-bottom: 3.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card:first-child { border-left: 1px solid var(--border); }
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green-main);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--green-bg); }
.feature-icon {
    width: 52px; height: 52px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: var(--green-main); }
.feature-card:hover .feature-icon svg { stroke: #fff; }
.feature-icon svg { stroke: var(--green-main); transition: stroke 0.3s; }
.feature-card h3 { font-size: 1.02rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ── ACTIVITIES ── */
.activities { padding: 100px 0; background: var(--off-white); }
.activities-header { text-align: center; margin-bottom: 4rem; }
.activities-header .section-subtitle { margin: 0 auto; }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.activity-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.activity-head {
    background: var(--green-dark);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
}
.activity-head.org { background: var(--green-main); }
.activity-head.amelio { background: var(--green-mid); }
.activity-head::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.activity-head-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.8rem;
}
.activity-head h3 { font-size: 1.3rem; font-weight: 700; color: #fff; }
.activity-body { padding: 1.5rem 1.8rem; flex: 1; }
.activity-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--green-bg);
    font-size: 0.87rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}
.activity-list li::before { content: '›'; color: var(--green-mid); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }
.activity-list li:last-child { border-bottom: none; }
.activity-footer { padding: 1rem 1.8rem 1.5rem; }
.activity-link {
    color: var(--green-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s, color 0.2s;
    text-transform: uppercase;
}
.activity-link:hover { color: var(--green-dark); gap: 0.8rem; }

/* Recrutement banner */
.recrutement-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
    border-radius: 8px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.recrutement-banner h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; margin-bottom: 0.5rem; }
.recrutement-banner p { color: rgba(255,255,255,0.78); font-size: 0.92rem; max-width: 520px; }
.btn-white {
    background: #fff;
    color: var(--green-dark);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }

/* ── SECTORS ── */
.sectors {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.sectors-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.sectors-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.87);
}
.sectors .container { position: relative; z-index: 2; padding: 80px 28px; }
.sectors-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
.sectors-right { color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 380px; text-align: right; }
.sectors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.sector-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 1.8rem 1.3rem;
    transition: all 0.3s;
    cursor: default;
}
.sector-item:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); border-color: rgba(255,255,255,0.3); }
.sector-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: rgba(255,255,255,0.2); margin-bottom: 0.5rem; }
.sector-item h4 { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: #fff; line-height: 1.4; }

/* ── ABOUT / MOT DU DG ── */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.about-photo-wrap { position: relative; padding-bottom: 2rem; }
.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}
.about-badge {
    position: absolute;
    bottom: 0;
    right: -1.5rem;
    background: var(--green-dark);
    color: #fff;
    padding: 1.5rem 1.8rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    text-align: center;
}
.about-badge .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; display: block; }
.about-badge .sm { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.8; }
.about-content { padding-top: 0.5rem; }
.about-name { font-size: 1rem; color: var(--text-light); margin-bottom: 1.5rem; font-style: italic; }
.dg-quote {
    background: var(--green-bg);
    border-left: 4px solid var(--green-main);
    padding: 1.5rem 1.8rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}
.about-text { font-size: 0.92rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
.atouts-list { margin-top: 2rem; }
.atouts-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}
.atouts-list li:last-child { border-bottom: none; }
.atout-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-pale);
    flex-shrink: 0;
    line-height: 1;
    width: 36px;
}
.atout-body strong { display: block; font-size: 0.9rem; color: var(--green-dark); font-weight: 700; margin-bottom: 0.15rem; }
.atout-body span { font-size: 0.85rem; color: var(--text-light); }

/* ── ÉQUIPE ── */
.equipe { padding: 100px 0; background: var(--off-white); }
.equipe-header { text-align: center; margin-bottom: 4rem; }
.equipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.membre-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.membre-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.membre-photo-wrap { height: 300px; overflow: hidden; position: relative; }
.membre-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s; }
.membre-card:hover .membre-photo-wrap img { transform: scale(1.04); }
.placeholder-photo {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--green-main), var(--green-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.placeholder-photo svg { opacity: 0.35; }
.placeholder-photo span { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.membre-info { padding: 1.5rem 1.8rem; }
.membre-info h4 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.3rem; }
.membre-role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-mid); margin-bottom: 1rem; }
.membre-creds li {
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--green-bg);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
}
.membre-creds li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.membre-creds li:last-child { border-bottom: none; }

/* ── RECRUTEMENT ── */
.recrutement { padding: 100px 0; background: var(--white); }
.recrutement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.recrutement-content .section-title { margin-bottom: 1rem; }
.recrutement-content p { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.2rem; }
.recrutement-points { margin-bottom: 2rem; }
.recrutement-points li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    align-items: flex-start;
}
.recrutement-points li::before { content: '→'; color: var(--green-main); font-weight: 700; flex-shrink: 0; }
.recrutement-visual { position: relative; }
.recrutement-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}
.recrutement-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.recrutement-card strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-dark); display: block; }
.recrutement-card span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--green-dark); }
.contact .section-label { color: var(--green-light); }
.contact .section-label::before { background: var(--green-light); }
.contact .section-title { color: #fff; }
.contact-intro { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { stroke: var(--green-light); }
.contact-item h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.contact-item p { color: #fff; font-size: 0.9rem; line-height: 1.6; }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.contact-form {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--green-dark); color: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-light);
    background: rgba(255,255,255,0.13);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--green-mid);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--green-main); }
.form-success {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(116, 198, 157, 0.2);
    border: 1px solid rgba(116,198,157,0.4);
    border-radius: 4px;
    color: var(--green-pale);
    font-size: 0.88rem;
    text-align: center;
}

/* ── FOOTER ── */
footer { background: #0f2a1e; padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-brand img { height: 56px; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.75; }
.footer-tagline { color: var(--green-light) !important; font-style: italic; font-family: 'Playfair Display', serif; font-size: 0.95rem !important; margin-top: 0.7rem; }
.footer-col h5 { font-family: 'Lato', sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--green-light); margin-bottom: 1.2rem; font-weight: 700; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.85; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.footer-legal { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--green-light); }
.footer-legal span { color: rgba(255,255,255,0.15); font-size: 0.8rem; }

/* ── MODALES ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 42, 30, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem 3.5rem;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--off-white);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.2s;
}
.modal-close:hover { background: var(--green-pale); color: var(--green-dark); }
.modal-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.3rem;
}
.modal-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 2rem; font-style: italic; }
.modal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 1.5rem 0 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.modal-content h3:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.modal-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }
.modal-content a { color: var(--green-main); text-decoration: underline; }
.modal-content ul li { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.3rem; line-height: 1.7; }
@media (max-width: 768px) {
    .modal-box { padding: 2rem 1.5rem; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 130px 28px 80px; }
    .hero-right { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo { max-width: 380px; }
    .about-badge { right: 0; }
    .equipe-grid { grid-template-columns: repeat(2, 1fr); }
    .recrutement-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { padding: 0.6rem 1.5rem; }
    .activities-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .equipe-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .recrutement-banner { padding: 2rem; }
    .sectors-top { flex-direction: column; }
    .sectors-right { text-align: left; }
}
