/* Support Page Parallax & Visual Effects */

/* ==================== PARALLAX HERO ==================== */

.support-hero-parallax {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A3D0F 0%, #1A5F3C 100%);
}

.support-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    transform: translateZ(0);
    will-change: transform;
}

.support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 61, 15, 0.7) 0%, rgba(26, 95, 60, 0.8) 100%);
    z-index: 1;
}

.support-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.support-hero-content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.support-hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.support-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.support-stat {
    text-align: center;
}

.support-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4A017;
    display: block;
    margin-bottom: 0.5rem;
}

.support-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==================== IMPACT TIMELINE ==================== */

.impact-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1A5F3C 0%, #D4A017 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(26, 95, 60, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.visible .timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A5F3C 0%, #0A3D0F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.timeline-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
}

.timeline-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1A5F3C;
    margin-bottom: 0.5rem;
}

.timeline-impact {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* ==================== VISUAL DIVIDERS ==================== */

.visual-divider {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 15, 0.85) 0%, rgba(26, 95, 60, 0.85) 100%);
}

.divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.divider-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.divider-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .support-hero-content h1 {
        font-size: 2.5rem;
    }

    .support-hero-content p {
        font-size: 1.2rem;
    }

    .support-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .support-stat-number {
        font-size: 2.5rem;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
        padding-left: 80px;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        margin-left: 0;
    }

    .visual-divider {
        height: 300px;
        background-attachment: scroll;
    }

    .divider-content h2 {
        font-size: 2rem;
    }

    .divider-content p {
        font-size: 1.1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}