/* Floating container */
/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  right: 20px;     /* 👈 FORCE RIGHT SIDE */
  left: auto;      /* 👈 Prevent left override */
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}


/* Common button style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Call button */
.call-btn {
  background: linear-gradient(135deg,#4b1fd6,#2575fc);
  animation: pulseCall 2s infinite;
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366;
  animation: pulseWhats 2s infinite;
}

/* Hover effect */
.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Pulse animation */
@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(75,31,214,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(75,31,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(75,31,214,0); }
}

@keyframes pulseWhats {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .floating-contact {
    right: 15px;
    bottom: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
