.contact-float {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 1025;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-float__btn:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.contact-float__btn--whatsapp {
  background: #25d366;
}

.contact-float__btn--call {
  background: var(--primary-color, #e9021e);
}

@media (max-width: 767px) {
  .contact-float {
    right: 16px;
    bottom: 76px;
    gap: 10px;
  }

  .contact-float__btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
