:root {
  --svr-primary: #8f1c23;
  --svr-primary-dark: #5c1116;
  --svr-gold: #cfa15b;
  --svr-cream: #fff8ef;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--svr-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--svr-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--svr-primary-dark);
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.arch-frame {
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 200px;
}

.testimonial-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  margin: 0 -20px;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #fff5df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  pointer-events: auto;
}

.testimonial-arrow:hover {
  background: #f7c95c;
  color: #5c1116;
  border-color: #f7c95c;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-stars {
  color: #f7c95c;
  letter-spacing: 0.15rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}

.testimonial-dot.active {
  width: 26px;
  background: #f7c95c;
  border-color: #f7c95c;
}

.gallery-card {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: transform 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 5, 8, 0.86);
  backdrop-filter: blur(4px);
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  position: relative;
  width: min(1100px, 94vw);
}

.gallery-lightbox-image {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.gallery-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
}

.gallery-lightbox-prev {
  left: 0.75rem;
}

.gallery-lightbox-next {
  right: 0.75rem;
}

.attraction-gallery-carousel {
  position: relative;
}

.attraction-gallery-viewport {
  overflow: hidden;
}

.attraction-gallery-track {
  display: flex;
  transition: transform 0.45s ease;
}

.attraction-gallery-slide {
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
  flex: 0 0 100%;
}

.attraction-gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid #f3dcc0;
  display: block;
}

.attraction-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(92, 17, 22, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: #5c1116;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.attraction-gallery-arrow.prev {
  left: -0.75rem;
}

.attraction-gallery-arrow.next {
  right: -0.75rem;
}

.attraction-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.attraction-gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid #d8a262;
  background: #fdeedb;
  transition: all 0.2s ease;
}

.attraction-gallery-dot.active {
  width: 22px;
  background: #8f1c23;
  border-color: #8f1c23;
}

.about-collage {
  position: relative;
  min-height: 430px;
}

.about-collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 4px solid #fff7ec;
  box-shadow: 0 22px 40px rgba(92, 17, 22, 0.2);
  transition: transform 0.35s ease;
}

.about-collage-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.about-collage-main {
  top: 18px;
  left: 8%;
  width: 60%;
  height: 295px;
  z-index: 2;
}

.about-collage-top {
  top: -6px;
  right: 4%;
  width: 42%;
  height: 180px;
  z-index: 3;
}

.about-collage-bottom {
  bottom: 0;
  right: 12%;
  width: 50%;
  height: 200px;
  z-index: 4;
}

.jd-reviews-badge {
  margin-top: 25px;
}

.vwss-badge-wrap {
  width: 100%;
  display: flex !important;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .about-collage {
    min-height: unset;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .about-collage-card {
    position: relative;
    width: 100%;
    height: 220px;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: auto;
  }

  .about-collage-main {
    grid-column: span 2 / span 2;
  }

  .attraction-gallery-arrow.prev {
    left: 0.1rem;
  }

  .attraction-gallery-arrow.next {
    right: 0.1rem;
  }

  .testimonial-track {
    min-height: 250px;
  }

  a.fixed.bottom-6.right-6.bg-\[\#25D366\].hover\:bg-\[\#1ebd5c\].text-white.px-5.py-3.rounded-full.shadow-\[0_4px_14px_0_rgba\(37\,211\,102\,0\.39\)\].hover\:-translate-y-1.transition-all.duration-300.z-50.inline-flex.items-center.gap-2.font-semibold {
    transform: translateY(-45px);
  }

  a.fixed.bottom-6.right-6.bg-\[\#25D366\].hover\:bg-\[\#1ebd5c\].text-white.px-5.py-3.rounded-full.shadow-\[0_4px_14px_0_rgba\(37\,211\,102\,0\.39\)\].hover\:-translate-y-1.transition-all.duration-300.z-50.inline-flex.items-center.gap-2.font-semibold span {
    display: none;
  }

}

@media only screen and (max-width: 600px) {
  .testimonial-track {
    min-height: 400px;
  }

  a.fixed.bottom-6.right-6.bg-\[\#25D366\].hover\:bg-\[\#1ebd5c\].text-white.px-5.py-3.rounded-full.shadow-\[0_4px_14px_0_rgba\(37\,211\,102\,0\.39\)\].hover\:-translate-y-1.transition-all.duration-300.z-50.inline-flex.items-center.gap-2.font-semibold {
    transform: translateY(-45px);
  }

  a.fixed.bottom-6.right-6.bg-\[\#25D366\].hover\:bg-\[\#1ebd5c\].text-white.px-5.py-3.rounded-full.shadow-\[0_4px_14px_0_rgba\(37\,211\,102\,0\.39\)\].hover\:-translate-y-1.transition-all.duration-300.z-50.inline-flex.items-center.gap-2.font-semibold span {
    display: none;
  }

}