/*enquiryy hover button*/
.enquiry-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: auto;
  background: linear-gradient(90deg, #ffcc00, #ff8800);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border: none;
  padding: 16px 0;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1050;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.enquiry-btn:hover {
  background: linear-gradient(270deg, #ffdf32, #ff9900);
  letter-spacing: 1px;
  transform: translateY(-2px);
}



/* For tablet to mobile only */
@media (max-width: 991px) {
    .route-map{
        display: none;
    }

    .enquiry-form{
        display: none;
    }


}

/* Hide on desktop */
@media (min-width: 992px) {
    .enquiry-btn{
        display:none
    }
    .route-map-mobile{
        display:none;
    }
}
