/* Booking motion only: preserves existing guide and quiz typography/layout. */
.bfb-booking-highlight,
body.bfb-motion-only .header .appointment-button a.btn-default,
body.bfb-motion-only .floating-cta a.btn-default { position: relative; overflow: hidden; isolation: isolate; animation: bfb-booking-glow 4s ease-in-out infinite; }
.bfb-booking-highlight::after,
body.bfb-motion-only .header .appointment-button a.btn-default::after,
body.bfb-motion-only .floating-cta a.btn-default::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 25%, rgba(245,170,115,.4) 50%, transparent 75%); transform: translateX(-150%); animation: bfb-booking-shimmer 5s ease-in-out infinite; }
@keyframes bfb-booking-glow { 0%, 100% { box-shadow: 0 0 8px 2px rgba(134,38,51,.32), 0 0 16px rgba(184,112,82,.16), inset 0 0 0 rgba(255,215,190,0); } 50% { box-shadow: 0 0 18px 5px rgba(134,38,51,.66), 0 0 30px 8px rgba(184,112,82,.32), inset 0 0 16px rgba(245,170,115,.12); } }
@keyframes bfb-booking-shimmer { 0%, 8% { transform: translateX(-150%); } 88%, 100% { transform: translateX(150%); } }
@media (prefers-reduced-motion: reduce) { .bfb-booking-highlight,body.bfb-motion-only .header .appointment-button a.btn-default,body.bfb-motion-only .floating-cta a.btn-default { animation: none; } .bfb-booking-highlight::after,body.bfb-motion-only .header .appointment-button a.btn-default::after,body.bfb-motion-only .floating-cta a.btn-default::after { animation: none; content: none; } }
