/* Support Page Specific Styles */

/* Support Hero Section */
.support-hero {
    padding: 8rem 1rem 4rem;
    background: linear-gradient(135deg, #4CB572 0%, #3a9b5f 100%);
    color: white;
}

.support-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.support-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.support-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Support Options Section */
.support-options {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.support-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #585858;
    text-align: center;
    margin-bottom: 3rem;
}

/* Support Tiers */
.support-tier {
    margin-bottom: 4rem;
}

.tier-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #585858;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #4CB572;
}

.tier-description {
    font-size: 1.125rem;
    color: #554D4D;
    margin-bottom: 2rem;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.financial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Support Cards */
.support-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.support-card.featured {
    border: 2px solid #4CB572;
    background: linear-gradient(to bottom, #f0fdf4, white);
}

.support-card.featured .support-icon {
    color: #4CB572;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CB572;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.support-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CB572;
}

.support-icon svg {
    width: 100%;
    height: 100%;
}

.support-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #585858;
    margin-bottom: 0.75rem;
}

.support-card p {
    color: #554D4D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #554D4D;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CB572;
    font-weight: bold;
}

/* Support Action Buttons */
.btn-support-action {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #4CB572;
    border: 2px solid #4CB572;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    margin-top: auto;
}

.btn-support-action:hover {
    background-color: #4CB572;
    color: white;
    transform: translateY(-2px);
}

.btn-support-action.btn-primary {
    background: linear-gradient(135deg, #4CB572 0%, #3a9b5f 100%);
    color: white;
    border: none;
}

.btn-support-action.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(76, 181, 114, 0.4);
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-social {
    flex: 1;
    min-width: 80px;
    padding: 0.5rem 1rem;
    background-color: #f3f4f6;
    color: var(--color-text);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-social:hover {
    background-color: #e5e7eb;
}

/* Financial Cards */
.financial-card {
    display: flex;
    flex-direction: column;
}

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

.amount-btn {
    padding: 0.75rem;
    background-color: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover,
.amount-btn.active {
    background-color: white;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.subscription-tiers {
    margin: 1.5rem 0;
}

.tier-option {
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border-left: 3px solid #4CB572;
    margin-bottom: 0.75rem;
    border-radius: 4px;
}

.tier-option strong {
    color: #4CB572;
    display: block;
    margin-bottom: 0.25rem;
}

/* Impact Section */
.impact-section {
    padding: 4rem 1rem;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem 1rem;
}

.impact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CB572;
}

.impact-icon svg {
    width: 100%;
    height: 100%;
}

.impact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #585858;
    margin-bottom: 0.75rem;
}

.impact-card p {
    color: #554D4D;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.faq-container {
    max-width: 900px;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #585858;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #554D4D;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .support-hero-title {
        font-size: 3.5rem;
    }

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

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

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

    .support-icon {
        width: 56px;
        height: 56px;
    }

    .impact-icon {
        width: 64px;
        height: 64px;
    }
}

@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .compact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .support-hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1280px) {
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .compact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
