/* ============================================================
   BOAM SUITE — Main Stylesheet
   Extracted from boamsuite.be source
   ============================================================ */

/* ============================================================
   GOOGLE FONTS
   Loaded via <link> in HTML — Cormorant Garamond + Nunito
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   --color-terracotta: #9F3926
   --color-cream:      #FDFBF7
   --color-charcoal:   #2C1A12
   --color-gold:       #D4AF37
   --color-sage:       #A8D5D0
   --color-blush:      #F5EDE3
   ============================================================ */

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

input, textarea, select {
  font-size: 16px; /* prevent iOS zoom */
}

img {
  max-width: 100%;
  height: auto;
}

/* Prevent scroll when mobile menu is open */
body.menu-is-open {
  overflow: hidden !important;
}

/* Custom text selection */
::selection {
  background: #9F3926;
  color: #FDFBF7;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FDFBF7; }
::-webkit-scrollbar-thumb { background: #9F3926; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #7d2d1e; }

/* Hide Aura builder badges */
[data-aura-badge],
.aura-badge,
a[href*="aura.build"],
div[class*="aura"] {
  display: none !important;
}

/* No scrollbar utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================================
   MOROCCAN PATTERN OVERLAY (body pseudo)
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0zM40 20L60 40L40 60L20 40L40 20z' fill='%239F3926' fill-opacity='1'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%239F3926' stroke-width='1'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #9F3926, #D4AF37, #9F3926);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: 9998;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   BOAM BUTTON & BADGE SHAPE
   ============================================================ */
.boam-btn,
.boam-badge,
[class*="rounded-tr-xl"][class*="rounded-bl-xl"] {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: rgba(253, 251, 247, 0.2) !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
  border-bottom-right-radius: 0 !important;
}

/* Gallery buttons uniform style */
#gallery .group .absolute.bottom-0 > div:first-child {
  background: rgba(107, 45, 62, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #FDFBF7 !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid rgba(253, 251, 247, 0.2) !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
  border-bottom-right-radius: 0 !important;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
}

.gradient-border {
  position: relative;
  background: white;
  border: 1px solid rgba(159, 57, 38, 0.1);
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* Ripple */
.ripple-container { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

/* Blob shapes */
.blob-1 {
  animation: blobMorph1 20s ease-in-out infinite;
  filter: blur(60px);
}
.blob-2 {
  animation: blobMorph2 25s ease-in-out infinite;
  filter: blur(60px);
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }
.stagger-7 { transition-delay: 0.7s !important; }
.stagger-8 { transition-delay: 0.8s !important; }

/* Hero load animations */
.reveal-load-1 { opacity: 0; animation: fadeSlideIn 0.8s ease 0.2s forwards; }
.reveal-load-2 { opacity: 0; animation: fadeSlideIn 0.8s ease 0.4s forwards; }
.reveal-load-3 { opacity: 0; animation: fadeSlideIn 0.8s ease 0.6s forwards; }
.reveal-load-4 { opacity: 0; animation: fadeSlideIn 0.8s ease 0.8s forwards; }

/* ============================================================
   HOVER EFFECTS
   ============================================================ */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(159, 57, 38, 0.12);
}

.hover-glow {
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(159, 57, 38, 0.15);
}

.icon-hover-bounce:hover .icon-animated { animation: iconBounce 0.6s ease; }
.icon-hover-float .icon-animated { animation: iconFloat 3s ease-in-out infinite; }

/* Button animations */
.btn-pulse { animation: pulseGlow 2s ease-in-out infinite; }
.btn-attention { animation: ctaAttention 3s ease-in-out infinite; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-tilt {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.gallery-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-float { animation: testimonialFloat 6s ease-in-out infinite; }
.testimonial-float:nth-child(2) { animation-delay: -2s; }
.testimonial-float:nth-child(3) { animation-delay: -4s; }
.avatar-animated { animation: avatarRing 2s ease-out infinite; }
.star-animated { opacity: 0; animation: starPop 0.4s ease forwards; }
.star-animated:nth-child(1) { animation-delay: 0.1s; }
.star-animated:nth-child(2) { animation-delay: 0.2s; }
.star-animated:nth-child(3) { animation-delay: 0.3s; }
.star-animated:nth-child(4) { animation-delay: 0.4s; }
.star-animated:nth-child(5) { animation-delay: 0.5s; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-featured { animation: pricingHighlight 4s ease-in-out infinite; }

/* ============================================================
   MAP
   ============================================================ */
.map-animate iframe { animation: mapZoomIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both; }

/* ============================================================
   NAVIGATION — DESKTOP
   ============================================================ */
.nav-link-new { position: relative; }
.nav-link-new::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #9F3926;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link-new:hover::after,
.nav-link-new.active-link::after { transform: scaleX(1); }
.nav-link-new.active-link { color: #9F3926 !important; }

#headerCtaBtn:hover { animation: none !important; }
.mob-nav-link.mob-active { color: rgba(253, 251, 247, 0.5) !important; }

/* ============================================================
   NAVIGATION — MOBILE HAMBURGER
   ============================================================ */
#boamHamburger .hbar {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C1A12;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
#boamHamburger .hbar-mid { width: 18px; margin-left: auto; }
#boamHamburger:hover .hbar { background: #9F3926; }
#boamHamburger:hover .hbar-mid { width: 24px; }

#boamHamburger.is-active .hbar-top {
  transform: translateY(9px) rotate(45deg);
  background: #FDFBF7;
}
#boamHamburger.is-active .hbar-mid {
  opacity: 0;
  transform: scaleX(0);
  width: 24px;
}
#boamHamburger.is-active .hbar-bot {
  transform: translateY(-9px) rotate(-45deg);
  background: #FDFBF7;
}
#boamHamburger.is-active {
  background: rgba(159, 57, 38, 0.2) !important;
  backdrop-filter: blur(8px);
}

/* Hamburger lines (alternate selector used in source) */
.hamburger-line { transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6); }
#boamMenuOpen:hover .hamburger-line:nth-child(1) { transform: translateY(-2px); }
#boamMenuOpen:hover .hamburger-line:nth-child(3) { transform: translateY(2px); }

@media (min-width: 1024px) {
  #boamMobileMenu, #boamMenuOpen, #boamHamburger, #boamMobileOverlay {
    display: none !important;
  }
}

/* ============================================================
   NAVIGATION — MOBILE OVERLAY MENU
   ============================================================ */
#boamMobileOverlay {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.4s ease;
}
#boamMobileOverlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.4s ease;
}
#boamMobileOverlay .menu-backdrop {
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}
#boamMobileOverlay.is-open .menu-backdrop {
  opacity: 1;
  backdrop-filter: blur(12px);
}
#boamMobileOverlay .menu-panel {
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#boamMobileOverlay.is-open .menu-panel { transform: translateX(0); }

