/* Custom floating call button - replaces broken JS-dependent Elementor Pro floating widget */
.vm-floating-call {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 99999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #dd4e1d;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vm-floating-call:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  color: #fff !important;
}
.vm-floating-call svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
@media (max-width: 767px) {
  .vm-floating-call {
    right: 14px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
  .vm-floating-call svg {
    width: 20px;
    height: 20px;
  }
}
