* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ef6700;
    --primary-dark: #c95500;
    --secondary: #00692f;
    --secondary-dark: #004d22;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --cream: #f9f5ef;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* État scroll : header plus compact */
.header.header-shrink {
    padding: 6px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.header.header-shrink .logo img {
    height: 38px !important;
}

.header.header-shrink .logo-text strong {
    font-size: 11px;
}

.header.header-shrink .logo-text em {
    display: none;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 72px;
    width: auto;
    transition: height 0.3s ease;
}

.logo-text {
    font-size: 10px;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-text strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
}

.logo-text em {
    font-style: normal;
    font-size: 9px;
    color: var(--text-light);
    display: block;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-desktop a {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--text-light);
    padding: 8px 10px;
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--secondary);
}

.nav-desktop a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--primary);
}

.btn-adherent {
    border: 2px solid var(--secondary);
    color: var(--secondary) !important;
    padding: 6px 14px !important;
    border-radius: 2px;
    transition: all 0.2s;
}

.btn-adherent:hover {
    background: var(--secondary);
    color: var(--white) !important;
}

/* Hamburger mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Off-canvas nav */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transition: right 0.35s ease;
    box-shadow: -4px 0 15px rgba(0,0,0,0.15);
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.offcanvas.open {
    right: 0;
}

.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.offcanvas a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.offcanvas a.active {
    color: var(--secondary);
}

/* ===== HERO / CAROUSEL ===== */
.hero {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    z-index: 0;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.hero-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 30px 40px;
    max-width: 420px;
}

.hero-caption h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.hero-caption p {
    font-size: 13px;
    opacity: 0.92;
    line-height: 1.6;
}

.hero-caption .hero-slogan {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
}

.hero-badge-orange {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-dots {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 12px 20px;
    position: relative;
    z-index: 2;
}

.hero-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dots .dot.active {
    background: var(--primary);
}

/* Boutons flèches carrousel */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
    color: var(--secondary);
}

.hero-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-60%) scale(1.08);
}

.hero-prev { left: 14px; }
.hero-next { right: 14px; }

/* ===== CHIFFRES CLÉS BAND ===== */
.chiffres-band {
    background: var(--secondary);
    padding: 36px 20px;
}

.chiffres-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
}

.chiffre-item {
    color: var(--white);
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.chiffre-item:last-child {
    border-right: none;
}

.chiffre-item .val {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.chiffre-item .label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mission-text .slogan {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    font-style: italic;
}

.mission-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.mission-text .btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: background 0.2s;
}

.mission-text .btn-primary:hover {
    background: var(--primary-dark);
}

.mission-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ===== PILLIERS / FEATURES ===== */
.pilliers {
    background: var(--cream);
    padding: 70px 20px;
}

.pilliers-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pilliers h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pilliers .subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.pilliers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.pillier-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-top: 4px solid var(--secondary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pillier-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.pillier-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillier-card h3 {
    font-size: 12px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pillier-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ABOUT BAND ===== */
.about-band {
    background: var(--primary);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.about-band::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 40px 40px 0 0;
}

.about-band-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.about-band-inner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-band-inner p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 24px;
}

.about-band-inner a {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}

.about-band-inner a:hover {
    opacity: 0.9;
}

/* ===== VALEURS ===== */
.valeurs {
    max-width: 1100px;
    margin: 90px auto 70px;
    padding: 0 20px;
}

.valeurs h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.valeur-item {
    text-align: center;
    padding: 20px 12px;
}

.valeur-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.valeur-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.valeur-item h3 {
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.valeur-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ACTUALITÉS ===== */
.actualites {
    background: var(--cream);
    padding: 70px 20px;
}

.actualites-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.actualites h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.actualites .section-line {
    width: 50px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 36px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.news-date {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.btn-lire {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: background 0.2s;
}

.btn-lire:hover {
    background: var(--secondary-dark);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--secondary);
    padding: 50px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(239,103,0,0.2);
}

.page-banner h1 {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: var(--primary);
}

/* ===== SECTION COMMUNE ===== */
.section-content {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 20px;
}

.section-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-content .line {
    width: 50px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 28px;
}

.section-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* === HISTOIRE PAGE === */
.histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.histoire-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary);
}

.timeline-item {
    margin-bottom: 32px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* === STRUCTURE ORG === */
.org-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 20px;
}

.org-table th {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.org-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
    vertical-align: top;
}

.org-table tr:nth-child(even) td {
    background: var(--cream);
}

/* === IDENTITE TABLE === */
.identity-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 20px;
}

.identity-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.identity-table td:first-child {
    font-weight: 700;
    color: var(--secondary);
    width: 220px;
    background: var(--cream);
}

/* === PRESIDENT PAGE === */
.president-wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
}

