.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}
.exit-popup-overlay.active { display: flex; }
.exit-popup {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 92%;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    display: flex;
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.exit-popup-close:hover { background: #ff5757; color: #fff; }
.exit-popup-left {
    flex: 1;
    padding: 45px 35px;
    background: linear-gradient(135deg, #1a6b5a, #238c73);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.exit-popup-left h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
}
.popup-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #1a1a2e;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}
.popup-btn-primary:hover { transform: scale(1.03); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.popup-btn-primary i { font-size: 18px; color: #25d366; }
.popup-btn-outline {
    display: block;
    text-align: center;
    background: transparent;
    color: #fff;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s;
}
.popup-btn-outline:hover { background: rgba(255,255,255,0.15); }
.popup-btn-dismiss {
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    align-self: center;
    margin-top: 5px;
    transition: all 0.3s;
}
.popup-btn-dismiss:hover { background: #333; }
.exit-popup-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f0f0f0;
}
.exit-popup-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 600px) {
    .exit-popup { flex-direction: column; max-width: 360px; }
    .exit-popup-left { padding: 30px 25px; }
    .exit-popup-left h2 { font-size: 24px; }
    .exit-popup-right { height: 180px; }
}
