/* Sticky "Book Now" button — fixed bottom-left, stacked directly above the
   WhatsApp button (which sits at bottom:25px; height:60px), so it never
   overlaps on pages that also show WhatsApp. */
.book-now-btn {
  position: fixed;
  bottom: 95px;
  left: 25px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.book-now-btn svg {
  flex-shrink: 0;
}

.book-now-btn:hover,
.book-now-btn:focus-visible {
  transform: scale(1.05);
  background: #6c2fd8;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.45);
  color: #fff;
}

@media (max-width: 480px) {
  .book-now-btn {
    bottom: 88px;
    left: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}
