/* Sticky Bottom CTA Bar - Conversion Optimization */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a237e;
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  /* Position above the fixed-trial-button (which is typically ~60px from bottom) */
  bottom: 60px;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar__text {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-cta-bar__buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.sticky-cta-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.sticky-cta-bar__btn:hover {
  opacity: 0.9;
}

.sticky-cta-bar__btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.sticky-cta-bar__btn--book {
  background: #f5a623;
  color: #1a1a2e;
}

.sticky-cta-bar__dismiss {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.sticky-cta-bar__dismiss:hover {
  color: #fff;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .sticky-cta-bar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    bottom: 56px;
  }

  .sticky-cta-bar__text {
    font-size: 0.82rem;
  }

  .sticky-cta-bar__buttons {
    width: 100%;
    justify-content: center;
  }

  .sticky-cta-bar__btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
