/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #020817;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
.header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
    background: #081236; border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}
.logo-img { height: 75px; width: auto; }
.nav-desktop { display: flex; gap: 32px; align-items: center; }
.nav-link {
    font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8);
    padding: 8px 0; position: relative; transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: #df254f; border-radius: 2px;
}

/* Burger */
.burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; z-index: 1001;
}
.burger span {
    display: block; width: 100%; height: 2px; background: #fff;
    position: absolute; left: 0; transition: 0.3s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

/* Mobile Nav */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
    background: #fff; z-index: 2000; padding: 24px;
    transition: right 0.3s ease; overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid #eee;
}
.mobile-nav-close {
    background: none; border: none; font-size: 32px; cursor: pointer;
    color: #333; line-height: 1;
}
.mobile-nav-link {
    display: block; padding: 14px 16px; font-size: 16px; font-weight: 500;
    color: #333; border-radius: 8px; transition: 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: #f0f2ff; color: #111827;
}
.btn-adherer-desktop {
    display: inline-flex; align-items: center; padding: 10px 22px;
    background: #df254f; color: #fff; border-radius: 8px;
    font-weight: 600; font-size: 14px; text-decoration: none;
    transition: background .2s; white-space: nowrap; margin-left: 12px;
}
.btn-adherer-desktop:hover { background: #c41e44; }
@media (max-width: 768px) { .btn-adherer-desktop { display: none; } }
.btn-adherer-mobile {
    display: block; margin-top: 24px; padding: 14px; text-align: center;
    background: #df254f; color: #fff; border-radius: 8px;
    font-weight: 600; font-size: 16px;
}
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 1999; opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 80px 24px 80px;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right bottom, rgba(8, 18, 54, 0.88), rgba(10, 21, 64, 0.85), rgba(8, 18, 54, 0.88));
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-title {
    font-size: 48px; font-weight: 700;
    line-height: 1.1; margin-bottom: 8px;
}
.hero-subtitle {
    font-size: 30px; font-weight: 400;
    color: #bfdbfe; margin-bottom: 24px;
}
.hero-desc {
    font-size: 18px; color: #dbeafe;
    max-width: 650px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; border-radius: 8px; font-weight: 600;
    font-size: 16px; transition: all 0.2s; cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: #df254f; color: #fff; border-color: #df254f;
}
.btn-primary:hover { background: #c91e44; border-color: #c91e44; }
.btn-outline {
    background: transparent; color: #fff; border-color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark {
    background: transparent; color: #1e3a8a; border-color: #1e3a8a;
    font-weight: 600; white-space: nowrap;
}
.btn-outline-dark:hover { background: #1e3a8a; color: #fff; border-color: #1e3a8a; }
.btn-dark {
    background: #081236; color: #fff; border-color: #081236;
    padding: 16px 32px; font-size: 16px;
}
.btn-dark:hover { background: #0a1744; }
.btn-submit {
    background: rgba(255,255,255,0.15); color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    width: 100%; justify-content: center; padding: 14px;
}
.btn-submit:hover { background: rgba(255,255,255,0.25); }
.btn-primary-sm {
    display: inline-block; padding: 12px 32px; background: #df254f;
    color: #fff; border-radius: 8px; font-weight: 600; font-size: 15px;
}
.btn-primary-sm:hover { background: #c91e44; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-title {
    font-size: 30px; font-weight: 700;
    text-align: center; margin-bottom: 16px; color: #111827;
}
.section-desc {
    text-align: center; color: #666; font-size: 1.05rem;
    max-width: 700px; margin: 0 auto 48px; line-height: 1.6;
}
.section-cta { text-align: center; margin-top: 40px; }
.text-left { text-align: left !important; margin-left: 0 !important; }
.text-white { color: #fff !important; }
.text-white-muted { color: rgba(255,255,255,0.7) !important; }

.section-header-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}

/* ===== CAROUSEL ===== */
.carousel-container {
    position: relative; display: flex; align-items: center;
}
.carousel {
    overflow: hidden; flex: 1; margin: 0 8px;
}
.carousel-track {
    display: flex; gap: 24px; transition: transform 0.4s ease;
}
.carousel-btn {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1px solid #ddd; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #333; transition: 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel-btn:hover { background: #0a1744; color: #fff; border-color: #111827; }
.carousel-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.carousel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #ddd; border: none; cursor: pointer; transition: 0.2s;
}
.carousel-dot.active { background: #0a1744; }

/* ===== CARD MEMBER ===== */
.card-member {
    background: #fff; border-radius: 16px; padding: 32px 24px;
    text-align: center; min-width: 300px; flex: 0 0 calc(50% - 12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.card-member-photo {
    width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
    border: 3px solid #e8ecf4; margin-bottom: 8px;
}
.card-member-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.card-member h3 { font-size: 18px; font-weight: 600; color: #111827; }
.badge-role {
    display: inline-block; padding: 4px 12px; background: #eff6ff;
    color: #1e3a8a; border-radius: 9999px; font-size: 14px; font-weight: 500;
}
.card-separator {
    width: 40px; height: 3px; background: #df254f; border-radius: 2px;
    margin: 4px 0;
}
.card-bio { font-size: 14px; color: #666; line-height: 1.5; }
.card-social { display: flex; gap: 12px; }
.card-social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #666; border: 1px solid #ddd; font-size: 14px; transition: 0.2s;
}
.card-social a:hover { color: #111827; border-color: #111827; }

/* ===== CARD ELU ===== */
.card-elu {
    background: #fff; border-radius: 16px; padding: 24px;
    min-width: 300px; flex: 0 0 calc(50% - 12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
    display: flex; flex-direction: column; gap: 16px;
}
.card-elu-header { display: flex; gap: 16px; align-items: flex-start; }
.card-elu-header img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    border: 3px solid #e8ecf4;
}
.card-elu-info { flex: 1; }
.card-elu-info h3 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 6px; }
.badge-mandat {
    display: inline-block; padding: 3px 12px; font-size: 12px;
    font-weight: 600; color: #111827; border-bottom: 2px solid #df254f;
    margin-right: 6px; margin-bottom: 8px;
}
.badge-secondary { border-color: #111827; }
.card-elu-meta { margin-top: 8px; }
.card-elu-meta p { font-size: 13px; color: #666; margin-bottom: 4px; }
.card-elu-meta i { color: #999; margin-right: 6px; font-size: 12px; }
.card-elu-bio { font-size: 14px; color: #666; line-height: 1.5; }

/* ===== ACTUALITÉS ===== */
.section-actus { background: #f0f2f5; }
.actus-layout {
    display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start;
}
.actus-main { min-width: 0; }
.actus-sidebar { position: sticky; top: 100px; }
.sidebar-card {
    background: #fff; border-radius: 16px; padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 16px;
}
.sidebar-card p {
    font-size: 14px; color: #666; line-height: 1.5;
}
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
    display: inline-block; padding: 6px 14px; font-size: 13px;
    font-weight: 500; color: #374151; background: #f3f4f6;
    border-radius: 50px; cursor: pointer; transition: 0.2s;
}
.sidebar-tag:hover { background: #e5e7eb; color: #111827; }
.grid-actus { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-actu {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-actu:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-actu-img { height: 220px; overflow: hidden; }
.card-actu-img img { width: 100%; height: 100%; object-fit: cover; }
.card-actu-body { padding: 20px; }
.card-actu-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.tag {
    display: inline-block; padding: 4px 12px; font-size: 12px;
    font-weight: 500; color: #111827; background: #e8ecf4;
    border-radius: 50px;
}
.card-actu-body h3 {
    font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 8px;
}
.card-actu-body p { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 12px; }
.link-more {
    font-size: 14px; font-weight: 600; color: #111827;
    display: inline-flex; align-items: center; gap: 6px;
}
.link-more:hover { color: #df254f; }

/* ===== ÉVÉNEMENTS ===== */
.grid-events { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-event {
    background: #fff; border-radius: 16px; padding: 24px;
    display: flex; gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
}
.card-event-icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
    background: #e8ecf4; display: flex; align-items: center; justify-content: center;
    color: #111827; font-size: 20px;
}
.card-event-body { flex: 1; }
.card-event-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.card-event-header h3 { font-size: 1rem; font-weight: 700; color: #111827; }
.badge-event-passed {
    display: inline-block; padding: 3px 10px; font-size: 11px;
    font-weight: 500; color: #888; background: #f0f0f0; border-radius: 50px;
}
.badge-event-upcoming {
    display: inline-block; padding: 3px 10px; font-size: 11px;
    font-weight: 500; color: #16a34a; background: #dcfce7; border-radius: 50px;
}
.card-event-body > p { font-size: 14px; color: #666; margin-bottom: 12px; }
.card-event-meta {
    display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px;
}
.card-event-meta span { font-size: 13px; color: #888; }
.card-event-meta i { margin-right: 4px; }
.link-details {
    font-size: 14px; font-weight: 600; color: #111827;
    display: inline-flex; align-items: center; gap: 6px;
}
.link-details:hover { color: #df254f; }

/* ===== NEWSLETTER ===== */
.section-newsletter {
    background: #f9fafb;
    padding: 64px 0;
}
.newsletter-icon {
    text-align: center; margin-bottom: 20px;
}
.newsletter-icon i {
    font-size: 40px; color: #1e3a8a; background: #dbeafe;
    width: 72px; height: 72px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
}
.section-newsletter .section-title { color: #111827; }
.section-newsletter .section-desc { color: #666; }
.newsletter-features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    margin-bottom: 48px;
}
.newsletter-feature { text-align: center; }
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: #dbeafe; display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 22px; color: #1e3a8a; margin-bottom: 16px;
}
.newsletter-feature h4 { color: #111827; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-feature p { color: #666; font-size: 14px; }

.newsletter-form-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 20px; padding: 40px; text-align: center;
    max-width: 700px; margin: 0 auto;
}
.newsletter-form-icon { margin-bottom: 16px; }
.newsletter-form-icon i {
    font-size: 32px; color: #fff;
    background: rgba(255,255,255,0.15);
    width: 56px; height: 56px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
}
.newsletter-form-box h3 { color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-form-box > p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 24px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-input {
    width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3); border-radius: 8px;
    color: #fff; font-size: 15px; font-family: inherit;
    transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus { outline: none; border-color: rgba(255,255,255,0.5); }
.form-disclaimer { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 12px; }

.newsletter-trust {
    display: flex; justify-content: center; gap: 32px;
    margin-top: 32px; color: #666; font-size: 14px;
}
.newsletter-trust i { margin-right: 6px; color: #999; }

/* ===== FOOTER ===== */
.footer {
    background: #081236; color: #fff; padding: 60px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 48px;
    margin-bottom: 40px;
}
.footer-logo { height: 84px; width: auto; margin-bottom: 16px; }
.footer-nav h4, .footer-contact h4, .footer-rejoignez h4 {
    font-size: 16px; font-weight: 600; margin-bottom: 16px;
    color: #fff;
}
.footer-nav a {
    display: block; padding: 6px 0; font-size: 16px;
    color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact p {
    font-size: 16px; color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}
.footer-contact i { margin-right: 8px; color: rgba(255,255,255,0.4); }
.footer-cta {
    padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.footer-cta h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.footer-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2);
    font-size: 14px; transition: 0.2s;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.footer-bottom {
    text-align: center; font-size: 13px; color: rgba(255,255,255,0.4);
    padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy {
    text-align: center; font-size: 13px; color: rgba(255,255,255,0.3);
    margin-top: 12px;
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 60px 24px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.page-hero-navy { background: linear-gradient(to right bottom, #081236, #0a1540, #081236); }
.page-hero-blue { background: linear-gradient(to right bottom, #081236, #0a1540, #081236); }
.page-hero-red { background: linear-gradient(to right bottom, #081236, #0a1540, #081236); }

/* ===== PAGE WHITE HEADER ===== */
.section-page-header {
    padding: 48px 0 32px;
    text-align: center;
    background: #fff;
}
.page-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}
.page-icon-blue { background: #dbeafe; color: #1e3a8a; }
.page-main-title {
    font-size: 36px; font-weight: 700; color: #111827; margin-bottom: 16px;
}
.page-main-desc {
    font-size: 16px; color: #6b7280; max-width: 650px; margin: 0 auto; line-height: 1.6;
}

/* ===== FILTER CARD ===== */
.filter-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 24px; margin-bottom: 32px;
}
.filter-card-label {
    font-size: 16px; font-weight: 600; color: #111827; margin-bottom: 16px;
}
.filter-card-label i { color: #1e3a8a; margin-right: 8px; }

/* ===== FILTER PILLS ===== */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-pill {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: #f3f4f6;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.filter-pill:hover {
    background: #e5e7eb;
    color: #111827;
}
.filter-pill.active {
    background: #1e3a8a;
    color: #fff;
}

/* ===== GRID CANDIDATS ===== */
.grid-candidats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.card-candidat {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-candidat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.card-candidat-photo {
    height: 320px;
    overflow: hidden;
    position: relative;
}
.card-candidat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-commune {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: #1e3a8a;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}
.badge-commune i { margin-right: 4px; font-size: 12px; }
.candidat-slogan {
    font-size: 14px; color: #6b7280; margin-top: 4px;
}
.card-candidat-body {
    padding: 20px;
}
.card-candidat-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.badge-ville {
    display: inline-block;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #df254f;
    background: #fef2f2;
    border-radius: 50px;
    margin-bottom: 12px;
}
.badge-ville i {
    margin-right: 4px;
    font-size: 12px;
}
.card-candidat-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ===== BUREAU GALLERY ===== */
.bureau-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ===== GRID BUREAU ===== */
.grid-bureau {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-bureau {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    text-align: center;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-bureau:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.card-bureau-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d1d9e8;
    box-shadow: 0 0 0 4px rgba(209,217,232,0.3);
}
.card-bureau-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-bureau h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}
.card-bureau .card-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.card-bureau .btn-outline-dark {
    margin-top: 8px;
}

/* Bureau CTA Card */
.bureau-cta-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.bureau-cta-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.bureau-cta-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}
.bureau-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ELUS PAGE ===== */

/* Gallery */
.elus-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.elus-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.elus-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.elus-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.elus-gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
}
.elus-gallery-caption {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.elus-gallery-caption small {
    font-weight: 400;
    opacity: 0.8;
    font-size: 11px;
}

/* Filter tabs */
.elus-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.elus-tab {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
    font-family: inherit;
}
.elus-tab:hover { color: #111827; }
.elus-tab.active {
    color: #1e3a8a;
    font-weight: 600;
}
.elus-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1e3a8a;
    border-radius: 2px 2px 0 0;
}
.elus-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 600;
    border-radius: 11px;
    margin-left: 6px;
}

/* List header */
.elus-list-header {
    margin-bottom: 24px;
}
.elus-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}
.elus-list-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* Grid */
.grid-elus-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Card */
.card-elu-new {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-elu-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.card-elu-new-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.card-elu-new-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}
.card-elu-new-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-elu-new-info {
    flex: 1;
    min-width: 0;
}
.card-elu-new-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.card-elu-new-mandats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: column;
}
.elu-mandat-badge {
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
    padding-bottom: 2px;
    border-bottom: 2px solid #df254f;
    display: inline-block;
    margin-bottom: 4px;
    width: fit-content;
}
.card-elu-new-separator {
    height: 0;
    margin-top: 4px;
}
.elu-meta {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}
.elu-meta i {
    color: #9ca3af;
    margin-right: 6px;
    font-size: 12px;
    width: 14px;
    text-align: center;
}
.card-elu-new-bio {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-elu-new-social {
    display: flex;
    gap: 12px;
}
.card-elu-new-social a {
    color: #374151;
    font-size: 16px;
    transition: color 0.2s;
}
.card-elu-new-social a:hover { color: #1e3a8a; }
.btn-elu-fiche {
    display: block;
    text-align: center;
    padding: 10px 20px;
    border: 1.5px solid #1e3a8a;
    border-radius: 8px;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}
.btn-elu-fiche:hover {
    background: #1e3a8a;
    color: #fff;
}

/* CTA */
.elus-cta-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    margin-top: 16px;
}
.elus-cta-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.elus-cta-card p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
}
.elus-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #111827;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-dark:hover { background: #1f2937; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #df254f;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-primary:hover { background: #c51e45; }

/* ===== ACTUALITÉS FULL ===== */
.grid-actus-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.card-actu-horizontal {
    display: grid;
    grid-template-columns: 300px 1fr;
}
.card-actu-horizontal .card-actu-img {
    height: 100%;
}
.card-actu-date {
    display: inline-block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.card-actu-date i {
    margin-right: 4px;
}

/* ===== MILITER ===== */
/* Hero */
.militer-hero {
    background: linear-gradient(to right bottom, #081236, #0a1540, #081236);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
}
.militer-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('/assets/img/bureau-photo-1.jpg') center/cover no-repeat;
    opacity: 0.08;
}
.militer-hero-inner { position: relative; z-index: 1; }
.militer-hero-icon {
    font-size: 48px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}
.militer-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.militer-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.militer-hero-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.militer-hero-box p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 16px; }
.militer-hero-bold { font-weight: 700; color: #fff !important; font-size: 1.1rem !important; }
.militer-hero-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px;
}

/* 3 Steps */
.grid-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.card-step {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px 32px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    position: relative;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}
.step-red { background: #df254f; }
.step-blue { background: #0a1744; }
.step-green { background: #22c55e; }
.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #e8ecf4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #111827;
    margin-bottom: 20px;
}
.card-step h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.card-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px; font-weight: 600;
    background: #0a1744; color: #fff; border: none; cursor: pointer;
    transition: all 0.2s;
}
.btn-navy:hover { background: #162050; }
.btn-green {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px; font-weight: 600;
    background: #22c55e; color: #fff; border: none; cursor: pointer;
    transition: all 0.2s;
}
.btn-green:hover { background: #16a34a; }

/* Contact fédération */
.contact-federation {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.contact-federation-header {
    background: #0a1744;
    padding: 32px 40px;
    color: #fff;
}
.contact-federation-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-federation-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.contact-federation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px;
    background: #fff;
}
.contact-federation-item {
    text-align: center;
}
.contact-federation-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8ecf4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}
.contact-federation-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.contact-federation-item p {
    font-size: 0.9rem;
    color: #111827;
}

/* Nos valeurs */
.grid-valeurs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.card-valeur {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.valeur-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.valeur-icon-blue { background: #dbeafe; color: #2563eb; }
.valeur-icon-red { background: #fce4ec; color: #df254f; }
.valeur-icon-green { background: #dcfce7; color: #16a34a; }
.valeur-icon-orange { background: #ffedd5; color: #ea580c; }
.card-valeur h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
.card-valeur p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Nos activités militantes */
.section-activites {
    background: #f1f5f9;
}
.grid-activites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.card-activite {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid;
    transition: transform 0.2s;
}
.card-activite:hover { transform: translateY(-4px); }
.card-activite-blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.card-activite-blue .activite-icon { background: #fff; color: #2563eb; }
.card-activite-blue h3 { color: #1e40af; }
.card-activite-green {
    background: #ecfdf5;
    border-color: #bbf7d0;
}
.card-activite-green .activite-icon { background: #fff; color: #16a34a; }
.card-activite-green h3 { color: #166534; }
.card-activite-yellow {
    background: #fefce8;
    border-color: #fde68a;
}
.card-activite-yellow .activite-icon { background: #fff; color: #b45309; }
.card-activite-yellow h3 { color: #92400e; }
.activite-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.card-activite h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.card-activite p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Final militer */
.militer-cta-final {
    background: linear-gradient(to right bottom, #081236, #0a1540, #081236);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.militer-cta-inner { max-width: 800px; margin: 0 auto; }
.militer-cta-final h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.militer-cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}
.militer-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px 40px;
    margin-bottom: 32px;
}
.militer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #df254f;
}
.stat-icon {
    font-size: 1.8rem;
    color: #df254f;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.militer-cta-bottom {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 24px;
}
.militer-cta-bottom strong { color: rgba(255,255,255,0.9); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}
.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8ecf4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 14px;
    color: #666;
}
.contact-item a {
    color: #111827;
    text-decoration: underline;
}
.contact-social {
    margin-top: 32px;
}
.contact-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.contact-form-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.contact-form-box h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.contact-form .form-input {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 10px;
    padding: 12px 16px;
}
.contact-form .form-input::placeholder {
    color: #999;
}
.contact-form .form-input:focus {
    outline: none;
    border-color: #111827;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-submit {
    background: #0a1744;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.contact-form .btn-submit:hover {
    background: #0d1f54;
}

/* Contact page buttons */
.btn-submit-contact {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #081236;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit-contact:hover { background: #0d1f54; }
.btn-reset-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s;
}
.btn-reset-contact:hover { border-color: #999; }

/* Contact coords box (right column) */
.contact-coords-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.contact-coords-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

/* Contact RGPD accordion */
.contact-rgpd {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.contact-rgpd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
    user-select: none;
}
.contact-rgpd-header i:first-child {
    color: #64748b;
    margin-right: 6px;
}
.contact-rgpd-chevron {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.3s;
}
.contact-rgpd.open .contact-rgpd-chevron {
    transform: rotate(180deg);
}
.contact-rgpd-body {
    padding: 0 18px 16px;
}
.contact-rgpd:not(.open) .contact-rgpd-body {
    display: block;
}
.contact-rgpd-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    cursor: pointer;
}
.contact-rgpd-check input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Contact coordonnées */
.contact-coords {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}
.contact-coord-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-coord-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e8ecf4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-coord-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}
.contact-coord-item p {
    font-size: 14px;
    color: #666;
}
.contact-coord-item a {
    color: #1e3a8a;
    text-decoration: none;
}
.contact-coord-item a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .burger { display: block; }
    .card-member { flex: 0 0 calc(50% - 12px); min-width: 260px; }
    .card-elu { flex: 0 0 calc(50% - 12px); min-width: 260px; }
    .grid-militer { grid-template-columns: repeat(2, 1fr); }
    .grid-bureau { grid-template-columns: repeat(2, 1fr); }
    .bureau-cta-card { padding: 32px; }
}

@media (max-width: 768px) {
    .hero { min-height: 500px; padding: 100px 16px 60px; }
    .hero-title { font-size: 2.2rem; }
    .actus-layout { grid-template-columns: 1fr; }
    .actus-sidebar { position: static; }
    .grid-actus { grid-template-columns: 1fr; }
    .grid-events { grid-template-columns: 1fr; }
    .newsletter-features { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .card-member { flex: 0 0 100%; min-width: 0; }
    .card-elu { flex: 0 0 100%; min-width: 0; }
    .section-header-row { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .grid-candidats { grid-template-columns: 1fr; }
    .grid-bureau { grid-template-columns: repeat(2, 1fr); }
    .bureau-gallery { grid-template-columns: 1fr; }
    .grid-elus-new { grid-template-columns: 1fr; }
    .elus-gallery { grid-template-columns: repeat(2, 1fr); }
    .elus-cta-card { padding: 32px; }
    .card-actu-horizontal { grid-template-columns: 1fr; }
    .card-actu-horizontal .card-actu-img { height: 220px; }
    .grid-steps { grid-template-columns: 1fr; }
    .contact-federation-grid { grid-template-columns: 1fr; }
    .grid-valeurs { grid-template-columns: 1fr; }
    .grid-activites { grid-template-columns: 1fr; }
    .militer-stats { flex-direction: column; gap: 20px; }
    .militer-hero h1 { font-size: 2rem; }
    .militer-cta-final h2 { font-size: 1.8rem; }
    .militer-hero-box { padding: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 16px 40px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .newsletter-trust { flex-direction: column; align-items: center; gap: 8px; }
    .grid-bureau { grid-template-columns: 1fr; }
}

/* ===== BACK LINK ===== */
.back-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 500; color: #1e3a8a;
    transition: color 0.2s;
}
.back-link:hover { color: #0f172a; }

/* ===== ÉLU DETAIL PAGE ===== */
.elu-detail-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 32px; margin-bottom: 8px;
}
.elu-detail-header {
    display: flex; gap: 32px; align-items: flex-start;
}
.elu-detail-photo {
    flex-shrink: 0;
}
.elu-detail-photo img {
    width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
    border: 3px solid #e5e7eb;
}
.elu-detail-info h1 {
    font-size: 1.8rem; font-weight: 800; color: #0f172a; margin-bottom: 12px;
}
.elu-detail-badge {
    display: inline-block; padding: 6px 16px; background: #1e3a8a; color: #fff;
    border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.elu-detail-meta {
    font-size: 14px; color: #4b5563; margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
}
.elu-detail-meta i { color: #9ca3af; width: 16px; text-align: center; }
.elu-detail-meta a { color: #1e3a8a; text-decoration: underline; }
.elu-detail-social {
    display: flex; gap: 10px; margin-top: 16px;
}
.social-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid #e5e7eb;
    background: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; color: #4b5563; transition: 0.2s;
}
.social-btn:hover { border-color: #1e3a8a; color: #1e3a8a; background: #eff6ff; }

.elu-detail-columns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.elu-detail-block {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 28px;
}
.elu-detail-block h2 {
    font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
}
.elu-detail-block h2 i { color: #1e3a8a; }
.elu-detail-block p { font-size: 15px; color: #374151; line-height: 1.7; }

.elu-commissions-list {
    list-style: none; padding: 0;
}
.elu-commissions-list li {
    padding: 8px 0; padding-left: 20px; position: relative;
    font-size: 15px; color: #374151;
}
.elu-commissions-list li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px; border-radius: 50%; background: #1e3a8a;
}

.elu-mandats-list {
    display: flex; flex-direction: column; gap: 16px;
}
.elu-mandat-item {
    padding: 16px 16px 16px 24px; border-left: 4px solid #1e3a8a;
    background: #f8fafc; border-radius: 0 8px 8px 0;
}
.elu-mandat-item h4 {
    font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 4px;
}
.elu-mandat-item p {
    font-size: 14px; color: #6b7280; display: flex; align-items: center; gap: 6px;
}
.elu-mandat-item p i { color: #9ca3af; }

.elu-detail-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 48px 0; margin-top: 16px;
}
.elu-detail-cta h2 { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.elu-detail-cta p { color: rgba(255,255,255,0.8); font-size: 15px; max-width: 600px; margin: 0 auto; }
.elu-detail-cta .btn { border-color: rgba(255,255,255,0.3); color: #fff; }
.elu-detail-cta .btn:hover { background: rgba(255,255,255,0.1); }

/* ===== CANDIDAT DETAIL PAGE ===== */
.candidat-detail-photo {
    border-radius: 16px; overflow: hidden; max-width: 800px; margin: 0 auto;
}
.candidat-detail-photo img {
    width: 100%; height: auto; display: block;
}
.candidat-detail-info {
    max-width: 800px; margin: 0 auto;
}
.candidat-detail-commune {
    font-size: 15px; color: #1e3a8a; font-weight: 600;
    display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.candidat-detail-commune i { font-size: 14px; }
.candidat-detail-info h1 {
    font-size: 2rem; font-weight: 800; color: #0f172a; margin-bottom: 8px;
}
.candidat-detail-liste {
    font-size: 16px; color: #6b7280; font-style: italic; margin-bottom: 16px;
}
.candidat-detail-block {
    max-width: 800px; margin: 0 auto;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 28px;
}
.candidat-detail-block h2 {
    font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 16px;
}
.candidat-detail-block p { font-size: 15px; color: #374151; line-height: 1.7; }

.candidat-detail-programme {
    max-width: 800px; margin: 0 auto;
    background: #f0f4ff; border: 1px solid #dbeafe; border-radius: 12px;
    padding: 28px;
}
.candidat-detail-programme h2 {
    font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 16px;
}
.candidat-detail-programme div { font-size: 15px; color: #374151; line-height: 1.8; }

.candidat-detail-social {
    display: flex; gap: 10px;
}

/* Social buttons small (for card listings) */
.social-btn-sm {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e5e7eb;
    background: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; color: #4b5563; transition: 0.2s; cursor: pointer;
}
.social-btn-sm:hover { border-color: #1e3a8a; color: #1e3a8a; background: #eff6ff; }

/* Candidat card as link */
a.card-candidat {
    text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
a.card-candidat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.candidat-liste-name {
    font-size: 14px; color: #6b7280; font-style: italic; margin-bottom: 4px;
}
.candidat-bio-short {
    font-size: 13px; color: #4b5563; line-height: 1.5; margin-top: 8px;
}
.candidat-card-social {
    display: flex; gap: 8px; margin-top: 12px;
}

/* ===== BUREAU DETAIL PAGE ===== */
.bureau-profile-card {
    background: #fff; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 32px; margin-bottom: 24px;
}
.bureau-profile-header {
    display: flex; gap: 32px; align-items: center;
}
.bureau-profile-photo {
    flex-shrink: 0;
}
.bureau-profile-photo img {
    width: 128px; height: 128px; border-radius: 50%; object-fit: cover;
    box-shadow: 0 0 0 4px #dbeafe;
}
.bureau-profile-info {
    flex: 1;
}
.bureau-profile-info h1 {
    font-size: 1.8rem; font-weight: 700; color: #111827; margin-bottom: 12px;
}
.bureau-profile-badge {
    display: inline-block; padding: 8px 16px; background: #dbeafe; color: #1e3a8a;
    border-radius: 50px; font-size: 14px; font-weight: 600;
}
.bureau-profile-block {
    background: #fff; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 24px;
}
.bureau-profile-block h2 {
    font-size: 1.2rem; font-weight: 700; color: #111827; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
}
.bureau-profile-block h2 i { color: #1e3a8a; }
.bureau-profile-block p { font-size: 15px; color: #374151; line-height: 1.7; }

.bureau-social-buttons {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.social-btn-labeled {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600;
    color: #fff; transition: opacity 0.2s;
}
.social-btn-labeled:hover { opacity: 0.85; }
.social-facebook { background: #1877F2; }
.social-twitter { background: #000; }
.social-instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }

.bureau-profile-cta {
    background: #1e3a8a; border-radius: 8px; padding: 32px; text-align: center;
}
.bureau-profile-cta h2 {
    font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.bureau-profile-cta p {
    color: #93c5fd; margin-bottom: 24px; font-size: 15px;
}
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: #fff; color: #1e3a8a;
    border-radius: 6px; font-size: 14px; font-weight: 600;
    border: none; transition: background 0.2s;
}
.btn-white:hover { background: #eff6ff; }

.page-icon-grey {
    width: 56px; height: 56px; border-radius: 12px;
    background: #f3f4f6; display: inline-flex; align-items: center;
    justify-content: center; font-size: 24px; color: #9ca3af; margin-bottom: 16px;
}

/* ===== ARTICLE DETAIL ===== */
.article-hero-img {
    width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 8px;
    max-height: 400px;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-title { font-size: 2rem; font-weight: 800; color: #111827; line-height: 1.3; margin-bottom: 12px; }
.article-excerpt { font-size: 1.1rem; color: #4b5563; line-height: 1.6; margin-bottom: 16px; }
.article-meta {
    display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #6b7280;
    padding-bottom: 24px; border-bottom: 1px solid #e5e7eb;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta i { color: #9ca3af; }
.article-content { font-size: 16px; color: #374151; line-height: 1.8; }
.article-content p { margin-bottom: 16px; }

.article-share {
    background: #f9fafb; border-radius: 12px; padding: 24px;
}
.article-share h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600;
    color: #fff; text-decoration: none; transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-facebook { background: #1877F2; }
.share-twitter { background: #000; }
.share-email { background: #6b7280; }

.article-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.article-nav-item {
    display: flex; align-items: center; gap: 12px; padding: 16px;
    background: #f9fafb; border-radius: 8px; text-decoration: none; transition: background 0.2s;
}
.article-nav-item:hover { background: #eff6ff; }
.article-nav-item img { width: 60px; height: 40px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.article-nav-label { display: block; font-size: 12px; color: #6b7280; margin-bottom: 4px; }
.article-nav-title { font-size: 14px; font-weight: 600; color: #111827; }
.article-nav-next { text-align: right; justify-content: flex-end; }

.article-newsletter {
    background: #f0f4ff; border-radius: 12px; padding: 24px; text-align: center;
}
.article-newsletter h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 12px; }
.article-nl-form { display: flex; gap: 8px; max-width: 400px; margin: 0 auto; }
.article-nl-form .form-input { flex: 1; }

/* ===== POPULAR TAGS ===== */
.popular-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.popular-tag {
    padding: 8px 20px; background: #f0f4ff; color: #1e3a8a;
    border-radius: 50px; font-size: 14px; font-weight: 500;
    border: 1px solid #dbeafe; transition: 0.2s;
}
.popular-tag:hover { background: #1e3a8a; color: #fff; }

/* ===== AGENDA ===== */
.agenda-list { display: flex; flex-direction: column; gap: 16px; }
.agenda-card {
    background: #fff; border-radius: 12px; padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid #e5e7eb;
}
.agenda-passed { opacity: 0.6; }
.agenda-date-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #1e3a8a; margin-bottom: 12px;
}
.agenda-date-badge i { color: #3b82f6; }
.agenda-card-header {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px;
}
.agenda-card-header h3 { font-size: 1.15rem; font-weight: 700; color: #111827; }
.agenda-desc { font-size: 14px; color: #4b5563; line-height: 1.6; margin-bottom: 12px; }
.agenda-location { font-size: 13px; color: #6b7280; }
.agenda-location i { color: #3b82f6; margin-right: 4px; }

@media (max-width: 768px) {
    .elu-detail-header { flex-direction: column; align-items: center; text-align: center; }
    .elu-detail-photo img { width: 120px; height: 120px; }
    .elu-detail-info h1 { font-size: 1.5rem; }
    .elu-detail-social { justify-content: center; }
    .elu-detail-columns { grid-template-columns: 1fr; }
    .candidat-detail-info h1 { font-size: 1.5rem; }
    .bureau-profile-header { flex-direction: column; text-align: center; }
    .bureau-profile-photo img { width: 100px; height: 100px; }
    .bureau-profile-info h1 { font-size: 1.4rem; }
    .bureau-social-buttons { justify-content: center; }
    .article-title { font-size: 1.5rem; }
    .article-nav { grid-template-columns: 1fr; }
    .article-nl-form { flex-direction: column; }
    .ri-grid { grid-template-columns: 1fr; }
    .ri-freq-grid { grid-template-columns: 1fr; }
    .pc-rights-grid { grid-template-columns: 1fr; }
}

/* ===== RESTEZ INFORMÉ PAGE ===== */
.hero-small { min-height: 420px; }
.page-icon-hero {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255,255,255,0.15); display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 32px; color: #fff; margin-bottom: 20px;
}
.ri-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 40px; text-align: left;
}
.ri-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 28px; transition: box-shadow 0.3s;
}
.ri-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ri-card h3 { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.ri-card p { font-size: 14px; color: #666; line-height: 1.6; }
.ri-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}

.ri-freq-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 32px;
}
.ri-freq-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 32px; text-align: center;
}
.ri-freq-card h3 { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.ri-freq-card p { font-size: 14px; color: #666; line-height: 1.6; }
.ri-freq-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: #eff6ff; color: #1e3a8a; display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}

.ri-privacy-box {
    background: #fff; border-radius: 20px; padding: 48px;
    max-width: 800px; margin: 0 auto; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ri-privacy-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: #eff6ff; color: #1e3a8a; display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
}
.ri-privacy-box h2 {
    font-size: 1.5rem; font-weight: 800; color: #111827; margin-bottom: 24px;
}
.ri-privacy-box p {
    font-size: 15px; color: #4b5563; line-height: 1.8; text-align: left;
    margin-bottom: 16px;
}
.ri-privacy-box p:last-child { margin-bottom: 0; }

/* ===== POLITIQUE CONFIDENTIALITÉ PAGE ===== */
.pc-content {
    max-width: 800px; margin: 0 auto;
}
.pc-section {
    margin-bottom: 40px;
}
.pc-section h2 {
    font-size: 1.4rem; font-weight: 800; color: #0f172a;
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.pc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.pc-section > p {
    font-size: 15px; color: #4b5563; line-height: 1.8; margin-bottom: 12px;
}
.pc-info-box {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 24px;
}
.pc-info-box p { font-size: 15px; color: #4b5563; line-height: 1.7; margin-bottom: 8px; }
.pc-info-box p:last-child { margin-bottom: 0; }

.pc-data-card {
    background: #fafbfc; border-radius: 12px; padding: 20px 24px;
    margin-bottom: 16px;
}
.pc-data-card h4 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.pc-data-card p { font-size: 14px; color: #4b5563; line-height: 1.6; }
.pc-data-card ul { padding-left: 20px; }
.pc-data-card ul li {
    font-size: 14px; color: #4b5563; line-height: 1.8;
    list-style: disc;
}

.pc-legal-list {
    margin-top: 12px; padding-left: 20px;
}
.pc-legal-list li {
    font-size: 15px; color: #4b5563; line-height: 1.8;
    list-style: disc; margin-bottom: 8px;
}

.pc-rights-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; margin-top: 16px;
}
.pc-right-card {
    background: #fafbfc; border-radius: 12px; padding: 20px 24px;
}
.pc-right-card h4 { font-size: 0.95rem; font-weight: 700; color: #111827; margin-bottom: 6px; }
.pc-right-card p { font-size: 14px; color: #4b5563; line-height: 1.5; }

/* ===== PHOTO MODAL (image + texte) ===== */
.photo-modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.photo-modal {
    display: flex; background: #fff; border-radius: 16px;
    overflow: hidden; max-width: 1000px; width: 100%;
    max-height: 90vh; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.photo-modal-img {
    flex: 1; min-width: 0; background: #000;
    display: flex; align-items: center; justify-content: center;
}
.photo-modal-img img {
    width: 100%; height: 100%; max-height: 90vh;
    object-fit: cover;
}
.photo-modal-text {
    flex: 0 0 380px; padding: 32px; overflow-y: auto;
    position: relative;
}
.photo-modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; font-size: 28px;
    color: #6b7280; cursor: pointer; line-height: 1;
    transition: color 0.2s;
}
.photo-modal-close:hover { color: #111827; }
.photo-modal-text h2 {
    font-size: 1.4rem; font-weight: 800; color: #1e3a8a;
    margin-bottom: 20px; padding-right: 30px; line-height: 1.3;
}
.photo-modal-text p {
    font-size: 15px; color: #374151; line-height: 1.7;
    margin-bottom: 12px;
}
.photo-modal-text p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .photo-modal { flex-direction: column; max-height: 95vh; }
    .photo-modal-img { max-height: 40vh; }
    .photo-modal-text { flex: none; padding: 24px; }
}
