/* Custom Styles & Utilities */
body {
  background-color: #FBF7EF;
  color: #1F2933;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

.glass-nav {
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.glass-nav-scrolled {
  box-shadow: 0 10px 30px -10px rgba(18, 55, 42, 0.08);
  border-bottom-color: rgba(173, 188, 159, 0.3);
}

.floating-card-1 {
  animation: floatSmooth 6s ease-in-out infinite alternate;
}

.floating-card-2 {
  animation: floatSmooth 7s ease-in-out 1.5s infinite alternate;
}

.floating-card-3 {
  animation: floatSmooth 6.5s ease-in-out 3s infinite alternate;
}

@keyframes floatSmooth {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 15px 30px -5px rgba(34, 197, 94, 0.6); }
}
.wa-pulse {
  animation: softPulse 3s ease-in-out infinite;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.price-strike {
  text-decoration: line-through;
}

.lightbox,
#siteLightbox {
  display: none !important;
}
.lightbox.is-open,
#siteLightbox.is-open {
  display: flex !important;
}

.testimonial-swiper {
  padding: 8px 48px 12px;
}
.testimonial-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: stretch;
}
.testimonial-swiper .swiper-slide {
  height: auto;
}
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  color: #1F2933;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(18, 55, 42, 0.12);
}
.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}
.testimonial-swiper .swiper-button-prev {
  left: 0;
}
.testimonial-swiper .swiper-button-next {
  right: 0;
}

@media (prefers-reduced-motion: reduce) {
  .floating-card-1,
  .floating-card-2,
  .floating-card-3,
  .wa-pulse {
    animation: none;
  }
}
