.enquiry-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  min-width: 120px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #006efe 0%, #0056d6 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 110, 254, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  z-index: 999;
}

.enquiry-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 110, 254, 0.4);
}

.enquiry-float:active {
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 96px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 999;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .wa-icon {
  display: block;
  position: relative;
  z-index: 1;
}

.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.6);
  animation: waPingRing 2s ease-out infinite;
}

@keyframes waPingRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float.wa-pulse {
  animation: waBounce 2.4s ease-in-out infinite;
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-8px); }
  65% { transform: translateY(-4px); }
}

.call-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006efe 0%, #0056d6 100%);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 110, 254, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.call-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 110, 254, 0.4);
}

.call-float .call-icon {
  display: block;
  position: relative;
  z-index: 1;
}

.call-float .call-icon path {
  fill: #ffffff;
}

.call-float .call-text {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) translateX(20px) scale(0.95);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #006efe;
  font-size: 0.75em;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.6s, box-shadow 0.6s ease-out;
  pointer-events: none;
}

.call-float.show-text .call-text,
.call-float:hover .call-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
  box-shadow: 0 6px 20px rgba(0, 110, 254, 0.25);
}

.call-float.hopping .call-text {
  animation: gentleHop 1.2s ease-in-out infinite;
}

@keyframes gentleHop {
  0%, 100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-62%) translateX(0) scale(1);
  }
}

@media (max-width: 767px) {
  .enquiry-float {
    right: 16px;
    bottom: 16px;
    width: auto;
    min-width: 120px;
    max-width: 200px;
    padding: 12px 18px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 88px;
    width: 56px;
    height: 56px;
  }

  .call-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .call-float .call-text {
    font-size: 0.7em;
    padding: 6px 14px;
    right: 70px;
  }
}
