.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-float {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* Popup Message */
.whatsapp-popup {
  background: white;
  color: #333;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  max-width: 250px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: none;
}

/* Show popup */
.whatsapp-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Responsive for small screens */
@media (max-width: 600px) {
  .whatsapp-float {
    padding: 8px 10px;
    font-size: 14px;
  }

  .whatsapp-popup {
    font-size: 13px;
    padding: 8px 12px;
    max-width: 200px;
  }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}