@charset "utf-8";

/* =======================================================
   NCR WHATSAPP / DESTEK PANELİ BAŞLANGIÇ
======================================================= */

.ncr-whatsapp-widget{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:99999;
    font-family:Arial, Helvetica, sans-serif;
}

/* =======================================================
   YARDIM BALONU
======================================================= */

.ncr-help-bubble{
    position:absolute;
    right:0;
    bottom:82px;
    width:220px;
    background:#ffffff;
    color:#111;
    padding:12px 14px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:0.35s ease;
    cursor:pointer;
}

.ncr-help-bubble.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.ncr-help-bubble span{
    display:block;
    font-size:13px;
    margin-bottom:3px;
    color:#071a34;
}

.ncr-help-bubble strong{
    display:block;
    font-size:14px;
    color:#111;
}

/* =======================================================
   ANA DESTEK BUTONU
   Turuncu arka plan ve halka efekti kaldırıldı.
   Sadece şeffaf PNG ikon görünür.
======================================================= */

.ncr-support-main-btn{
    width:68px;
    height:68px;
    border:0;
    border-radius:50%;
    background:transparent;
    cursor:pointer;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:none;
    padding:0;
}

.ncr-support-main-btn img{
    width:64px;
    height:64px;
    object-fit:contain;
    position:relative;
    z-index:2;
    filter:drop-shadow(0 8px 18px rgba(0,0,0,0.24));
}

/* Pulse / turuncu halka efekti kapatıldı */
.ncr-support-pulse{
    display:none;
}

/* =======================================================
   DESTEK KARTI
======================================================= */

.ncr-support-card{
    position:absolute;
    right:0;
    bottom:84px;
    width:326px;
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,0.28);
    opacity:0;
    visibility:hidden;
    transform:translateY(18px) scale(0.98);
    transition:0.35s ease;
}

.ncr-support-card.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

/* =======================================================
   KART BAŞLIK ALANI
======================================================= */

.ncr-support-header{
    background:linear-gradient(135deg,#071a34,#0b264d);
    padding:15px;
    color:#fff;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
}

.ncr-support-title{
    display:flex;
    align-items:center;
    gap:10px;
}

.ncr-support-title img{
    width:32px;
    height:32px;
    object-fit:contain;
    flex-shrink:0;
}

.ncr-support-title h4{
    margin:0 0 5px;
    font-size:15px;
    line-height:1.25;
    font-weight:800;
}

.ncr-support-title span{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:#e7e7e7;
}

.ncr-support-title span i{
    width:8px;
    height:8px;
    display:inline-block;
    background:#2ecc71;
    border-radius:50%;
    box-shadow:0 0 0 4px rgba(46,204,113,0.18);
}

.ncr-support-close{
    width:28px;
    height:28px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    color:#fff;
    font-size:22px;
    line-height:28px;
    cursor:pointer;
}

/* =======================================================
   KART İÇERİK ALANI
======================================================= */

.ncr-support-body{
    padding:15px;
}

.ncr-support-desc{
    margin:0 0 12px;
    color:#333;
    font-size:13px;
    line-height:1.55;
}

.ncr-support-features{
    display:grid;
    gap:7px;
    margin-bottom:12px;
}

.ncr-support-features span{
    font-size:12.5px;
    color:#071a34;
    font-weight:700;
    background:#f6f7f9;
    padding:8px 10px;
    border-radius:10px;
}

/* =======================================================
   SOSYAL KANIT ALANI
======================================================= */

.ncr-social-proof{
    background:#fff6e9;
    color:#5c3705;
    border:1px solid rgba(247,147,30,0.28);
    border-radius:12px;
    padding:9px 10px;
    font-size:12.5px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:12px;
}

/* =======================================================
   DESTEK BUTONLARI
======================================================= */

.ncr-support-buttons{
    display:grid;
    gap:9px;
}

.ncr-support-action{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    min-height:43px;
    border-radius:12px;
    text-decoration:none;
    font-size:13.5px;
    font-weight:800;
    transition:0.25s ease;
}

.ncr-support-action img{
    width:24px;
    height:24px;
    object-fit:contain;
}

.ncr-support-action.whatsapp{
    background:#25d366;
    color:#fff;
}

.ncr-support-action.phone{
    background:#071a34;
    color:#fff;
}

.ncr-support-action.offer{
    background:#f7931e;
    color:#fff;
}

.ncr-support-action:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,0.16);
}

/* =======================================================
   TABLET UYUM
======================================================= */

@media(max-width:991px){

    .ncr-whatsapp-widget{
        right:18px;
        bottom:18px;
    }

    .ncr-support-card{
        width:315px;
        bottom:82px;
    }

}

/* =======================================================
   MOBİL UYUM
======================================================= */

@media(max-width:576px){

    .ncr-whatsapp-widget{
        right:14px;
        bottom:14px;
    }

    .ncr-support-main-btn{
        width:60px;
        height:60px;
        background:transparent;
        box-shadow:none;
    }

    .ncr-support-main-btn img{
        width:56px;
        height:56px;
    }

    .ncr-help-bubble{
        width:205px;
        bottom:74px;
        padding:11px 13px;
    }

    .ncr-support-card{
        width:calc(100vw - 28px);
        max-width:320px;
        right:0;
        bottom:74px;
        border-radius:18px;
    }

    .ncr-support-header{
        padding:14px;
    }

    .ncr-support-title h4{
        font-size:14px;
    }

    .ncr-support-body{
        padding:14px;
    }

    .ncr-support-desc{
        font-size:12.8px;
    }

    .ncr-support-action{
        min-height:42px;
        font-size:13px;
    }

}

/* =======================================================
   ÇOK KÜÇÜK EKRAN UYUMU
======================================================= */

@media(max-width:360px){

    .ncr-support-card{
        width:calc(100vw - 20px);
        right:-4px;
    }

    .ncr-help-bubble{
        width:190px;
    }

}

/* =======================================================
   NCR WHATSAPP / DESTEK PANELİ BİTİŞ
======================================================= */