 /* --- Call Now and Back to Top Button Stack --- */
#callNowBtn, #backToTop {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow: 0 4px 24px 0 rgba(249,115,22,0.18), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  background: linear-gradient(135deg, #f97316 60%, #ffb347 100%);
  color: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 99;
}
#callNowBtn {
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 100;
  animation: callnow-pulse 1.5s infinite;
}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
#callNowBtn:active, #backToTop:active {
  transform: scale(0.96);
}
#callNowBtn .callnow-icon, #backToTop .callnow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
#callNowBtn svg, #backToTop svg {
  width: 32px !important;
  height: 32px !important;
  color: #fff;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 6px #ffb34788);
}
#backToTop:hover, #callNowBtn:hover {
  background: linear-gradient(135deg, #ffb347 60%, #f97316 100%);
  box-shadow: 0 6px 32px 0 rgba(249,115,22,0.28), 0 2px 8px 0 rgba(0,0,0,0.13);
  transform: scale(1.08);
}
@media (min-width: 768px) {
  #callNowBtn {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #callNowBtn {
    display: flex;
  }
}

/* Responsive Call Now Button Styles */
#backToTop {
  bottom: 90px !important; /* Move up to avoid overlap with call button */
}

/* Responsive Call Now Button Styles */
#callNowBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f97316 60%, #ffb347 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(249,115,22,0.25), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: callnow-pulse 1.5s infinite;
  border: none;
  outline: none;
  font-size: 0;
  flex-direction: column;
  gap: 2px;
}
#callNowBtn:active {
  transform: scale(0.96);
}
#callNowBtn .callnow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
#callNowBtn svg {
  width: 32px;
  height: 32px;
  color: #fff;
  filter: drop-shadow(0 0 6px #ffb34788);
}
/* Pulsing text for call button */
#callNowBtn .callnow-text {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px #000, 0 0 6px #ffb34788;
  animation: callnow-text-pulse 3s infinite;
  line-height: 1.1;
  pointer-events: none;
}
@keyframes callnow-text-pulse {
  0%, 100% { opacity: 1; }
  40%, 60% { opacity: 0.2; }
}
@keyframes callnow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249,115,22,0.5), 0 4px 24px 0 rgba(249,115,22,0.25);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(249,115,22,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249,115,22,0.5), 0 4px 24px 0 rgba(249,115,22,0.25);
  }
}
@media (min-width: 768px) {
  #callNowBtn {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #callNowBtn {
    display: flex;
  }
}
 