/* Donation Styles */
.donation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.donation-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-form h2 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.donation-form .lead {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.donation-type h4,
.donation-amounts h4,
.personal-info h4,
.payment-method h4 {
    margin-bottom: 20px;
    color: var(--heading-color);
}

.amount-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.amount-btn.active {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: white;
}

.payment-options .form-check {
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-options .form-check:hover {
    border-color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.05);
}

.payment-options .form-check-input:checked ~ .form-check-label {
    color: var(--accent-color);
    font-weight: 600;
}

.donation-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-summary h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-divider {
    height: 2px;
    background: var(--accent-color);
    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.impact-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.security-badges {
    text-align: center;
}

.security-badges h5 {
    margin-bottom: 15px;
    color: var(--heading-color);
}

.badges i {
    color: #28a745;
}

.btn-donate {
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    border: none;
    color: white;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .donation-form-wrapper {
        padding: 25px;
    }
    
    .donation-summary {
        margin-top: 30px;
    }
}
