/* ============================================
   DRACHEN BILLIARD - FLOATING WHATSAPP BUTTON
   ============================================ */

.wa-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Warna hijau WhatsApp */
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; /* Ukuran ikon */
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  
  /* Pastikan di atas konten tapi di bawah Offcanvas (3000) */
  z-index: 1000; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-float-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  background-color: #128C7E; /* Warna hijau tua WhatsApp */
}

/* Penyesuaian untuk mobile kecil agar tidak terlalu besar */
@media (max-width: 576px) {
  .wa-float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
    bottom: 20px;
    right: 20px;
  }

  
}