/* ============================================================
   PropertysDeal — Global WhatsApp Chatbot Floating Button
   Responsive: desktop + iPad + phone
   UI only (no JS / no API calls)
   ============================================================ */

.pd-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  /* Keep above normal page content, but generally below Bootstrap modals */
  z-index: 1045;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pd-wa-float__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.97);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.18), 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pd-wa-float__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.22), 0 4px 14px rgba(0, 0, 0, 0.10);
  background: rgba(30, 189, 90, 0.98);
}

.pd-wa-float__icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}

.pd-wa-float__icon i,
.pd-wa-float__icon svg {
  font-size: 16px;
  line-height: 1;
}

.pd-wa-float__text {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

/* iPad + small desktops */
@media (max-width: 991.98px) {
  .pd-wa-float {
    right: 14px;
    bottom: 14px;
  }

  .pd-wa-float__btn {
    padding: 9px 12px;
    gap: 8px;
  }

  .pd-wa-float__text {
    font-size: 12.5px;
  }
}

/* Phones: keep it indirect (icon-only) */
@media (max-width: 575.98px) {
  .pd-wa-float {
    right: 12px;
    bottom: 12px;
  }

  .pd-wa-float__btn {
    padding: 10px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    justify-content: center;
  }

  .pd-wa-float__text {
    display: none;
  }
}

