/* ===================================
   PAGE D'ACCUEIL - DESIGN FUTURISTE
   Couleur principale: Bleu foncé #003893
   =================================== */

:root {
    --primary-blue: #003893;
    --dark-blue: #001a4d;
    --light-blue: #0052cc;
    --accent-red: #dc143c;
    --accent-red-light: #ff1744;
    --accent-red-dark: #c41230;
    --white: #ffffff;
    --text-light: #ffffff;
    --text-gray: #666666;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --section-white-bg: #ffffff;
    --section-light-bg: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #000814 0%, var(--dark-blue) 50%, #000814 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ===================================
   TOP BAR & HEADER
   =================================== */

.top-bar {
    background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: shimmerTopBar 3s infinite;
}

@keyframes shimmerTopBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--white);
}

/* Top Bar Actions */
.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background: var(--white);
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.5);
}

.search-box {
    position: absolute;
    right: 45px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-box.active {
    width: 280px;
    opacity: 1;
    padding: 0 15px 0 20px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--dark-blue);
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-submit {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-submit:hover {
    background: var(--dark-blue);
    transform: rotate(45deg);
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-link:hover {
    background: var(--white);
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.5);
}

.user-link i {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.5);
}

/* Header Navigation */
.header {
    background: var(--white);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 56, 147, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--accent-red);
}

.nav-menu li a:hover::before {
    width: calc(100% - 40px);
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.has-dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-radius: 0;
}

.dropdown-menu li a::before {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(0, 56, 147, 0.05);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown-menu li a.active {
    color: var(--primary-blue);
    background: rgba(0, 56, 147, 0.08);
    border-left-color: var(--primary-blue);
}

.btn-donation {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light)) !important;
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    transition: all 0.3s ease !important;
}

.btn-donation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
}

.btn-donation::before {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000814;
}

@keyframes heroGradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 56, 147, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 40%);
    will-change: transform;
}

.hero::before {
    display: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-40px) rotate(-180deg) scale(1.1);
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(-20px);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 0 30px;
    z-index: 0;
    pointer-events: none;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-overlay.overlay-dark {
    background: transparent;
}

.hero-overlay.overlay-gradient {
    background: transparent;
}

.hero-overlay.overlay-medium {
    background: transparent;
}

.hero-overlay-animated {
    background: transparent;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.visual-bg-news {
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.7) 0%, rgba(0, 56, 147, 0.6) 50%, rgba(220, 20, 60, 0.7) 100%);
    background-size: 400% 400%;
    animation: slideGradient 12s ease infinite;
}

.visual-bg-project {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.7) 0%, rgba(0, 56, 147, 0.6) 50%, rgba(0, 26, 77, 0.7) 100%);
    background-size: 400% 400%;
    animation: slideGradient 12s ease infinite;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(40px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.8), transparent);
    top: -100px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 56, 147, 0.8), transparent);
    top: 50%;
    right: -80px;
    animation: floatShape2 18s ease-in-out infinite;
    animation-delay: 2s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.7), transparent);
    bottom: -50px;
    left: 30%;
    animation: floatShape 20s ease-in-out infinite;
    animation-delay: 4s;
}

.circle-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.6), transparent);
    top: 20%;
    left: 50%;
    animation: floatShape3 16s ease-in-out infinite;
    animation-delay: 1s;
}

.visual-square {
    position: absolute;
    opacity: 0.3;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

.square-1 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 15%;
    animation: rotateSquare 25s linear infinite;
}

.square-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    animation: rotateSquare 20s linear infinite reverse;
    animation-delay: 3s;
}

.visual-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0.6;
}

.line-1 {
    width: 40%;
    top: 25%;
    left: -20%;
    animation: slideLine 8s ease-in-out infinite;
}

.line-2 {
    width: 50%;
    top: 60%;
    right: -25%;
    animation: slideLine 10s ease-in-out infinite;
    animation-delay: 2s;
}

.line-3 {
    width: 35%;
    bottom: 30%;
    left: -15%;
    animation: slideLine 12s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes rotateSquare {
    0% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(225deg) scale(1.2);
    }
    100% {
        transform: rotate(405deg) scale(1);
    }
}

