/* ==========================================================================
   DONATE CONTACT MODAL (SHREEDHAM108)
   ========================================================================== */
.donate-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 12, 6, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.donate-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.donate-modal {
    background: #fffaf3;
    border-radius: 20px;
    padding: 44px 40px 36px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

.donate-modal-overlay.is-open .donate-modal {
    transform: translateY(0) scale(1);
}

.donate-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(45, 31, 19, 0.06);
    color: #78624c;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.donate-modal-close:hover {
    background: #d97706;
    color: #fff;
}

.donate-modal-icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.donate-modal h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2d1f13;
    margin: 0 0 12px;
}

.donate-modal p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #78624c;
    line-height: 1.7;
    margin: 0 0 26px;
}

.donate-modal-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.donate-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eedecc;
    text-decoration: none;
    color: #2d1f13;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.donate-contact-item:hover {
    transform: translateY(-2px);
    border-color: #d97706;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.12);
}

.donate-contact-item i {
    font-size: 18px;
    color: #d97706;
    flex-shrink: 0;
}

.donate-contact-item.donate-whatsapp i {
    color: #25d366;
}

@media (max-width: 480px) {
    .donate-modal {
        padding: 36px 26px 28px;
    }
}
