/* --- Urgent Help Popup Styles --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 25, 2, 0.7);
    /* var(--dark) with opacity */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex !important;
    opacity: 1;
}

.popup-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(2, 25, 2, 0.1);
}



.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--brand);
    padding: 5px;
}



.popup-title {
    color: var(--brand);
    font-family: Cardo, Georgia, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.popup-text {
    font-family: "Geist Variable", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 20px;
}

.popup-button {
    background-color: var(--brand);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
}

.popup-button:hover {

    background-color: #1a4a10;
    /* Slightly darker green */
}