
        :root {
            --diabe-green: #22B573;
            --diabe-purple: #7C4DFF;
            --diabe-pink: #E84393;
            --diabe-orange: #F59E0B;
            --theme-color: var(--diabe-green);
        }

        html {
            scroll-behavior: smooth;
        }

        :is(section, div)[id] {
            scroll-margin-top: 92px;
        }

        /* ===== MENU DESKTOP ===== */
        .diabe-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, .06);
        }

        .diabe-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 12px 0;
        }

        .diabe-left {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 280px;
        }

        .diabe-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            color: #0b1220;
            white-space: nowrap;
        }

        .diabe-brand img {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            object-fit: cover;
        }

        .diabe-email {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #0b1220;
            opacity: .85;
            white-space: nowrap;
        }

        .diabe-email i {
            color: var(--diabe-green);
        }

        .diabe-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .diabe-menu {
            display: flex;
            align-items: center;
            gap: 18px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .diabe-menu a {
            font-weight: 700;
            color: #0b1220;
            opacity: .9;
            padding: 8px 10px;
            border-radius: 10px;
        }

        .diabe-menu a:hover {
            opacity: 1;
            background: rgba(34, 181, 115, .10);
        }

        .diabe-right {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: flex-end;
            min-width: 280px;
        }

        .diabe-burger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, .08);
            background: #fff;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
            cursor: pointer;
        }

        /* ===== RESPONSIVE MOBILE ===== */
        @media (max-width: 992px) {
            .diabe-left {
                min-width: auto;
            }

            .diabe-email {
                display: none;
            }

            .diabe-center {
                display: none;
            }

            .diabe-right {
                min-width: auto;
                gap: 8px;
            }

            /* Masquer les boutons desktop sur mobile */
            .diabe-right .th-btn {
                display: none !important;
            }

            /* Afficher uniquement le burger */
            .diabe-burger {
                display: inline-flex !important;
            }
        }

        /* ✅ FIX MENU MOBILE (plein écran + bouton X bien placé) */
        @media (max-width: 576px) {
            .th-menu-wrapper {
                position: fixed !important;
                inset: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                background: rgba(11, 18, 32, .62) !important;
                z-index: 9999 !important;
            }

            .th-menu-area {
                width: 100% !important;
                max-width: 100% !important;
                height: 100% !important;
                left: 0 !important;
                right: 0 !important;
                border: 0 !important;
                box-shadow: none !important;
                overflow-y: auto !important;
                padding-top: 86px !important;
            }

            .th-menu-area .th-menu-toggle {
                position: absolute !important;
                top: 16px !important;
                right: 16px !important;
                left: auto !important;
                margin: 0 !important;
                z-index: 5 !important;
            }

            .th-menu-area .mobile-logo {
                margin-top: -64px !important;
                margin-bottom: 18px !important;
            }

            .th-mobile-menu ul {
                padding-left: 0 !important;
            }
        }

        /* ✅ FIX MOBILE MENU - Remove subfolder display */
        .th-mobile-menu ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .th-mobile-menu ul li {
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
        }

        .th-mobile-menu ul li::before {
            display: none !important;
        }

        .th-mobile-menu ul li a {
            display: block;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: #0b1220;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .th-mobile-menu ul li:last-child a {
            border-bottom: none;
        }

        .th-mobile-menu ul li a:hover {
            background: rgba(34, 181, 115, 0.1);
            color: var(--diabe-green);
        }

        /* ===== BANNIÈRE INDICATEURS ===== */
        .stats-banner {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 40px 0;
            margin-bottom: 0;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-card.loaded {
            animation: fadeInUp 0.6s ease forwards;
        }

        .stat-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .stat-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stat-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .stat-card:nth-child(4) {
            animation-delay: 0.4s;
        }

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

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: #fff;
            margin: 0 0 8px 0;
            font-family: 'Outfit', sans-serif;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            margin: 0;
        }

        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 14px;
            }
        }

        .hero-lead {
            opacity: .92;
            max-width: 560px;
            font-size: 16px;
            line-height: 1.7;
        }

        .testi-slider7 .slider-pagination,
        .hero-slider7 .slider-pagination {
            display: flex;
            justify-content: center;
            margin-top: 22px;
        }

        /* ✅ DONATION MODAL STYLES */
        .donation-options {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .donation-option {
            flex: 1;
            min-width: 80px;
            padding: 15px 10px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
            font-size: 18px;
        }

        .donation-option:hover {
            border-color: var(--diabe-green);
            background: rgba(34, 181, 115, 0.05);
        }

        .donation-option.active {
            border-color: var(--diabe-green);
            background: var(--diabe-green);
            color: white;
        }

        .custom-amount-input {
            margin-top: 15px;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }

        .payment-method-btn {
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
        }

        .payment-method-btn:hover {
            border-color: var(--diabe-green);
            background: rgba(34, 181, 115, 0.05);
        }

        .payment-method-btn.active {
            border-color: var(--diabe-green);
            background: rgba(34, 181, 115, 0.1);
        }

        .payment-method-btn i {
            font-size: 24px;
        }
   