/* Butonun Genel Konumu ve Stili */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* WhatsApp Yeşili */
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* İkon Boyutu */
.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Ultra Dikkat Çekici Yanıp Sönme Animasyonu (Pulse) */
.whatsapp-button {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Mouse ile üzerine gelince hafif büyüme */
.whatsapp-button:hover {
    transform: scale(1.1);
}