/* css/whatsapp-button.css */

/* Styling untuk Tombol WhatsApp Mengambang */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Warna hijau WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Pastikan di atas elemen lain, tapi di bawah lightbox/menu */
    
    /* Untuk membuat ikon di tengah */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Menghilangkan garis bawah pada link */

    /* Menerapkan animasi pulse */
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    color: #FFF;
    background-color: #128C7E; /* Warna hijau lebih gelap saat hover */
    animation: none; /* Hentikan animasi saat di-hover */
}

/* Keyframes untuk animasi pulse */
@keyframes pulse {
  0%, 100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}