/* Moroccan pattern inside mobile menu */
.menu-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0zM40 20L60 40L40 60L20 40L40 20z' fill='%23D4AF37' fill-opacity='1'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3C/svg%3E");
}

/* Mobile menu link stagger */
#boamMobileOverlay .boam-mobile-link { opacity: 0; transform: translateY(30px) translateX(20px); }
#boamMobileOverlay.is-open .boam-mobile-link {
  animation: mobileLinkStagger 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
#boamMobileOverlay.is-open .boam-mobile-link:nth-child(1) { animation-delay: 0.15s; }
#boamMobileOverlay.is-open .boam-mobile-link:nth-child(2) { animation-delay: 0.22s; }
#boamMobileOverlay.is-open .boam-mobile-link:nth-child(3) { animation-delay: 0.29s; }
#boamMobileOverlay.is-open .boam-mobile-link:nth-child(4) { animation-delay: 0.36s; }
#boamMobileOverlay.is-open .boam-mobile-link:nth-child(5) { animation-delay: 0.43s; }

.boam-mobile-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.boam-mobile-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #9F3926);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.boam-mobile-link:hover::after,
.boam-mobile-link.is-current::after { width: 100%; }
.boam-mobile-link:hover { transform: translateX(8px) !important; color: #D4AF37 !important; }
.boam-mobile-link:hover .boam-mobile-icon { color: #D4AF37 !important; transform: scale(1.15); }
.boam-mobile-link .boam-mobile-icon { transition: all 0.3s ease; }
.boam-mobile-link.is-current { color: #D4AF37 !important; }
.boam-mobile-link.is-current .boam-mobile-icon { color: #D4AF37 !important; }

/* Mobile menu logo */
#boamMobileOverlay .menu-logo { opacity: 0; transform: translateY(-20px) scale(0.9); }
#boamMobileOverlay.is-open .menu-logo {
  animation: mobileLogoReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.05s forwards;
}

/* Mobile menu deco line */
#boamMobileOverlay .menu-deco-line { width: 0; opacity: 0; }
#boamMobileOverlay.is-open .menu-deco-line {
  animation: mobileDecoLine 0.6s ease 0.3s forwards;
}

/* Mobile menu CTA */
#boamMobileOverlay .menu-cta { opacity: 0; transform: translateY(20px); }
#boamMobileOverlay.is-open .menu-cta {
  animation: mobileLinkStagger 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}
#boamMobileOverlay.is-open .menu-cta-btn { animation: mobileCTAPulse 2.5s ease-in-out 1.2s infinite; }

/* Mobile menu social icons */
#boamMobileOverlay .menu-social-icon { opacity: 0; transform: scale(0.5); }
#boamMobileOverlay.is-open .menu-social-icon:nth-child(1) { animation: mobileSocialPop 0.4s ease 0.6s forwards; }
#boamMobileOverlay.is-open .menu-social-icon:nth-child(2) { animation: mobileSocialPop 0.4s ease 0.7s forwards; }
#boamMobileOverlay.is-open .menu-social-icon:nth-child(3) { animation: mobileSocialPop 0.4s ease 0.8s forwards; }
.menu-social-icon { transition: transform 0.3s ease, background 0.3s ease; }
.menu-social-icon:hover { transform: scale(1.2) !important; background: rgba(212, 175, 55, 0.2) !important; }

/* Mobile menu close button */
#boamMenuClose { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
#boamMenuClose:hover { transform: rotate(90deg) scale(1.1); background: rgba(253, 251, 247, 0.15); }

/* Mobile menu glow dots */
.menu-glow-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: mobileGlowDot 4s ease-in-out infinite;
}

