/* ============================================
           STYLES CENTRE AIDE
           ============================================ */
        
        .aide-section {
            padding: 20px 0 10px 0;
            background: var(--bg-main);
            transition: background var(--transition-speed) ease;
        }

        /* Catégories */
        .aide-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .categorie-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 18px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            text-decoration: none;
            display: block;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .categorie-card:nth-child(1) { animation-delay: 0.05s; }
        .categorie-card:nth-child(2) { animation-delay: 0.10s; }
        .categorie-card:nth-child(3) { animation-delay: 0.15s; }
        .categorie-card:nth-child(4) { animation-delay: 0.20s; }
        .categorie-card:nth-child(5) { animation-delay: 0.25s; }
        .categorie-card:nth-child(6) { animation-delay: 0.30s; }
        .categorie-card:nth-child(7) { animation-delay: 0.35s; }
        .categorie-card:nth-child(8) { animation-delay: 0.40s; }
        .categorie-card:nth-child(9) { animation-delay: 0.45s; }
        .categorie-card:nth-child(10) { animation-delay: 0.50s; }
        .categorie-card:nth-child(11) { animation-delay: 0.55s; }
        .categorie-card:nth-child(12) { animation-delay: 0.60s; }

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

        .categorie-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px var(--shadow-hover);
        }

        [data-theme="dark"] .categorie-card {
            border-color: var(--border-dark);
        }

        [data-theme="dark"] .categorie-card:hover {
            border-color: var(--accent);
        }

        .categorie-card .categorie-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 24px;
            color: var(--accent);
            background: var(--bg-sub);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .categorie-card .categorie-icon {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .categorie-card:hover .categorie-icon {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .categorie-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 4px;
        }

        [data-theme="dark"] .categorie-card h4 {
            color: #ffffff;
        }

        .categorie-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        /* Filtres FAQ */
        .aide-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .filter-btn {
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .filter-btn:hover {
            color: var(--text-title);
            background: var(--bg-card);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            color: #fff;
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(18, 58, 72, 0.2);
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .faq-item {
            border-color: var(--border-dark);
        }

        .faq-item:hover {
            box-shadow: 0 8px 20px var(--shadow-hover);
        }

        .faq-question {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: var(--text-title);
            cursor: pointer;
            user-select: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--bg-sub);
        }

        [data-theme="dark"] .faq-question {
            color: #ffffff;
        }

        [data-theme="dark"] .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-question .faq-question-text {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .faq-question .faq-question-text i {
            color: var(--accent);
            font-size: 18px;
            flex-shrink: 0;
        }

        .faq-category-badge {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid var(--border);
        }

        [data-theme="dark"] .faq-category-badge {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-sub);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        [data-theme="dark"] .faq-toggle {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-toggle i {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            background: var(--accent);
        }

        .faq-item.active .faq-toggle i {
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-inner {
            padding: 0 20px 20px 20px;
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 15px;
            border-top: 1px solid var(--border);
        }

        [data-theme="dark"] .faq-answer-inner {
            border-top-color: rgba(255, 255, 255, 0.08);
        }

        .faq-answer-inner a {
            color: var(--accent);
        }

        .faq-answer-inner strong {
            color: var(--accent);
        }

        .no-results {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .no-results i {
            font-size: 48px;
            color: var(--text-muted);
            opacity: 0.3;
            margin-bottom: 12px;
        }

        .no-results p {
            color: var(--text-muted);
        }

        /* ============================================
           FORMULAIRE
           ============================================ */
        .aide-contact {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 45px 40px;
            margin: 50px 0;
            transition: all var(--transition-speed) ease;
        }

        [data-theme="dark"] .aide-contact {
            border-color: var(--border-dark);
        }

        .aide-contact .contact-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .aide-contact .contact-header h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 8px;
        }

        [data-theme="dark"] .aide-contact .contact-header h2 {
            color: #ffffff;
        }

        .aide-contact .contact-header p {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .aide-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }

        .aide-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-sub);
            border: 1px solid var(--border);
        }

        [data-theme="dark"] .aide-badge {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .aide-badge i {
            color: var(--accent);
        }

        .form-control-aide {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg-sub);
            color: var(--text-title);
            transition: all var(--transition-speed) ease;
            font-size: 15px;
        }

        [data-theme="dark"] .form-control-aide {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .form-control-aide:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(18, 58, 72, 0.1);
        }

        .form-control-aide::placeholder {
            color: var(--text-muted);
        }

        textarea.form-control-aide {
            resize: vertical;
            min-height: 120px;
        }

        .form-label-aide {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-title);
             margin-bottom: 6px;
            display: block;
        }

        [data-theme="dark"] .form-label-aide {
            color: #ffffff;
        }

        .form-label-aide .required {
            color: #dc3545;
            margin-left: 2px;
        }

        .checkbox-custom {
            accent-color: var(--accent);
            width: 18px;
            height: 18px;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .form-check {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .form-check-label {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .form-check-label a {
            color: var(--accent);
            text-decoration: underline;
        }

        .form-check-label a:hover {
            color: var(--accent-hover);
        }

        .btn-aide {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 48px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            background: var(--accent);
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            min-width: 280px;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(18, 58, 72, 0.25);
            width: 100%;
        }

        .btn-aide:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(18, 58, 72, 0.35);
            color: #ffffff;
            background: var(--accent);
        }

        .btn-aide:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-aide i {
            font-size: 20px;
        }

        .btn-submit-container {
            margin-top: 10px;
            text-align: center;
        }

        .error-message {
            background: rgba(220, 53, 69, 0.1);
            border-left: 4px solid #dc3545;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 16px;
            color: #dc3545;
            font-size: 14px;
        }

        /* Ressources */
        .aide-ressources {
            margin: 50px 0;
        }

        .aide-ressources .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .aide-ressources .section-title h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 4px;
        }

        [data-theme="dark"] .aide-ressources .section-title h2 {
            color: #ffffff;
        }

        .aide-ressources .section-title p {
            color: var(--text-muted);
            font-size: 16px;
        }

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

        .ressource-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 16px;
            text-align: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .ressource-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 15px 40px var(--shadow-hover);
        }

        [data-theme="dark"] .ressource-card {
            border-color: var(--border-dark);
        }

        [data-theme="dark"] .ressource-card:hover {
            border-color: var(--accent);
        }

        .ressource-card .ressource-icon {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .ressource-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 4px;
        }

        [data-theme="dark"] .ressource-card h4 {
            color: #ffffff;
        }

        .ressource-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 968px) {
            .aide-categories {
                grid-template-columns: repeat(3, 1fr);
            }

            .ressources-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .aide-section {
                padding: 10px 0 40px 0;
            }

            .aide-categories {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .categorie-card {
                padding: 18px 12px;
            }

            .categorie-card .categorie-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .categorie-card h4 {
                font-size: 13px;
            }

            .categorie-card p {
                font-size: 11px;
            }

            .ressources-grid {
                grid-template-columns: 1fr 1fr;
            }

            .filter-btn {
                font-size: 12px;
                padding: 4px 12px;
            }

            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }

            .faq-answer-inner {
                font-size: 14px;
                padding: 0 16px 16px 16px;
            }

            .aide-contact {
                padding: 24px 18px;
            }

            .aide-contact .contact-header h2 {
                font-size: 22px;
            }

            .btn-aide {
                font-size: 15px;
                padding: 14px 24px;
                min-width: 100%;
            }

            .form-label-aide {
                font-size: 13px;
            }

            .form-control-aide {
                font-size: 14px;
                padding: 10px 14px;
            }
        }

        @media (max-width: 400px) {
            .aide-categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .ressources-grid {
                grid-template-columns: 1fr 1fr;
            }
        }