/* ===================================
   DONATE PAGE STYLES
   =================================== */

/* Hero Section */
.donate-hero {
    background: linear-gradient(135deg, #839D63 0%, #6b8251 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.donate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.donate-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.donate-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Impact Section */
.donate-impact {
    padding: 80px 0;
    background: #f8f9fa;
}

.donate-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.donate-impact .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.impact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #839D63, #6b8251);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(131, 157, 99, 0.2);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.impact-card h3 {
    font-size: 2rem;
    color: #839D63;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.impact-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Donation Form Section */
.donate-form-section {
    padding: 80px 0;
    background: white;
}

.donate-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
}

.donate-text {
    flex: 1;
    min-width: 300px;
}

.donate-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.donate-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-donate {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #839D63;
}

.why-donate h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.why-donate ul {
    list-style: none;
    padding: 0;
}

.why-donate li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* PayPal Container */
.donate-form-container {
    flex: 1;
    min-width: 380px !important;
    /* Force minimum width */
    max-width: 550px;
    margin: 0 auto;
}

.paypal-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

#paypal-container-9N6ZJ9D74L25U {
    margin: 1rem 0;
    min-height: 150px;
    display: block;
    width: 100%;
}

.payment-note {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Testimonial Section */
.donate-testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.donate-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    padding: 2rem;
}

.donate-testimonial blockquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.donate-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: #839D63;
    font-weight: 600;
}

/* Other Ways Section */
.other-ways {
    padding: 80px 0;
    background: #f8f9fa;
}

.other-ways h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.way-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.way-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(131, 157, 99, 0.15);
}

.way-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.way-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.way-card .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .donate-content {
        flex-direction: column;
        gap: 3rem;
    }

    .donate-text,
    .donate-form-container {
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;
    }

    .donate-form-container {
        position: static;
    }

    .donate-hero h1 {
        font-size: 2.5rem;
    }

    .donate-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .ways-grid {
        grid-template-columns: 1fr;
    }

    .paypal-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .donate-hero {
        padding: 80px 0 60px;
    }

    .donate-hero h1 {
        font-size: 2rem;
    }

    .donate-hero .hero-subtitle {
        font-size: 1rem;
    }

    .donate-impact h2,
    .donate-text h2,
    .other-ways h2 {
        font-size: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .donate-testimonial blockquote {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .paypal-wrapper {
        padding: 1.5rem;
    }

    .paypal-wrapper h3 {
        font-size: 1.4rem;
    }
}