/* RAS DEALS - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better focus states */
*:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

/* Sticky header height adjustment */
body {
  padding-top: 0;
}

/* Mobile menu animation */
#mobileMenu {
  transition: all 0.2s ease;
}

/* Tour card hover */
article:hover img {
  transform: scale(1.03);
}

/* Details/summary arrow */
details summary::-webkit-details-marker {
  display: none;
}

/* Booking modal slide up on mobile */
@media (max-width: 767px) {
  #bookingModal > div:last-child {
    animation: slideUp 0.3s ease;
  }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Price currency transition */
.price {
  transition: opacity 0.15s ease;
}

/* Sticky WhatsApp pulse */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
}

.fixed.bottom-5.right-5 {
  animation: pulse-green 2.5s infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fixed.bottom-5.right-5 { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
