/*======================================
SABİT İLETİŞİM KUTUSU
======================================*/

.contact-widget{
    position:fixed;
    left:15px;
    bottom:15px;
    width:170px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    z-index:99999;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    border:1px solid #eee;
    animation:floating 3s ease-in-out infinite;
}

.widget-header{
    background:linear-gradient(135deg,#E30613,#ff5252);
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px;
}

.widget-header i{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
}

.widget-header h4{
    margin:0;
    font-size:12px;
    font-weight:700;
}

.widget-header p{
    margin:2px 0 0;
    font-size:9px;
}

.widget-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.widget-btn:last-child{
    border-bottom:none;
}

.widget-btn:hover{
    background:#f7f7f7;
}

.widget-btn .icon{
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:13px;
    flex-shrink:0;
}

.phone .icon{
    background:#0066cc;
}

.whatsapp .icon{
    background:#25D366;
}

.widget-btn strong{
    display:block;
    color:#222;
    font-size:11px;
    margin-bottom:2px;
}

.widget-btn span{
    display:block;
    color:#777;
    font-size:9px;
}

.phone:hover .icon{
    animation:ring .8s;
}

.whatsapp:hover .icon{
    animation:pulse .8s;
}

@keyframes floating{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-5px);}
}

@keyframes pulse{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.1);}
}

@keyframes ring{
    0%,100%{transform:rotate(0);}
    25%{transform:rotate(-10deg);}
    75%{transform:rotate(10deg);}
}

@media(max-width:768px){

    .contact-widget{
        width:155px;
        left:10px;
        bottom:10px;
    }

    .widget-header{
        padding:7px;
    }

    .widget-btn{
        padding:7px;
    }

    .widget-header i,
    .widget-btn .icon{
        width:26px;
        height:26px;
        font-size:12px;
    }

    .widget-header h4{
        font-size:11px;
    }

    .widget-header p,
    .widget-btn span{
        font-size:8px;
    }

    .widget-btn strong{
        font-size:10px;
    }

}