/* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 90px;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-size: 24px;
}

.whatsapp-btn:hover {
  background: #20b358;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

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

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

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 30px;
    bottom: 100px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
} 