/* WhatsApp Floating Icon */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.whatsapp-floating:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

.whatsapp-floating svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-floating i {
  color: white;
  font-size: 28px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .whatsapp-floating {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-floating svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-floating i {
    font-size: 24px;
  }
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-floating.animated {
  animation: float 3s ease-in-out infinite;
}
