/* Popup Wrapper Style */
.seo-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: center; z-index: 99999;
}
.seo-popup-box {
    background: #fff; padding: 25px; border-radius: 12px; width: 90%; max-width: 400px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.3); position: relative; font-family: sans-serif;
}
.seo-popup-close {
    position: absolute; top: 12px; right: 15px; font-size: 24px; cursor: pointer; color: #666; font-weight: bold;
}
.seo-popup-logo {
    text-align: center; margin-bottom: 15px;
}
.seo-popup-logo img {
    max-width: 150px; height: auto;
}
/* Form Input Styles */
.seo-popup-box h3 { margin-top: 0; text-align: center; color: #333; font-size: 18px; margin-bottom: 15px; }
.seo-popup-field { width: 100%; padding: 10px; margin-bottom: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; }
.seo-popup-captcha-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.seo-popup-btn { width: 100%; padding: 12px; background: #25D366; color: white; border: none; border-radius: 6px; font-size: 16px; font-weight: bold; cursor: pointer; }
.seo-popup-btn:hover { background: #128C7E; }
