/* =======================
   DONATION PAGE STYLES
   ======================= */

/* Hero Section */
.donate-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.donate-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.donate-hero .hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.donate-hero .hero-subtitle {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin-bottom: 16px;
}

.donate-hero .hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.stat-card .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00b28a;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-pattern {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

/* Quick Donate Section */
.quick-donate {
    padding: 80px 0;
    background: #fff;
}

.donate-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.donate-card {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.donate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.donate-card.featured {
    background: linear-gradient(135deg, #00b28a 0%, #00e67a 100%);
    color: #000;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donate-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.donate-card > p {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.8;
}

.amount-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.amount-btn {
    background: #fff;
    border: 2px solid #e5e5e5;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-card.featured .amount-btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 0, 0, 0.2);
}

.amount-btn:hover {
    border-color: #00b28a;
    color: #00b28a;
}

.amount-btn.active {
    background: #00b28a;
    border-color: #00b28a;
    color: #000;
}

.donate-card.featured .amount-btn.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.custom-amount-input {
    margin-bottom: 24px;
}

.custom-amount-input input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
}

.supporter-perks {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.supporter-perks h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.supporter-perks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supporter-perks li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.supporter-perks li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.donate-btn {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-btn.primary {
    background: #00b28a;
    color: #000;
}

.donate-btn.primary:hover {
    background: #00e67a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.donate-btn.premium {
    background: #000;
    color: #fff;
}

.donate-btn.premium:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.6;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #666;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.impact-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.impact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.impact-icon {
    font-size: 48px;
}

.impact-amount {
    font-size: 32px;
    font-weight: 800;
    color: #00b28a;
}

.impact-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.impact-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.impact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-details li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 14px;
}

.impact-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b28a;
}

/* Crypto Section */
.donate-crypto {
    padding: 100px 0;
    background: #fff;
}

.crypto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.crypto-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.crypto-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.crypto-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: start;
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit p {
    color: #666;
}

.crypto-addresses h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.crypto-address {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.crypto-header img {
    width: 32px;
    height: 32px;
}

.crypto-header span {
    font-size: 18px;
    font-weight: 600;
}

.address-field {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.address-field code {
    flex: 1;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    word-break: break-all;
    border: 1px solid #e5e5e5;
}

.copy-btn {
    background: #00b28a;
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #00e67a;
}

.copy-btn.copied {
    background: #333;
    color: #fff;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
}

/* Testimonials Section */
.donate-testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.donate-testimonials h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 24px 0;
    position: relative;
}

.testimonial-card blockquote:before {
    content: """;
    font-size: 48px;
    color: #00b28a;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

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

.other-ways h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.way-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.way-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.way-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.way-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.way-link {
    color: #00b28a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.way-link:hover {
    color: #00e67a;
}

/* FAQ Section */
.donate-faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.donate-faq h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #00b28a;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 32px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* Final CTA Section */
.donate-final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.donate-final-cta .cta-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.donate-final-cta .cta-content > p {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #00b28a;
    color: #000;
}

.btn-primary:hover {
    background: #00e67a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.cta-note {
    font-size: 16px;
    opacity: 0.6;
    font-style: italic;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .donate-options {
        grid-template-columns: 1fr;
    }
    
    .crypto-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .donate-hero {
        padding: 100px 0 60px;
    }
    
    .donate-hero .hero-title {
        font-size: 36px;
    }
    
    .donate-hero .hero-subtitle {
        font-size: 20px;
    }
    
    .amount-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
}