/* ========================================
   DONATE PAGE STYLES
   ======================================== */

/* Page Header */
.page-header 
{
    height: 500px;
    background: linear-gradient(rgba(74, 20, 140, 0.85), rgba(74, 20, 140, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23D4AF37" opacity="0.3"/></pattern></defs><rect fill="%234A148C" width="1200" height="500"/><rect fill="url(%23dots)" width="1200" height="500"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
}

.page-header-content 
{
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.page-header h1 
{
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
}

.page-header h1 i 
{
    margin-right: 15px;
    color: var(--gold);
}

.page-header p 
{
    font-size: 22px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    line-height: 1.8;
}

.breadcrumb 
{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    font-size: 14px;
}

.breadcrumb a 
{
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover 
{
    color: var(--white);
}

.breadcrumb span 
{
    color: rgba(255,255,255,0.7);
}

/* Section Subtitle */
.section-subtitle 
{
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Why Donate Section */
.why-donate 
{
    padding: 100px 20px;
    background: var(--white);
}

.impact-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.impact-card 
{
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    border-top: 4px solid var(--gold);
}

.impact-card:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: var(--white);
}

.impact-icon 
{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-purple), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.impact-icon i 
{
    font-size: 36px;
    color: var(--white);
}

.impact-card h3 
{
    color: var(--deep-purple);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.impact-card p 
{
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.impact-stat 
{
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.stat-amount 
{
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.stat-label 
{
    display: block;
    font-size: 14px;
    color: #666;
}

/* Ways to Give Section */
.ways-to-give 
{
    padding: 100px 20px;
    background: var(--light-gray);
}

.giving-methods 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.method-card 
{
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.method-card:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.method-header 
{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.method-header i 
{
    font-size: 36px;
    color: var(--gold);
}

.method-header h3 
{
    color: var(--deep-purple);
    font-size: 26px;
    font-weight: 700;
}

.method-card > p 
{
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Bank Details */
.bank-details,
.mobile-details 
{
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.bank-info,
.mobile-info 
{
    margin-bottom: 20px;
}

.bank-info:last-child,
.mobile-info:last-child 
{
    margin-bottom: 0;
}

.bank-info h4,
.mobile-info h4 
{
    color: var(--deep-purple);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-info h4 i,
.mobile-info h4 i 
{
    color: var(--gold);
}

.bank-info p,
.mobile-info p 
{
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* Supported Platforms */
.supported-platforms 
{
    margin: 25px 0;
}

.supported-platforms h4 
{
    color: var(--deep-purple);
    font-size: 15px;
    margin-bottom: 12px;
}

.platform-badges 
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-badge 
{
    background: var(--deep-purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Mailing Address */
.mailing-address,
.office-details 
{
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.mailing-address h4,
.office-details h4 
{
    color: var(--deep-purple);
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mailing-address h4 i,
.office-details h4 i 
{
    color: var(--gold);
}

.mailing-address address,
.office-details address 
{
    color: #555;
    font-style: normal;
    line-height: 1.8;
    font-size: 15px;
}

.office-hours 
{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.office-hours p 
{
    color: #555;
    margin-bottom: 8px;
    font-size: 15px;
}

/* Method Note */
.method-note 
{
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 5px;
}

.method-note i 
{
    color: var(--gold);
    margin-right: 10px;
}

.method-note p 
{
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.method-note strong 
{
    color: var(--deep-purple);
}

/* Donation Types Section */
.donation-types 
{
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--deep-purple), #6A1B9A);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.donation-types::before 
{
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.types-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.type-card 
{
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.type-card:hover 
{
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.type-card i 
{
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.type-card h3 
{
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.type-card p 
{
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Tax Information Section */
.tax-info 
{
    padding: 100px 20px;
    background: var(--white);
}

.tax-content 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.tax-card 
{
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.tax-card:hover 
{
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.tax-card i 
{
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.tax-card h3 
{
    color: var(--deep-purple);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.tax-card p 
{
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.tax-note 
{
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #FFC107;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tax-note i 
{
    font-size: 24px;
    color: #F57C00;
    margin-top: 3px;
}

.tax-note p 
{
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.tax-note strong 
{
    color: #F57C00;
}

/* Contact for Donations Section */
.donate-contact 
{
    padding: 100px 20px;
    background: var(--light-gray);
}

.contact-options 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.contact-option 
{
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-option:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon 
{
    width: 80px;
    height: 80px;
    background: var(--deep-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.contact-option:hover .contact-icon 
{
    background: var(--gold);
    transform: scale(1.1);
}

.contact-icon i 
{
    font-size: 32px;
    color: var(--white);
}

.contact-option h3 
{
    color: var(--deep-purple);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-option > p 
{
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-link 
{
    display: inline-block;
    color: var(--deep-purple);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 10px;
}

.contact-link:hover 
{
    color: var(--gold);
}

.contact-hours 
{
    color: #999;
    font-size: 14px;
    font-style: italic;
}

.donation-coordinator 
{
    background: linear-gradient(135deg, var(--deep-purple), #6A1B9A);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.donation-coordinator h3 
{
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.donation-coordinator h3 i 
{
    color: var(--gold);
    margin-right: 10px;
}

.donation-coordinator > p 
{
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.coordinator-details 
{
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.coordinator-details p 
{
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coordinator-details p:last-child 
{
    margin-bottom: 0;
}

.coordinator-details i 
{
    color: var(--gold);
}

/* Transparency Section */
.transparency 
{
    padding: 100px 20px;
    background: var(--white);
}

.transparency-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.transparency-item 
{
    text-align: center;
    padding: 35px 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
}

.transparency-item:hover 
{
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.transparency-icon 
{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.transparency-icon i 
{
    font-size: 32px;
    color: var(--white);
}

.transparency-item h3 
{
    color: var(--deep-purple);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.transparency-item p 
{
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 968px) 
{
    .page-header h1 
    {
        font-size: 40px;
    }

    .page-header p 
    {
        font-size: 18px;
    }

    .impact-grid,
    .giving-methods,
    .types-grid,
    .tax-content,
    .contact-options,
    .transparency-grid 
    {
        grid-template-columns: 1fr;
    }

    .method-card,
    .impact-card 
    {
        padding: 35px 25px;
    }

    .donation-coordinator 
    {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) 
{
    .page-header h1 
    {
        font-size: 32px;
    }

    .page-header 
    {
        height: 400px;
    }

    .page-header p 
    {
        font-size: 16px;
    }

    .impact-icon,
    .contact-icon 
    {
        width: 70px;
        height: 70px;
    }

    .impact-icon i,
    .contact-icon i 
    {
        font-size: 28px;
    }

    .stat-amount 
    {
        font-size: 24px;
    }

    .method-header h3 
    {
        font-size: 22px;
    }

    .coordinator-details 
    {
        padding: 20px 25px;
    }
}