/* Popup / alert modal styles for the contact form */

#form-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#form-popup-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px 25px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: popup-fade-in 0.2s ease-out;
}

@keyframes popup-fade-in {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

#form-popup-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
}

#form-popup-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

#form-popup-close {
    border: none;
    padding: 10px 28px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    background: #ffc107;
}

#form-popup-close:hover {
    opacity: 0.9;
}

/* Success state */
.popup-success #form-popup-icon { color: #28a745; }
.popup-success #form-popup-close { background: #28a745; }

/* Error state */
.popup-error #form-popup-icon { color: #dc3545; }
.popup-error #form-popup-close { background: #dc3545; }