/* WhatsApp Floating Button */
.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  font-size: 28px;
}

.whatsapp-floating:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
  color: #ffffff;
  text-decoration: none;
}

.whatsapp-floating:active {
  transform: scale(0.95);
}

.whatsapp-floating i {
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-floating {
    width: 56px;
    height: 56px;
    bottom: 15px;
    left: 15px;
    font-size: 24px;
  }
}

/* Ensure button is always visible above other elements */
.whatsapp-ui.whatsapp-floating {
  position: fixed !important;
  z-index: 9999 !important;
}
