/* Floating WhatsApp Button - GeoAlex Constructii */
.wa-float-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}
.wa-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}
@media (max-width: 768px) {
  .wa-float-btn {
    left: 16px;
    bottom: 16px;
  }
}
