/* ===== FLOATING CONTACT BUTTONS (WhatsApp + Call) ===== */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fc-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fc-btn:hover,
.fc-btn:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.fc-btn:focus-visible {
  outline: 3px solid #FFA300;
  outline-offset: 3px;
}

.fc-whatsapp { background: #25D366; }
.fc-call { background: #036dc6; }

/* Hover label — desktop only */
.fc-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #002333;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.fc-btn:hover .fc-label,
.fc-btn:focus-visible .fc-label {
  opacity: 1;
  visibility: visible;
}

/* Reposition the existing back-to-top button so the two floating stacks never overlap.
   Same specificity as the per-page inline rule; this file loads after it, so it wins. */
.back-to-top {
  right: 24px;
  bottom: 170px;
}

@media (max-width: 768px) {
  body { padding-bottom: 150px; }

  .floating-contact {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }
  .fc-btn {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .fc-label { display: none; }

  .back-to-top {
    right: 20px;
    bottom: 148px;
  }
}
