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

        :root {
            --primary-orange: #FF6B35;
            --secondary-orange: #FF8A50;
            --primary-green: #00C851;
            --secondary-green: #2E7D32;
            --dark-bg: #1a1a1a;
            --light-bg: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --shadow-light: rgba(0, 0, 0, 0.1);
            --shadow-heavy: rgba(0, 0, 0, 0.2);
        }

        body {

            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-color: #f8f9fa;
        }

  

        .info-title {
            color: #00a113;
            font-size: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

         /*  end by me    */

        .floating-elements {  
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .floating-icon {
            position: absolute;
            font-size: 2.5rem;
            opacity: 0.6;
            animation: float-random 12s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        }

        .floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; color: var(--primary-orange); }
        .floating-icon:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; color: var(--primary-green); }
        .floating-icon:nth-child(3) { top: 60%; left: 8%; animation-delay: 4s; color: var(--secondary-orange); }
        .floating-icon:nth-child(4) { top: 70%; right: 15%; animation-delay: 6s; color: var(--secondary-green); }
        .floating-icon:nth-child(5) { top: 40%; left: 15%; animation-delay: 8s; color: var(--primary-orange); }
        .floating-icon:nth-child(6) { top: 30%; right: 25%; animation-delay: 10s; color: var(--primary-green); }
        .floating-icon:nth-child(7) { top: 80%; left: 20%; animation-delay: 1s; color: var(--secondary-orange); }
        .floating-icon:nth-child(8) { top: 15%; left: 40%; animation-delay: 3s; color: var(--secondary-green); }

      

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }

        /* IMPACT & TRUST SECTIONS */
        .content-section {
            padding: 15px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

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

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 3rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .quotes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .quote-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow-light);
            border-left: 5px solid var(--primary-orange);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .quote-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 6rem;
            color: var(--primary-orange);
            opacity: 0.1;
            font-family: serif;
        }

        .quote-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px var(--shadow-heavy);
            border-left-color: var(--primary-green);
        }

        .quote-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .quote-author {
            font-weight: bold;
            color: var(--secondary-green);
            text-align: right;
        }
        
        /* TRUST SECTION */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .trust-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.3s ease;
        }
        .trust-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow-heavy);
        }
        .trust-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }
        .trust-item h3 {
            font-size: 1.2rem;
            color: var(--secondary-green);
            margin-bottom: 0.5rem;
        }
        .trust-item p {
            color: #666;
            font-size: 0.95rem;
        }


        /* FORM SECTION */
        .form-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
            position: relative;
            overflow: hidden;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .form-header {
            background: linear-gradient(135deg, var(--secondary-orange), var(--primary-green));
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .form-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .progress-container {
            padding: 30px;
            background: #f0f2f5;
        }

        .progress-bars {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 3px;
            background: #e0e0e0;
            z-index: 1;
        }

        .progress-line-active {
            position: absolute;
            top: 20px;
            left: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-orange), var(--primary-green));
            z-index: 2;
            width: 0%;
            transition: width 0.5s ease;
        }

        .progress-step {
            position: relative;
            z-index: 3;
            text-align: center;
            width: 33.33%;
        }

        .progress-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: #999;
            font-weight: bold;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .progress-step-label {
            font-size: 0.9rem;
            color: #666;
            transition: all 0.4s ease;
        }

        .progress-step.active .progress-circle {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            transform: scale(1.2);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        
        .progress-step.active .progress-step-label {
            color: var(--secondary-green);
            font-weight: bold;
        }
        
        .progress-step.completed .progress-circle {
            background: var(--primary-green);
            transform: scale(1.1);
            color: white;
        }

        .form-content {
            padding: 40px;
        }

        .form-step {
            display: none;
            animation: slide-in 0.5s ease-out;
        }

        .form-step.active {
            display: block;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 30px;
        }

        .form-row.full-width {
            grid-template-columns: 1fr;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-weight: 600;
            color: #333;
            font-size: 1rem;
        }

        .label-icon {
            margin-right: 10px;
            font-size: 1.2rem;
            color: var(--primary-orange);
            width: 24px;
            text-align: center;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }
        
        .form-input.is-invalid {
            border-color: #dc3545;
        }
        
        .form-input:valid {
            border-color: var(--primary-green);
        }
        
        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }
        
        .amount-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        /*
        .amount-card {
            padding: 15px;
            border: 3px solid #e0e0e0;
            border-radius: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            position: relative;
            overflow: hidden;
        }
        */

        .amount-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        
        /*
        .amount-card:hover {
            border-color: var(--secondary-orange);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
        }


                /* =================================================================== */
        /* DESIGN AMÉLIORÉ POUR LES CARTES DE MONTANT                          */
        /* =================================================================== */

        .amount-card {
            padding: 20px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition plus douce */
            position: relative;
            background-color: var(--card-background);
            font-size: 1.1rem;
            font-weight: 600; /* Police plus affirmée */
            color: var(--secondary-color);
            overflow: hidden; /* Important pour les effets visuels */
        }

        .amount-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 8px 25px rgba(255, 85, 0, 0.15); /* Ombre plus prononcée */
            color: var(--primary-color); /* Le texte prend la couleur primaire */
        }

        .amount-card.selected {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            border-color: var(--secondary-orange);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
        }

        /* --- L'ASTUCE PRO : L'ICÔNE DE VALIDATION --- */
        .amount-card.selected::after {
            content: '✓'; /* Icône de coche (check) */
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 1rem;
            font-weight: bold;
            color: white;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            line-height: 24px;
            text-align: center;
            animation: pop-in 0.3s ease-out; /* Animation d'apparition */
        }

        /* On ajoute l'animation pour l'icône */
        @keyframes pop-in {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }



                /* =================================================================== */
        /* MISE EN AVANT DE LA CARTE "AUTRE MONTANT"                           */
        /* =================================================================== */

        /* Style de base pour la carte personnalisée */
        .amount-card[data-amount="custom"] {
            background-color: #f0fff4; /* Fond vert très clair et invitant */
            border-color: var(--success-color); /* Bordure verte pour attirer l'oeil */
            color: var(--secondary-green);
            font-weight: 600; /* Texte un peu plus gras */
        }

        /* Style au survol pour la rendre encore plus interactive */
        .amount-card[data-amount="custom"]:hover {
            background-color: #d1e7dd; /* Un vert légèrement plus soutenu */
            border-color: #2E7D32;
            transform: translateY(-7px) scale(1.07); /* Effet de surélévation plus prononcé */
            box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3); /* Ombre portée verte */
        }

        /* Style lorsque la carte est sélectionnée */
        .amount-card[data-amount="custom"].selected {
            background: linear-gradient(145deg, var(--primary-green), #2E7D32); /* Dégradé vert intense */
            color: white; /* Texte en blanc pour un contraste parfait */
            border-color: #2E7D32;
        }


        .amount-card.selected {
            border-color: transparent;
            color: rgb(3, 184, 0);
            transform: translateY(-5px) scale(1.05);
        }
        */    

        .amount-card.selected::before {
            opacity: 1;
        }
        
        .amount-content {
            position: relative;
            z-index: 2;
        }

        .amount-value {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .amount-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .badge-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            min-height: 40px;
        }

        .contribution-badge {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            opacity: 0;
            transform: translateY(20px) scale(0.5);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .contribution-badge.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .badge-bronze { background: linear-gradient(45deg, #CD7F32, #DAA520); color: white; }
        .badge-silver { background: linear-gradient(45deg, #C0C0C0, #E6E6FA); color: #333; }
        .badge-gold { background: linear-gradient(45deg, #FFD700, #FFA500); color: #333; }
        .badge-platinum { background: linear-gradient(45deg, #E5E4E2, #b5c6d0); color: var(--secondary-green); }

        .confirmation-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary-orange);
            margin-bottom: 25px;
        }

        .confirmation-header {
            text-align: center;
            color: var(--secondary-green);
            margin-bottom: 25px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .confirmation-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .confirmation-item {
            margin-bottom: 15px;
        }

        .confirmation-label {
            font-weight: bold;
            color: var(--primary-orange);
            display: block;
            margin-bottom: 5px;
        }

        .confirmation-value {
            color: #333;
            font-size: 1rem;
            word-wrap: break-word;
        }

        .amount-highlight {
            text-align: center;
            padding: 20px;
            background: rgba(0, 200, 81, 0.1);
            border-radius: 12px;
            margin-top: 20px;
        }

        .amount-highlight .confirmation-value {
            font-size: 2rem;
            font-weight: bold;
            color: var(--secondary-green);
        }

        .checkbox-container {
            margin: 25px 0;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .checkbox-input {
            margin-right: 15px;
            transform: scale(1.3);
            accent-color: var(--primary-green);
        }

        .checkbox-label:hover {
            border-color: var(--primary-orange);
        }

        .checkbox-label.checked {
            border-color: var(--primary-green);
            background: rgba(0, 200, 81, 0.05);
        }

        .form-buttons {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 40px;
        }


/*---- BTN2----*/

        .btn2 {
            padding: 15px 30px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            min-width: 150px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
        }
        
        .btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .success-section {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .success-section.active {
            display: block;
            animation: success-bounce 1s ease-out;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, var(--primary-green), #2E7D32);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            animation: pulse-success 2s ease-in-out infinite;
        }

        .success-title {
            font-size: 2.2rem;
            color: var(--secondary-green);
            margin-bottom: 20px;
        }

        .success-message {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ANIMATIONS */
        @keyframes pulse-bg { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
        @keyframes float-random {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(90deg); }
            50% { transform: translateY(-15px) rotate(180deg); }
            75% { transform: translateY(-25px) rotate(270deg); }
        }
        @keyframes text-glow {
            0% { text-shadow: 0 0 15px rgba(255, 107, 53, 0.4); }
            100% { text-shadow: 0 0 25px rgba(0, 200, 81, 0.5), 0 0 35px rgba(255, 107, 53, 0.2); }
        }
        @keyframes fade-in-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slide-in { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes pulse-success { 0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0,200,81,0.3); } 50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(0,200,81,0.6); } }
        @keyframes success-bounce {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .form-row, .confirmation-details {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .stats-container, .quotes-container { grid-template-columns: 1fr; gap: 1rem; }
            .form-content { padding: 20px; }
            .amount-grid { grid-template-columns: 1fr 1fr; }
            .form-buttons { flex-direction: column; }
        }

        @media (max-width: 480px) {
            .floating-icon { font-size: 1.5rem; }
            .amount-grid { grid-template-columns: 1fr; }
            .hero-content { padding: 0 15px; }
        }

        /* SCROLL ANIMATIONS */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.in-view {
            opacity: 1;
            transform: translateY(0);
        }




        /*    --- new   ---    */


        /* =================================================================== */
/* STYLES POUR LE FLUX DE CONTRIBUTION PROFESSIONNEL              */
/* =================================================================== */

/* Variables pour une maintenance facile */
:root {
    --primary-color: #ff5500;
    --secondary-color: #4a5568;
    --background-color: #f7fafc;
    --card-background: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --font-family: 'Poppins', sans-serif; /* Assurez-vous d'importer cette police si nécessaire */
}

.contribution-section {
    padding: 30px 0;
    background-color: var(--background-color);
    font-family: var(--font-family);
}

/* Conteneur du flux de paiement */
.flow-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-background);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.flow-step {
    display: none;
    padding: 30px 40px;
    animation: fadeIn 0.5s ease-in-out;
}
.flow-step.active {
    display: block;
}

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

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
}
.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

/* Grille de sélection (Type, Montant, Méthode) */
.user-type-grid, .amount-grid, .payment-method-grid {
    display: grid;
    gap: 15px;
}
.user-type-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.amount-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.payment-method-grid {
    grid-template-columns: repeat(4, 1fr);
}

.user-type-card, .amount-card, .payment-method-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.user-type-card:hover, .amount-card:hover, .payment-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.1);
}
.user-type-card.selected, .amount-card.selected, .payment-method-card.selected {
    border-color: var(--primary-color);
    background-color: #fff5f0;
}
.user-type-card .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}
.user-type-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}
.payment-method-card img {
    max-height: 90px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.payment-method-card:hover img, .payment-method-card.selected img {
    filter: grayscale(0%);
}

/* Champs de formulaire */
.form-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.form-group {
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.2);
}

/* Boutons d'action */
.step-actions {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.step-actions .btn-lg {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}
#back-to-step-1 {
    background-color: #e2e8f0;
    color: #4a5568;
}

/* Section de récupération d'ID */
.recovery-container {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.recovery-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}
.recovery-form .form-input { flex-grow: 1; max-width: 300px; }

/* Étape de succès */
#step-3 { text-align: center; }
.success-title { font-size: 2.2rem; color: var(--success-color); margin-bottom: 10px;}
.success-text { font-size: 1.1rem; color: var(--secondary-color); max-width: 500px; margin: 0 auto 20px;}
.success-details { background: #f0fff4; border: 1px dashed var(--success-color); padding: 20px; border-radius: 8px;}
.payment-id { font-size: 1.5rem; color: var(--primary-color); font-weight: 700; display: block; margin: 10px 0; letter-spacing: 1px; }
.keep-id-notice { font-size: 0.9rem; color: #718096; }

/* Animation de la coche de succès */
.success-animation { margin: 0 auto 20px; width: 100px; height: 100px; }
.checkmark { width: 100px; height: 100px; border-radius: 50%; display: block; stroke-width: 2; stroke: #fff; stroke-miterlimit: 10; }
.checkmark-circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke-miterlimit: 10; stroke: var(--success-color); fill: none; animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.checkmark-check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke-width: 3; animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }
@keyframes stroke { 100% { stroke-dashoffset: 0; } }

/* Responsive */
@media (max-width: 768px) {
    .flow-step { padding: 20px; }
    .step-title { font-size: 1.5rem; }
    .step-number { width: 35px; height: 35px; font-size: 1rem; margin-right: 15px; }
    .step-actions { flex-direction: column; gap: 15px; }
    .step-actions .btn { width: 100%; }
}
@media (max-width: 576px) {
    .user-type-grid, .amount-grid, .payment-method-grid { grid-template-columns: 1fr 1fr; }
    .payment-method-grid { grid-template-columns: 1fr; }
}




/* =================================================================== */
/* AMÉLIORATION DU DESIGN POUR LA CARTE DE RÉCAPITULATIF FINAL     */
/* =================================================================== */

.confirmation-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.confirmation-header {
    text-align: center;
    font-size: 1.6rem;
    color: #343a40;
    margin-bottom: 25px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espace entre les lignes */
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-size: 1rem;
}

.confirmation-item span:first-child {
    font-weight: 600;
    color: #495057; /* Label */
}

.confirmation-item span:last-child {
    font-weight: 500;
    color: #212529; /* Value */
    text-align: right;
}

/* Style spécial pour le montant, comme sur la capture */
.confirmation-item.highlight-amount {
    background-color: #fff5f0;
    border-color: var(--primary-color);
    margin-top: 15px;
}

.confirmation-item.highlight-amount span {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}
 




/* =================================================================== */
/* STYLE PROFESSIONNEL POUR LES INFO-BULLES (TOOLTIPS)             */
/* =================================================================== */

/* On cible tous les éléments qui ont notre attribut personnalisé data-tooltip */
[data-tooltip] {
    position: relative; /* Nécessaire pour positionner l'info-bulle par rapport à l'élément */
    cursor: pointer;
}

/* Style de l'info-bulle elle-même (elle est cachée par défaut) */
[data-tooltip]::after {
    content: attr(data-tooltip); /* Récupère le texte de l'attribut data-tooltip */
    position: absolute;
    bottom: 105%; /* Se positionne juste au-dessus de l'élément */
    left: 50%;
    transform: translateX(-50%); /* Centre l'info-bulle horizontalement */
    
    background-color: #2c3e50; /* Couleur de fond sombre et pro */
    color: #ffffff;           /* Texte blanc */
    padding: 8px 12px;         /* Espacement intérieur */
    border-radius: 6px;        /* Bords arrondis */
    font-size: 0.9rem;         /* Taille du texte */
    white-space: nowrap;       /* Empêche le texte d'aller à la ligne */
    
    opacity: 0;                /* Invisible par défaut */
    visibility: hidden;        /* Complètement cachée par défaut */
    pointer-events: none;      /* L'info-bulle n'est pas cliquable */
    transition: opacity 0.2s ease, visibility 0.2s ease; /* Animation douce */
    z-index: 10;               /* S'assure qu'elle est au-dessus des autres éléments */
}

/* Affiche l'info-bulle quand on passe la souris sur l'élément */
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}



/* =================================================================
  [ STYLE FINAL POUR LES CARTES "VOTRE IMPACT" ]
================================================================= */

/* Conteneur de la grille */
.support-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px 0;
    max-width: 1400px; /* Ajout: Limite la largeur maximale */
    margin: 0 auto;   /* Ajout: Centre le conteneur */
}

/* Style de base pour chaque carte, inspiré de la section Support */
.gmd-support-item {
    display: flex; /* Aligne l'icône et le contenu */
    align-items: flex-start; /* Aligne les éléments en haut */
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    min-height: 180px; /* Hauteur minimale pour un look uniforme */
}

.gmd-support-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Icône de la carte */
.gmd-support-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.gmd-support-icon i {
    font-size: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.gmd-support-item:hover .gmd-support-icon i {
    transform: rotate(10deg) scale(1.1);
    background-color: rgb(0, 0, 0);
}

/* Contenu (Titre et texte) de la carte */
.gmd-support-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Permet de pousser l'auteur en bas */
}

.gmd-support-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1; /* Pousse l'auteur vers le bas */
}

.quote-author {
    font-weight: bold;
    color: #ffffff;
    text-align: right;
    font-style: normal !important;
    margin-top: 1rem;
    opacity: 0.8;
}

/* --- Couleurs uniques pour chaque carte --- */
.support-cards-container .gmd-support-item:nth-child(1) {
    background: linear-gradient(145deg, #28a745, #1e7e34); /* Vert */
    border-bottom: 4px solid #00ce15; /* Ligne Vert au survol */
}
.support-cards-container .gmd-support-item:nth-child(2) {
    background: linear-gradient(145deg, #6f42c1, #5a32a3); /* Violet */
    border-bottom: 4px solid #8b4dff; /* Ligne Violet au survol */
}
.support-cards-container .gmd-support-item:nth-child(3) {
    background: linear-gradient(145deg, #dc3545, #b02a37); /* Rouge */
    border-bottom: 4px solid #ff4d4d; /* Ligne rouge au survol */
}