/* assets/css/style.css */
.whatsapp-ber-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-ber-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#whatsapp-ber a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

#whatsapp-ber a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-ber-icon {
    display: block;
    width: 60px;
    height: 60px;
    background: url('../icons/whatsapp.svg') no-repeat center;
    background-size: 35px;
}

.whatsapp-ber-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#whatsapp-ber a:hover .whatsapp-ber-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animasyon efekti */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

#whatsapp-ber a {
    animation: whatsappPulse 2s infinite;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 768px) {
    #whatsapp-ber a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-ber-icon {
        width: 50px;
        height: 50px;
        background-size: 30px;
    }
}