.president-photo {
    position: relative;
}

.president-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
}

.president-badge {
    background: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    text-align: center;
}

.president-badge strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.president-badge span {
    font-size: 12px;
    opacity: 0.9;
}

.president-engagements {
    margin-top: 30px;
}

.president-engagements h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.engagement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--cream);
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.engagement-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 2px;
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 2px;
}

.contact-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* === PRESENCE PAGE === */
.presence-map {
    background: var(--cream);
    padding: 40px;
    border-left: 5px solid var(--secondary);
    margin-bottom: 30px;
}

.corridors-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.corridor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-left: 3px solid var(--primary);
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.corridor-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
    fill: none;
    stroke-width: 2;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 55px 0 40px;
    position: relative;
    margin-top: 60px;
}

.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    display: none;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.footer-logo-text strong {
    font-size: 13px;
    font-weight: 800;
    display: block;
}

.footer-address {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 14px;
    opacity: 0.9;
}

.footer-address a {
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-address a:hover {
    opacity: 1;
}

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

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 13px;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 12px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    background: var(--secondary-dark);
    text-align: center;
    padding: 14px 20px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: var(--primary);
}

.btn-contact {
    display: inline-block;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--white);
    padding: 10px 22px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.btn-contact:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .chiffres-band-inner { grid-template-columns: repeat(3, 1fr); }
    .pilliers-grid { grid-template-columns: repeat(3, 1fr); }
    .valeurs-grid { grid-template-columns: repeat(3, 1fr); }
    .mission-section { grid-template-columns: 1fr; gap: 30px; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .histoire-grid { grid-template-columns: 1fr; }
    .president-wrap { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .corridors-list { grid-template-columns: 1fr; }
    .engagement-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-slide img { height: 300px; }
    .hero-caption { max-width: 100%; padding: 18px 22px; background: rgba(0,0,0,0.55); }
    .hero-caption h2 { font-size: 18px; }
    .hero-caption .hero-slogan { border-top-color: rgba(255,255,255,0.25); }
    .chiffres-band-inner { grid-template-columns: repeat(2, 1fr); }
    .pilliers-grid { grid-template-columns: repeat(2, 1fr); }
    .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 24px; }
}

/* ===================================================
   PAGE ACTUALITE — actualite.php
   =================================================== */

/* Bannière avec image en fond */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.7) 100%);
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 36px;
    color: #fff;
}

.actu-cat-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.page-banner-inner h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    max-width: 780px;
}

.banner-date {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--bg-light);
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--secondary);
    font-weight: 600;
}

.breadcrumb-inner a:hover { text-decoration: underline; }

/* Layout article + sidebar */
.actu-layout {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

/* Article */
.actu-article {
    background: var(--white);
}

.actu-intro {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    background: var(--cream);
    margin-bottom: 32px;
    font-style: italic;
}

.actu-body {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
}

.actu-body h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin: 32px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.actu-body p {
    margin-bottom: 16px;
}

.actu-body ul {
    margin: 0 0 16px 20px;
}

.actu-body ul li {
    margin-bottom: 8px;
}

/* Tags */
.actu-tags {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: var(--cream);
    border: 1px solid #ddd;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation prev/next */
.actu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    gap: 10px;
    flex-wrap: wrap;
}

.actu-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    padding: 10px 16px;
    border: 2px solid var(--secondary);
    transition: all 0.2s;
}

.actu-nav-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.actu-nav-btn svg { stroke: currentColor; }

.actu-nav-all {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--text-light);
    text-decoration: underline;
}

/* Sidebar */
.actu-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 22px;
}

.sidebar-card h4 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

/* Boutons partage */
.share-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 2px;
    transition: opacity 0.2s;
    color: #fff;
}

.share-btn:hover { opacity: 0.88; }
.share-fb { background: #1877F2; }
.share-li { background: #0A66C2; }
.share-wa { background: #25D366; }

/* Liste autres actualités sidebar */
.sidebar-actu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-actu-list li a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: opacity 0.2s;
}

.sidebar-actu-list li a:hover { opacity: 0.8; }

.sidebar-actu-list img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-actu-list .sa-date {
    display: block;
    font-size: 10px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.sidebar-actu-list .sa-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Sidebar contact */
.sidebar-contact p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive actualite */
@media (max-width: 992px) {
    .actu-layout {
        grid-template-columns: 1fr;
    }
    .actu-sidebar {
        order: -1;
    }
    .page-banner-inner h1 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .actu-nav { flex-direction: column; align-items: flex-start; }
    .hero-btn { display: none; }
}
