/* Floating Contact Buttons */
.floating-contact-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
}

.floating-btn {
  position: absolute;
  bottom: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
  text-decoration: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn i {
  font-size: 20px;
  color: #fff;
}

/* WhatsApp Button - Bottom Left */
.whatsapp-btn {
  left: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Phone Button - Bottom Right */
.phone-btn {
  right: 30px;
  background: linear-gradient(135deg, #6337ff 0%, #4527b8 100%);
}

.phone-btn:hover {
  background: linear-gradient(135deg, #4527b8 0%, #331d8a 100%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .floating-btn {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }

  .whatsapp-btn {
    left: 20px;
  }

  .phone-btn {
    right: 20px;
  }

  .floating-btn i {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .floating-btn {
    width: 35px;
    height: 35px;
    bottom: 15px;
  }

  .whatsapp-btn {
    left: 15px;
  }

  .phone-btn {
    right: 15px;
  }

  .floating-btn i {
    font-size: 16px;
  }
}