@keyframes slideLine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Amélioration des slides 2-6 */
.hero-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.hero-card::before {
    display: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-section-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #00d4ff;
    margin-bottom: 35px;
    text-align: center;
    text-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 15px rgba(0, 212, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 1);
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero-badge.badge-small {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.hero-badge.top-right {
    position: absolute;
    top: 30px;
    right: 40px;
    margin-bottom: 0;
}

.hero-card-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1.3;
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 4px 25px rgba(0, 0, 0, 1), 0 2px 15px rgba(0, 0, 0, 0.9);
    display: block !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.hero-card-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #ffffff;
    margin-bottom: 45px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-card-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 45px;
}

.hero-impact {}

.hero-impact {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.hero-impact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.hero-impact::before {
    display: none;
}

.hero-title {
    font-size: 6.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 900;
    color: #ffffff !important;
    text-align: center !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.hero-impact .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: block !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.hero-impact .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #ffffff;
    margin-bottom: 45px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 6.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 56, 147, 0.3);
    letter-spacing: -0.5px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 1.2s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.9;
    color: #ffffff;
    margin-bottom: 45px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons .btn,
.hero-card-actions .btn {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    cursor: pointer;
    pointer-events: auto;
}

.hero-buttons .btn::before,
.hero-card-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.hero-buttons .btn:hover::before,
.hero-card-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn:hover,
.hero-card-actions .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0052cc 0%, #003893 100%);
    box-shadow: 0 4px 20px rgba(0, 56, 147, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Badges de mise en vedette classiques */
.slide-badge {
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-badge.center {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.slide-badge.right {
    display: block;
    text-align: right;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

.slide-badge.annonce {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.slide-badge.article {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4);
}

.slide-badge.projet {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: white;
    box-shadow: 0 3px 10px rgba(34, 139, 34, 0.4);
}

.news-preview {
    max-width: 800px;
    text-align: left;
}

.news-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc143c, #ff4757);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-badge.project-badge {
    background: linear-gradient(135deg, #003893, #0056d6);
    box-shadow: 0 5px 20px rgba(0, 56, 147, 0.4);
}

.news-preview h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.5);
}

.news-preview p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: var(--white);
    box-shadow: 0 5px 25px rgba(220, 20, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-red);
}

.btn-secondary:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--accent-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--accent-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background: var(--accent-red);
    transform: scale(1.3);
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    padding: 100px 0;
    position: relative;
    background: var(--section-white-bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 56, 147, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover i {
    transform: scale(1.2) rotateY(360deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto 60px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--section-white-bg);
}

.vision-section {
    background: linear-gradient(135deg, #001a4d 0%, #003893 50%, #001a4d 100%) !important;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}

.vision-section * {
    color: #ffffff !important;
}

/* Animation de symboles flottants */
.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.vision-section .container {
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    display: block !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.vision-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    display: block !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
}

.vision-section h2::after {
    content: '';
    display: block;
    margin: 20px auto 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    border-radius: 2px;
}

.vision-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 30px auto 60px;
}

.approach-section {
    background: var(--section-white-bg) !important;
}

.approach-section h2,
.approach-section h3,
.approach-section h4 {
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.approach-section p {
    color: var(--text-gray) !important;
}

.section-subtitle-accent {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.approach-cta {
    margin-top: 50px;
    text-align: center;
}

.approach-cta .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

.about-content,
.vision-content,
.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p,
.approach-content > p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-content > p,
.vision-content .vision-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

/* Vision Pillars */
.vision-pillars {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px;
    margin: 60px auto;
    max-width: 1300px;
}

.pillar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.pillar-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    transition: all 0.4s ease;
}

.pillar:hover .pillar-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
}

.pillar-icon-circle i {
    font-size: 2.5rem;
    color: #ffffff;
}

.pillar h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.pillar p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.pillar-cta:hover {
    color: var(--accent-red);
    gap: 12px;
}

.pillar-cta i {
    transition: transform 0.3s ease;
}

.pillar-cta:hover i {
    transform: translateX(5px);
}

.vision-cta-main {
    margin-top: 50px;
    text-align: center;
}

.vision-cta-main .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Values Grid */
.values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px;
    margin: 60px auto;
    max-width: 1300px;
}

/* Carte avec effet flip */
.value-card {
    perspective: 1000px;
    height: 320px;
}

.value-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.value-card:hover .value-card-inner {
    transform: rotateY(180deg);
}

.value-card-front,
.value-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #ffffff;
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-card-front {
    background: linear-gradient(135deg, #ffffff, #fff5f7);
}

.value-card-back {
    transform: rotateY(180deg);
    border-color: var(--accent-red);
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    color: #ffffff;
}

.value-card:hover .value-card-front {
    border-color: var(--accent-red);
}

.value-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    transition: all 0.4s ease;
}

.value-card:hover .value-card-front .value-icon-circle {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
}

.value-card-back .value-icon-circle {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.value-icon-circle i {
    font-size: 2.2rem;
    color: #ffffff;
}

.value-card-front h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card-back h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-card-back p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 0.95rem;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.value-item.active p {
    color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   3D CAROUSEL - Notre Approche
   =================================== */

.approach-carousel-3d {
    overflow: visible;
    padding: 120px 0;
}

.carousel-3d-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 100px;
}

.carousel-3d-container {
    position: relative;
    width: 500px;
    height: 450px;
    margin: 0 auto;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.carousel-3d-item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.carousel-3d-item.active {
    z-index: 10;
    transform: translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
}

.carousel-3d-item.prev {
    transform: translateX(-80%) translateZ(-350px) rotateY(45deg) scale(0.75);
    opacity: 0.4;
    z-index: 5;
}

.carousel-3d-item.next {
    transform: translateX(80%) translateZ(-350px) rotateY(-45deg) scale(0.75);
    opacity: 0.4;
    z-index: 5;
}

.carousel-3d-item.hidden {
    transform: translateZ(-600px) scale(0.5);
    opacity: 0;
    z-index: 1;
}

.carousel-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    border: 3px solid var(--accent-red);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.carousel-3d-item.active .carousel-card {
    box-shadow: 0 30px 80px rgba(220, 20, 60, 0.4);
}

.carousel-card-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
    transition: all 0.4s ease;
}

.carousel-3d-item.active .carousel-card-icon {
    transform: scale(1.1) rotateY(360deg);
}

.carousel-card-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.carousel-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.carousel-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    z-index: 20;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    background: rgba(220, 20, 60, 0.6);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

.approach-cta {
    margin-top: 70px;
}

/* ===================================
   SECTORS SECTION
   =================================== */

.sectors-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
}

.sectors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 56, 147, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.sectors-section .container {
    position: relative;
    z-index: 2;
}

/* Sectors Tabs - Titres toujours visibles */
.sectors-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.tab-btn {
    padding: 30px 20px;
    background: #ffffff;
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tab-btn i {
    font-size: 2.5rem;
    color: var(--accent-red);
    transition: all 0.4s ease;
}

.tab-btn h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: all 0.4s ease;
}

.tab-btn:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
}

.tab-btn:hover i {
    transform: scale(1.15);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.tab-btn.active i {
    color: #ffffff;
    transform: scale(1.2);
}

.tab-btn.active h3 {
    color: #ffffff;
}

/* Sectors Content */
.sectors-content {
    margin-top: 50px;
    min-height: 400px;
}

.sector-tab-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.sector-tab-content.active {
    display: block;
}

.sector-details {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.sector-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.5);
    animation: rotateIcon 3s linear infinite;
}

@keyframes rotateIcon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.sector-icon-large i {
    font-size: 3.5rem;
    color: var(--white);
}

.sector-subtitle {
    font-size: 1.6rem;
    color: var(--accent-red);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.sector-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sector-objectives {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.sector-objectives li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.sector-objectives li i {
    color: var(--accent-red);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sector-objectives li strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Axes Grid avec effet flip */
.axes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.axe-card-flip {
    perspective: 1000px;
    height: 280px;
}

.axe-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.axe-card-flip:hover .axe-card-inner,
.axe-card-flip.flipped .axe-card-inner {
    transform: rotateY(180deg);
}

.axe-card-front,
.axe-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #ffffff;
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.axe-card-front {
    background: linear-gradient(135deg, #ffffff, #fff8f9);
}

.axe-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    border-color: var(--accent-red);
}

.axe-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
    }
}

.axe-card-back .axe-icon {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.axe-icon i {
    font-size: 2rem;
    color: var(--white);
}

.axe-card-front h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.axe-card-back h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.axe-card-back p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

.sector-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.btn-outline:hover {
    background: var(--accent-red);
    color: #ffffff;
}

@media (max-width: 992px) {
    .sectors-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .axes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .axe-card-flip {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .sectors-tabs {
        grid-template-columns: 1fr;
    }
    
    .axes-grid {
        grid-template-columns: 1fr;
    }
    
    .axe-card-flip {
        height: 280px;
    }
    
    .sector-ctas {
        flex-direction: column;
    }
    
    .sector-ctas .btn {
        width: 100%;
    }
}

.read-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 15px;
    color: var(--accent-red-light);
}

/* ===================================
   PROJECTS SECTION
   =================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 8, 20, 0.8) 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 25px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-tags .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

/* ===== PROJETS SECTION ===== */
.projects-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.projects-filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label i {
    color: var(--accent-red);
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.filter-select:hover {
    border-color: var(--accent-red);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Grille Masonry */
.projects-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.project-card-masonry {
    background: #ffffff;
    border: 2px solid rgba(220, 20, 60, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.project-card-masonry:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.25);
    border-color: var(--accent-red);
}

.project-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card-masonry:hover .project-image img {
    transform: scale(1.1);
}

.project-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.status-termine {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

.status-encours {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
}

.status-programme {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.project-tag {
    background: rgba(220, 20, 60, 0.1);
    color: var(--accent-red);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-summary {
    margin-bottom: 20px;
}

.project-summary p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.project-summary i {
    color: var(--accent-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.project-description {
    margin-top: 12px;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
}

.project-progress {
    margin: 20px 0;
    padding: 15px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 12px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-percentage {
    color: var(--accent-red);
    font-size: 1.1rem;
    font-weight: 700;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background: rgba(220, 20, 60, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-low {
    background: linear-gradient(90deg, #ef4444, #f59e0b);
}

.progress-medium {
    background: linear-gradient(90deg, #f59e0b, #eab308);
}

.progress-high {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.project-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-project {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-project.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    color: #ffffff;
    border: none;
}

.btn-project.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.btn-project.btn-outline {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.btn-project.btn-outline:hover {
    background: var(--accent-red);
    color: #ffffff;
}

/* ============================================================
   SECTION 7: REJOIGNEZ-NOUS
   ============================================================ */

.join-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.join-section .section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.join-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.join-section .section-intro {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

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

.join-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.4s ease;
}

.join-card-blue::before {
    background: linear-gradient(90deg, #0056D2 0%, #003893 100%);
}

.join-card-green::before {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.join-card-orange::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.join-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.recruiting-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.join-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.join-card-blue .join-card-icon {
    background: linear-gradient(135deg, #0056D2 0%, #003893 100%);
}

.join-card-green .join-card-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.join-card-orange .join-card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.join-card:hover .join-card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.join-card-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.join-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.join-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.join-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.join-card-features li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.join-card-features li i {
    color: var(--accent-red);
    margin-top: 4px;
    font-size: 0.85rem;
}

.join-card-cta {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.join-card:hover .join-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-join-blue {
    background: linear-gradient(135deg, #0056D2 0%, #003893 100%);
    color: #ffffff;
}

.btn-join-blue:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 86, 210, 0.4);
}

.btn-join-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

.btn-join-green:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-join-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

.btn-join-orange:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-join i {
    transition: transform 0.3s ease;
}

.btn-join:hover i {
    transform: translateX(5px);
}

.join-global-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-join-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.3);
}

.btn-join-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220, 20, 60, 0.4);
}

.btn-join-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-join-secondary:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-3px);
}

.join-rgpd-text {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .join-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .join-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .join-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .join-global-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-join-primary,
    .btn-join-secondary {
        text-align: center;
    }
    
    .join-section h2 {
        font-size: 1.8rem;
    }
    
    .join-section .section-intro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .join-section {
        padding: 60px 0;
    }
    
    .join-card {
        padding: 30px 20px;
    }
    
    .recruiting-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
    background: var(--accent-red);
    color: #ffffff;
}

.projects-cta-main {
    margin-top: 80px;
    text-align: center;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.progress-info span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.progress-value {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1rem;
}

/* ===================================
   TEAM SECTION - WHITE BACKGROUND
   =================================== */

.team-section-white {
    background: #ffffff;
    padding: 80px 0;
}

.team-section-white h2 {
    color: #003893;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle-dark {
    color: #333333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.team-member-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 56, 147, 0.15);
    border-color: #003893;
}

.team-member-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003893, #0056d6);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #003893;
}

.team-member-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    color: #003893;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-member-expertise {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.expertise-tag {
    background: #003893;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.team-member-info p {
    color: #555555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-cta {
    background: #f0f4ff;
    border: 2px solid #003893;
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
}

.team-cta h3 {
    color: #003893;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.btn-classic {
    display: inline-block;
    background: #003893;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #003893;
}

.btn-classic:hover {
    background: #dc143c;
    border-color: #dc143c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

@media (max-width: 992px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-member-card {
        flex-direction: column;
        text-align: center;
    }
    
    .team-member-icon {
        margin: 0 auto;
    }
}

/* OLD TEAM STYLES - KEEPING FOR COMPATIBILITY */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.team-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 56, 147, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ============================================================
   SECTION 8: ACTUALITÉS
   ============================================================ */

.news-section-white {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.news-section-white::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 56, 147, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.news-section-white .section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.news-section-white h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-section-white .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-grid-wrapper {
    margin-bottom: 50px;
}

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

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 56, 147, 0.2);
}

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.15) rotate(2deg);
}

.news-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    z-index: 2;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 56, 147, 0.1);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-category i {
    font-size: 0.75rem;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 0.85rem;
}

.news-date i {
    font-size: 0.75rem;
}

.news-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: var(--primary-blue);
}

.news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.read-more:hover {
    color: var(--accent-red);
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.news-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-news-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #003893 0%, #0056D2 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 56, 147, 0.3);
}

.btn-news-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 56, 147, 0.4);
}

.btn-news-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-news-secondary:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive - Desktop large */
@media (max-width: 1200px) {
    .news-grid {
        gap: 30px;
    }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-section-white h2 {
        font-size: 2.2rem;
    }
}

/* Responsive - Mobile (Slider) */
@media (max-width: 768px) {
    .news-section-white {
        padding: 60px 0;
    }
    
    .news-grid-wrapper {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-blue) #f0f0f0;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }
    
    .news-grid-wrapper::-webkit-scrollbar {
        height: 8px;
    }
    
    .news-grid-wrapper::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }
    
    .news-grid-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 10px;
    }
    
    .news-grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        padding: 0 10px;
    }
    
    .news-card {
        min-width: 320px;
        flex-shrink: 0;
    }
    
    .news-ctas {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .btn-news-primary,
    .btn-news-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .news-section-white h2 {
        font-size: 1.9rem;
    }
    
    .news-section-white .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .news-card {
        min-width: 280px;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================================
   SECTION 9: FAIRE UN DON
   ============================================================ */

.donation-cta-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.donation-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.donation-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.donation-header-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.donation-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.donation-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.donation-left-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.donation-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.donation-slider {
    position: relative;
    width: 100%;
    height: 350px;
}

.donation-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.donation-slide.active {
    opacity: 1;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #ffffff;
    border-color: var(--accent-red);
    transform: scale(1.3);
}

.donation-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.donation-overlay-badge i {
    font-size: 2rem;
    color: var(--accent-red);
}

.donation-overlay-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Autres méthodes de don */
.other-donation-methods {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.other-donation-methods > h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.other-donation-methods > h3 i {
    color: var(--primary-blue);
}

.donation-method-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.donation-method-card:last-child {
    margin-bottom: 0;
}

.donation-method-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 56, 147, 0.1);
    transform: translateX(5px);
}

.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0056D2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.method-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.method-detail {
    background: rgba(0, 56, 147, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    margin: 5px 0;
}

.method-address {
    font-size: 0.85rem;
    line-height: 1.8;
}

.method-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--accent-red);
}

.method-link i {
    font-size: 0.9rem;
}

.nature-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.nature-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.nature-list i {
    color: #22c55e;
    margin-top: 3px;
    font-size: 0.85rem;
}

.method-contact {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.donation-form-side {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.donation-form-side h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Montants rapides */
.donation-amounts {
    margin-bottom: 35px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 18px 10px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.custom-amount {
    position: relative;
}

.custom-amount label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.amount-input {
    width: 100%;
    padding: 15px 60px 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 56, 147, 0.1);
}

.currency-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #666;
    margin-top: 12px;
}

/* Secteur d'affectation */
.donation-sector {
    margin-bottom: 35px;
}

.sector-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"%3E%3Cpath fill="%23333" d="M6 8L0 0h12z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.sector-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 56, 147, 0.1);
}

/* Fréquence don */
.donation-frequency {
    margin-bottom: 35px;
}

.frequency-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.frequency-option {
    position: relative;
    cursor: pointer;
}

.frequency-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.frequency-label {
    display: block;
    padding: 18px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.frequency-option input:checked + .frequency-label {
    background: linear-gradient(135deg, #0056D2 0%, #003893 100%);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0, 56, 147, 0.3);
}

.badge-impact {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 10px;
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.frequency-option input:checked + .frequency-label .badge-impact {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Confiance & sécurité */
.trust-security {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 20px;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 5px;
}

.trust-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.trust-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.trust-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.trust-link:hover {
    color: var(--accent-red);
}

/* CTA principal */
.btn-donation-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
    margin-bottom: 25px;
}

.btn-donation-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.5);
}

.btn-donation-main i {
    font-size: 1.4rem;
}

/* Moyens de paiement */
.payment-methods {
    text-align: center;
}

.payment-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-icons i {
    font-size: 2rem;
    color: #666;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-blue);
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .donation-main-content {
        gap: 40px;
    }
    
    .donation-image-side img {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .donation-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .donation-image-side {
        order: -1;
    }
    
    .donation-image-side img {
        height: 400px;
    }
    
    .donation-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .donation-cta-section {
        padding: 60px 0;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .frequency-options {
        grid-template-columns: 1fr;
    }
    
    .donation-form-side {
        padding: 30px 25px;
    }
    
    .donation-header h2 {
        font-size: 2rem;
    }
    
    .donation-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .donation-image-side img {
        height: 300px;
    }
    
    .donation-overlay-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .donation-overlay-badge i {
        font-size: 1.5rem;
    }
    
    .donation-overlay-badge span {
        font-size: 0.95rem;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icons i {
        font-size: 1.6rem;
    }
}

/* ============================================================
   SECTION 10: TÉMOIGNAGES / IMPACT
   ============================================================ */

.impact-section {
    background: var(--section-white-bg);
    padding: 80px 0;
}

.impact-stories-sliders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.story-slider {
    position: relative;
    min-height: 500px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 56, 147, 0.4);
}

.slider-nav i {
    color: var(--primary-blue);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.slider-nav:hover i {
    color: #ffffff;
}

.prev-story {
    left: 10px;
}

.next-story {
    right: 10px;
}

.story-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(150, 150, 150, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
}

.story-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.story-card:hover {
    transform: translateY(-10px);
    background: #001a4d;
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 56, 147, 0.5);
}

.story-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.5);
}

.story-badge i {
    color: var(--white);
    font-size: 1.5rem;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.5rem;
    color: #001a4d;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.story-card:hover .story-content h3 {
    color: #ffffff;
}

.story-category {
    color: var(--accent-red);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

.story-zone {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.story-card:hover .story-zone {
    color: #ccc;
}

.story-zone i {
    color: var(--accent-red);
}

.story-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-card:hover .story-content p {
    color: #e0e0e0;
}

.story-impact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.story-impact span {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-card:hover .story-impact span {
    color: #e0e0e0;
}

.story-impact i {
    color: var(--accent-red);
}

/* Responsive */
@media (max-width: 992px) {
    .impact-stories-sliders {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-slider {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 60px 0;
    }
    
    .story-slider {
        min-height: 400px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-story {
        left: -15px;
    }
    
    .next-story {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .story-content {
        padding: 20px;
    }
    
    .story-image {
        height: 200px;
    }
}

/* ===================================
   TESTIMONIALS SECTION (LEGACY - KEPT FOR COMPATIBILITY)
   ============================================================ */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 56, 147, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0 50px;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--accent-red);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    min-height: 120px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 56, 147, 0.2);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.author-zone {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-zone i {
    color: var(--accent-red);
    font-size: 0.8rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #003893 0%, #0056D2 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 56, 147, 0.3);
}

.btn-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 56, 147, 0.4);
}

.btn-testimonials i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-sliders {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-slider {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        min-height: 100px;
    }
    
    .author-photo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ===================================
   IMPACT SECTION (LEGACY - KEPT FOR COMPATIBILITY)
   =================================== */

.impact-section {
    background: var(--section-white-bg);
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(150, 150, 150, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    background: #001a4d;
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 56, 147, 0.5);
}

.story-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.5);
}

.story-badge i {
    color: var(--white);
    font-size: 1.5rem;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.5rem;
    color: #001a4d;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.story-card:hover .story-content h3 {
    color: #ffffff;
}

.story-category {
    color: var(--accent-red);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.story-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-impact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.story-impact span {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-impact i {
    color: var(--accent-red);
}

/* ===================================
   PARTNERS SECTION - SIMPLE
   =================================== */

.partners-section-simple {
    background: #ffffff;
    padding: 80px 0;
}

.partners-section-simple h2 {
    color: #003893;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partners-slider-container {
    overflow: hidden;
    margin: 50px 0;
    padding: 40px 0;
    position: relative;
}

.partners-slider {
    display: flex;
    align-items: center;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.partners-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-slide {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 120px;
    width: 180px;
    margin: 0 20px;
    flex-shrink: 0;
}

.partner-logo-slide:hover {
    transform: translateY(-5px);
    border-color: #003893;
    box-shadow: 0 10px 25px rgba(0, 56, 147, 0.15);
}

.partner-logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.partner-logo-slide:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partner-logo-slide {
        width: 150px;
        height: 100px;
        padding: 20px;
        margin: 0 15px;
    }
}

/* OLD STATIC LOGOS - KEEPING FOR COMPATIBILITY */
.partners-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 40px 0;
}

.partner-logo-simple {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 120px;
    width: 180px;
}

.partner-logo-simple:hover {
    transform: translateY(-5px);
    border-color: #003893;
    box-shadow: 0 10px 25px rgba(0, 56, 147, 0.15);
}

.partner-logo-simple img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.partner-logo-simple:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-logos-row {
        gap: 20px;
    }
    
    .partner-logo-simple {
        width: 150px;
        height: 100px;
        padding: 20px;
    }
}

/* ============================================================
   SECTION 11: PARTENAIRES - INFINITE SCROLL
   ============================================================ */

.partners-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 56, 147, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.partners-scroll-wrapper {
    margin: 60px 0 50px;
    position: relative;
    z-index: 1;
}

/* Fade edges for smooth visual effect */
.partners-scroll-wrapper::before,
.partners-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-scroll-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.partners-scroll-track:hover .partners-scroll-content {
    animation-play-state: paused;
}

.partners-scroll-content {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

/* Row 1: Scroll right */
.partners-scroll-track[data-direction="right"] .partners-scroll-content {
    animation: scrollRight 40s linear infinite;
}

/* Row 2: Scroll left */
.partners-scroll-track[data-direction="left"] .partners-scroll-content {
    animation: scrollLeft 45s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0);
    }
}

.partner-logo-item {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
    z-index: 10;
}

.strategic-star {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.partner-logo-item a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.85);
    transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.03);
}

.partners-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.btn-partner-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.25);
}

.btn-partner-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.35);
}

.btn-partner-primary i {
    transition: transform 0.3s ease;
}

.btn-partner-primary:hover i {
    transform: translateX(3px);
}

.btn-partner-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-partner-secondary:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-partner-secondary i {
    transition: transform 0.3s ease;
}

.btn-partner-secondary:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .partners-scroll-wrapper::before,
    .partners-scroll-wrapper::after {
        width: 80px;
    }
    
    .partner-logo-item {
        width: 200px;
        height: 130px;
        padding: 12px;
    }
    
    .partners-scroll-content {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-scroll-wrapper::before,
    .partners-scroll-wrapper::after {
        width: 50px;
    }
    
    .partner-logo-item {
        width: 180px;
        height: 120px;
        padding: 12px;
    }
    
    .partners-scroll-content {
        gap: 30px;
    }
    
    .partners-scroll-track[data-direction="right"] .partners-scroll-content {
        animation: scrollRight 30s linear infinite;
    }
    
    .partners-scroll-track[data-direction="left"] .partners-scroll-content {
        animation: scrollLeft 35s linear infinite;
    }
    
    .partners-ctas {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        gap: 15px;
    }
    
    .btn-partner-primary,
    .btn-partner-secondary {
        text-align: center;
        justify-content: center;
        padding: 16px 35px;
    }
}

@media (max-width: 480px) {
    .partner-logo-item {
        width: 160px;
        height: 110px;
        padding: 10px;
    }
    
    .strategic-star {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
}

/* OLD PARTNERS STYLES - KEEPING FOR COMPATIBILITY */
.partners-section-legacy {
    background: var(--section-white-bg);
}

.partner-category {
    margin-bottom: 60px;
}

.partner-category h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-logo {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 150px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.become-partner {
    background: linear-gradient(135deg, rgba(0, 56, 147, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.become-partner h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.become-partner p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===================================
   NEWSLETTER SECTION - ENHANCED (Updated 2026-01-04)
   =================================== */

.newsletter-section {
    background: linear-gradient(135deg, #001f4d 0%, #000814 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-wrapper-2col {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column */
.newsletter-left-column {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-left-column .newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
}

.newsletter-left-column .newsletter-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.newsletter-left-column h2 {
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
    display: block !important;
    transform: none !important;
    left: auto !important;
    position: relative !important;
}

.newsletter-left-column .newsletter-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-left-column .newsletter-lead-magnet {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto 40px;
}

.newsletter-left-column .newsletter-lead-magnet i {
    font-size: 1.2rem;
    color: #DC143C;
}

.newsletter-left-column .newsletter-trust {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: auto;
    padding-top: 30px;
}

.newsletter-left-column .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-left-column .trust-item i {
    font-size: 1.5rem;
    color: #DC143C;
    flex-shrink: 0;
}

.newsletter-left-column .trust-item span {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
}

/* Right Column */
.newsletter-right-column {
    padding-left: 20px;
}

.newsletter-form-enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.form-group-email .input-icon {
    position: relative;
}

.form-group-email .input-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.form-group-email input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-group-email input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group-email input:focus {
    outline: none;
    border-color: #DC143C;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

.form-group-preferences {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.preferences-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.preferences-label i {
    color: #DC143C;
}

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

.preference-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.preference-checkbox:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.preference-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.preference-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    border-color: #DC143C;
}

.preference-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.7rem;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.btn-newsletter-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #DC143C 0%, #A01028 100%);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.3);
}

.btn-newsletter-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220, 20, 60, 0.4);
}

.btn-newsletter-submit i {
    transition: transform 0.3s ease;
}

.btn-newsletter-submit:hover i {
    transform: translateX(5px);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.newsletter-privacy i {
    color: #DC143C;
}

/* Responsive */
@media (max-width: 992px) {
    .newsletter-wrapper-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .newsletter-left-column,
    .newsletter-right-column {
        padding: 0;
    }
    
    .newsletter-left-column h2 {
        font-size: 2rem;
    }
    
    .newsletter-left-column .newsletter-trust {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .newsletter-left-column h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-left-column .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-form-enhanced {
        padding: 30px 20px;
    }
    
    .preferences-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-left-column .newsletter-trust {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .newsletter-left-column .trust-item span {
        font-size: 0.8rem;
    }
}

/* OLD NEWSLETTER STYLES - KEPT FOR COMPATIBILITY */
.newsletter-content-legacy {
}

/* ==========================================
   SECTION 13: TRANSPARENCE (UN/ONG STYLE)
   ========================================== */

.transparency-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.transparency-section .container {
    max-width: 1200px;
}

/* Header avec badge */
.transparency-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #003893 0%, #0056d6 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.header-badge i {
    font-size: 1.1rem;
}

.transparency-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.transparency-header .section-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid principal */
.transparency-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Cartes communes */
.allocation-card,
.credentials-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.card-header i {
    font-size: 1.5rem;
    color: #003893;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

/* Barres progressives */
.allocation-bars {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 25px;
}

.bar-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.bar-percentage {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003893;
}

.bar-container {
    width: 100%;
    height: 14px;
    background: #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    width: 0;
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bar-fill.programmes {
    background: linear-gradient(90deg, #28a745 0%, #34ce57 100%);
}

.bar-fill.fonctionnement {
    background: linear-gradient(90deg, #003893 0%, #0056d6 100%);
}

.bar-fill.collecte {
    background: linear-gradient(90deg, #ff8c00 0%, #ffb347 100%);
}

/* Animation au chargement */
.transparency-section .bar-fill[data-width="85"] {
    width: 85%;
}

.transparency-section .bar-fill[data-width="10"] {
    width: 10%;
}

.transparency-section .bar-fill[data-width="5"] {
    width: 5%;
}

/* Note allocation */
.allocation-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #003893;
}

.allocation-note i {
    font-size: 1.3rem;
    color: #003893;
    flex-shrink: 0;
    margin-top: 2px;
}

.allocation-note p {
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

/* Section credentials */
.credentials-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Badges de reconnaissance */
.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 56, 147, 0.12);
    border-color: #003893;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003893 0%, #0056d6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

/* Stats clés */
.key-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    border-radius: 12px;
    color: #ffffff;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Actions */
.transparency-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-transparency {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-transparency.primary {
    background: linear-gradient(135deg, #003893 0%, #0056d6 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 56, 147, 0.25);
}

.btn-transparency.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 56, 147, 0.35);
}

.btn-transparency.secondary {
    background: #ffffff;
    color: #003893;
    border-color: #003893;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-transparency.secondary:hover {
    background: #003893;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-transparency i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .transparency-section {
        padding: 70px 0;
    }
    
    .transparency-header h2 {
        font-size: 2.3rem;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .transparency-section {
        padding: 50px 0;
    }
    
    .transparency-header h2 {
        font-size: 1.9rem;
    }
    
    .transparency-header .section-intro {
        font-size: 1rem;
    }
    
    .allocation-card,
    .credentials-card {
        padding: 25px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .bar-title {
        font-size: 0.9rem;
    }
    
    .bar-percentage {
        font-size: 1.1rem;
    }
    
    .key-stats {
        grid-template-columns: 1fr;
    }
    
    .transparency-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-transparency {
        justify-content: center;
    }
}


/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .donation-cta-content,
    .newsletter-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 8, 20, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 600px;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 56, 147, 0.1);
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 8px;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-menu li a:hover {
        color: #ffffff;
        background: rgba(220, 20, 60, 0.2);
    }
}

/* ===================================
   NOTIFICATION TOAST
   =================================== */

.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: #333333;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-toast i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success i {
    color: #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-error i {
    color: #ef4444;
}

.notification-warning {
    border-left: 4px solid #f59e0b;
}

.notification-warning i {
    color: #f59e0b;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-info i {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .notification-toast {
        right: 10px;
        left: 10px;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   SECTION 15: CONTACT
   ========================================== */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.contact-section .container {
    max-width: 1200px;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    display: block;
    background: none;
    -webkit-text-fill-color: initial;
    left: auto;
    transform: none;
}

.contact-header h2::after {
    display: none;
}

.contact-header .section-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: stretch;
}

/* Formulaire */
.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

/* Badge au-dessus du formulaire */
.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #003893 0%, #0056d6 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.form-badge i {
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group label i {
    font-size: 1rem;
    color: #003893;
}

.required {
    color: #dc2626;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: #2d3748;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003893;
    box-shadow: 0 0 0 3px rgba(0, 56, 147, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23003893' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

/* Checkbox RGPD */
.form-group-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #003893;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    cursor: pointer;
}

.form-group-checkbox label a {
    color: #003893;
    text-decoration: underline;
    font-weight: 600;
}

.form-group-checkbox label a:hover {
    color: #0056d6;
}

/* Footer formulaire */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    gap: 20px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.response-time i {
    font-size: 1rem;
    color: #28a745;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #003893 0%, #0056d6 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 56, 147, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 56, 147, 0.35);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Sidebar Info */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.info-card-header i {
    font-size: 1.4rem;
    color: #003893;
}

.info-card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

/* Info Items */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: #003893;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.5;
}

.info-value[href] {
    color: #003893;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-value[href]:hover {
    color: #0056d6;
    text-decoration: underline;
}

/* Social Links */
.social-card {
    background: #ffffff;
    color: #2d3748;
}

.social-card .info-card-header {
    border-bottom-color: #f1f5f9;
}

.social-card .info-card-header i,
.social-card .info-card-header h3 {
    color: #1a202c;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    color: #1a202c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 1.3rem;
    color: #1a202c;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: #ffffff;
}

.social-link span {
    display: none;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
}

.social-link.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-header h2 {
        font-size: 2.3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header h2 {
        font-size: 1.9rem;
    }
    
    .contact-header .section-intro {
        font-size: 1rem;
    }
    
    .contact-form-card,
    .info-card {
        padding: 25px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .response-time {
        justify-content: center;
    }
}

        background: rgba(0, 56, 147, 0.2);
        color: #ffffff;
    }

    .has-dropdown > a {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-title,
    .hero-card-title,
    .hero-impact .hero-title {
        color: #ffffff !important;
        text-align: center !important;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .projects-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .projects-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-slide {
        left: 15px;
    }
    
    .next-slide {
        right: 15px;
    }
    
    .vision-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .value-card {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-title,
    .hero-card-title,
    .hero-impact .hero-title {
        color: #ffffff !important;
        text-align: center !important;
    }
    
    .stats-grid,
    .vision-pillars,
    .values-grid,
    .sectors-grid,
    .projects-masonry-grid,
    .team-grid,
    .news-grid,
    .impact-stories,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .btn-project {
        width: 100%;
    }
    
    .value-card {
        height: 300px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ===================================
   ANIMATION DES SYMBOLES FLOTTANTS
   ================================ */

.floating-symbol {
    position: absolute;
    bottom: -50px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatUp 25s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 0 rgba(255, 255, 255, 0.2),
        0 3px 0 rgba(255, 255, 255, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes floatUp {
    0% {
        bottom: -50px;
        transform: translateX(0) rotateY(0deg) rotateZ(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: calc(100% + 50px);
        transform: translateX(30px) rotateY(180deg) rotateZ(180deg);
        opacity: 0;
    }
}

.floating-symbol:nth-child(1) { left: 5%; animation-duration: 28s; font-size: 1.2rem; }
.floating-symbol:nth-child(2) { left: 15%; animation-duration: 35s; animation-delay: 3s; font-size: 2.8rem; }
.floating-symbol:nth-child(3) { left: 25%; animation-duration: 30s; animation-delay: 7s; font-size: 1.5rem; }
.floating-symbol:nth-child(4) { left: 35%; animation-duration: 40s; animation-delay: 2s; font-size: 2.3rem; }
.floating-symbol:nth-child(5) { left: 45%; animation-duration: 26s; animation-delay: 5s; font-size: 3rem; }
.floating-symbol:nth-child(6) { left: 55%; animation-duration: 38s; animation-delay: 9s; font-size: 1.4rem; }
.floating-symbol:nth-child(7) { left: 65%; animation-duration: 32s; animation-delay: 4s; font-size: 2.6rem; }
.floating-symbol:nth-child(8) { left: 75%; animation-duration: 42s; animation-delay: 8s; font-size: 1.8rem; }
.floating-symbol:nth-child(9) { left: 85%; animation-duration: 29s; animation-delay: 1s; font-size: 2.4rem; }
.floating-symbol:nth-child(10) { left: 95%; animation-duration: 36s; animation-delay: 6s; font-size: 1.6rem; }
.floating-symbol:nth-child(11) { left: 10%; animation-duration: 27s; animation-delay: 10s; font-size: 2.9rem; }
.floating-symbol:nth-child(12) { left: 20%; animation-duration: 39s; animation-delay: 3s; font-size: 1.3rem; }
.floating-symbol:nth-child(13) { left: 30%; animation-duration: 33s; animation-delay: 9s; font-size: 2.5rem; }
.floating-symbol:nth-child(14) { left: 40%; animation-duration: 37s; animation-delay: 2s; font-size: 1.7rem; }
.floating-symbol:nth-child(15) { left: 50%; animation-duration: 31s; animation-delay: 7s; font-size: 2.2rem; }
.floating-symbol:nth-child(16) { left: 60%; animation-duration: 34s; animation-delay: 5s; font-size: 2.7rem; }
.floating-symbol:nth-child(17) { left: 70%; animation-duration: 41s; animation-delay: 4s; font-size: 1.9rem; }
.floating-symbol:nth-child(18) { left: 80%; animation-duration: 28s; animation-delay: 8s; font-size: 2.1rem; }
.floating-symbol:nth-child(19) { left: 90%; animation-duration: 35s; animation-delay: 1s; font-size: 1.5rem; }
.floating-symbol:nth-child(20) { left: 8%; animation-duration: 39s; animation-delay: 6s; font-size: 3.2rem; }

/* ===================================
   SECTION VIDÉO (Page Accueil)
   =================================== */

.video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000814 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 82, 204, 0.2),
        0 0 100px rgba(0, 82, 204, 0.1);
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 82, 204, 0.9);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button:hover {
    background: var(--light-blue);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.5);
}

.video-play-button i {
    font-size: 2rem;
    color: var(--white);
    margin-left: 5px;
}

.video-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===================================
   SECTION LOCALISATION/CONTACT
   =================================== */

.location-section {
    padding: 100px 0;
    background: var(--section-light-bg);
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-info {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--section-light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 82, 204, 0.05);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin-right: 20px;
    margin-top: 2px;
    min-width: 24px;
}

.contact-item-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item-content p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* ===================================
   SECTION TIMELINE (Page À propos)
   =================================== */

.timeline-section {
    padding: 100px 0;
    background: var(--section-light-bg);
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--light-blue), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    justify-content: flex-end;
    text-align: right;
}

.timeline-item.right {
    justify-content: flex-start;
    text-align: left;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item.left .timeline-content {
    margin-right: 30px;
}

.timeline-item.right .timeline-content {
    margin-left: 30px;
}

.timeline-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border: 5px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 82, 204, 0.3);
    z-index: 10;
}

.timeline-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   SECTION ÉQUIPE AVEC PHOTOS
   =================================== */

.team-photos-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000814 0%, var(--dark-blue) 100%);
    position: relative;
}

.team-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.3);
    border-color: var(--light-blue);
}

.team-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    position: relative;
}

.team-member-info {
    padding: 30px;
}

.team-member-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member-role {
    color: var(--light-blue);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-links a:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

/* ===================================
   SECTION CERTIFICATIONS
   =================================== */

.certifications-section {
    padding: 100px 0;
    background: var(--section-light-bg);
    position: relative;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.certification-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.certification-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.certification-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.certification-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.certification-card:hover .certification-logo {
    filter: grayscale(0);
}

.certification-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.certification-organization {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.certification-year {
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.certification-link {
    display: inline-block;
    color: var(--light-blue);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.certification-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* ===================================
   SECTION PUBLICATIONS
   =================================== */

.publications-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, #000814 100%);
    position: relative;
}

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

.publication-year-group {
    margin-bottom: 60px;
}

.publication-year-title {
    color: var(--light-blue);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.publication-year-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.publication-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.publication-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.3);
    border-color: var(--light-blue);
}

.publication-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.publication-info {
    padding: 25px;
}

.publication-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.publication-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.publication-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.publication-meta-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.publication-meta-item i {
    color: var(--light-blue);
    margin-right: 8px;
}

.publication-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.publication-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.4);
}

.publication-download i {
    margin-right: 10px;
}

/* ===================================
   RESPONSIVE - NOUVELLES SECTIONS
   =================================== */

@media (max-width: 768px) {
    .video-section,
    .location-section,
    .timeline-section,
    .team-photos-section,
    .certifications-section,
    .publications-section {
        padding: 60px 0;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
        text-align: left;
        padding-left: 80px;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-year {
        left: 30px;
        transform: translate(-50%, -50%);
    }
    
    .team-photos-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        padding: 30px;
    }
}

/* ===================================
   PAGE SECTEURS D'ACTIVITÉS
   =================================== */

/* Hero Section Secteurs */
.sector-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.sector-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 82, 204, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 56, 147, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.sector-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.sector-hero-section .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.sector-hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sector-hero-section .breadcrumb a:hover {
    color: var(--white);
}

.sector-hero-section .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.sector-hero-section .breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

.sector-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sector-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sector-hero-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.sector-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.sector-hero-scroll-indicator i {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Détail Secteur */
.sector-detail-section {
    padding: 100px 0;
    background: var(--section-light-bg);
    position: relative;
}

.sector-header {
    text-align: center;
    margin-bottom: 60px;
}

.sector-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sector-title {
    font-size: 2.8rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 20px;
}

.sector-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.sector-overview {
    margin-bottom: 60px;
}

.sector-description {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sector-description h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sector-description h3 i {
    color: var(--light-blue);
}

.sector-description p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Axes Stratégiques */
.strategic-axes-container {
    margin-top: 60px;
}

.axes-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.strategic-axes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.axis-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--light-blue);
    opacity: 0;
    transform: translateY(30px);
}

.axis-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.axis-card[data-color="blue"] { border-left-color: #0052cc; }
.axis-card[data-color="green"] { border-left-color: #28a745; }
.axis-card[data-color="orange"] { border-left-color: #fd7e14; }
.axis-card[data-color="red"] { border-left-color: #dc143c; }
.axis-card[data-color="purple"] { border-left-color: #6f42c1; }
.axis-card[data-color="teal"] { border-left-color: #20c997; }

.axis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.axis-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.axis-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.axis-content h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.axis-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.axis-actions {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.axis-actions li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.axis-actions li i {
    color: var(--light-blue);
    margin-top: 3px;
}

/* Section KPI/Indicateurs */
.sector-kpi-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.sector-kpi-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 60px;
    font-weight: 800;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.kpi-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--light-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.3);
}

.kpi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.kpi-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.kpi-value {
    margin-bottom: 15px;
}

.kpi-value .value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.kpi-value .unit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.kpi-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
}

.kpi-trend {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.kpi-trend.up {
    color: #28a745;
}

.kpi-trend.down {
    color: #dc3545;
}

.kpi-trend i {
    font-size: 1rem;
}

/* Section Projets par Secteur */
.sector-projects-section {
    padding: 100px 0;
    background: var(--section-white-bg);
}

.sector-projects-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sector-projects-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.sector-projects-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.sector-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.sector-project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.sector-project-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sector-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sector-project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.status-en-cours {
    background: #28a745;
    color: var(--white);
}

.project-status.status-planifié {
    background: #fd7e14;
    color: var(--white);
}

.project-status.status-terminé {
    background: #6c757d;
    color: var(--white);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.project-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.project-meta .meta-item i {
    color: var(--light-blue);
}

.sector-projects-section .section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Section Actualités par Secteur */
.sector-news-section {
    padding: 100px 0;
    background: var(--section-light-bg);
}

.sector-news-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
    font-weight: 800;
}

.sector-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.news-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.15);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-date i {
    color: var(--light-blue);
}

.news-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light-blue);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

/* Section Donation par Secteur */
.sector-donation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    position: relative;
    overflow: hidden;
}

.sector-donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.donation-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.donation-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: heartbeat 2s infinite;
}

.donation-icon i {
    font-size: 3rem;
    color: var(--white);
}

.donation-card h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
}

.donation-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.donation-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
}

.donation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-donation {
    background: var(--accent-red);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-donation:hover {
    background: var(--accent-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

/* Section Principes & MEAL */
.principles-section {
    padding: 100px 0;
    background: var(--section-light-bg);
    position: relative;
}

.principles-header {
    text-align: center;
    margin-bottom: 60px;
}

.principles-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.principles-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.principle-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--light-blue);
    opacity: 0;
    transform: scale(0.95);
}

.principle-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.principle-card[data-color="blue"] { border-top-color: #0052cc; }
.principle-card[data-color="green"] { border-top-color: #28a745; }
.principle-card[data-color="orange"] { border-top-color: #fd7e14; }
.principle-card[data-color="red"] { border-top-color: #dc143c; }
.principle-card[data-color="purple"] { border-top-color: #6f42c1; }
.principle-card[data-color="teal"] { border-top-color: #20c997; }

.principle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.principle-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.principle-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.principle-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Cadre MEAL */
.meal-framework {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 8px solid var(--light-blue);
}

.meal-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.meal-title i {
    color: var(--light-blue);
}

.meal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.meal-item {
    padding: 25px;
    background: var(--section-light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.meal-item:hover {
    background: rgba(0, 82, 204, 0.05);
    transform: translateX(5px);
}

.meal-item h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.meal-item h4 i {
    color: var(--light-blue);
}

.meal-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* CTA Finaux */
.sector-cta-final-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-final-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-final-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--light-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.3);
}

.cta-final-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cta-final-icon i {
    font-size: 3rem;
    color: var(--white);
}

.cta-final-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-final-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Responsive Secteurs */
@media (max-width: 992px) {
    .sector-hero-title {
        font-size: 2.5rem;
    }
    
    .sector-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .sector-title {
        font-size: 2.2rem;
    }
    
    .strategic-axes-grid,
    .kpi-grid,
    .sector-projects-grid,
    .sector-news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .cta-final-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sector-hero-section {
        min-height: 60vh;
    }
    
    .sector-hero-title {
        font-size: 2rem;
    }
    
    .sector-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sector-detail-section,
    .sector-kpi-section,
    .sector-projects-section,
    .sector-news-section,
    .sector-donation-section,
    .principles-section,
    .sector-cta-final-section {
        padding: 60px 0;
    }
    
    .sector-description,
    .donation-card,
    .meal-framework {
        padding: 25px;
    }
    
    .axis-card {
        padding: 25px;
    }
    
    .donation-actions {
        flex-direction: column;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .meal-content {
        grid-template-columns: 1fr;
    }
}


/* ====================================
   SECTORS COMPLETE SECTION - Inline Styles
   ==================================== */

.sectors-section-complete {
    padding: 80px 0;
    background: #f8f9fa;
}

.sector-overview-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sector-overview-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Axes grid inline */
.axes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* KPI Inline Section */
.sector-kpi-inline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.sector-kpi-inline h3 {
    color: white;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.kpi-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.kpi-card-inline {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
}

.kpi-card-inline:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.kpi-card-inline .kpi-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.kpi-card-inline .kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.kpi-card-inline .kpi-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
}

.kpi-card-inline .kpi-trend {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: 600;
}

/* Projects inline section */
.sector-projects-inline {
    padding: 40px 0;
}

.sector-projects-inline h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
}

.projects-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.project-card-inline {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.project-card-inline .project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card-inline .project-content {
    padding: 20px;
}

.project-card-inline .project-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-card-inline .project-status.status-active {
    background: #d4f5e9;
    color: #047857;
}

.project-card-inline .project-status.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.project-card-inline .project-status.status-planned {
    background: #fef3c7;
    color: #b45309;
}

.project-card-inline h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.project-card-inline p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #6b7280;
}

.project-meta-inline .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-meta-inline i {
    color: #3b82f6;
}

/* News inline section */
.sector-news-inline {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

.sector-news-inline h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
}

.news-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.news-card-inline {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.news-card-inline:hover {
    transform: translateY(-5px);
}

.news-card-inline .news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-inline .news-content {
    padding: 20px;
}

.news-card-inline .news-category {
    display: inline-block;
    padding: 4px 12px;
    background: #3b82f6;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card-inline .news-date {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.news-card-inline h4 {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-inline p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card-inline .news-link {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.news-card-inline .news-link:hover {
    gap: 10px;
}

/* Donation inline section */
.sector-donation-inline {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.donation-card-inline {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 35px;
    text-align: center;
}

.donation-card-inline .donation-icon {
    font-size: 3rem;
    color: #f5576c;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.donation-card-inline h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.donation-card-inline p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.donation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-buttons .btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.donation-buttons .btn-primary {
    background: #3b82f6;
    color: white;
}

.donation-buttons .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59,130,246,0.3);
}

.donation-buttons .btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.donation-buttons .btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .axes-grid,
    .kpi-grid-inline,
    .projects-grid-inline,
    .news-grid-inline {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .sectors-section-complete,
    .sector-kpi-inline,
    .sector-projects-inline,
    .sector-news-inline,
    .sector-donation-inline {
        padding: 30px 20px;
    }
    
    .sector-overview-card {
        padding: 25px;
    }
    
    .donation-buttons {
        flex-direction: column;
    }
    
    .donation-buttons .btn {
        width: 100%;
    }
}
