/* ===========================================================
   CIF - Confédération des Institutions Financières
   Feuille de style principale
   =========================================================== */

:root {
    /* Couleurs du logo CIF */
    --blue-primary: #094f9d;
    --blue-dark: #063a75;
    --blue-darker: #042851;
    --blue-light: #3a7fc4;
    --red-accent: #ff2221;
    --red-dark: #d41b1a;
    --yellow-accent: #ffce2c;
    --yellow-dark: #e6b820;

    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --footer-bg: #1a1a1a;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--blue-primary);
}

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

.nav-item {
    position: relative;
}

.nav-item > a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
    display: inline-block;
    padding: 8px 0;
    cursor: pointer;
}

.nav-item > a:hover {
    color: var(--blue-primary);
}

.nav-item > a.active {
    color: var(--red-accent);
}

.nav-item > a.has-dropdown::after {
    content: "\25BC";
    font-size: 8px;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.nav-item.has-submenu:hover > a.has-dropdown::after {
    transform: rotate(180deg);
}

/* ===== SOUS-MENU NIVEAU 1 ===== */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--blue-primary);
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
}

.nav-item.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    position: relative;
}

.submenu li a {
    display: block;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    white-space: nowrap;
}

.submenu li a:hover {
    background: var(--bg-light);
    color: var(--blue-primary);
    padding-left: 26px;
}

/* ===== SOUS-MENU NIVEAU 2 (Nos Régions) ===== */
.has-submenu-deep > a.has-dropdown-deep::after {
    content: "\25B6";
    font-size: 8px;
    margin-left: 8px;
    float: right;
    margin-top: 4px;
    color: var(--blue-primary);
}

.submenu-deep {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left: 3px solid var(--blue-primary);
    border-radius: 0 6px 6px 0;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}

.has-submenu-deep:hover > .submenu-deep {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-deep li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    white-space: nowrap;
}

.submenu-deep li a:hover {
    background: var(--bg-light);
    color: var(--blue-primary);
    padding-left: 26px;
}

/* Bouton dans la nav */
.nav-item > a.btn {
    color: var(--white);
    padding: 11px 22px;
}

.nav-item > a.btn:hover {
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--white);
}

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

.btn-accent {
    background: var(--red-accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--red-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #ccc;
}

.btn-outline:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--blue-primary);
    padding: 4px 8px;
}

.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--blue-primary);
    line-height: 1;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

/* ===========================================================
   HERO CAROUSEL (5 slides)
   =========================================================== */
.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--blue-darker);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,79,157,0.78) 0%, rgba(4,40,81,0.88) 100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero h1 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 28px;
    font-weight: 700;
}

/* Flèches du carousel */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    line-height: 1;
    padding: 0;
}

.hero-arrow:hover {
    background: var(--red-accent);
    border-color: var(--red-accent);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

/* Indicateurs (dots) */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.7);
}

.hero-dot.active {
    background: var(--yellow-accent);
    width: 32px;
    border-radius: 6px;
}

/* Barre de progression auto-play */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red-accent);
    width: 0;
    z-index: 10;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 4px solid var(--yellow-accent);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--blue-primary);
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 6px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 70px 0;
    background: var(--white);
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.mission-header h2 {
    font-size: 34px;
    line-height: 1.3;
    max-width: 560px;
    color: var(--blue-primary);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    padding: 32px;
    border-radius: 8px;
    transition: box-shadow 0.3s, transform 0.3s;
    border-top: 4px solid transparent;
}

.mission-card:nth-child(1) { border-top-color: var(--blue-primary); }
.mission-card:nth-child(2) { border-top-color: var(--yellow-accent); }
.mission-card:nth-child(3) { border-top-color: var(--red-accent); }

.mission-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.mission-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-primary);
}

.mission-card p,
.mission-card ul {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.mission-card ul {
    padding-left: 0;
}

.mission-card ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}

.mission-card ul li::before {
    content: "\2022";
    color: var(--red-accent);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ===== INDICATORS SECTION ===== */
.indicators-section {
    background: var(--blue-primary);
    color: var(--white);
    padding: 70px 0;
}

.indicators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.indicators-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.indicators-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
    opacity: 0.92;
}

.indicator-list {
    margin-bottom: 28px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
}

.indicators-image {
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    background: var(--blue-dark);
}

.indicators-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-light {
    background: var(--yellow-accent);
    color: var(--blue-darker);
    font-size: 14px;
    padding: 12px 22px;
    font-weight: 700;
}

.btn-light:hover {
    background: var(--yellow-dark);
}

/* ===== STRATEGIC AXES ===== */
.axes-section {
    padding: 70px 0;
    background: var(--white);
}

.axes-header {
    margin-bottom: 40px;
}

.axes-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--blue-primary);
}

.axes-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.axes-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.axes-intro p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.axes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.axis-card {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}

.axis-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.axis-image {
    width: 45%;
    min-height: 200px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.axis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axis-content {
    padding: 26px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.axis-content h3 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--blue-primary);
}

