/* Floating Button */
.book-now-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #c59d5f;
  color: #fff !important;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 9999;
  animation: pulse 1.8s infinite;
}

.book-now-float:hover { background: #b08b4f; }

@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(197,157,95,.7); }
  70% { box-shadow:0 0 0 18px rgba(197,157,95,0); }
  100% { box-shadow:0 0 0 0 rgba(197,157,95,0); }
}

/* Hidden preload container */
.booking-preload {
  position: fixed;
  right: 25px;
  bottom: 90px;
  display: none;
  z-index: 10000;
}

/* Popup panel */
.booking-modal {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  width: 340px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  position: relative;
}

/* Close button */
.booking-close {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .booking-preload {
    right: 10px;
    bottom: 80px;
  }
  .booking-modal { width: 95vw; }
}
