/* ============================================
   APPSM - PAGE NOUS SOUTENIR PREMIUM
   Fichier: css/nous-soutenir.css
============================================ */

/* ============================================
   1. SECTIONS
============================================ */
.sout-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sout-section-white {
    background: var(--white);
}

.sout-section-gray {
    background: linear-gradient(135deg, #EDE7F2 0%, #E4DAEE 100%);
}

.sout-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 103, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sout-section-gray::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 45, 142, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sout-intro-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sout-intro-header .section-desc strong {
    color: var(--purple);
    font-weight: 700;
}

/* ============================================
   2. GRILLE 3 CARTES
============================================ */
.sout-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sout-card {
    background: var(--white);
    padding: 45px 30px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 30, 92, 0.1);
    border-top: 5px solid transparent;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(91, 45, 142, 0.05);
}

/* Décoration circulaire */
.sout-card-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 45, 142, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.sout-card:hover .sout-card-decoration {
    background: radial-gradient(circle, rgba(232, 103, 42, 0.15) 0%, transparent 70%);
    transform: scale(1.3);
}

/* Numéro filigrane */
.sout-card-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(91, 45, 142, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.sout-card:hover .sout-card-number {
    color: rgba(232, 103, 42, 0.2);
    transform: scale(1.15) rotate(-5deg);
}

/* Badge "Populaire" */
.sout-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(232, 103, 42, 0.4);
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sout-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(74, 30, 92, 0.25);
    border-top-color: var(--orange);
}

.sout-card-featured {
    border-top-color: var(--orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(232, 103, 42, 0.2);
}

.sout-card-featured:hover {
    transform: translateY(-20px);
    box-shadow: 0 35px 70px rgba(232, 103, 42, 0.35);
}

/* Icône */
.sout-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 42px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.sout-card:hover .sout-card-icon {
    transform: rotate(360deg) scale(1.1);
}

.sout-icon-don {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.sout-icon-benevole {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow: 0 10px 30px rgba(232, 103, 42, 0.4);
}

.sout-icon-partenaire {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    box-shadow: 0 10px 30px rgba(91, 45, 142, 0.4);
}

.sout-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.2;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.sout-card:hover .sout-card-title {
    color: var(--purple);
}

.sout-card-desc {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
}

/* Liste features */
.sout-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.sout-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.sout-feature i {
    color: var(--orange);
    font-size: 13px;
    flex-shrink: 0;
}

/* Bouton */
.sout-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(91, 45, 142, 0.3);
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.sout-card-btn:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(232, 103, 42, 0.4);
}

.sout-card-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.sout-card-btn:hover i {
    transform: translateX(4px);
}

.sout-card-featured .sout-card-btn {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow: 0 8px 20px rgba(232, 103, 42, 0.4);
}

.sout-card-featured .sout-card-btn:hover {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    box-shadow: 0 12px 25px rgba(91, 45, 142, 0.4);
}

/* ============================================
   3. BOÎTE CONTACT
============================================ */
.sout-contact-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4A1E5C 0%, var(--purple) 50%, #4A1E5C 100%);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    box-shadow: 0 25px 60px rgba(74, 30, 92, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 3px solid var(--white);
}

.sout-contact-decoration-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 103, 42, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecor 8s ease-in-out infinite;
    pointer-events: none;
}

.sout-contact-decoration-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecor 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatDecor {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.sout-contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 36px;
    position: relative;
    z-index: 2;
    animation: pulseIcon 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 103, 42, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(232, 103, 42, 0); }
}

.sout-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(232, 103, 42, 0.5);
}

.sout-contact-badge i {
    color: #FFB84D;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0); }
    50% { transform: rotate(180deg); }
}

.sout-contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.sout-contact-title span {
    color: #FFB84D;
    position: relative;
    display: inline-block;
}

.sout-contact-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    border-radius: 3px;
}

.sout-contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.sout-contact-text strong {
    color: var(--white);
    font-weight: 700;
}

/* Méthodes de contact */
.sout-contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.sout-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.sout-method-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 184, 77, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sout-method-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(232, 103, 42, 0.4);
}

.sout-method-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.sout-method-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #FFB84D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sout-method-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Boutons contact */
.sout-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.sout-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.sout-btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(232, 103, 42, 0.5);
}

.sout-btn-primary:hover {
    background: var(--white);
    color: var(--purple);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.sout-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.sout-btn-secondary:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.sout-contact-btn i {
    font-size: 16px;
}

/* ============================================
   4. RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .sout-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .sout-card-featured {
        transform: translateY(0);
    }

    .sout-contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sout-section {
        padding: 60px 0;
    }

    .sout-card {
        padding: 40px 25px 30px;
    }

    .sout-card-icon {
        width: 85px;
        height: 85px;
        font-size: 36px;
    }

    .sout-contact-box {
        padding: 45px 25px;
    }

    .sout-contact-title {
        font-size: 22px;
    }

    .sout-contact-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .sout-contact-buttons {
        flex-direction: column;
    }

    .sout-contact-btn {
        width: 100%;
        justify-content: center;
    }
}