/* Floating CTA Stack */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* Button Colors */
.call-btn {
  background: #ffcc00;; /* Blue */
}

.book-btn {
  background: #ffcc00; /* Yellow */
  color: #000;
}

.whatsapp-btn {
  background: #25d366; /* WhatsApp Green */
}
