/* ===== FixaroX design system (supplements Tailwind CDN) ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
@media (max-width: 1023px) { body { padding-bottom: 84px; } } /* room for sticky mobile bar */

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Card hover */
.card-hover { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(15,23,42,.10); border-color: rgba(249,115,22,.35); }

/* Button shimmer */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-15deg); animation: shimmer 3.5s infinite;
}
@keyframes shimmer { 0% { left: -60%; } 100% { left: 130%; } }

/* WhatsApp pulse */
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-pulse { animation: wa-pulse 2s infinite; }

/* Section helpers */
.section { padding-top: 4rem; padding-bottom: 4rem; }
.section-alt { background: #f8fafc; }
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #f97316; }
.icon-circle { background: linear-gradient(135deg, #fff7ed, #ffedd5); color: #ea580c; }

/* ===== Booking form ===== */
.bf-input {
  width: 100%; padding: .7rem .9rem; border: 1.5px solid #e2e8f0; border-radius: .6rem;
  font-family: 'Inter', sans-serif; font-size: .95rem; color: #0f172a; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.bf-input::placeholder { color: #94a3b8; }
.bf-input:focus { outline: none; border-color: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.bf-input.error { border-color: #ef4444; }
.bf-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2394a3b8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.bf-prefix {
  display: inline-flex; align-items: center; padding: 0 .9rem; font-weight: 600; font-size: .9rem;
  color: #475569; background: #f1f5f9; border: 1.5px solid #e2e8f0; border-right: 0;
  border-radius: .6rem 0 0 .6rem;
}
/* Dark variant (on navy sections) */
.bf-input-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff; }
.bf-input-dark::placeholder { color: #94a3b8; }
.bf-input-dark:focus { border-color: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,.2); }
.bf-input-dark option { color: #0f172a; }
.bf-prefix-dark { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); color: #e2e8f0; }
.bf-err { color: #ef4444; font-size: .72rem; margin-top: 4px; display: none; }
.bf-err.show { display: block; }

/* Hero grid texture */
.hero-grid {
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 3px; }

/* FAQ accordion */
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform .2s ease; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .card-hover, .btn-shimmer::after, .wa-pulse { transition: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
}