/* Mobile menu footer */
#boamMobileOverlay .menu-footer { opacity: 0; }
#boamMobileOverlay.is-open .menu-footer { animation: mobileLinkStagger 0.5s ease 0.7s forwards; }

/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 767px) {
  .animate-marquee-rtl,
  .animate-marquee-ltr { width: max-content; }

  section, main, footer, header { overflow-x: hidden; max-width: 100vw; }

  #amenities .animate-in.stagger-delay-2.relative.mt-10.h-64 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  #amenities .animate-in.stagger-delay-2.relative.mt-10.h-64 svg {
    max-width: 100%;
    height: auto;
    width: auto !important;
  }
  #amenities .animate-in.stagger-delay-1 { justify-content: center !important; }
}

/* Step line — desktop shows horizontal, mobile shows vertical */
@media (max-width: 767px) {
  .step-line-container { display: none; }
  .step-line-container-mobile {
    display: block;
    position: absolute;
    left: 50%;
    top: 5rem;
    bottom: 5rem;
    width: 2px;
    transform: translateX(-50%);
    border-left: 2px dashed rgba(159, 57, 38, 0.3);
    overflow: hidden;
    z-index: 0;
  }
  .step-line-container-mobile .step-line-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #9F3926, #D4A373, transparent);
    animation: connectionFlowVertical 3s linear infinite;
  }
}
@media (max-width: 639px) {
  .step-line-container-mobile {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: rgba(159, 57, 38, 0.15);
    border-radius: 9999px;
    overflow: hidden;
    z-index: 0;
  }
  .step-line-container-mobile .step-line-glow {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #9F3926, #D4A373, transparent);
    border-radius: 9999px;
    animation: mobileLineFlow 3s linear infinite;
  }
}
@media (min-width: 640px) {
  .step-line-container-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .step-line-container-mobile { display: none !important; }
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

/* Marquee */
@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.animate-marquee-rtl { animation: marquee-rtl 45s linear infinite; }
.animate-marquee-ltr { animation: marquee-ltr 45s linear infinite; }

/* Shimmer */
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.animate-shimmer { animation: shimmer 2s infinite; }

/* Fade + slide */
@keyframes fadeSlideIn {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideInLeft {
  0%   { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideInRight {
  0%   { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* FadeSlideIn with delays (section A) */
.animate-fadeSlideIn             { animation: fadeSlideIn 0.8s ease-out forwards; }
.animate-fadeSlideIn-delay-1     { animation: fadeSlideIn 0.8s ease-out 0.1s forwards; opacity: 0; }
.animate-fadeSlideIn-delay-2     { animation: fadeSlideIn 0.8s ease-out 0.2s forwards; opacity: 0; }
.animate-fadeSlideIn-delay-3     { animation: fadeSlideIn 0.8s ease-out 0.3s forwards; opacity: 0; }
.animate-fadeSlideIn-delay-4     { animation: fadeSlideIn 0.8s ease-out 0.4s forwards; opacity: 0; }
.animate-fadeSlideIn-delay-5     { animation: fadeSlideIn 0.8s ease-out 0.5s forwards; opacity: 0; }

/* Scale */
@keyframes scaleIn {
  0%   { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Blob morphs */
@keyframes blobMorph1 {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) rotate(0deg); }
  33%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(30px, -20px) rotate(120deg); }
  66%       { border-radius: 50% 60% 30% 60% / 40% 70% 50% 60%; transform: translate(-20px, 20px) rotate(240deg); }
}
@keyframes blobMorph2 {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0) rotate(0deg); }
  33%       { border-radius: 60% 30% 50% 40% / 70% 40% 60% 30%; transform: translate(-25px, 15px) rotate(-120deg); }
  66%       { border-radius: 30% 50% 40% 60% / 60% 30% 50% 70%; transform: translate(15px, -25px) rotate(-240deg); }
}

/* Floating particle */
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10%       { opacity: 0.6; }
  90%       { opacity: 0.6; }
  100%      { transform: translateY(-100vh) translateX(50px) rotate(720deg); opacity: 0; }
}

/* Gradient shift */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(159, 57, 38, 0); }
}

