/**
 * Donate Page Modern Design
 * Matches Corporate Style (Blue/White, Clean Typography)
 */

.donate-page-section {
    padding: 60px 0;
    width: 100%;
}

.donate-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Tabs Navigation */
.donate-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.donate-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 100px;
    background: #fff;
    border: 1px solid rgba(23, 55, 80, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.donate-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(23, 55, 80, 0.2);
}

.donate-tab-btn.is-active {
    background: #173750;
    color: #fff;
    border-color: #173750;
    box-shadow: 0 8px 20px rgba(23, 55, 80, 0.25);
}

.donate-tab-symbol {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1;
}

.donate-tab-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tab Panels */
.donate-panel {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.donate-panel.is-active {
    display: block;
}

/* Payment Card Content */
.donate-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 32px rgba(23, 55, 80, 0.08);
    text-align: center;
}

.donate-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #173750;
    margin-bottom: 24px;
}

.donate-details {
    font-size: 18px;
    line-height: 1.6;
    color: #334e68;
    margin-bottom: 32px;
}

/* PayPal Form Specifics */
.paypal-section {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.paypal-section input[type="image"] {
    transition: transform 0.2s ease;
}

.paypal-section input[type="image"]:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 768px) {
    .donate-tabs {
        gap: 8px;
    }

    .donate-tab-btn {
        width: 90px;
        height: 80px;
    }

    .donate-tab-symbol {
        font-size: 24px;
    }

    .donate-tab-label {
        font-size: 11px;
    }

    .donate-card {
        padding: 24px;
    }
}