/* Support Section Styles */
.support-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.support-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--light-gray);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.support-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding-top: 40px;
}

.support-content .section-title h2 {
    color: var(--white);
}

.support-content .section-title h2::after {
    background: var(--white);
}

.support-content .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.support-logo {
    margin: 40px auto;
    max-width: 200px;
}

.support-logo img {
    filter: brightness(0) invert(1);
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 10px;
    font-weight: 600;
}

.support-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.donation-info {
    max-width: 600px;
    margin: 40px auto;
}

.donation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donation-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.donation-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.donation-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.donation-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-option {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.support-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-cta .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-cta .btn-outline-white:hover {
    background: white;
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .support-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .support-mission {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
