/**
 * WhatsApp Button Styles - Amandau
 */

/* WhatsApp Floating Button */
#whatsapp-float-btn {
  position: fixed;
  bottom: 6.25rem;
  right: 1.25rem;
  left: auto !important;
  z-index: 1000;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20b95a 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.2s ease-in-out infinite;
}

#whatsapp-float-btn:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transform: translateY(-0.2rem) scale(1.04);
}

#whatsapp-float-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #whatsapp-float-btn {
    bottom: 5.5rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  
  #whatsapp-float-btn svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}
