/* Necox Popup Templates v4.6.0 - 31.12.2024 - Stable Clean Version */

/* SURVEY */
.necox-survey-container{width:100%;max-width:1200px;margin:0 auto;padding:20px}
.necox-survey-title{font-size:28px;font-weight:700;margin-bottom:10px;color:#333}
.necox-survey-desc{font-size:16px;color:#666;margin-bottom:30px}
.necox-candidates-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.necox-candidate-card{background:#fff;border:2px solid #e0e0e0;border-radius:12px;padding:25px;text-align:center;transition:all .3s ease;cursor:pointer;position:relative}
.necox-candidate-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.1)}
.necox-candidate-card.selected{border-color:#4CAF50;box-shadow:0 0 0 3px rgba(76,175,80,.2)}
.necox-candidate-photo{width:120px;height:120px;margin:0 auto 15px;border-radius:50%;overflow:hidden;border:3px solid #f0f0f0}
.necox-candidate-photo img{width:100%;height:100%;object-fit:cover}
.necox-candidate-name{font-size:18px;font-weight:600;color:#222;margin:0 0 10px}
.necox-candidate-info{font-size:14px;color:#666;line-height:1.5;margin:0 0 15px;min-height:42px}
.necox-party-logo{margin:10px 0}
.necox-party-logo img{max-width:60px;height:auto}
.necox-party-name{display:block;font-size:12px;color:#888;margin-bottom:15px}
.necox-vote-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:#4CAF50;color:#fff;border:none;padding:12px 25px;border-radius:25px;font-size:14px;font-weight:600;cursor:pointer;transition:all .3s ease;width:100%}
.necox-vote-btn:hover{background:#43A047;transform:scale(1.02)}
.necox-vote-btn:disabled{background:#ccc;cursor:not-allowed;transform:none}
.necox-vote-btn.icon-right{flex-direction:row-reverse}
.necox-vote-btn i,.necox-vote-btn svg{font-size:16px;width:16px;height:16px}
.necox-success-message{text-align:center;padding:50px 30px;background:linear-gradient(135deg,#f5f7fa,#e4e8eb);border-radius:12px}
.necox-success-icon{font-size:60px;color:#4CAF50;margin-bottom:20px}
.necox-success-icon svg{width:60px;height:60px;fill:#4CAF50}
.necox-success-title{font-size:28px;font-weight:700;color:#333;margin:0 0 10px}
.necox-success-text{font-size:16px;color:#666;margin:0}
.necox-vote-btn.loading{pointer-events:none;opacity:.7}
.necox-vote-btn.loading::after{content:'';width:16px;height:16px;border:2px solid #fff;border-top-color:transparent;border-radius:50%;animation:necoxSpin .8s linear infinite;margin-left:8px}

/* POPUP BASE */
.necox-popup-wrapper{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:999999;
}
.necox-popup-wrapper.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* POPUP POSITIONS */
.necox-popup-wrapper.position-center{align-items:center;justify-content:center}
.necox-popup-wrapper.position-top-left{align-items:flex-start;justify-content:flex-start;padding:20px}
.necox-popup-wrapper.position-top-center{align-items:flex-start;justify-content:center;padding-top:20px}
.necox-popup-wrapper.position-top-right{align-items:flex-start;justify-content:flex-end;padding:20px}
.necox-popup-wrapper.position-bottom-left{align-items:flex-end;justify-content:flex-start;padding:20px}
.necox-popup-wrapper.position-bottom-center{align-items:flex-end;justify-content:center;padding-bottom:20px}
.necox-popup-wrapper.position-bottom-right{align-items:flex-end;justify-content:flex-end;padding:20px}
.necox-popup-wrapper.position-left-center{align-items:center;justify-content:flex-start;padding-left:20px}
.necox-popup-wrapper.position-right-center{align-items:center;justify-content:flex-end;padding-right:20px}
.necox-popup-wrapper.position-custom{align-items:center;justify-content:center}

/* OVERLAY */
.necox-popup-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    opacity:0;
    transition:opacity .3s ease;
    z-index:0;
    pointer-events:none;
}
.necox-popup-wrapper.active .necox-popup-overlay{opacity:1}

/* TRANSPARENT POPUP - Overlay tamamen şeffaf (görünmez) */
.necox-popup-wrapper[data-template-id="transparent-popup"] .necox-popup-overlay,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-overlay{
    background:transparent !important;
    pointer-events:none !important;
}

/* CONTENT */
.necox-popup-content{
    position:relative;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 50px rgba(0,0,0,.3);
    max-width:90%;
    max-height:90vh;
    overflow:hidden;
    z-index:1;
}

/* TRANSPARENT POPUP - Content transparent */
.necox-popup-wrapper[data-template-id="transparent-popup"],
.necox-cpt-popup[data-template-id="transparent-popup"]{
    background:transparent !important;
}
.necox-popup-wrapper[data-template-id="transparent-popup"] .necox-popup-content,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-content{
    background:transparent !important;
    border-radius:0 !important;
    max-width:none !important;
    max-height:none !important;
    overflow:visible !important;
}

/* Transparent popup - box-shadow'u sadece neon yoksa iptal et */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-content:not(.necox-neon-border){
    box-shadow:none !important;
}
.necox-popup-wrapper[data-template-id="transparent-image-only"] .necox-popup-inner,
.necox-cpt-popup[data-template-id="transparent-image-only"] .necox-cpt-popup-inner{
    padding:0 !important;
    background:transparent !important;
    overflow:visible !important;
}
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor-container,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor-element,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor-widget-wrap,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor-column,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor-section,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .e-con,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .e-con-inner,
.necox-popup-wrapper[data-template-id="transparent-image-only"] .elementor-top-section,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor-container,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor-element,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor-widget-wrap,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor-column,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor-section,
.necox-cpt-popup[data-template-id="transparent-image-only"] .e-con,
.necox-cpt-popup[data-template-id="transparent-image-only"] .e-con-inner,
.necox-cpt-popup[data-template-id="transparent-image-only"] .elementor-top-section{
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
    box-shadow:none !important;
    border:none !important;
    padding:0 !important;
    margin:0 !important;
}
/* Image itself - no changes */
.necox-popup-wrapper[data-template-id="transparent-image-only"] img,
.necox-cpt-popup[data-template-id="transparent-image-only"] img{
    display:block !important;
    max-width:100% !important;
    height:auto !important;
}

/* CRITICAL: Force transparent on all possible wrappers - v2.1.0 */
[data-template-id="transparent-image-only"] *:not(img):not(svg):not(path):not(circle){
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
}
/* TRANSPARENT - kullanıcı template'lerinde data-transparent="1" ile */
.necox-cpt-popup[data-transparent="1"] .necox-cpt-popup-overlay{
    background:transparent !important;
    pointer-events:none !important;
}
.necox-cpt-popup[data-transparent="1"] .necox-cpt-popup-content{
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
    border:none !important;
    border-radius:0 !important;
    box-shadow:none !important;
    padding:0 !important;
    max-width:none !important;
    max-height:none !important;
    overflow:visible !important;
}
.necox-cpt-popup[data-transparent="1"] .necox-cpt-popup-inner{
    background:transparent !important;
    background-color:transparent !important;
    padding:0 !important;
    overflow:visible !important;
}
.necox-cpt-popup[data-transparent="1"] .elementor,
.necox-cpt-popup[data-transparent="1"] .elementor-section,
.necox-cpt-popup[data-transparent="1"] .elementor-container,
.necox-cpt-popup[data-transparent="1"] .elementor-column,
.necox-cpt-popup[data-transparent="1"] .elementor-widget-wrap,
.necox-cpt-popup[data-transparent="1"] .elementor-element,
.necox-cpt-popup[data-transparent="1"] .e-con,
.necox-cpt-popup[data-transparent="1"] .e-con-inner,
.necox-cpt-popup[data-transparent="1"] .elementor-top-section{
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
    box-shadow:none !important;
    border:none !important;
}

.necox-popup-inner{padding:30px;overflow-y:auto;max-height:80vh;position:relative;z-index:1}
.necox-popup-content.media-left .necox-popup-inner,
.necox-popup-content.media-right .necox-popup-inner{display:flex;gap:20px;align-items:center}
.necox-popup-content.media-left .necox-popup-media-wrap,
.necox-popup-content.media-right .necox-popup-media-wrap{flex:0 0 40%}
.necox-popup-content.media-left .necox-popup-body,
.necox-popup-content.media-right .necox-popup-body{flex:1}
.necox-popup-content.media-background{position:relative}
.necox-popup-bg-image{position:absolute;top:0;left:0;width:100%;height:100%;background-size:cover;background-position:center center;opacity:.3;transition:opacity .3s ease;z-index:0}
.necox-popup-content.media-background .necox-popup-inner{position:relative;z-index:2}

/* MEDYA ALANI */
.necox-popup-media-wrap{display:flex;justify-content:center;margin-bottom:20px}
.necox-popup-media{position:relative;overflow:hidden;border-radius:12px;background:#1a1a2e;width:100%}
.necox-popup-media img{width:100%;height:100%;object-fit:cover;display:block}
.necox-media-overlay{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:1}

/* MEDYA ITEM (Görsel & Slayt) */
.necox-media-item{
    position:relative;
    width:100%;
    height:100%;
    cursor:pointer;
}
.necox-media-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.necox-slideshow-info{
    position:absolute;
    bottom:10px;
    left:10px;
    background:rgba(0,0,0,.7);
    color:#fff;
    padding:5px 12px;
    border-radius:15px;
    font-size:12px;
    font-weight:500;
}

/* VİDEO PLAYER */
.necox-video-player{
    position:relative;
    width:100%;
    height:100%;
    background:#000;
    border-radius:inherit;
    overflow:hidden;
}
.necox-video-frame{
    width:100%;
    height:100%;
    min-height:150px;
    position:relative;
}
.necox-video-frame iframe,
.necox-video-frame video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
    object-fit:cover;
}

/* Video Overlay - Tıklama için */
.necox-video-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    cursor:pointer;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    transition:background .3s ease;
}
.necox-video-overlay:hover{
    background:rgba(0,0,0,.1);
}
.necox-video-overlay.sound-enabled{
    pointer-events:none;
}

/* Ses Hint */
.necox-sound-hint{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(0,0,0,.8);
    color:#fff;
    padding:12px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    opacity:0;
    transform:scale(.9);
    transition:all .3s ease;
    pointer-events:none;
}
.necox-video-overlay:hover .necox-sound-hint{
    opacity:1;
    transform:scale(1);
}
.necox-sound-hint svg{
    width:24px;
    height:24px;
}
.necox-video-overlay.sound-enabled .necox-sound-hint{
    display:none;
}

/* VİDEO PLACEHOLDER */
.necox-video-placeholder{
    width:100%;
    height:100%;
    min-height:150px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);
    color:rgba(255,255,255,.5);
    gap:10px;
}
.necox-video-placeholder svg{width:48px;height:48px;opacity:.5}
.necox-video-placeholder span{font-size:14px;font-weight:500}

/* TAM EKRAN BUTONU */
.necox-fullscreen-btn{
    position:absolute;
    bottom:10px;
    right:10px;
    width:40px;
    height:40px;
    background:rgba(0,0,0,.7);
    border:none;
    border-radius:8px;
    cursor:pointer;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:all .3s ease;
}
.necox-media-item:hover .necox-fullscreen-btn,
.necox-video-player:hover .necox-fullscreen-btn{
    opacity:1;
}
.necox-fullscreen-btn:hover{
    background:rgba(0,0,0,.9);
    transform:scale(1.1);
}
.necox-fullscreen-btn svg{
    width:20px;
    height:20px;
    color:#fff;
}

/* ========================================
   TAM EKRAN LIGHTBOX
   ======================================== */
.necox-fullscreen-lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:99999999;
    display:none;
    align-items:center;
    justify-content:center;
}
.necox-fullscreen-lightbox.active{
    display:flex;
}
.necox-lightbox-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    z-index:1;
}
.necox-lightbox-wrapper{
    position:relative;
    width:100%;
    height:100%;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-sizing:border-box;
}

/* Lightbox Close Button */
.necox-lightbox-close-btn,
button.necox-lightbox-close-btn{
    position:absolute !important;
    top:20px !important;
    right:20px !important;
    width:50px !important;
    height:50px !important;
    background:rgba(255,255,255,.1) !important;
    border:2px solid rgba(255,255,255,.3) !important;
    border-radius:50% !important;
    color:#fff !important;
    cursor:pointer !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    transition:all .3s ease !important;
    z-index:100 !important;
    padding:0 !important;
    margin:0 !important;
    min-width:unset !important;
    min-height:unset !important;
    line-height:1 !important;
}
.necox-lightbox-close-btn:hover,
button.necox-lightbox-close-btn:hover{
    background:rgba(255,255,255,.2) !important;
    border-color:rgba(255,255,255,.5) !important;
    transform:rotate(90deg) !important;
}
.necox-lightbox-close-btn svg,
button.necox-lightbox-close-btn svg{
    width:24px !important;
    height:24px !important;
    display:block !important;
    flex-shrink:0 !important;
    margin:0 !important;
    padding:0 !important;
}

/* Lightbox Content Area */
.necox-lightbox-content-area{
    position:relative;
    z-index:10;
    max-width:95%;
    max-height:95%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Lightbox Image */
.necox-lightbox-image-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
}
.necox-lightbox-image-wrap img{
    max-width:90vw;
    max-height:90vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:8px;
    box-shadow:0 10px 50px rgba(0,0,0,.5);
}

/* Lightbox Video Container */
.necox-lightbox-video-wrap{
    width:90vw;
    max-width:1400px;
    aspect-ratio:16/9;
    background:#000;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 50px rgba(0,0,0,.5);
}
.necox-lightbox-video-wrap iframe,
.necox-lightbox-video-wrap video{
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/* Lightbox Navigation */
.necox-lightbox-nav-btn,
button.necox-lightbox-nav-btn{
    position:absolute !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    width:60px !important;
    height:60px !important;
    background:rgba(255,255,255,.1) !important;
    border:2px solid rgba(255,255,255,.3) !important;
    border-radius:50% !important;
    color:#fff !important;
    cursor:pointer !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    transition:all .3s ease !important;
    z-index:100 !important;
    padding:0 !important;
    margin:0 !important;
    min-width:unset !important;
    min-height:unset !important;
    line-height:1 !important;
}
.necox-lightbox-nav-btn:hover,
button.necox-lightbox-nav-btn:hover{
    background:rgba(255,255,255,.2) !important;
    border-color:rgba(255,255,255,.5) !important;
}
.necox-lightbox-nav-btn.prev,
button.necox-lightbox-nav-btn.prev{left:20px !important}
.necox-lightbox-nav-btn.next,
button.necox-lightbox-nav-btn.next{right:20px !important}
.necox-lightbox-nav-btn svg,
button.necox-lightbox-nav-btn svg{
    width:24px !important;
    height:24px !important;
    display:block !important;
    flex-shrink:0 !important;
    margin:0 !important;
    padding:0 !important;
}
.necox-lightbox-nav-btn:disabled,
button.necox-lightbox-nav-btn:disabled{opacity:.3 !important;cursor:not-allowed !important}

/* Lightbox Counter */
.necox-lightbox-counter{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0,0,0,.7);
    color:#fff;
    padding:10px 25px;
    border-radius:25px;
    font-size:16px;
    font-weight:600;
    z-index:100;
}

/* Body scroll lock */
body.necox-lightbox-open{overflow:hidden !important}

/* Mobile Responsive */
@media(max-width:768px){
    .necox-lightbox-close-btn,
    button.necox-lightbox-close-btn{
        top:10px !important;
        right:10px !important;
        width:40px !important;
        height:40px !important;
        padding:0 !important;
    }
    .necox-lightbox-close-btn svg,
    button.necox-lightbox-close-btn svg{
        width:20px !important;
        height:20px !important;
    }
    .necox-lightbox-nav-btn,
    button.necox-lightbox-nav-btn{
        width:45px !important;
        height:45px !important;
        padding:0 !important;
    }
    .necox-lightbox-nav-btn svg,
    button.necox-lightbox-nav-btn svg{
        width:20px !important;
        height:20px !important;
    }
    .necox-lightbox-nav-btn.prev,
    button.necox-lightbox-nav-btn.prev{left:10px !important}
    .necox-lightbox-nav-btn.next,
    button.necox-lightbox-nav-btn.next{right:10px !important}
    .necox-lightbox-counter{bottom:20px;font-size:14px;padding:8px 16px}
    .necox-lightbox-video-wrap{width:95vw}
    .necox-lightbox-image-wrap img{max-width:95vw;max-height:85vh}
}

.necox-popup-title{font-size:24px;font-weight:700;color:#333;margin:0 0 15px;text-align:center}
.necox-popup-subtitle{font-size:16px;color:#666;margin:0 0 10px;text-align:center}
.necox-popup-desc{font-size:16px;color:#666;line-height:1.6;margin-bottom:20px;text-align:center}
.necox-popup-btn-wrap{text-align:center;margin-top:20px}
.necox-popup-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:#007bff;color:#fff;text-decoration:none;padding:12px 30px;border-radius:6px;font-size:16px;font-weight:600;transition:all .3s ease;border:none;cursor:pointer}
.necox-popup-btn:hover{background:#0056b3;transform:translateY(-2px);color:#fff;text-decoration:none}
.necox-popup-btn i,.necox-popup-btn svg{font-size:16px;width:16px;height:16px}
.necox-popup-close{position:absolute;background:transparent;border:none;cursor:pointer;padding:5px;line-height:1;z-index:10;transition:all .3s ease;border-radius:50%;display:flex;align-items:center;justify-content:center}
.necox-popup-close:hover{background:rgba(0,0,0,.1)}
.necox-popup-close.close-inside-right{top:15px;right:15px}
.necox-popup-close.close-inside-left{top:15px;left:15px}
.necox-popup-close.close-outside-right{top:-35px;right:0;color:#fff!important}
.necox-popup-close.close-outside-right svg{fill:#fff!important}
.necox-popup-close.close-outside-left{top:-35px;left:0;color:#fff!important}
.necox-popup-close.close-outside-left svg{fill:#fff!important}

/* ========================================
   ANIMATIONS - KEYFRAMES
======================================== */
@keyframes necoxFadeIn{
    from{opacity:0}
    to{opacity:1}
}
@keyframes necoxFadeOut{
    from{opacity:1}
    to{opacity:0}
}
@keyframes necoxFadeInUp{
    from{opacity:0;transform:translateY(40px)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes necoxFadeOutDown{
    from{opacity:1;transform:translateY(0)}
    to{opacity:0;transform:translateY(40px)}
}
@keyframes necoxFadeInDown{
    from{opacity:0;transform:translateY(-40px)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes necoxFadeOutUp{
    from{opacity:1;transform:translateY(0)}
    to{opacity:0;transform:translateY(-40px)}
}
@keyframes necoxFadeInLeft{
    from{opacity:0;transform:translateX(-40px)}
    to{opacity:1;transform:translateX(0)}
}
@keyframes necoxFadeInRight{
    from{opacity:0;transform:translateX(40px)}
    to{opacity:1;transform:translateX(0)}
}
@keyframes necoxZoomIn{
    from{opacity:0;transform:scale(0.7)}
    to{opacity:1;transform:scale(1)}
}
@keyframes necoxZoomOut{
    from{opacity:1;transform:scale(1)}
    to{opacity:0;transform:scale(0.7)}
}
@keyframes necoxBounceIn{
    0%{opacity:0;transform:scale(0.3)}
    50%{transform:scale(1.08)}
    70%{transform:scale(0.92)}
    100%{opacity:1;transform:scale(1)}
}
@keyframes necoxBounceOut{
    0%{transform:scale(1)}
    25%{transform:scale(0.95)}
    50%{opacity:1;transform:scale(1.08)}
    100%{opacity:0;transform:scale(0.3)}
}
@keyframes necoxSlideInUp{
    from{opacity:0;transform:translateY(100%)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes necoxSlideInDown{
    from{opacity:0;transform:translateY(-100%)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes necoxSpin{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

/* ANIMATION CLASSES */
.necox-anim-fadeIn{animation:necoxFadeIn .4s ease forwards}
.necox-anim-fadeOut{animation:necoxFadeOut .4s ease forwards}
.necox-anim-fadeInUp{animation:necoxFadeInUp .4s ease forwards}
.necox-anim-fadeOutDown{animation:necoxFadeOutDown .4s ease forwards}
.necox-anim-fadeInDown{animation:necoxFadeInDown .4s ease forwards}
.necox-anim-fadeOutUp{animation:necoxFadeOutUp .4s ease forwards}
.necox-anim-fadeInLeft{animation:necoxFadeInLeft .4s ease forwards}
.necox-anim-fadeInRight{animation:necoxFadeInRight .4s ease forwards}
.necox-anim-zoomIn{animation:necoxZoomIn .4s ease forwards}
.necox-anim-zoomOut{animation:necoxZoomOut .4s ease forwards}
.necox-anim-bounceIn{animation:necoxBounceIn .6s ease forwards}
.necox-anim-bounceOut{animation:necoxBounceOut .6s ease forwards}
.necox-anim-slideInUp{animation:necoxSlideInUp .4s ease forwards}
.necox-anim-slideInDown{animation:necoxSlideInDown .4s ease forwards}

/* RESPONSIVE */
@media(max-width:1024px){
    .necox-candidates-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
    .necox-candidates-grid{grid-template-columns:1fr}
    .necox-popup-content{width:95%!important;max-width:95%!important}
    .necox-popup-inner{padding:20px}
    .necox-popup-content.image-left .necox-popup-inner,
    .necox-popup-content.image-right .necox-popup-inner{flex-direction:column}
    .necox-popup-content.image-left .necox-popup-image,
    .necox-popup-content.image-right .necox-popup-image{flex:none;width:100%}
    .necox-survey-title{font-size:22px}
    .necox-popup-title{font-size:20px}
}

/* ELEMENTOR EDITOR */
.elementor-editor-active .necox-popup-wrapper{
    display:flex!important;
    position:relative!important;
    min-height:300px;
    background:#f5f5f5;
    border:2px dashed #ccc;
    border-radius:8px;
}
.elementor-editor-active .necox-popup-overlay{display:none}
.elementor-editor-active .necox-popup-content{position:relative!important;margin:auto}

/* ═══════════════════════════════════════════════════════════════
   BOŞ POP-UP (BLANK POPUP) STİLLERİ
   ═══════════════════════════════════════════════════════════════ */

.necox-blank-popup-wrapper{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:999999;
}
.necox-blank-popup-wrapper.active{
    display:flex;
}

/* Pozisyonlar */
.necox-blank-popup-wrapper.necox-pos-center{align-items:center;justify-content:center}
.necox-blank-popup-wrapper.necox-pos-top{align-items:flex-start;justify-content:center;padding-top:30px}
.necox-blank-popup-wrapper.necox-pos-bottom{align-items:flex-end;justify-content:center;padding-bottom:30px}
.necox-blank-popup-wrapper.necox-pos-left{align-items:center;justify-content:flex-start;padding-left:30px}
.necox-blank-popup-wrapper.necox-pos-right{align-items:center;justify-content:flex-end;padding-right:30px}
.necox-blank-popup-wrapper.necox-pos-top-left{align-items:flex-start;justify-content:flex-start;padding:30px}
.necox-blank-popup-wrapper.necox-pos-top-right{align-items:flex-start;justify-content:flex-end;padding:30px}
.necox-blank-popup-wrapper.necox-pos-bottom-left{align-items:flex-end;justify-content:flex-start;padding:30px}
.necox-blank-popup-wrapper.necox-pos-bottom-right{align-items:flex-end;justify-content:flex-end;padding:30px}

/* Overlay */
.necox-blank-popup-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:1;
}

/* İçerik Kutusu */
.necox-blank-popup-content{
    position:relative;
    z-index:2;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,0.25);
    animation:necoxBlankPopupIn .4s ease;
}

@keyframes necoxBlankPopupIn{
    from{opacity:0;transform:scale(0.9) translateY(20px)}
    to{opacity:1;transform:scale(1) translateY(0)}
}

/* İç Alan */
.necox-blank-popup-inner{
    padding:30px;
    overflow-y:auto;
    max-height:calc(90vh - 60px);
}
.necox-blank-popup-inner::-webkit-scrollbar{width:6px}
.necox-blank-popup-inner::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}
.necox-blank-popup-inner::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}
.necox-blank-popup-inner::-webkit-scrollbar-thumb:hover{background:#aaa}

/* Kapatma Butonu */
.necox-blank-popup-close{
    position:absolute;
    top:12px;
    right:12px;
    width:36px;
    height:36px;
    background:rgba(0,0,0,0.05);
    border:none;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#666;
    transition:all .3s ease;
    z-index:10;
}
.necox-blank-popup-close:hover{
    background:rgba(0,0,0,0.1);
    color:#333;
    transform:rotate(90deg);
}
.necox-blank-popup-close svg{
    width:18px;
    height:18px;
}

/* Dışarıda Kapatma Butonu */
.necox-blank-popup-content.necox-close-outside .necox-blank-popup-close{
    top:-15px;
    right:-15px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}
.necox-blank-popup-content.necox-close-outside .necox-blank-popup-close:hover{
    background:#f5f5f5;
}

/* İçerik Elementleri */
.necox-bp-heading{
    line-height:1.3;
}
.necox-bp-text{
    line-height:1.6;
    color:#555;
}
.necox-bp-text p{margin:0 0 10px}
.necox-bp-text p:last-child{margin-bottom:0}

.necox-bp-btn:hover{
    filter:brightness(1.1);
    transform:translateY(-2px);
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.necox-bp-image img{
    display:block;
    transition:transform .3s ease;
}
.necox-bp-image img[data-lightbox]:hover{
    transform:scale(1.02);
}

/* Video Player Stili */
.necox-bp-video .necox-video-player{
    border-radius:8px;
    overflow:hidden;
}

/* Mobil Responsive */
@media(max-width:768px){
    .necox-blank-popup-wrapper.necox-pos-top,
    .necox-blank-popup-wrapper.necox-pos-bottom,
    .necox-blank-popup-wrapper.necox-pos-left,
    .necox-blank-popup-wrapper.necox-pos-right,
    .necox-blank-popup-wrapper.necox-pos-top-left,
    .necox-blank-popup-wrapper.necox-pos-top-right,
    .necox-blank-popup-wrapper.necox-pos-bottom-left,
    .necox-blank-popup-wrapper.necox-pos-bottom-right{
        padding:15px;
    }
    .necox-blank-popup-content{
        width:95%!important;
        max-width:95%!important;
    }
    .necox-blank-popup-inner{
        padding:20px;
    }
    .necox-bp-heading{
        font-size:22px!important;
    }
}

/* Elementor Editor */
.elementor-editor-active .necox-blank-popup-wrapper{
    display:flex!important;
    position:relative!important;
    min-height:300px;
    background:#f0f0f0;
    border:2px dashed #aaa;
    border-radius:8px;
}
.elementor-editor-active .necox-blank-popup-overlay{display:none}
.elementor-editor-active .necox-blank-popup-content{
    position:relative!important;
    margin:auto;
    box-shadow:0 5px 30px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   SURVEY POPUP STİLLERİ
   ═══════════════════════════════════════════════════════════════ */
.necox-survey-popup-wrapper{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}
.necox-survey-popup-wrapper.position-top-center{align-items:flex-start;padding-top:50px}
.necox-survey-popup-wrapper.position-bottom-center{align-items:flex-end;padding-bottom:50px}
.necox-survey-popup-overlay{
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    background:rgba(0,0,0,0.5);
}
.necox-survey-popup-content{
    position:relative;
    background:#fff;
    border-radius:12px;
    max-height:90vh;
    overflow-y:auto;
    animation:necoxFadeIn 0.4s ease;
}
.necox-survey-popup-close{
    position:absolute;
    top:15px;right:15px;
    width:35px;height:35px;
    border:none;
    background:rgba(0,0,0,0.1);
    border-radius:50%;
    font-size:24px;
    line-height:1;
    cursor:pointer;
    transition:all 0.3s;
    z-index:10;
}
.necox-survey-popup-close:hover{background:rgba(0,0,0,0.2);transform:rotate(90deg)}

/* Survey CPT Close Button - Dinamik Stiller */
.necox-survey-close{
    position:absolute;
    border:none;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    transition:all 0.3s;
    z-index:100;
    display:flex;
    align-items:center;
    justify-content:center;
    /* Dinamik stiller inline olarak eklenecek */
}
.necox-survey-close:hover{
    transform:rotate(90deg);
    /* Hover background dinamik olarak eklenecek */
}

/* Survey Widget Ortak Stiller */
.necox-survey-wrapper{width:100%;max-width:100%;box-sizing:border-box}
.necox-survey-container{background:#fff;padding:40px 30px;border-radius:12px;text-align:center}
.necox-survey-title{font-size:24px;font-weight:600;color:#1e293b;margin:0 0 15px}
.necox-survey-desc{font-size:16px;color:#64748b;margin:0 0 30px}
.necox-survey-btn-wrap{margin-top:30px;text-align:center}
.necox-survey-submit{
    display:inline-block;padding:15px 40px;
    background:#22c55e;color:#fff;border:none;border-radius:8px;
    font-size:16px;font-weight:600;cursor:pointer;transition:all 0.3s;
}
.necox-survey-submit:hover{background:#16a34a;transform:translateY(-2px)}
.necox-survey-success{text-align:center;padding:40px 20px}
.necox-survey-success .necox-success-icon{font-size:60px;color:#22c55e;margin-bottom:20px}

/* NPS Survey */
.necox-nps-wrapper{text-align:center}
.necox-nps-scores{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin-bottom:15px}
.necox-nps-score{
    width:45px;height:45px;display:flex;align-items:center;justify-content:center;
    background:#f1f5f9;color:#64748b;border:2px solid transparent;border-radius:8px;
    font-size:16px;font-weight:600;cursor:pointer;transition:all 0.2s;
}
.necox-nps-score:hover{background:#eff6ff;color:#3b82f6;border-color:#3b82f6}
.necox-nps-score.active{background:#22c55e;color:#fff;border-color:#22c55e}
.necox-nps-labels{display:flex;justify-content:space-between;margin-top:10px;padding:0 5px}
.necox-nps-label{font-size:12px;color:#94a3b8}

/* Emoji Rating */
.necox-emoji-wrapper{text-align:center}
.necox-emoji-options{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-bottom:20px}
.necox-emoji-btn{
    display:flex;flex-direction:column;align-items:center;gap:8px;
    padding:15px;background:transparent;border:none;cursor:pointer;transition:all 0.2s;opacity:0.5;
}
.necox-emoji-btn:hover,.necox-emoji-btn.active{opacity:1;transform:scale(1.15)}
.necox-emoji{font-size:40px;line-height:1}
.necox-emoji-label{font-size:12px;color:#64748b}

/* Star Rating */
.necox-star-wrapper{text-align:center}
.necox-star-rating{display:inline-flex;gap:5px;margin-bottom:15px}
.necox-star{font-size:35px;color:#e2e8f0;cursor:pointer;transition:all 0.2s}
.necox-star:hover,.necox-star.hover,.necox-star.active{color:#fbbf24}
.necox-star-value{font-size:14px;color:#64748b;min-height:20px}

/* Yes/No Poll */
.necox-yesno-wrapper{text-align:center}
.necox-yesno-options{display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
.necox-yesno-wrapper.layout-vertical .necox-yesno-options{flex-direction:column;align-items:center}
.necox-yesno-btn{
    display:flex;align-items:center;gap:10px;padding:15px 35px;
    border:2px solid;border-radius:8px;font-size:16px;font-weight:600;
    cursor:pointer;transition:all 0.2s;background:transparent;
}
.necox-yesno-btn.yes{color:#22c55e;border-color:#22c55e;background:#f0fdf4}
.necox-yesno-btn.yes:hover,.necox-yesno-btn.yes.active{background:#22c55e;color:#fff}
.necox-yesno-btn.no{color:#ef4444;border-color:#ef4444;background:#fef2f2}
.necox-yesno-btn.no:hover,.necox-yesno-btn.no.active{background:#ef4444;color:#fff}
.necox-yesno-icon{font-size:20px}

/* Multiple Choice */
.necox-choice-wrapper{text-align:left;max-width:500px;margin:0 auto}
.necox-choice-options{display:flex;flex-direction:column;gap:10px}
.necox-choice-option{
    display:flex;align-items:center;gap:12px;padding:12px 20px;
    background:#f8fafc;border:2px solid #e2e8f0;border-radius:8px;cursor:pointer;transition:all 0.2s;
}
.necox-choice-option:hover{border-color:#cbd5e1}
.necox-choice-option.active{background:#eff6ff;border-color:#3b82f6;color:#3b82f6}
.necox-choice-option input{display:none}
.necox-choice-indicator{
    width:20px;height:20px;border:2px solid #cbd5e1;border-radius:50%;
    display:flex;align-items:center;justify-content:center;transition:all 0.2s;flex-shrink:0;
}
.necox-choice-option.active .necox-choice-indicator{border-color:#3b82f6;background:#3b82f6}
.necox-choice-option.active .necox-choice-indicator::after{content:'';width:8px;height:8px;background:#fff;border-radius:50%}
.necox-choice-text{font-size:15px}

/* Open Feedback */
.necox-feedback-wrapper{max-width:600px;margin:0 auto}
.necox-feedback-textarea{
    width:100%;padding:15px;background:#f8fafc;border:2px solid #e2e8f0;border-radius:8px;
    font-size:15px;color:#334155;resize:vertical;transition:all 0.2s;font-family:inherit;
}
.necox-feedback-textarea:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,0.1)}
.necox-feedback-textarea::placeholder{color:#94a3b8}
.necox-feedback-counter{text-align:right;font-size:12px;color:#94a3b8;margin-top:8px}

/* Likert Scale */
.necox-likert-wrapper{text-align:left;overflow-x:auto}
.necox-likert-header{
    display:grid;grid-template-columns:1fr repeat(var(--scale,5),60px);
    gap:10px;padding:10px 0;border-bottom:2px solid #e2e8f0;margin-bottom:15px;
}
.necox-likert-header .necox-likert-label{font-size:11px;color:#64748b;text-align:center;line-height:1.2}
.necox-likert-row{
    display:grid;grid-template-columns:1fr repeat(var(--scale,5),60px);
    gap:10px;padding:15px 0;border-bottom:1px solid #f1f5f9;align-items:center;
}
.necox-likert-statement{font-size:14px;color:#334155}
.necox-likert-radio{
    width:22px;height:22px;margin:0 auto;border:2px solid #cbd5e1;border-radius:50%;
    background:transparent;cursor:pointer;transition:all 0.2s;
}
.necox-likert-radio:hover{border-color:#3b82f6}
.necox-likert-radio.active{border-color:#3b82f6;background:#3b82f6}

/* Responsive */
@media(max-width:768px){
    .necox-survey-popup-wrapper{padding:10px}
    .necox-survey-popup-content{border-radius:8px}
    .necox-survey-container{padding:25px 15px}
    .necox-survey-title{font-size:20px}
    .necox-nps-score{width:35px;height:35px;font-size:14px}
    .necox-likert-header,.necox-likert-row{grid-template-columns:1fr repeat(var(--scale,5),45px)}
    .necox-likert-header .necox-likert-label{font-size:9px}
}

/* Elementor Editor - Survey Popup */
.elementor-editor-active .necox-survey-popup-wrapper{
    display:block!important;position:relative!important;
    min-height:200px;background:#f5f5f5;border:2px dashed #ccc;border-radius:8px;padding:0;
}
.elementor-editor-active .necox-survey-popup-overlay{display:none}
.elementor-editor-active .necox-survey-popup-content{
    position:relative!important;margin:20px auto;box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   CPT POPUP SİSTEMİ - Elementor ile Tam Düzenlenebilir
   ═══════════════════════════════════════════════════════════════ */
.necox-cpt-popup, .necox-cpt-survey{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    z-index:9999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
}
.necox-cpt-popup.position-top-center, .necox-cpt-survey.position-top-center{align-items:flex-start;padding-top:0}
.necox-cpt-popup.position-bottom-center, .necox-cpt-survey.position-bottom-center{align-items:flex-end;padding-bottom:0}
.necox-cpt-popup.position-top-left, .necox-cpt-survey.position-top-left{align-items:flex-start;justify-content:flex-start;padding:0}
.necox-cpt-popup.position-top-right, .necox-cpt-survey.position-top-right{align-items:flex-start;justify-content:flex-end;padding:0}
.necox-cpt-popup.position-bottom-left, .necox-cpt-survey.position-bottom-left{align-items:flex-end;justify-content:flex-start;padding:0}
.necox-cpt-popup.position-bottom-right, .necox-cpt-survey.position-bottom-right{align-items:flex-end;justify-content:flex-end;padding:0}
.necox-cpt-popup.position-left, .necox-cpt-survey.position-left{justify-content:flex-start;padding:0}
.necox-cpt-popup.position-right, .necox-cpt-survey.position-right{justify-content:flex-end;padding:0}
.necox-cpt-popup.position-left .necox-cpt-popup-content,
.necox-cpt-survey.position-left .necox-cpt-popup-content,
.necox-cpt-popup.position-right .necox-cpt-popup-content,
.necox-cpt-survey.position-right .necox-cpt-popup-content{
    height:100vh;max-height:100vh;border-radius:0;
}
.necox-cpt-popup.position-fullscreen, .necox-cpt-survey.position-fullscreen{padding:0}
.necox-cpt-popup.position-fullscreen .necox-cpt-popup-content,
.necox-cpt-survey.position-fullscreen .necox-cpt-popup-content{
    width:100%!important;height:100vh;max-width:100%;max-height:100vh;border-radius:0;
}

.necox-cpt-popup-overlay, .necox-cpt-survey-overlay{
    position:absolute;
    top:0;left:0;right:0;bottom:0;
    background:transparent;
}
.necox-cpt-popup-content, .necox-cpt-survey-content{
    position:relative;
    border-radius:12px;
    max-height:90vh;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,0.25);
}
.necox-cpt-survey-content{
    padding:0 !important;
    margin:0 !important;
}
.necox-cpt-popup-inner, .necox-cpt-survey-inner{
    max-height:90vh;
    overflow-y:auto;
}
.necox-cpt-popup-close, .necox-cpt-survey-close{
    position:absolute;
    border:none;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    transition:all 0.3s;
    z-index:100;
    display:flex;
    align-items:center;
    justify-content:center;
    /* Dinamik stiller inline olarak eklenecek */
}
.necox-cpt-popup-close, .necox-cpt-survey-close:hover{
    transform:rotate(90deg);
    /* Hover background dinamik olarak eklenecek */
}

/* CPT Popup Animasyonlar */
.necox-cpt-popup .necox-cpt-popup-content{
    animation-duration:0.4s;
    animation-fill-mode:both;
    animation-iteration-count:1 !important;
}
.necox-cpt-popup.anim-fadeIn .necox-cpt-popup-content{animation-name:necoxFadeIn}
.necox-cpt-popup.anim-fadeInUp .necox-cpt-popup-content{animation-name:necoxFadeInUp}
.necox-cpt-popup.anim-fadeInDown .necox-cpt-popup-content{animation-name:necoxFadeInDown}
.necox-cpt-popup.anim-zoomIn .necox-cpt-popup-content{animation-name:necoxZoomIn}
.necox-cpt-popup.anim-slideInUp .necox-cpt-popup-content{animation-name:necoxSlideInUp}
.necox-cpt-popup.anim-slideInDown .necox-cpt-popup-content{animation-name:necoxSlideInDown}
.necox-cpt-popup.anim-slideInLeft .necox-cpt-popup-content{animation-name:necoxSlideInLeft}
.necox-cpt-popup.anim-slideInRight .necox-cpt-popup-content{animation-name:necoxSlideInRight}

@keyframes necoxSlideInLeft{from{transform:translateX(-100px);opacity:0}to{transform:translateX(0);opacity:1}}
@keyframes necoxSlideInRight{from{transform:translateX(100px);opacity:0}to{transform:translateX(0);opacity:1}}

/* Responsive */
@media(max-width:768px){
    .necox-cpt-popup{padding:10px}
    .necox-cpt-popup.position-top-center,
    .necox-cpt-popup.position-bottom-center,
    .necox-cpt-popup.position-top-left,
    .necox-cpt-popup.position-top-right,
    .necox-cpt-popup.position-bottom-left,
    .necox-cpt-popup.position-bottom-right{padding:10px}
    .necox-cpt-popup-content{border-radius:8px}
}

/* Elementor Editör Modunda CPT Popup Gizle */
.elementor-editor-active .necox-cpt-popup,
.elementor-editor-preview .necox-cpt-popup,
body.elementor-editor-active .necox-cpt-popup{
    display:none!important;
}

/* Emoji Element */
.necox-emoji-element{text-align:center;margin:20px 0}
.necox-emoji-buttons{display:flex;justify-content:center;gap:15px;flex-wrap:wrap;align-items:center}
.necox-emoji-btn{
    display:flex;flex-direction:column;align-items:center;gap:8px;
    padding:10px;background:transparent;border:none;cursor:pointer;
    transition:all 0.3s;opacity:0.5;
}
.necox-emoji-btn:hover,.necox-emoji-btn.active{opacity:1;transform:scale(1.15)}
.necox-emoji-icon{font-size:50px;line-height:1;display:block}
.necox-emoji-label{font-size:12px;color:#64748b;display:block;margin-top:5px}

/* Yes/No Element */
.necox-yesno-element{text-align:center}
.necox-yesno-buttons{display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
.necox-yesno-buttons.layout-vertical{flex-direction:column;align-items:center}
.necox-yesno-btn{
    display:flex;align-items:center;gap:10px;padding:15px 35px;
    border:2px solid;border-radius:8px;font-size:16px;font-weight:600;
    cursor:pointer;transition:all 0.2s;background:transparent;
}
.necox-yesno-btn.yes{color:#22c55e;border-color:#22c55e}
.necox-yesno-btn.yes:hover,.necox-yesno-btn.yes.active{background:#22c55e;color:#fff}
.necox-yesno-btn.no{color:#ef4444;border-color:#ef4444}
.necox-yesno-btn.no:hover,.necox-yesno-btn.no.active{background:#ef4444;color:#fff}
.necox-yesno-icon{font-size:20px}

/* Choice Element */
.necox-choice-element{text-align:left}
.necox-choice-options{display:flex;flex-direction:column;gap:10px}
.necox-choice-option{
    display:flex;align-items:center;gap:12px;padding:12px 20px;
    background:#f8fafc;border:2px solid #e2e8f0;border-radius:8px;cursor:pointer;transition:all 0.2s;
}
.necox-choice-option:hover{border-color:#cbd5e1}
.necox-choice-option.active{background:#eff6ff;border-color:#3b82f6;color:#3b82f6}
.necox-choice-indicator{
    width:20px;height:20px;border:2px solid #cbd5e1;border-radius:50%;
    display:flex;align-items:center;justify-content:center;transition:all 0.2s;flex-shrink:0;
}
.necox-choice-option.active .necox-choice-indicator{border-color:#3b82f6;background:#3b82f6}
.necox-choice-option.active .necox-choice-indicator::after{content:'';width:8px;height:8px;background:#fff;border-radius:50%}
.necox-choice-text{font-size:15px}

/* Feedback Element */
.necox-feedback-element{width:100%}
.necox-feedback-textarea{
    width:100%;padding:15px;background:#f8fafc;border:2px solid #e2e8f0;border-radius:8px;
    font-size:15px;color:#334155;resize:vertical;transition:all 0.2s;font-family:inherit;box-sizing:border-box;
}
.necox-feedback-textarea:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,0.1)}
.necox-feedback-textarea::placeholder{color:#94a3b8}
.necox-feedback-counter{text-align:right;font-size:12px;color:#94a3b8;margin-top:8px}

/* Likert Element */
.necox-likert-element{width:100%;overflow-x:auto}
.necox-likert-header{
    display:grid;grid-template-columns:1fr repeat(var(--scale,5),60px);
    gap:10px;padding:10px 0;border-bottom:2px solid #e2e8f0;margin-bottom:15px;
}
.necox-likert-header .necox-likert-label{font-size:11px;color:#64748b;text-align:center;line-height:1.2}
.necox-likert-row{
    display:grid;grid-template-columns:1fr repeat(var(--scale,5),60px);
    gap:10px;padding:15px 0;border-bottom:1px solid #f1f5f9;align-items:center;
}
.necox-likert-statement{font-size:14px;color:#334155}
.necox-likert-radio{
    width:22px;height:22px;margin:0 auto;border:2px solid #cbd5e1;border-radius:50%;
    background:transparent;cursor:pointer;transition:all 0.2s;padding:0;
}
.necox-likert-radio:hover{border-color:#3b82f6}
.necox-likert-radio.active{border-color:#3b82f6;background:#3b82f6}

/* Submit Element */
.necox-submit-element{margin-top:25px}
.necox-submit-btn{
    display:inline-block;padding:15px 40px;background:#22c55e;color:#fff;
    border:none;border-radius:8px;font-size:16px;font-weight:600;cursor:pointer;transition:all 0.3s;
}
.necox-submit-btn:hover{background:#16a34a;transform:translateY(-2px)}
.necox-survey-success{text-align:center;padding:30px}
.necox-success-icon{font-size:50px;color:#22c55e;margin-bottom:15px}
.necox-survey-success p{font-size:16px;color:#475569;margin:0}

/* Responsive */
@media(max-width:768px){
    .necox-nps-btn{width:35px;height:35px;font-size:14px}
    .necox-likert-header,.necox-likert-row{grid-template-columns:1fr repeat(var(--scale,5),45px)}
    .necox-likert-header .necox-likert-label{font-size:9px}
}

/* ═══════════════════════════════════════════════════════════════
   TRANSPARENT POPUP - Arka plansız görsel popup
   ═══════════════════════════════════════════════════════════════ */

/* Transparent section - tüm arka planları temizle (IMAGE HARİÇ) */
.necox-transparent-section,
.necox-transparent-section .elementor-container,
.necox-transparent-section .elementor-column-wrap,
.necox-transparent-section .elementor-widget-wrap,
.necox-transparent-section .elementor-column,
.necox-transparent-section .elementor-widget,
.necox-transparent-section .elementor-widget-container,
.necox-transparent-section .necox-transparent-image-wrapper{
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
    outline:none !important;
}

/* Image widget görünür olsun ve orijinal oran korunsun */
.necox-transparent-section .elementor-widget-image,
.necox-transparent-section .elementor-widget-image img,
.necox-transparent-section .necox-transparent-img,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-image,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-image img,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-transparent-img{
    opacity:1 !important;
    visibility:visible !important;
    display:block !important;
}

/* Transparent popup - resim orijinal oran korunsun */
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-image img,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-transparent-img{
    object-fit:contain !important;
    width:auto !important;
    height:auto !important;
    max-width:100% !important;
    max-height:90vh !important;
    margin:0 auto !important;
}

/* Transparent popup - Elementor border'larını gizle (IMAGE ve NEON HARİÇ) */
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-section,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-container,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-column,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-container,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-wrap,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-transparent-image-wrapper,
.necox-cpt-popup[data-template-id="transparent-popup"] .e-con{
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
}

/* Neon border popup content için border/shadow koru */
.necox-cpt-popup-content.necox-neon-border, .necox-cpt-survey-content.necox-neon-border{
    border:var(--neon-width, 2px) solid var(--neon-color, #00ff00) !important;
    box-shadow: 
        0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00),
        inset 0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00) !important;
}

/* Transparent popup - close button gizle */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-close{
    display:none !important;
}

/* Transparent popup - scrollbar gizle */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-inner,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-content{
    overflow:visible !important;
    padding:0 !important;
    margin:0 !important;
    max-height:none !important;
    scrollbar-width:none !important; /* Firefox */
    -ms-overflow-style:none !important; /* IE/Edge */
}
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-inner::-webkit-scrollbar,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-content::-webkit-scrollbar{
    display:none !important; /* Chrome/Safari */
    width:0 !important;
    height:0 !important;
}

/* Survey - scrollbar gizle (TÜM survey'ler için) */
.necox-cpt-survey .necox-cpt-survey-inner,
.necox-cpt-survey .necox-cpt-survey-content{
    scrollbar-width:none !important; /* Firefox */
    -ms-overflow-style:none !important; /* IE/Edge */
}
.necox-cpt-survey .necox-cpt-survey-inner::-webkit-scrollbar,
.necox-cpt-survey .necox-cpt-survey-content::-webkit-scrollbar{
    display:none !important; /* Chrome/Safari */
    width:0 !important;
    height:0 !important;
}

/* Transparent popup - tüm border, outline, trigger çizgilerini gizle */
.necox-cpt-popup[data-template-id="transparent-popup"] *{
    outline:none !important;
}

/* Transparent image - tıklanabilir görsele cursor pointer */
.necox-transparent-image-clickable img{
    cursor:pointer;
}

/* ═══════════════════════════════════════════════════════════════
   TRANSPARENT IMAGE WIDGET
   ═══════════════════════════════════════════════════════════════ */

.necox-transparent-image-wrapper {
    display:inline-block;
    width:100%;
    background:transparent;
    padding:0;
    margin:0;
}

/* Transparent popup içinde wrapper tamamen şeffaf */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-transparent-image-wrapper,
.necox-transparent-section .necox-transparent-image-wrapper{
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
}

/* Transparent Image widget - Elementor wrapper'ları */
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-necox-transparent-image,
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-widget-necox-transparent-image > .elementor-widget-container{
    background:transparent !important;
    background-color:transparent !important;
    background-image:none !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
}

.necox-transparent-img {
    display:block;
    max-width:100%;
    height:auto;
    margin:0 auto;
}

/* Contact type 'none' - image tıklanabilir olmalı */
.necox-popup-close .necox-transparent-img {
    cursor: pointer;
}

/* Size Presets */
.necox-transparent-img.size-small {
    width:300px !important;
    max-width:100%;
}
.necox-transparent-img.size-medium {
    width:500px !important;
    max-width:100%;
}
.necox-transparent-img.size-large {
    width:700px !important;
    max-width:100%;
}
.necox-transparent-img.size-xlarge {
    width:900px !important;
    max-width:100%;
}
.necox-transparent-img.size-full {
    width:100% !important;
    height:auto;
}

/* Hover Animations */
.necox-transparent-img.hover-zoom:hover {
    transform:scale(1.1);
}
.necox-transparent-img.hover-zoom-out:hover {
    transform:scale(0.9);
}
.necox-transparent-img.hover-rotate:hover {
    transform:rotate(5deg);
}
.necox-transparent-img.hover-pulse {
    animation:necoxPulse 2s infinite;
}
@keyframes necoxPulse {
    0%, 100% { transform:scale(1); }
    50% { transform:scale(1.05); }
}
.necox-transparent-img.hover-bounce:hover {
    animation:necoxBounce 0.5s;
}
@keyframes necoxBounce {
    0%, 100% { transform:translateY(0); }
    50% { transform:translateY(-10px); }
}
.necox-transparent-img.hover-float {
    animation:necoxFloat 3s ease-in-out infinite;
}
@keyframes necoxFloat {
    0%, 100% { transform:translateY(0); }
    50% { transform:translateY(-15px); }
}

/* Clickable cursor */
.necox-transparent-image-clickable .necox-transparent-img {
    cursor:pointer;
}

/* Parallax aktifken hover efektlerini devre dışı bırak */
.necox-transparent-img.parallax-active,
.necox-transparent-img.parallax-active:hover {
    animation:none !important;
}

/* ═══════════════════════════════════════════════════════════════
   NEON BORDER EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* Neon border temel stil */
.necox-neon-border{
    position:relative;
    border: var(--neon-width, 2px) solid var(--neon-color, #00ff00) !important;
    box-shadow: 
        0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00),
        0 0 var(--neon-spread, 20px) var(--neon-color, #00ff00),
        inset 0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00) !important;
    overflow: visible !important;
}

/* Gradient Border */
.necox-neon-border.necox-neon-gradient{
    border:var(--neon-width, 2px) solid transparent !important;
}

.necox-neon-border.necox-neon-gradient::before{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-width, 2px));
    border-radius:inherit;
    padding:var(--neon-width, 2px);
    background:linear-gradient(90deg, var(--neon-color), var(--neon-color2), var(--neon-color3));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    box-shadow:
        0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00),
        0 0 var(--neon-spread, 20px) var(--neon-color2, #00ffff),
        inset 0 0 var(--neon-blur, 10px) var(--neon-color3, #ff00ff);
    z-index: 1;
}

/* Neon Pulse Animation */
.necox-neon-pulse{
    animation: necoxNeonPulse var(--neon-speed, 2s) ease-in-out infinite;
}
@keyframes necoxNeonPulse{
    0%, 100%{ 
        box-shadow: 
            0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00),
            0 0 var(--neon-spread, 20px) var(--neon-color, #00ff00),
            inset 0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00);
    }
    50%{ 
        box-shadow: 
            0 0 calc(var(--neon-blur, 10px) * 2) var(--neon-color, #00ff00),
            0 0 calc(var(--neon-spread, 20px) * 1.5) var(--neon-color, #00ff00),
            inset 0 0 calc(var(--neon-blur, 10px) * 2) var(--neon-color, #00ff00);
    }
}

/* Neon Glow Animation */
.necox-neon-glow{
    animation: necoxNeonGlow var(--neon-speed, 3s) ease-in-out infinite;
}
@keyframes necoxNeonGlow{
    0%, 100%{ 
        filter: brightness(1);
        box-shadow: 
            0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00),
            0 0 var(--neon-spread, 20px) var(--neon-color, #00ff00),
            inset 0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00);
    }
    50%{ 
        filter: brightness(1.5);
        box-shadow: 
            0 0 calc(var(--neon-blur, 10px) * 3) var(--neon-color, #00ff00),
            0 0 calc(var(--neon-spread, 20px) * 2) var(--neon-color, #00ff00),
            inset 0 0 calc(var(--neon-blur, 10px) * 2) var(--neon-color, #00ff00);
    }
}

/* Neon Rainbow Animation */
.necox-neon-rainbow{
    animation: necoxNeonRainbow var(--neon-speed, 5s) linear infinite;
}
@keyframes necoxNeonRainbow{
    0%{ 
        border-color: #ff0000;
        box-shadow: 0 0 var(--neon-blur, 10px) #ff0000, 0 0 var(--neon-spread, 20px) #ff0000, inset 0 0 var(--neon-blur, 10px) #ff0000;
    }
    16%{ 
        border-color: #ff7700;
        box-shadow: 0 0 var(--neon-blur, 10px) #ff7700, 0 0 var(--neon-spread, 20px) #ff7700, inset 0 0 var(--neon-blur, 10px) #ff7700;
    }
    33%{ 
        border-color: #ffff00;
        box-shadow: 0 0 var(--neon-blur, 10px) #ffff00, 0 0 var(--neon-spread, 20px) #ffff00, inset 0 0 var(--neon-blur, 10px) #ffff00;
    }
    50%{ 
        border-color: #00ff00;
        box-shadow: 0 0 var(--neon-blur, 10px) #00ff00, 0 0 var(--neon-spread, 20px) #00ff00, inset 0 0 var(--neon-blur, 10px) #00ff00;
    }
    66%{ 
        border-color: #0000ff;
        box-shadow: 0 0 var(--neon-blur, 10px) #0000ff, 0 0 var(--neon-spread, 20px) #0000ff, inset 0 0 var(--neon-blur, 10px) #0000ff;
    }
    83%{ 
        border-color: #9900ff;
        box-shadow: 0 0 var(--neon-blur, 10px) #9900ff, 0 0 var(--neon-spread, 20px) #9900ff, inset 0 0 var(--neon-blur, 10px) #9900ff;
    }
    100%{ 
        border-color: #ff0000;
        box-shadow: 0 0 var(--neon-blur, 10px) #ff0000, 0 0 var(--neon-spread, 20px) #ff0000, inset 0 0 var(--neon-blur, 10px) #ff0000;
    }
}

/* Rotate Animation - Dönen Işık */
.necox-neon-rotate::after{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-spread, 20px));
    border-radius:inherit;
    background:conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--neon-color, #00ff00) 30deg,
        transparent 60deg,
        transparent 270deg,
        var(--neon-color, #00ff00) 300deg,
        transparent 330deg
    );
    animation:necoxNeonRotate var(--neon-speed, 2s) linear infinite;
    filter:blur(var(--neon-blur, 10px));
    pointer-events:none;
    z-index:-1;
}
@keyframes necoxNeonRotate{
    0% { transform:rotate(0deg); }
    100% { transform:rotate(360deg); }
}

/* Wave Right - Sağa Hareket */
.necox-neon-wave-right::after{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:200%;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(
        90deg,
        transparent 0%,
        transparent 25%,
        var(--neon-color, #00ff00) 50%,
        transparent 75%,
        transparent 100%
    );
    animation:necoxNeonWaveRight var(--neon-speed, 2s) linear infinite;
    filter:blur(var(--neon-blur, 10px));
    pointer-events:none;
}
@keyframes necoxNeonWaveRight{
    0% { transform:translateX(0); }
    100% { transform:translateX(50%); }
}

/* Wave Left - Sola Hareket */
.necox-neon-wave-left::after{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:200%;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(
        90deg,
        transparent 0%,
        transparent 25%,
        var(--neon-color, #00ff00) 50%,
        transparent 75%,
        transparent 100%
    );
    animation:necoxNeonWaveLeft var(--neon-speed, 2s) linear infinite;
    filter:blur(var(--neon-blur, 10px));
    pointer-events:none;
}
@keyframes necoxNeonWaveLeft{
    0% { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

/* Radial - Merkezden Yayılan */
.necox-neon-radial{
    animation:necoxNeonRadial var(--neon-speed, 2s) ease-out infinite;
}
@keyframes necoxNeonRadial{
    0% {
        box-shadow: 
            0 0 0 var(--neon-color, #00ff00),
            inset 0 0 0 var(--neon-color, #00ff00);
    }
    50% {
        box-shadow: 
            0 0 var(--neon-blur, 10px) var(--neon-color, #00ff00),
            0 0 calc(var(--neon-spread, 20px) * 3) var(--neon-color, #00ff00),
            inset 0 0 calc(var(--neon-blur, 10px) * 2) var(--neon-color, #00ff00);
        filter:blur(2px);
    }
    100% {
        box-shadow: 
            0 0 0 transparent,
            0 0 0 transparent,
            inset 0 0 0 transparent;
        filter:blur(0);
    }
}

/* Rotate LTR - Soldan Sağa Dönen */
.necox-neon-rotate-ltr{
    border: var(--neon-width, 2px) solid transparent !important;
    box-shadow: none !important;
}
.necox-neon-rotate-ltr::before{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-spread, 20px));
    border-radius:inherit;
    background:linear-gradient(90deg, var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00), var(--neon-color, #ff00ff));
    background-size:400% 100%;
    animation:necoxNeonRotateLTR var(--neon-speed, 3s) linear infinite;
    filter:blur(var(--neon-blur, 10px));
    opacity:0.6;
    z-index:0;
    pointer-events:none;
}
.necox-neon-rotate-ltr::after{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-width, 2px));
    border-radius:inherit;
    padding:var(--neon-width, 2px);
    background:linear-gradient(90deg, var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00), var(--neon-color, #ff00ff));
    background-size:400% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    animation:necoxNeonRotateLTR var(--neon-speed, 3s) linear infinite;
    z-index:1;
}
@keyframes necoxNeonRotateLTR{
    0% { background-position:0% 50%; }
    100% { background-position:400% 50%; }
}

/* Rotate RTL - Sağdan Sola Dönen */
.necox-neon-rotate-rtl{
    border: var(--neon-width, 2px) solid transparent !important;
    box-shadow: none !important;
}
.necox-neon-rotate-rtl::before{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-spread, 20px));
    border-radius:inherit;
    background:linear-gradient(90deg, var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00), var(--neon-color, #ff00ff));
    background-size:400% 100%;
    animation:necoxNeonRotateRTL var(--neon-speed, 3s) linear infinite;
    filter:blur(var(--neon-blur, 10px));
    opacity:0.6;
    z-index:0;
    pointer-events:none;
}
.necox-neon-rotate-rtl::after{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-width, 2px));
    border-radius:inherit;
    padding:var(--neon-width, 2px);
    background:linear-gradient(90deg, var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00), var(--neon-color, #ff00ff));
    background-size:400% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    animation:necoxNeonRotateRTL var(--neon-speed, 3s) linear infinite;
    z-index:1;
}
@keyframes necoxNeonRotateRTL{
    0% { background-position:400% 50%; }
    100% { background-position:0% 50%; }
}

/* Split Center - Ortadan Ayrılan */
.necox-neon-split-center{
    border: var(--neon-width, 2px) solid transparent !important;
    box-shadow: none !important;
}
.necox-neon-split-center::before{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-spread, 20px));
    border-radius:inherit;
    background:linear-gradient(90deg, var(--neon-color, #ffff00), var(--neon-color3, #00ff00), var(--neon-color2, #00ffff), var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00));
    background-size:200% 100%;
    animation:necoxNeonSplitCenter var(--neon-speed, 3s) linear infinite;
    filter:blur(var(--neon-blur, 10px));
    opacity:0.6;
    z-index:0;
    pointer-events:none;
}
.necox-neon-split-center::after{
    content:'';
    position:absolute;
    inset:calc(-1 * var(--neon-width, 2px));
    border-radius:inherit;
    padding:var(--neon-width, 2px);
    background:linear-gradient(90deg, var(--neon-color, #ffff00), var(--neon-color3, #00ff00), var(--neon-color2, #00ffff), var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00));
    background-size:200% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    animation:necoxNeonSplitCenter var(--neon-speed, 3s) linear infinite;
    z-index:1;
}
@keyframes necoxNeonSplitCenter{
    0% { background-position:50% 50%; }
    100% { background-position:-150% 50%; }
}

/* Expand Out - Dışa Doğru Büyüyen */
.necox-neon-expand-out::after{
    content:'';
    position:absolute;
    top:-5px;
    left:-5px;
    right:-5px;
    bottom:-5px;
    border-radius:inherit;
    background:linear-gradient(45deg, var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00));
    opacity:0;
    animation:necoxNeonExpandOut var(--neon-speed, 2s) ease-in-out infinite;
    z-index:-1;
    pointer-events:none;
}
@keyframes necoxNeonExpandOut{
    0% {
        top:-5px;
        left:-5px;
        right:-5px;
        bottom:-5px;
        filter:blur(5px);
        opacity:0;
    }
    50% {
        top:-15px;
        left:-15px;
        right:-15px;
        bottom:-15px;
        filter:blur(calc(var(--neon-blur, 10px) * 2));
        opacity:0.6;
    }
    100% {
        top:-25px;
        left:-25px;
        right:-25px;
        bottom:-25px;
        filter:blur(calc(var(--neon-blur, 10px) * 3));
        opacity:0;
    }
}

/* Shrink In - İçe Doğru Dağılan */
.necox-neon-shrink-in::after{
    content:'';
    position:absolute;
    top:5px;
    left:5px;
    right:5px;
    bottom:5px;
    border-radius:inherit;
    background:linear-gradient(45deg, var(--neon-color, #ff00ff), var(--neon-color2, #00ffff), var(--neon-color3, #00ff00), var(--neon-color, #ffff00));
    opacity:0;
    animation:necoxNeonShrinkIn var(--neon-speed, 2s) ease-in-out infinite;
    z-index:0;
    pointer-events:none;
}
@keyframes necoxNeonShrinkIn{
    0% {
        top:5px;
        left:5px;
        right:5px;
        bottom:5px;
        filter:blur(5px);
        opacity:0;
    }
    50% {
        top:20px;
        left:20px;
        right:20px;
        bottom:20px;
        filter:blur(calc(var(--neon-blur, 10px) * 2.5));
        opacity:0.5;
    }
    100% {
        top:35px;
        left:35px;
        right:35px;
        bottom:35px;
        filter:blur(calc(var(--neon-blur, 10px) * 4));
        opacity:0;
    }
}


/* ═══════════════════════════════════════════════════════════════
   ZOOM OUT ANIMATION
   ═══════════════════════════════════════════════════════════════ */

.necox-cpt-popup.anim-zoomOut .necox-cpt-popup-content{
    animation-name: necoxZoomOut;
}

@keyframes necoxZoomOut{
    from{
        opacity: 0;
        transform: scale(1.5);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════════════
   TRANSPARENT IMAGE LINK STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Popup close cursor */
.necox-transparent-image-wrapper.necox-popup-close {
    cursor: pointer;
}

/* Link cursor */
.necox-transparent-image-wrapper a {
    display: inline-block;
    cursor: pointer;
}

/* Smooth transitions */
.necox-transparent-image-wrapper,
.necox-transparent-image-wrapper a {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect for clickable images */
.necox-transparent-image-wrapper.necox-popup-close:hover img,
.necox-transparent-image-wrapper a:hover img {
    opacity: 0.9;
}

/* Active state */
.necox-transparent-image-wrapper.necox-popup-close:active img,
.necox-transparent-image-wrapper a:active img {
    transform: scale(0.98);
}

/* Accessibility - focus states */
.necox-transparent-image-wrapper.necox-popup-close:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

.necox-transparent-image-wrapper a:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT POPUP MODAL STYLES
   ═══════════════════════════════════════════════════════════════ */

.necox-contact-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.necox-contact-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.necox-contact-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: necoxContactPopupIn 0.3s ease-out;
}

@keyframes necoxContactPopupIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.necox-contact-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.necox-contact-popup-close:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    transform: rotate(90deg);
}

.necox-contact-popup-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.necox-contact-popup-header h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.necox-contact-popup-header p {
    margin: 0;
    font-size: 14px;
    color: #7f8c8d;
}

.necox-contact-popup-items {
    padding: 20px 15px;
}

.necox-contact-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.necox-contact-item:hover {
    background: #ffffff;
    border-color: #3498db;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.necox-contact-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.necox-contact-item-phone .necox-contact-item-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.necox-contact-item-whatsapp .necox-contact-item-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.necox-contact-item-email .necox-contact-item-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.necox-contact-item-address .necox-contact-item-icon,
.necox-contact-item-map .necox-contact-item-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.necox-contact-item-website .necox-contact-item-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.necox-contact-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.necox-contact-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.necox-contact-item-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .necox-contact-popup-content {
        max-width: 95%;
        max-height: 90vh;
        border-radius: 15px;
    }
    
    .necox-contact-popup-header {
        padding: 25px 20px 15px;
    }
    
    .necox-contact-popup-header h3 {
        font-size: 20px;
    }
    
    .necox-contact-item {
        padding: 12px 15px;
    }
    
    .necox-contact-item-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 12px;
    }
    
    .necox-contact-item-value {
        font-size: 14px;
    }
}

/* Prevent body scroll when popup open */
body.necox-contact-popup-open {
    overflow: hidden;
}

/* Show contact popup cursor */
.necox-show-contact-popup {
    cursor: pointer;
}

.necox-show-contact-popup img {
    transition: transform 0.3s ease;
}

.necox-show-contact-popup:hover img {
    transform: scale(1.05);
}

.necox-contact-item-info .necox-contact-item-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
}

.necox-contact-item-info {
    position: relative;
    overflow: hidden;
}

.necox-contact-item-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.necox-contact-item-info:hover::before {
    left: 100%;
}

.necox-contact-item-info:hover {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-color: #fa709a;
    color: #fff;
}

.necox-contact-item-info:hover .necox-contact-item-label,
.necox-contact-item-info:hover .necox-contact-item-value {
    color: #fff;
}

.necox-contact-item-info .necox-contact-item-value {
    font-weight: 700;
    position: relative;
}

.necox-contact-item-info .necox-contact-item-value::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.necox-contact-item-info:hover .necox-contact-item-value::after {
    margin-left: 12px;
}

/* ===================================
   ELEMENTOR POPUP MODAL (AJAX)
   =================================== */
.necox-elementor-popup-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.necox-elementor-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.necox-elementor-popup-content {
    position: relative;
    z-index: 10 !important;
    pointer-events: auto;
    /* Elementor container controls all sizing */
}

.necox-elementor-popup-content .elementor {
    display: block !important;
}

.necox-elementor-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
    z-index: 10;
}

.necox-elementor-popup-close:hover {
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    transform: rotate(90deg);
}

/* ===================================
   TRANSPARENT IMAGE CLICKABLE FIX
   =================================== */
.necox-transparent-image-wrapper {
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto !important;
}

.necox-transparent-image-wrapper.necox-show-contact-popup {
    cursor: pointer !important;
}

.necox-transparent-image-wrapper img {
    pointer-events: auto !important;
    cursor: pointer;
}

/* Popup içindeki transparent image için */
.necox-cpt-popup .necox-transparent-image-wrapper,
.elementor-popup-modal .necox-transparent-image-wrapper {
    z-index: 100;
    pointer-events: auto !important;
}

/* ===================================
   TRANSPARENT VIDEO
   =================================== */
.necox-transparent-video-wrapper {
    position: relative;
    display: inline-block;
}

.necox-transparent-video {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===================================
   LOTTIE ANIMATION
   =================================== */
.necox-lottie-wrapper {
    position: relative;
    display: inline-block;
}

.necox-lottie-player {
    display: inline-block;
}

/* ===================================
   ANIMATED GIF
   =================================== */
.necox-animated-gif-wrapper {
    position: relative;
    display: inline-block;
}

.necox-animated-gif {
    display: block;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.necox-animated-gif.hover-zoom:hover {
    transform: scale(1.1);
}

.necox-animated-gif.hover-pulse {
    animation: gif-pulse 1s infinite;
}

.necox-animated-gif.hover-rotate:hover {
    transform: rotate(5deg);
}

@keyframes gif-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Prevent overlay from blocking entire site */
.necox-elementor-popup-overlay {
    pointer-events: auto !important;
    cursor: pointer;
}

.necox-elementor-popup-modal {
    pointer-events: none;
}

.necox-elementor-popup-content {
    pointer-events: auto;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .necox-elementor-popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .necox-elementor-popup-close {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Fallback background for popup content */
.necox-elementor-popup-content .elementor-element-contact_container,
.necox-elementor-popup-content > .elementor > .elementor-section-wrap > .elementor-element:first-child {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

/* ======================================================================
   TRANSPARENT POPUP - EK GÜVENLİK KURALLARI
   Arka plan, trigger ve close button tamamen gizlenir
   ====================================================================== */

/* Transparent popup - Tüm arka planları gizle */
.necox-cpt-popup[data-template-id="transparent-popup"],
.necox-cpt-popup[data-template-id="transparent-popup"] *:not(img):not(.necox-transparent-img):not(.necox-neon-border) {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Transparent popup - Overlay tamamen görünmez */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Transparent popup - Close button ve trigger tamamen gizle (transparent image/video wrapper'lar hariç) */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-cpt-popup-close,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-popup-close:not(.necox-transparent-image-wrapper):not(.necox-transparent-video-2-wrapper),
.necox-cpt-popup[data-template-id="transparent-popup"] button[class*="close"],
.necox-cpt-popup[data-template-id="transparent-popup"] .trigger-button,
.necox-cpt-popup[data-template-id="transparent-popup"] [class*="trigger"],
.necox-cpt-popup[data-template-id="transparent-popup"] .elementor-button:not(.user-added-button) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Transparent popup - Sadece transparent image görünsün */
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-transparent-img,
.necox-cpt-popup[data-template-id="transparent-popup"] .necox-transparent-image-wrapper img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background: transparent !important;
}

/* ===================================
   FORM SUCCESS MESSAGE
   =================================== */
.necox-success-message {
    text-align: center;
    padding: 40px 30px;
    animation: necoxFadeIn 0.4s ease;
}

.necox-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    animation: necoxSuccessPulse 0.6s ease;
}

.necox-success-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.necox-success-message p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

@keyframes necoxSuccessPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   GELIŞMIŞ BODY SCROLL KILITLEME - TEMA UYUMLU
   ═══════════════════════════════════════════════════════════════ */

body.necox-popup-active {
    overflow: hidden !important;
    position: relative !important;
}

body.necox-popup-active,
body.necox-popup-active * {
    -webkit-overflow-scrolling: touch;
}

/* Tema menülerinin popup üstünde kalmasını engelle */
body.necox-popup-active .navigation-wrap,
body.necox-popup-active header,
body.necox-popup-active .header,
body.necox-popup-active nav {
    z-index: auto !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .necox-success-message {
        padding: 30px 20px;
    }
    
    .necox-success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .necox-success-message h3 {
        font-size: 20px;
    }
    
    .necox-success-message p {
        font-size: 14px;
    }
}

/* ===================================
   UNIFIED SURVEY QUESTION WIDGET
   v5.4.0
   =================================== */

.necox-survey-question {
    position: relative;
    margin: 20px 0;
}

/* .necox-question-text base styles - KALDIRILDI, Elementor typography kontrolüne bırakıldı */
/*.necox-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 15px;
}*/

.necox-question-description {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
}

.necox-answer-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.necox-answer-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    background: #F3F4F6;
    color: #4B5563;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 40px;
    opacity: 0.6;
}

.necox-answer-item:hover {
    opacity: 1;
    transform: scale(1.1);
    background: #3B82F6;
    color: #FFFFFF;
}

.necox-answer-item.active {
    opacity: 1;
    background: #3B82F6;
    color: #FFFFFF;
    border-color: #2563EB;
    transform: scale(1.1);
}

/* Emoji specific */
.necox-emoji-icon {
    font-size: inherit;
    line-height: 1;
}

.necox-emoji-label {
    font-size: 12px;
    color: inherit;
    white-space: nowrap;
}

/* NPS specific */
.necox-nps-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    font-size: 13px;
    color: #718096;
}

.necox-nps-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.necox-nps-btn {
    min-width: 45px;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
}

/* Likert specific */
.necox-likert-btn {
    min-width: 45px;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
}

/* Choice specific */
.necox-choice-item {
    flex-direction: row;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
}

.necox-choice-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s;
}

.necox-choice-item.active .necox-choice-indicator {
    background: #3B82F6;
    border-color: #3B82F6;
}

/* Yes/No specific */
.necox-yesno-item {
    min-width: 120px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

/* Neumorphism */
.necox-survey-question.necox-neumorphism {
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.1),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
}

.necox-survey-question.necox-neumorphism .necox-answer-item {
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.5);
}

.necox-survey-question.necox-neumorphism .necox-answer-item:hover,
.necox-survey-question.necox-neumorphism .necox-answer-item.active {
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.1),
        inset -3px -3px 6px rgba(255, 255, 255, 0.5);
}

/* Glassmorphism */
.necox-survey-question.necox-glassmorphism {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.necox-survey-question.necox-glassmorphism .necox-answer-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover animations */
.necox-survey-question .necox-answer-item {
    animation: necoxFadeIn 0.5s ease;
}

@keyframes necoxAnswerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .necox-answer-options {
        gap: 8px;
    }
    
    .necox-answer-item {
        font-size: 32px;
        padding: 8px;
    }
    
    .necox-nps-btn,
    .necox-likert-btn {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ===================================
   SURVEY SUBMIT BUTTON
   v5.4.0
   =================================== */

.necox-submit-element {
    margin: 30px 0;
}

.necox-submit-element.necox-align-left {
    text-align: left;
}

.necox-submit-element.necox-align-center {
    text-align: center;
}

.necox-submit-element.necox-align-right {
    text-align: right;
}

.necox-submit-element.necox-align-justify .necox-submit-btn {
    width: 100%;
}

.necox-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.necox-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Hover Animations */
.necox-submit-btn.necox-hover-scale:hover {
    transform: scale(1.05);
}

.necox-submit-btn.necox-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.necox-submit-btn.necox-hover-glow:hover {
    box-shadow: 0 0 20px currentColor;
}

.necox-submit-btn.necox-hover-pulse:hover {
    animation: necoxButtonPulse 0.6s ease;
}

@keyframes necoxButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Success Message */
.necox-survey-success {
    text-align: center;
    padding: 30px;
    animation: necoxFadeIn 0.5s ease;
}

.necox-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    animation: necoxSuccessPop 0.5s ease;
}

@keyframes necoxSuccessPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.necox-success-title {
    font-size: 22px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 10px;
}

.necox-success-message-text {
    font-size: 15px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   SURVEY SUBMIT BUTTON
   v5.4.0
   =================================== */

.necox-submit-btn-wrapper {
    margin-top: 0; /* Elementor kontrolü ile ayarlanabilir - default 30px widget'ta */
}

.necox-align-left { text-align: left; }
.necox-align-center { text-align: center; }
.necox-align-right { text-align: right; }

.necox-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.necox-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.necox-success-message {
    text-align: center;
    padding: 30px;
    animation: necoxFadeIn 0.4s ease;
}

.necox-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    animation: necoxSuccessPulse 0.6s ease;
}

.necox-success-text {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

@keyframes necoxSuccessPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ===================================
   CHOICE LAYOUT DIRECTION
   v5.4.0
   =================================== */

/* Vertical Layout (Default - Stack) */
.necox-answer-type-choice.necox-layout-vertical {
    flex-direction: column;
    align-items: stretch;
}

.necox-answer-type-choice.necox-layout-vertical .necox-choice-item {
    width: 100%;
}

/* Horizontal Layout (Side by Side) */
.necox-answer-type-choice.necox-layout-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
}

.necox-answer-type-choice.necox-layout-horizontal .necox-choice-item {
    flex: 0 0 auto;
}

/* ===================================
   NPS LABEL ENHANCEMENTS
   v5.4.0
   =================================== */

.necox-nps-labels span {
    font-size: 13px;
    color: #718096;
}

/* Label alignment options are handled via Elementor selectors */

/* ===================================
   THUMB RATING WITH LABELS
   v5.4.0
   =================================== */

.necox-thumb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.necox-thumb-icon {
    font-size: inherit;
    line-height: 1;
    transition: transform 0.3s ease;
}

.necox-thumb-item:hover .necox-thumb-icon {
    transform: scale(1.2);
}

.necox-thumb-label {
    font-size: 12px;
    color: inherit;
    white-space: nowrap;
    font-weight: 500;
}

/* ===================================
   STAR & HEART RATING WITH LABELS
   v5.4.0
   =================================== */

.necox-star-item,
.necox-heart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.necox-star-icon,
.necox-heart-icon {
    font-size: inherit;
    line-height: 1;
    transition: transform 0.3s ease;
}

.necox-star-item:hover .necox-star-icon,
.necox-heart-item:hover .necox-heart-icon {
    transform: scale(1.2);
}

.necox-star-label,
.necox-heart-label {
    font-size: 12px;
    color: inherit;
    white-space: nowrap;
    font-weight: 500;
}

/* ===================================
   CHOICE WITH MEDIA (Icon/Image/Video)
   v5.4.0
   =================================== */

.necox-choice-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.necox-choice-item.necox-media-left {
    flex-direction: row;
}

.necox-choice-item.necox-media-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.necox-choice-icon,
.necox-choice-image,
.necox-choice-video {
    flex-shrink: 0;
}

.necox-choice-text {
    flex: 1;
}

.necox-choice-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.necox-choice-item.active .necox-choice-indicator {
    background: #3B82F6;
    border-color: #3B82F6;
}

.necox-choice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.necox-choice-image,
.necox-choice-video {
    display: block;
}

/* ===================================
   HOVER EFFECTS
   v5.4.0
   =================================== */

/* Scale Up */
.necox-answer-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.necox-survey-question[data-hover-animation="scale"] .necox-answer-item:hover {
    transform: scale(1.05);
}

/* Lift Up */
.necox-survey-question[data-hover-animation="lift"] .necox-answer-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Glow */
.necox-survey-question[data-hover-animation="glow"] .necox-answer-item:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* ===================================
   ENTRANCE ANIMATIONS
   v5.4.0
   =================================== */

@keyframes necoxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes necoxSlideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes necoxZoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.necox-survey-question[data-entrance-animation="fadeIn"] {
    animation: necoxFadeIn 0.5s ease;
}

.necox-survey-question[data-entrance-animation="slideUp"] {
    animation: necoxSlideUp 0.5s ease;
}

.necox-survey-question[data-entrance-animation="zoomIn"] {
    animation: necoxZoomIn 0.5s ease;
}

/* ===================================
   SUBMIT BUTTON HOVER EFFECTS
   v5.4.0
   =================================== */

.necox-submit-btn {
    transition: all 0.3s ease;
}

/* Scale */
.necox-submit-btn[data-hover-animation="scale"]:hover {
    transform: scale(1.05);
}

/* Lift */
.necox-submit-btn[data-hover-animation="lift"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}

/* Glow */
.necox-submit-btn[data-hover-animation="glow"]:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6) !important;
}

/* Pulse */
@keyframes necoxPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.necox-submit-btn[data-hover-animation="pulse"]:hover {
    animation: necoxPulse 0.6s ease infinite;
}

/* ================================

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    .necox-cpt-survey-content {
        max-width: 98vw !important;
        width: 98vw !important;
        max-height: 90vh !important;
        border-radius: 8px !important;
    }
    
    .necox-cpt-survey-inner {
        max-height: 90vh !important;
    }
}

/* ================================

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    .necox-cpt-survey-content {
        width: 98vw !important;
        max-width: 98vw !important;
        max-height: 90vh !important;
        border-radius: 8px !important;
    }
    
    .necox-cpt-survey-inner {
        max-height: 90vh !important;
        padding: 15px !important;
    }
    
    /* Font boyutlarını küçült */
    /* .necox-cpt-survey-content .necox-question-text - KALDIRILDI, Elementor responsive typography çalışsın */
    /*.necox-cpt-survey-content .necox-question-text {
        font-size: 18px !important;
    }*/
    
    .necox-cpt-survey-content .necox-answer-item {
        font-size: 14px !important;
        padding: 12px !important;
    }
}

/* Small Mobile (360px ve altı) */
@media (max-width: 360px) {
    .necox-cpt-survey-content {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
    }
}

/* ================================
   ULTIMATE RESPONSIVE FIX
   Inline style + specificity override
   ================================ */

/* Tablet (1024px ve altı) - daha geniş breakpoint */
@media (max-width: 1024px) {
    .necox-cpt-survey .necox-cpt-survey-content[style*="width"] {
        width: 90vw !important;
        max-width: 90vw !important;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .necox-cpt-survey .necox-cpt-survey-content[style*="width"] {
        width: 95vw !important;
        max-width: 95vw !important;
        max-height: 85vh !important;
    }
    
    .necox-cpt-survey .necox-cpt-survey-inner {
        max-height: 85vh !important;
    }
}

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    .necox-cpt-survey .necox-cpt-survey-content[style*="width"] {
        width: 98vw !important;
        max-width: 98vw !important;
        max-height: 90vh !important;
        border-radius: 8px !important;
    }
    
    .necox-cpt-survey .necox-cpt-survey-inner {
        max-height: 90vh !important;
        padding: 15px !important;
    }
}

/* Small Mobile (360px ve altı) */
@media (max-width: 360px) {
    .necox-cpt-survey .necox-cpt-survey-content[style*="width"] {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
    }
}

/* ================================
   MAXIMUM FORCE RESPONSIVE FIX
   Tüm inline style'ları eze eze
   ================================ */

/* Büyük Tablet ve küçük Desktop (1200px ve altı) */
@media (max-width: 1200px) {
    body .necox-cpt-survey .necox-cpt-survey-content {
        width: 85vw !important;
        max-width: 85vw !important;
        min-width: auto !important;
    }
}

/* Tablet (1024px ve altı) */
@media (max-width: 1024px) {
    body .necox-cpt-survey .necox-cpt-survey-content {
        width: 90vw !important;
        max-width: 90vw !important;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    body .necox-cpt-survey .necox-cpt-survey-content {
        width: 95vw !important;
        max-width: 95vw !important;
    }
}

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    body .necox-cpt-survey .necox-cpt-survey-content {
        width: 98vw !important;
        max-width: 98vw !important;
    }
}

/* Küçük Mobile (360px ve altı) */
@media (max-width: 360px) {
    body .necox-cpt-survey .necox-cpt-survey-content {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
}

/* ================================
   SURVEY INNER PADDING
   Beyaz alanı küçült
   ================================ */
.necox-cpt-survey-inner {
    padding: 20px !important;
}

/* Responsive padding - daha da küçült */
@media (max-width: 768px) {
    .necox-cpt-survey-inner {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .necox-cpt-survey-inner {
        padding: 12px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TRANSPARENT VIDEO 2 WIDGET
   ═══════════════════════════════════════════════════════════════ */

/* Size Presets for Video */
.necox-transparent-video-2.size-small {
    width: 400px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-medium {
    width: 600px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-large {
    width: 800px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-xlarge {
    width: 1000px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-full {
    width: 100% !important;
    height: auto;
}

/* Hover Animations for Video */
.necox-transparent-video-2.hover-zoom:hover {
    transform: scale(1.1);
}
.necox-transparent-video-2.hover-zoom-out:hover {
    transform: scale(0.9);
}
.necox-transparent-video-2.hover-rotate:hover {
    transform: rotate(5deg);
}
.necox-transparent-video-2.hover-pulse {
    animation: necoxVideoPulse 2s infinite;
}
@keyframes necoxVideoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.necox-transparent-video-2.hover-bounce:hover {
    animation: necoxVideoBounce 0.5s;
}
@keyframes necoxVideoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.necox-transparent-video-2.hover-float {
    animation: necoxVideoFloat 3s ease-in-out infinite;
}
@keyframes necoxVideoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Glow Effect for Video */
.necox-transparent-video-2.hover-glow {
    transition: filter 0.3s ease, transform 0.3s ease;
}
.necox-transparent-video-2.hover-glow:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(59, 130, 246, 0.6))
            brightness(1.2);
    transform: scale(1.05);
}

/* Rainbow Effect for Video */
@keyframes necoxVideoRainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.necox-transparent-video-2.hover-rainbow:hover {
    animation: necoxVideoRainbow 3s linear infinite;
}

/* Radial Wave Effect for Video */
.necox-transparent-video-2-wrapper:has(.hover-radial) {
    position: relative;
}
.necox-transparent-video-2-wrapper:has(.hover-radial):hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: necoxVideoRadialWave 1s ease-out infinite;
    pointer-events: none;
    border-radius: 50%;
}
@keyframes necoxVideoRadialWave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Clickable cursor for Video */
.necox-transparent-video-2-wrapper.necox-popup-close,
.necox-transparent-video-2-wrapper.necox-show-contact-popup,
.necox-transparent-video-2-wrapper.necox-show-slideshow,
.necox-transparent-video-2-wrapper.necox-show-video {
    cursor: pointer;
}

/* Video transition effect */
.necox-transparent-video-2 {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect for clickable videos */
.necox-transparent-video-2-wrapper.necox-popup-close:hover video,
.necox-transparent-video-2-wrapper a:hover video {
    opacity: 0.9;
}

/* Active state */
.necox-transparent-video-2-wrapper.necox-popup-close:active video,
.necox-transparent-video-2-wrapper a:active video {
    opacity: 0.8;
}

/* Video wrapper general */
.necox-transparent-video-2-wrapper {
    display: inline-block;
    width: 100%;
    background: transparent !important;
    padding: 0;
    margin: 0;
}

.necox-transparent-video-2 {
    display: inline-block;
    max-width: 100%;
    height: auto;
    background: transparent !important;
}

/* Contact type 'none' - video tıklanabilir olmalı */
.necox-popup-close .necox-transparent-video-2 {
    pointer-events: none;
}

/* Transparent popup içinde wrapper tamamen şeffaf */
.necox-cpt-popup[data-template-id="transparent-video-demo"] .necox-transparent-video-2-wrapper,
.necox-transparent-section .necox-transparent-video-2-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Transparent popup - Position fix (metabox ile uyum) */
/* NOT: Parallax aktifken display:flex kullanılmamalı (transform çakışması) */
.necox-cpt-popup[data-template-id="transparent-popup"]:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]),
.necox-cpt-popup[data-template-id="transparent-video-demo"]:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]) {
    display: flex !important;
}

.necox-cpt-popup[data-template-id="transparent-popup"].position-top-center:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]),
.necox-cpt-popup[data-template-id="transparent-video-demo"].position-top-center:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]) {
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 50px !important;
}

.necox-cpt-popup[data-template-id="transparent-popup"].position-center:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]),
.necox-cpt-popup[data-template-id="transparent-video-demo"].position-center:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]) {
    align-items: center !important;
    justify-content: center !important;
}

.necox-cpt-popup[data-template-id="transparent-popup"].position-bottom-center:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]),
.necox-cpt-popup[data-template-id="transparent-video-demo"].position-bottom-center:not([data-parallax-type="mouse"]):not([data-parallax-type="scroll"]):not([data-parallax-type="auto"]) {
    align-items: flex-end !important;
    justify-content: center !important;
    padding-bottom: 50px !important;
}

/* Transparent Video widget - Elementor wrapper'ları */
.necox-cpt-popup[data-template-id="transparent-video-demo"] .elementor-widget-necox-transparent-video-2,
.necox-cpt-popup[data-template-id="transparent-video-demo"] .elementor-widget-necox-transparent-video-2 > .elementor-widget-container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Survey Popup - Elementor parent overflow fix */
.elementor-widget:has(.necox-survey-popup-wrapper) {
    overflow: visible !important;
}
.elementor-widget-wrap:has(.necox-survey-popup-wrapper),
.elementor-column:has(.necox-survey-popup-wrapper),
.elementor-section:has(.necox-survey-popup-wrapper),
.e-con:has(.necox-survey-popup-wrapper),
.e-con-inner:has(.necox-survey-popup-wrapper) {
    overflow: visible !important;
}

/* ═══════════════════════════════════════════════════════════════
   VOTE RESULTS - Global Stiller (CPT + Widget ortak)
   ═══════════════════════════════════════════════════════════════ */
.necox-vote-results {
    padding: 25px 30px;
}

.necox-results-title {
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
    font-size: 22px;
    font-weight: 700;
}

.necox-result-item {
    margin-bottom: 18px;
}

.necox-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 5px;
}

.necox-result-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.necox-result-name strong {
    color: #0f172a;
}

.necox-result-party {
    color: #64748b;
    font-size: 0.9em;
    font-weight: 400;
}

.necox-result-stats {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.necox-result-votes {
    color: #94a3b8;
    font-size: 0.85em;
    font-weight: 400;
}

.necox-result-bar {
    background: #e2e8f0;
    border-radius: 8px;
    height: 24px;
    overflow: hidden;
}

.necox-result-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.necox-results-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
    font-size: 0.9em;
}

.necox-results-note {
    margin-left: 15px;
}

/* Success Message Global Stiller */
.necox-success-message {
    text-align: center;
}

.necox-success-icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: #22c55e;
}

.necox-success-title {
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.necox-success-text {
    color: #64748b;
    font-size: 15px;
}

/* Custom Message Global Stiller */
.necox-custom-message {
    text-align: center;
}

.necox-custom-message-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.necox-custom-message-text {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   Survey Widget - Elementor background overlay koruması
   Popup içinde arka plan video/overlay eklendiğinde
   survey öğeleri bunun üstünde kalır
═══════════════════════════════════════════════════════════ */
.elementor-widget-necox-open-feedback .necox-survey-container,
.elementor-widget-necox-open-feedback .necox-survey-inner-scale {
    position: relative;
    z-index: 2;
}
/* Elementor'un kendi background-overlay'i survey wrapper içinde etkisiz */
.elementor-widget-necox-open-feedback > .elementor-widget-container > .necox-survey-wrapper ~ .elementor-background-overlay,
.elementor-widget-necox-open-feedback .elementor-background-overlay {
    z-index: 0 !important;
    pointer-events: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   Open Feedback Widget - Popup içinde tam doldurma
   Elementor'un tüm ara katmanlarındaki padding/margin sıfırlanır
   ═══════════════════════════════════════════════════════════════ */
.elementor-widget-necox-open-feedback,
.elementor-widget-necox-open-feedback > .elementor-widget-container,
.elementor-widget-wrap:has(.elementor-widget-necox-open-feedback),
.elementor-column:has(.elementor-widget-necox-open-feedback),
.elementor-section:has(.elementor-widget-necox-open-feedback),
.e-con:has(.elementor-widget-necox-open-feedback),
.e-con-inner:has(.elementor-widget-necox-open-feedback) {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    height: 100% !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
}
/* Elementor column gap'i sıfırla */
.elementor-column:has(.elementor-widget-necox-open-feedback) .elementor-column-gap-default,
.elementor-row:has(.elementor-widget-necox-open-feedback) {
    --grid-column-gap: 0px !important;
}

/* ═══════════════════════════════════════════════════════════════
   necox-has-survey — Popup içinde Open Feedback varsa
   PopupCPT mantığı: tüm Elementor ara katmanları sıfırlanır
   ═══════════════════════════════════════════════════════════════ */
.necox-popup-content.necox-has-survey {
    overflow: hidden !important;
}
.necox-popup-content.necox-has-survey .necox-popup-inner {
    padding: 0 !important;
    margin: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
}
.necox-popup-content.necox-has-survey .elementor,
.necox-popup-content.necox-has-survey .elementor-section,
.necox-popup-content.necox-has-survey .elementor-container,
.necox-popup-content.necox-has-survey .elementor-column,
.necox-popup-content.necox-has-survey .elementor-column-wrap,
.necox-popup-content.necox-has-survey .elementor-widget-wrap,
.necox-popup-content.necox-has-survey .elementor-widget,
.necox-popup-content.necox-has-survey .elementor-widget-container,
.necox-popup-content.necox-has-survey .e-con,
.necox-popup-content.necox-has-survey .e-con-inner {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   Survey CPT + Open Feedback widget kombinasyonu
   ═══════════════════════════════════════════════════════════════ */
.necox-cpt-survey .elementor-widget-necox-open-feedback,
.necox-cpt-survey-content .elementor-widget-necox-open-feedback,
.necox-cpt-survey-inner .elementor-widget-necox-open-feedback {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.necox-cpt-survey:has(.elementor-widget-necox-open-feedback) .necox-cpt-survey-inner,
.necox-cpt-survey-content:has(.elementor-widget-necox-open-feedback) {
    padding: 0 !important;
    margin: 0 !important;
}
.necox-cpt-survey .elementor-widget-necox-open-feedback .elementor-widget-container,
.necox-cpt-survey .elementor-section:has(.elementor-widget-necox-open-feedback),
.necox-cpt-survey .elementor-container:has(.elementor-widget-necox-open-feedback),
.necox-cpt-survey .elementor-column:has(.elementor-widget-necox-open-feedback),
.necox-cpt-survey .elementor-column-wrap:has(.elementor-widget-necox-open-feedback),
.necox-cpt-survey .elementor-widget-wrap:has(.elementor-widget-necox-open-feedback),
.necox-cpt-survey .e-con:has(.elementor-widget-necox-open-feedback),
.necox-cpt-survey .e-con-inner:has(.elementor-widget-necox-open-feedback) {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