/* ===== CONNECT SECTION ===== */
.connect-section {
    background: var(--blue-darker);
    color: var(--white);
    padding: 70px 0;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.connect-left h3 {
    font-size: 15px;
    color: var(--yellow-accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connect-left h2 {
    font-size: 30px;
    margin-bottom: 18px;
}

.connect-left p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.88;
    margin-bottom: 18px;
}

.connect-link {
    color: var(--yellow-accent);
    font-size: 15px;
    font-weight: 600;
}

.connect-link:hover {
    text-decoration: underline;
}

.connect-right h3 {
    font-size: 20px;
    margin-bottom: 22px;
}

.connect-item {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.connect-item strong {
    color: var(--yellow-accent);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.social-link {
    padding: 8px 16px;
    background: var(--red-accent);
    border-radius: 4px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.social-link:hover {
    background: var(--yellow-accent);
    color: var(--blue-darker);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.testimonials-left h2 {
    font-size: 32px;
    margin-bottom: 18px;
    line-height: 1.3;
    color: var(--blue-primary);
}

.testimonials-left p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid var(--red-accent);
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ddd;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--blue-primary);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===== NEWS ===== */
.news-section {
    padding: 70px 0;
    background: var(--white);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.news-header h2 {
    font-size: 32px;
    color: var(--blue-primary);
}

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

.news-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    border-radius: 8px;
    transition: box-shadow 0.3s, border-color 0.3s;
    background: var(--white);
    border: 1px solid #eee;
}

.news-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: var(--blue-light);
}

.news-logo {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}

.news-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.news-content {
    flex: 1;
}

.news-meta {
    font-size: 13px;
    color: var(--red-accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.news-content h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--blue-primary);
}

.read-more {
    font-size: 14px;
    color: var(--red-accent);
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.news-status {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

/* ===== PARTNERS ===== */
.partners-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.partners-section h2 {
    font-size: 26px;
    margin-bottom: 34px;
    color: var(--blue-primary);
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    opacity: 0.75;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-slogan {
    font-size: 22px;
    line-height: 1.4;
    color: var(--yellow-accent);
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column h4 {
    font-size: 15px;
    color: var(--yellow-accent);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--yellow-accent);
}

.footer-contact p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--yellow-accent);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-social a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--yellow-accent);
}

/* ===========================================================
   RESPONSIVE - OFF-CANVAS MOBILE MENU
   =========================================================== */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-overlay {
        display: block;
    }

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

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 70px 0 28px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0,0,0,0.18);
        z-index: 1001;
        overflow-y: auto;
        border-left: 4px solid var(--blue-primary);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-item > a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .nav-item > a.has-dropdown::after {
        float: right;
        font-size: 10px;
        margin-top: 6px;
        transition: transform 0.3s;
    }

    .nav-item.open > a.has-dropdown::after {
        transform: rotate(180deg);
    }

    /* Sous-menu mobile : caché par défaut, déroule au clic */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: var(--bg-light);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav-item.has-submenu.open > .submenu {
        max-height: 1000px;
    }

    .submenu li a {
        padding: 13px 24px 13px 40px;
        font-size: 14px;
        white-space: normal;
        border-bottom: 1px solid #e8e8e8;
    }

    .submenu li a:hover {
        padding-left: 40px;
    }

    /* Sous-sous-menu mobile */
    .has-submenu-deep > a.has-dropdown-deep::after {
        float: right;
        margin-top: 6px;
        content: "\25BC";
    }

    .has-submenu-deep.open > a.has-dropdown-deep::after {
        transform: rotate(180deg);
    }

    .submenu-deep {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-left: none;
        border-radius: 0;
        background: #eef2f7;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .has-submenu-deep.open > .submenu-deep {
        max-height: 500px;
    }

    .submenu-deep li a {
        padding: 12px 24px 12px 56px;
        font-size: 13px;
        white-space: normal;
        border-bottom: 1px solid #dfe5ed;
    }

    .submenu-deep li a:hover {
        padding-left: 56px;
    }

    .nav-item > a.btn {
        margin: 20px 24px 0;
        font-size: 15px;
        padding: 14px 24px;
        justify-content: center;
        width: calc(100% - 48px);
        display: flex;
    }

    .nav-close {
        display: block;
    }

    /* Carousel responsive */
    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .hero-arrow.prev {
        left: 12px;
    }

    .hero-arrow.next {
        right: 12px;
    }

    .hero-dots {
        bottom: 22px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 26px;
    }

    /* Sections responsive */
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 38px;
    }

    .mission-header {
        flex-direction: column;
        gap: 20px;
    }

    .mission-header h2,
    .indicators-content h2,
    .axes-header h2,
    .connect-left h2,
    .testimonials-left h2,
    .news-header h2 {
        font-size: 26px;
    }

    .mission-cards,
    .indicators-grid,
    .axes-intro,
    .axes-grid,
    .connect-grid,
    .testimonials-grid,
    .news-grid,
    .footer-top,
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
    }

    .axis-card {
        flex-direction: column;
    }

    .axis-image,
    .axis-content {
        width: 100%;
    }

    .axis-image {
        min-height: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .partners-grid {
        justify-content: center;
    }
}

/* Empêcher le scroll du body quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}
