/* Sticky WhatsApp + Call float (left center) */
.be-float-contact {
  position: fixed;
  right: 18px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.be-float-contact__btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 22px;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0, 21, 46, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.be-float-contact__btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 21, 46, 0.28);
  filter: brightness(1.05);
  color: #fff !important;
}

.be-float-contact__btn--wa {
  background: linear-gradient(145deg, #25D366, #1ebe57);
}

.be-float-contact__btn--call {
  background: linear-gradient(145deg, #002147, #0A2A4A);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.be-float-contact__btn--call i {
  color: #D4AF37;
}

@media screen and (max-width: 767px) {
  .be-float-contact {
    right: 12px;
    left: auto;
    gap: 10px;
  }

  .be-float-contact__btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

@media screen and (max-width: 400px) {
  .be-float-contact {
    right: 10px;
    left: auto;
  }

  .be-float-contact__btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