/* CTA attention */
@keyframes ctaAttention {
  0%, 90%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.4); }
  95%           { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(159, 57, 38, 0); }
}

/* CTA gradient */
@keyframes ctaGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes boamCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(159, 57, 38, 0); }
}

/* Icon animations */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-8px); }
  50%       { transform: translateY(-4px); }
  70%       { transform: translateY(-6px); }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes iconContainerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.2); }
  50%       { box-shadow: 0 0 0 10px rgba(159, 57, 38, 0); }
}

/* Ripple */
@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* Feature reveal */
@keyframes featureReveal {
  0%   { opacity: 0; transform: translateY(50px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Gallery */
@keyframes galleryGridReveal {
  0%   { opacity: 0; transform: scale(0.85); filter: blur(8px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes overlaySlideUp {
  0%   { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

/* Testimonials */
@keyframes testimonialFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-5px) rotate(0.5deg); }
  75%       { transform: translateY(-3px) rotate(-0.5deg); }
}
@keyframes avatarRing {
  0%   { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(159, 57, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0); }
}
@keyframes starPop {
  0%   { opacity: 0; transform: scale(0) rotate(-180deg); }
  70%  { transform: scale(1.2) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Reveal lines */
@keyframes lineReveal {
  0%   { opacity: 0; transform: translateY(20px); clip-path: inset(0 0 100% 0); }
  100% { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}
@keyframes frameReveal {
  0%   { opacity: 0; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  100% { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
@keyframes lineDraw {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* Map */
@keyframes mapZoomIn {
  0%   { opacity: 0; transform: scale(1.1); filter: blur(5px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes pinDrop {
  0%   { opacity: 0; transform: translateY(-50px); }
  60%  { transform: translateY(10px); }
  80%  { transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Pricing */
@keyframes pricingHighlight {
  0%, 100% { box-shadow: 0 10px 40px rgba(159, 57, 38, 0.1); }
  50%       { box-shadow: 0 20px 60px rgba(159, 57, 38, 0.2); }
}

/* Badge */
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-5px) rotate(2deg); }
}

/* Hero */
@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}
@keyframes heroGradientShift {
  0%   { opacity: 0.5; }
  50%  { opacity: 0.7; }
  100% { opacity: 0.5; }
}
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-15px); }
  60%  { transform: translateY(-7px); }
}
@keyframes mouseWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* MoveDot (welcome cards) */
@keyframes moveDot {
  0%, 100% { top: 10%; right: 10%; }
  25%       { top: 10%; right: calc(100% - 35px); }
  50%       { top: calc(100% - 30px); right: calc(100% - 35px); }
  75%       { top: calc(100% - 30px); right: 10%; }
}

/* Step line flow */
@keyframes connectionFlow {
  0%   { transform: translateX(-200px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 200px)); opacity: 0; }
}
@keyframes connectionFlowVertical {
  0%   { transform: translateY(-200px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(calc(100% + 200px)); opacity: 0; }
}
@keyframes mobileLineFlow {
  0%   { top: -60px; }
  100% { top: 100%; }
}

/* Mobile menu animations */
@keyframes mobileMenuSlideIn {
  0%   { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes mobileMenuSlideOut {
  0%   { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes mobileLinkStagger {
  0%   { opacity: 0; transform: translateY(30px) translateX(20px); }
  100% { opacity: 1; transform: translateY(0) translateX(0); }
}
@keyframes mobileCTAPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(159, 57, 38, 0); }
}
@keyframes mobileLogoReveal {
  0%   { opacity: 0; transform: translateY(-20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes mobileSocialPop {
  0%   { opacity: 0; transform: scale(0.5); }
  70%  { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes mobileDecoLine {
  0%   { width: 0; opacity: 0; }
  100% { width: 60px; opacity: 1; }
}
@keyframes mobileGlowDot {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.5); }
}

/* ============================================================
   TARIFS PAGE — SPECIFIC STYLES
   ============================================================ */

/* Animated gradient background (hero tarifs) */
.animated-gradient {
  background: linear-gradient(135deg, #F5EDE3, #FDFBF7, #F5EDE3, #f0e4d6);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Typewriter effect */
.typewriter-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #9F3926;
  width: 0;
  animation: typewriter 2.5s steps(30, end) 0.8s forwards,
             blinkCaret 0.8s step-end infinite;
}

/* Pricing cards */
.pricing-card-featured { animation: pricingHighlight 4s ease-in-out infinite; }
.price-animated        { animation: priceReveal 0.8s ease forwards; }

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(159, 57, 38, 0.15);
}

/* Formule cards */
.formule-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.formule-card:hover { transform: translateY(-8px) scale(1.02); }
.formule-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.formule-card:hover::before { opacity: 1; }

.formule-float        { animation: floatUp 4s ease-in-out infinite; }
.formule-float-delay  { animation: floatUp 4s ease-in-out 0.5s infinite; }
.formule-float-delay2 { animation: floatUp 4s ease-in-out 1s infinite; }

.pulse-glow-anim { animation: pulseGlowCard 3s ease-in-out infinite; }
.badge-bounce    { animation: badgeBounce 2s ease-in-out infinite; }
.urgency-pulse   { animation: urgencyPulse 2s ease-in-out infinite; }

/* Shimmer overlay for featured card */
.shimmer-bg {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmerBg 3s linear infinite;
}

/* Formule carousel (mobile: horizontal scroll / desktop: grid) */
.formule-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0;
}
.formule-carousel::-webkit-scrollbar { display: none; }
.formule-carousel > .formule-slide {
  scroll-snap-align: center;
  flex: 0 0 85%;
  max-width: 380px;
}

@media (min-width: 768px) {
  .formule-carousel {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .formule-carousel > .formule-slide {
    flex: none;
    max-width: none;
  }
}

/* Carousel dots */
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(159, 57, 38, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}
.carousel-dot.active {
  background: #9F3926;
  width: 28px;
  border-radius: 5px;
}

/* Ribbon (card badge) */
.ribbon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 85px;
  height: 85px;
  overflow: hidden;
  z-index: 10;
}
.ribbon {
  position: absolute;
  top: 18px;
  right: -22px;
  width: 110px;
  text-align: center;
  transform: rotate(45deg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 0;
}

/* Btn shimmer effect */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.btn-shimmer:hover::before { animation: shimmer 1.5s infinite; }

/* Toast container */
#toastContainer {
  position: fixed;
  top: 5rem;
  right: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

/* Extras iframe */
.booking-iframe-wrapper {
  width: 100%;
  border: none;
  border-radius: 0 1.5rem 0.5rem 0.5rem;
  overflow: hidden;
  min-height: 700px;
}

/* ============================================================
   TARIFS PAGE — EXTRA KEYFRAMES
   ============================================================ */
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blinkCaret {
  0%, 100% { border-color: #9F3926; }
  50%       { border-color: transparent; }
}
@keyframes fadeSlideInHero {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseGlowCard {
  0%, 100% { box-shadow: 0 0 0 0 rgba(159, 57, 38, 0.3); }
  50%       { box-shadow: 0 0 30px 10px rgba(159, 57, 38, 0.15); }
}
@keyframes badgeBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%       { transform: translate(-50%, -6px); }
}
@keyframes shimmerBg {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
@keyframes priceReveal {
  0%   { opacity: 0; transform: translateY(-20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes featureSlideIn {
  0%   { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes checkPop {
  0%   { opacity: 0; transform: scale(0); }
  50%  { transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   GALLERY PAGE — SPECIFIC STYLES
   ============================================================ */

/* Gallery items */
.gallery-item {
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover {
  transform: perspective(1000px) rotateX(1deg) rotateY(-1deg) translateY(-4px);
}

/* Image zoom container */
.img-zoom-container { overflow: hidden; }
.img-zoom-container img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  width: 100%;
  height: auto;
}
.img-zoom-container:hover img { transform: scale(1.08); }

/* View badge */
.view-badge {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .view-badge {
  opacity: 1;
  transform: scale(1);
}

/* Filter buttons */
.filter-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background-color: transparent;
  color: #6B5B4E;
}
.filter-btn:hover {
  background-color: #F5EDE3;
  color: #9F3926;
}
.filter-btn.active {
  background-color: #9F3926;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transform: scale(1.05);
}
.filter-btn.active:hover { background-color: #7A2D1E; }

/* Float slow (decorative dots) */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50%       { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}
.float-slow { animation: floatSlow 6s ease-in-out infinite; }

/* Gallery animations */
@keyframes imageReveal {
  0%   { opacity: 0; transform: scale(0.88) translateY(30px); filter: blur(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0);       filter: blur(0); }
}
@keyframes gridShuffle {
  0%   { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes lightboxOpen {
  0%   { opacity: 0; transform: scale(0.7); filter: blur(20px); }
  100% { opacity: 1; transform: scale(1);  filter: blur(0); }
}
@keyframes lightboxClose {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.8); }
}
@keyframes slideNext {
  0%   { opacity: 0; transform: translateX(80px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slidePrev {
  0%   { opacity: 0; transform: translateX(-80px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Lightbox */
#boamLightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#boamLightbox.active { display: flex; }
#boamLightbox .lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#boamLightbox .lb-img {
  position: relative;
  z-index: 10;
  max-height: 85vh;
  max-width: 90vw;
  width: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#boamLightbox.closing .lb-img { animation: lightboxClose 0.3s ease forwards; }
#boamLightbox .lb-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 251, 247, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FDFBF7;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
#boamLightbox .lb-nav-btn:hover {
  background: rgba(159, 57, 38, 0.8);
  border-color: rgba(159, 57, 38, 0.5);
}
#boamLightbox .lb-prev { left: 16px; }
#boamLightbox .lb-next { right: 16px; }
#boamLightbox .lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  z-index: 10;
}
#boamLightbox .lb-caption {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  z-index: 10;
  white-space: nowrap;
}
#boamLightbox .lb-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(253, 251, 247, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FDFBF7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#boamLightbox .lb-close-btn:hover {
  background: rgba(159, 57, 38, 0.8);
  transform: rotate(90deg) scale(1.1);
}

/* ============================================================
   FAQ PAGE — SPECIFIC STYLES
   ============================================================ */

.faq-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(159, 57, 38, 0.08), 0 4px 20px rgba(0,0,0,0.04) !important;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
}
.faq-chevron {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-item.active {
  border-color: rgba(159, 57, 38, 0.3) !important;
  background: linear-gradient(135deg, rgba(159, 57, 38, 0.03), rgba(168, 213, 208, 0.05)) !important;
}

.cat-tab {
  transition: all 0.3s ease;
  cursor: pointer;
}
.cat-tab.active {
  background: #9F3926 !important;
  color: #FDFBF7 !important;
  border-color: #9F3926 !important;
}
.cat-tab:not(.active):hover {
  background: rgba(159, 57, 38, 0.08);
  border-color: rgba(159, 57, 38, 0.3);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT PAGE — SPECIFIC STYLES
   ============================================================ */

/* Float label */
.float-group { position: relative; }
.float-group input,
.float-group textarea {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.float-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  padding: 0 4px;
  background: transparent;
}
.float-group textarea ~ label {
  top: 24px;
  transform: translateY(0);
}
.float-group input:focus ~ label,
.float-group input:not(:placeholder-shown) ~ label,
.float-group textarea:focus ~ label,
.float-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  transform: translateY(0);
  font-size: 0.75rem;
  font-weight: 600;
  color: #9F3926;
  background: white;
  letter-spacing: 0.05em;
}
.float-group input:focus,
.float-group textarea:focus {
  border-color: #9F3926 !important;
  box-shadow: 0 0 0 4px rgba(159, 57, 38, 0.08), 0 0 20px rgba(159, 57, 38, 0.05) !important;
}

/* Contact cards */
.contact-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(159, 57, 38, 0.12);
  border-color: rgba(159, 57, 38, 0.3) !important;
}
.contact-card:hover .card-icon { animation: iconBounce 0.6s ease; }
.contact-card:hover .card-icon-inner { background: #9F3926 !important; }
.contact-card:hover .card-icon-inner iconify-icon { color: #FDFBF7 !important; }
.card-icon-inner { transition: background 0.4s ease; }

/* Social icons */
.social-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
  background: #9F3926 !important;
  box-shadow: 0 8px 20px rgba(159, 57, 38, 0.25);
}
.social-icon:hover iconify-icon { color: #FDFBF7 !important; }

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(253, 251, 247, 0.3);
  border-top-color: #FDFBF7;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Validation states */
.valid-check { animation: checkPop 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.shake { animation: shakeError 0.5s ease-in-out; }

/* Map container */
.map-container iframe {
  animation: mapZoomIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

/* Toast */
.toast-in  { animation: toastIn  0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.toast-out { animation: toastOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* ============================================================
   CONTACT PAGE — EXTRA KEYFRAMES
   ============================================================ */
@keyframes checkPop {
  0%   { transform: scale(0) rotate(-45deg); opacity: 0; }
  50%  { transform: scale(1.3) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes shakeError {
  0%, 100%                         { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90%          { transform: translateX(-6px); }
  20%, 40%, 60%, 80%               { transform: translateX(6px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes toastIn {
  0%   { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}
@keyframes toastOut {
  0%   { transform: translateX(0);    opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* ============================================================
   FOOTER — GLOBAL
   ============================================================ */
.boam-footer {
  position: relative;
  overflow: hidden;
}
.boam-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0zM40 20L60 40L40 60L20 40L40 20z' fill='%23D4AF37' fill-opacity='1'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3C/svg%3E");
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .animate-marquee-rtl,
  .animate-marquee-ltr,
  .animate-shimmer,
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .blob-1, .blob-2,
  .particle,
  .testimonial-float,
  .avatar-animated,
  .star-animated,
  .btn-pulse,
  .btn-attention,
  .hover-lift,
  .icon-hover-float .icon-animated {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
