/*
================================================
DONATION PAGE - PREMIUM STYLES
================================================
*/

/* Hero Banner */
.donation-hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.donation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 30px) rotate(360deg);
    }
}

.donation-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.donation-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 1;
}

.donation-hero .heart-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Language Toggle */
.language-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.language-toggle button {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-surface);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.language-toggle button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.language-toggle button:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Content Sections */
.donation-section {
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

/* Donation Cards */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.donation-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.donation-card.bkash {
    border-top: 4px solid #e2136e;
}

.donation-card.whatsapp {
    border-top: 4px solid #25d366;
}

.donation-card.resources {
    border-top: 4px solid #2563eb;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bkash .card-icon {
    background: linear-gradient(135deg, #e2136e, #ff4181);
    color: white;
}

.whatsapp .card-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.resources .card-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.donation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.donation-card .description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Number Display */
.number-display {
    background: var(--bg-subtle);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    border: 2px dashed var(--border-color);
}

.number-display .number {
    font-family: 'Outfit', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: #059669;
}

/* Steps List */
.steps-list {
    list-style: none;
    counter-reset: step;
}

.steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 0.75rem;
    counter-increment: step;
    color: var(--text-muted);
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Action Buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.action-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.action-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Message Section */
.motivation-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #86efac;
}

.motivation-section h3 {
    color: #059669;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.motivation-section h3 i {
    font-size: 1.5rem;
}

.motivation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #166534;
}

.motivation-text strong {
    color: #059669;
}

/* Resource Examples */
.resource-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.resource-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-tag i {
    font-size: 0.9rem;
}

/* Impact Stats */
.impact-section {
    text-align: center;
    margin: 3rem 0;
}

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

.impact-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.impact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-item .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Bilingual Text Styles */
.bilingual-text {
    background: var(--bg-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.text-en {
    color: var(--text-main);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--border-color);
}

.text-bn {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Content Visibility */
.content-en,
.content-bn {
    display: none;
}

.content-en.active,
.content-bn.active {
    display: block;
}

/* Thank You Note */
.thank-you-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid #fbbf24;
}

.thank-you-section h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.thank-you-section p {
    color: #a16207;
    max-width: 100%;
}

.thank-you-section i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-hero h2 {
        font-size: 1.8rem;
    }

    .donation-hero p {
        font-size: 1rem;
    }

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

    .number-display {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .motivation-section {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .language-toggle button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}