/* Sticky call & WhatsApp — all public pages */
.rf-sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.rf-sticky-contact a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rf-sticky-contact a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-decoration: none;
}

.rf-sticky-call {
  background: #0d9243;
}

.rf-sticky-whatsapp {
  background: #25d366;
}

.rf-sticky-contact a svg {
  display: block;
  flex-shrink: 0;
}

.rf-sticky-contact a i {
  font-size: 24px;
  line-height: 1;
}

.rf-sticky-contact a span.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 576px) {
  .rf-sticky-contact {
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .rf-sticky-contact a {
    width: 50px;
    height: 50px;
  }

  .rf-sticky-contact a i {
    font-size: 22px;
  }
}
