/* Sticky WhatsApp Button Styles */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 999;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #1fa151 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: vibratePulse 0.6s ease-in-out infinite, float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
  animation: none;
}

.whatsapp-button i {
  color: white;
  font-size: 28px;
}

.whatsapp-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.whatsapp-sticky:hover .whatsapp-menu {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  max-height: 200px;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 16px;
  border-radius: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.whatsapp-option:hover {
  background: #f0f0f0;
  transform: translateX(-8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.whatsapp-option i {
  color: #25d366;
  font-size: 16px;
}

.whatsapp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: #333;
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
  transition: all 0.3s ease;
  animation: labelBounce 2s ease-in-out infinite;
}

.whatsapp-sticky:hover .whatsapp-label {
  opacity: 0;
  transform: translateY(10px);
}

/* Pulse animation */
@keyframes vibratePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.3);
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-1px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes labelBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 30px;
    right: 15px;
  }

  .whatsapp-button {
    width: 65px;
    height: 65px;
  }

  .whatsapp-button i {
    font-size: 28px;
  }

  .whatsapp-option {
    font-size: 12px;
    padding: 8px 12px;
  }

  .whatsapp-sticky:hover .whatsapp-menu {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .whatsapp-sticky {
    bottom: 25px;
    right: 10px;
  }

  .whatsapp-button {
    width: 60px;
    height: 60px;
  }

  .whatsapp-button i {
    font-size: 24px;
  }

  .whatsapp-label {
    font-size: 11px;
    padding: 6px 10px;
  }

  .whatsapp-option {
    font-size: 11px;
    padding: 6px 10px;
  }
}
