.elementor-890 .elementor-element.elementor-element-e6b75f1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-widget-button .elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-890 .elementor-element.elementor-element-1b3e3176{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-890 .elementor-element.elementor-element-40beb8e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1c4839c *//* Anchor Link Popup Widget - CSS Styles */
/* Copy this code to: Elementor → Custom CSS or WordPress Customizer → Additional CSS */

/* Main Widget Container */
.popup-widget-container {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Widget Header Styles */
.widget-header h2 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.widget-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Main Anchor Link Button */
.popup-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-anchor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #764ba2;
}

/* Divider */
.widget-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    margin: 25px 0;
}

/* Inline Link Wrapper */
.inline-link-wrapper {
    margin: 20px 0;
}

.inline-link-wrapper p {
    color: white;
    font-size: 16px;
}

.inline-anchor-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.inline-anchor-link:hover {
    color: #ffd700;
    text-decoration: none;
}

/* Feature Info Box */
.feature-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 25px;
    color: white;
    font-size: 13px;
    backdrop-filter: blur(5px);
}

/* ========== POPUP MODAL STYLES ========== */
.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.custom-modal-overlay.show {
    display: flex;
}

/* Modal Content */
.custom-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.custom-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.custom-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-close:hover {
    transform: scale(1.1);
}

/* Modal Body */
.custom-modal-body {
    padding: 30px;
    color: #333;
    line-height: 1.6;
}

.custom-modal-body p {
    margin-bottom: 15px;
}

.highlight-box {
    background: #f8f9ff;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 13px;
    border-left: 4px solid #667eea;
    line-height: 1.8;
}

/* Modal Footer */
.custom-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Modal Buttons */
.modal-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 14px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.modal-btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.modal-btn-secondary:hover {
    background: #d0d0d0;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-widget-container {
        padding: 20px 15px;
    }
    
    .widget-header h2 {
        font-size: 24px;
    }
    
    .popup-anchor-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .custom-modal-body {
        padding: 20px;
    }
    
    .custom-modal-header h2 {
        font-size: 20px;
    }
    
    .modal-btn {
        padding: 8px 18px;
    }
}/* End custom CSS */