/* Popup Overlay */
.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.offer-box {
    background: #ffffff;
    width: 92%;
    max-width: 520px;
    padding: 22px 24px 26px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    font-size: 14.5px;
    line-height: 1.6;
    color: #1e293b;
    position: relative;
    animation: fadeUp 0.35s ease;
}
.center-heading{
    text-align: center;
    margin: 18px 0 8px;
    font-weight: 700;
}


/* Content */
#offerMessage strong {
    color: #1e3a8a;
    font-size: 16px;
}

/* Area columns */
.area-columns {
    display: flex;
    justify-content: center;   /* ← this centers the two columns */
    gap: 30px;
    margin: 8px 0 12px;
}

.area-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #334155;
}

/* Button */
.offer-btn {
    margin-top: 14px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #1e3a8a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.zb-popup-heading {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.zb-popup-title {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #e58b8b, #d86b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.offer-btn:hover {
    background: #1e40af;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .offer-box {
        padding: 18px 18px 22px;
    }
}
