/* ---------- Accessibility baseline ---------- */
:focus-visible {
  outline: 3px solid #1E96BE;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }

/* ---------- Fade-up reveal (used sparingly) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-in 0.7s ease forwards;
}
@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }

/* ---------- Signature: four-colour arc motif (echoes the Banareng mark) ---------- */
/* Used as section dividers/eyebrows on the corporate pages instead of a generic gradient bar */
.arc-quad {
  width: 56px;
  height: 28px;
  overflow: hidden;
  position: relative;
}
.arc-quad::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #7AB33E;
  border-right-color: #F0812B;
  border-bottom-color: #1E96BE;
  border-left-color: #006030;
  transform: rotate(20deg);
}

/* ---------- Velora gold hairline accent ---------- */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A860, transparent);
}

/* ---------- Print styles (privacy / terms pages) ---------- */
@media print {
  .no-print { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ---------- WhatsApp float button pulse (subtle, one-time) ---------- */
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-pulse { animation: wa-pulse 2.4s ease-out 1; }
