
/* ================= FLOATING WHATSAPP start ================= */

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-contact a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Call Button */
.call-btn {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.whatsapp-btn i,
.call-btn i {
  font-size: 26px;
  color: #fff;
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .floating-contact a {
    width: 48px;
    height: 48px;
  }

  .whatsapp-btn i,
  .call-btn i {
    font-size: 22px;
  }
}



/* WhatsApp Verify Popup */
.wa-verify-box {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.wa-verify-inner {
  background: #fff;
  padding: 22px;
  width: 320px;
  border-radius: 14px;
  text-align: center;
}

.wa-verify-inner h5 {
  margin-bottom: 12px;
}

.wa-verify-inner select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.wa-verify-inner option {
  color: #25D366;
}

.human-check {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.wa-verify-inner button {
  width: 100%;
  padding: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ================= FLOATING WHATSAPP end ================= */
