/* public/css/soutient.css */
.support-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.support-banner {
    background: #1565C0;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.support-hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.support-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0D47A1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.support-hero p {
    font-size: 1.2rem;
    color: #1565C0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.support-card {
    background: white;
    border: 2px solid #E3F2FD;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-header:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.card-body {
    padding: 2rem;
}

.info-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #0D47A1;
    font-weight: 600;
    border-left: 4px solid #1565C0;
}

.card-content h3 {
    color: #0D47A1;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.card-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.card-content ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.card-content ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.card-content ul li:before {
    content: "✓";
    color: #1565C0;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0.6rem;
}

.amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.amount-btn {
    background: white;
    border: 2px solid #1565C0;
    color: #1565C0;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.amount-btn:hover {
    background: #E3F2FD;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(21, 101, 192, 0.2);
}

.amount-btn.active {
    background: #1565C0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.4);
}

.frequency {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.frequency-btn {
    background: white;
    border: 2px solid #1565C0;
    color: #1565C0;
    padding: 0.5rem 0.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.frequency-btn:hover {
    background: #E3F2FD;
    transform: translateY(-1px);
}

.frequency-btn.active {
    background: #1565C0;
    color: white;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 101, 192, 0.4);
}

/* === STYLES MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.payment-form {
    display: none;
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .payment-form {
    transform: scale(1);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0D47A1;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #BBDEFB;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1565C0;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.quote {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 2rem;
    border-left: 4px solid #1565C0;
    margin: 2rem 0;
    font-style: italic;
    color: #0D47A1;
    text-align: center;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

.transparency {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #E3F2FD;
}

.transparency h3 {
    color: #0D47A1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.transparency p {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.transparency p:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1565C0;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.support-card {
    animation: fadeIn 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .support-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .support-hero h1 {
        font-size: 1.8rem;
    }

    .support-hero p {
        font-size: 1rem;
    }

    .support-hero {
        padding: 3rem 1rem;
    }

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

    .card-body {
        padding: 1.5rem;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .payment-form {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .amounts {
        grid-template-columns: 1fr;
    }

    .frequency {
        flex-direction: column;
    }

    .frequency-btn {
        width: 100%;
        text-align: center;
    }

    .payment-form {
        padding: 1.25rem;
    }
}
