html {
  scroll-behavior: smooth;
}
.announcement-banner {
  background: linear-gradient(270deg, #0061FF 0%, #58E4FF 100%);
  padding: 9px 0;
  text-align: center;
}
.announcement-banner__text {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.public-navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.public-navbar .navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.public-navbar .navbar-brand__img {
  height: 53px;
  width: auto;
}
.public-navbar .navbar-nav .nav-link {
  color: #333;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}
.public-navbar .navbar-nav .nav-link:hover, .public-navbar .navbar-nav .nav-link.active {
  color: #0A5FD0;
}
.public-navbar .btn-book-now {
  background: linear-gradient(270deg, #0061FF 0%, #58E4FF 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.public-navbar .btn-book-now:hover {
  color: #fff;
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(0, 97, 255, 0.35);
}
.public-navbar .phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #0A5FD0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A5FD0;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.public-navbar .phone-icon:hover {
  background: #0A5FD0;
  color: #fff;
  text-decoration: none;
}
.public-navbar .navbar-toggler {
  border-color: rgba(10, 95, 208, 0.3);
  padding: 6px 10px;
  margin-right: 8px;
}
.public-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 95, 208, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
  .public-navbar .navbar-nav {
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .public-navbar .navbar-nav .nav-link {
    padding: 10px 16px !important;
  }
  .public-navbar .nav-right-actions {
    padding-top: 12px;
    padding-bottom: 8px;
    padding-left: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__logo {
  max-width: 1024px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.hero__video-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #F37920;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  align-self: center;
}
.hero__video-btn:hover {
  background: #fff;
  color: #F37920;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}
.hero__video-btn:hover .play-icon {
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(2000%) hue-rotate(5deg) brightness(95%);
}
.hero__video-btn .play-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero__card-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 25px 0;
}
.hero__seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}
.hero__seal {
  width: 110px;
  height: 110px;
}
.hero__video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.hero__video-modal.active {
  display: flex;
}
.hero__video-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
}
.hero__video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.hero__video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hero__video-close img {
  width: 32px;
  height: 32px;
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 500px;
    padding: 40px 0;
  }
  .hero__logo {
    max-width: 380px;
    margin-bottom: 30px;
  }
  .hero__left {
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
  }
  .hero__video-btn {
    align-self: center;
    font-size: 11px;
    padding: 9px 20px;
  }
  .hero__right {
    justify-content: center;
  }
  .hero__card-img {
    max-width: 360px;
  }
  .hero__seal {
    width: 78px;
    height: 78px;
  }
}
@media (max-width: 575.98px) {
  .hero {
    min-height: 420px;
  }
  .hero__logo {
    max-width: 280px;
    margin-bottom: 24px;
  }
  .hero__video-btn {
    font-size: 10px;
    padding: 8px 18px;
    gap: 8px;
  }
  .hero__video-btn .play-icon {
    width: 24px;
    height: 24px;
  }
  .hero__card-img {
    max-width: 300px;
  }
  .hero__seal {
    width: 66px;
    height: 66px;
  }
}

.deal-card {
  background: linear-gradient(270deg, #0061FF 0%, #58E4FF 100%);
  border-radius: 16px;
  border: 3px solid #85C1E9;
  overflow: visible;
  position: relative;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideInRight 0.7s ease-out both;
}
.deal-card__badge {
  text-align: center;
  margin-top: -18px;
  position: relative;
  z-index: 2;
}
.deal-card__badge-pill {
  display: inline-block;
  background: #F9DC00;
  color: #1a6fa0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 32px;
  border-radius: 50px;
  border: 2px solid #d4b800;
}
.deal-card__header {
  text-align: center;
  padding: 14px 20px 0;
}
.deal-card__hotel-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.deal-card__includes-banner {
  background: #F37920;
  text-align: center;
  padding: 8px 20px;
  margin: 12px 0 0;
  position: relative;
}
.deal-card__includes-banner::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 12px solid #F37920;
}
.deal-card__includes-text {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.deal-card__checklist {
  background: #fff;
  padding: 24px 24px 18px;
  margin: 0;
}
.deal-card__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}
.deal-card__checklist-item:nth-child(1) {
  animation-delay: 0.55s;
}
.deal-card__checklist-item:nth-child(2) {
  animation-delay: 0.7s;
}
.deal-card__checklist-item:nth-child(3) {
  animation-delay: 0.85s;
}
.deal-card__checklist-item:nth-child(4) {
  animation-delay: 1s;
}
.deal-card__checklist-item:last-child {
  margin-bottom: 0;
}
.deal-card__check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.deal-card__highlight {
  color: #2E86C1;
  font-weight: 700;
}
.deal-card__pricing {
  background: linear-gradient(270deg, #0061FF 0%, #58E4FF 100%);
  padding: 18px 24px 16px;
  text-align: center;
}
.deal-card__save-line {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.deal-card__save-percent {
  color: #F37920;
  font-size: 26px;
}
.deal-card__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.deal-card__price {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #F37920;
  line-height: 1;
  animation: pricePop 0.5s ease-out 0.8s both;
}
.deal-card__price-details {
  text-align: left;
}
.deal-card__per-couple {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #F37920;
  line-height: 1.2;
}
.deal-card__normal-rate {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}
.deal-card__old-price {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 2px 12px;
  border-radius: 4px;
  text-decoration: line-through;
  margin-top: 2px;
}
.deal-card__total-price {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 6px 0 2px;
}
.deal-card__disclaimer {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}
.deal-card__cta-wrapper {
  position: relative;
  padding: 0 16px;
  margin-bottom: -24px;
  margin-top: -1px;
}
.deal-card__cta {
  display: block;
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s ease;
  animation: ctaPulse 2.5s ease-in-out 1.5s infinite;
}
.deal-card__cta:hover {
  background: #e06a10;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .deal-card {
    max-width: 360px;
    margin: 0 auto;
  }
  .deal-card__hotel-name {
    font-size: 20px;
  }
  .deal-card__price {
    font-size: 54px;
  }
}
@media (max-width: 575.98px) {
  .deal-card {
    max-width: 320px;
  }
  .deal-card__hotel-name {
    font-size: 18px;
  }
  .deal-card__price {
    font-size: 48px;
  }
  .deal-card__cta {
    font-size: 18px;
    padding: 12px 16px;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pricePop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(243, 121, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(243, 121, 32, 0);
  }
}
.deal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}
.deal-modal.active {
  display: flex;
}
.deal-modal__content {
  position: relative;
  background: #fff;
  border: 5px solid #0A5FD0;
  border-radius: 12px;
  width: 90%;
  max-width: 560px;
  padding: 40px 40px 32px;
  animation: dealModalIn 0.3s ease-out;
}
.deal-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.deal-modal__close img {
  width: 36px;
  height: 36px;
}
.deal-modal__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.2;
}
.deal-modal__subtitle {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.4;
}
.deal-modal__form-wrapper {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px 24px;
}
.deal-modal__field {
  margin-bottom: 20px;
}
.deal-modal__label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.deal-modal__required {
  color: #e74c3c;
}
.deal-modal__input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}
.deal-modal__input::-moz-placeholder {
  color: #aaa;
}
.deal-modal__input::placeholder {
  color: #aaa;
}
.deal-modal__input:focus {
  border-color: #0A5FD0;
}
.deal-modal__submit {
  display: block;
  width: 100%;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}
.deal-modal__submit:hover {
  background: #e06a10;
}
@media (max-width: 575.98px) {
  .deal-modal__content {
    padding: 28px 20px 24px;
  }
  .deal-modal__title {
    font-size: 22px;
  }
  .deal-modal__subtitle {
    font-size: 14px;
  }
  .deal-modal__form-wrapper {
    padding: 20px 16px;
  }
  .deal-modal__submit {
    font-size: 16px;
  }
}

@keyframes dealModalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Section Navigation */
.section-nav {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
}
.section-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.section-nav__link {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0A5FD0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.section-nav__link:hover {
  color: #084ba8;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .section-nav__list {
    gap: 20px;
  }
  .section-nav__link {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .section-nav {
    padding: 14px 0;
  }
  .section-nav__list {
    gap: 14px 20px;
  }
  .section-nav__link {
    font-size: 12px;
  }
}

/* Resort Carousel */
.resort-carousel {
  background: #fff;
  padding: 12px 0;
  overflow: hidden;
}
.resort-carousel__container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.resort-carousel__track-wrapper {
  overflow: hidden;
}
.resort-carousel__track {
  display: flex;
  gap: 12px;
  will-change: transform;
}
.resort-carousel__track.is-animating {
  animation: carouselScroll var(--carousel-duration, 30s) linear infinite;
}
.resort-carousel__track.is-paused {
  animation-play-state: paused;
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
.resort-carousel__slide {
  flex: 0 0 320px;
  min-width: 0;
  cursor: pointer;
}
.resort-carousel__img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 384 / 288;
  border: 3px solid transparent;
  transition: border-color 0.25s ease;
}
.resort-carousel__img-wrapper:hover {
  border-color: #F37920;
}
.resort-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.resort-carousel__img-wrapper:hover .resort-carousel__img {
  transform: scale(1.08);
}
.resort-carousel__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  pointer-events: none;
}
.resort-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.resort-carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.25);
}
.resort-carousel__arrow--prev {
  left: 10px;
}
.resort-carousel__arrow--next {
  right: 10px;
}

/* Carousel Lightbox */
.carousel-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}
.carousel-lightbox.active {
  display: flex;
}
.carousel-lightbox__inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
}
.carousel-lightbox__img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.carousel-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.carousel-lightbox__close:hover {
  opacity: 1;
}
.carousel-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.7);
  background: rgba(50, 50, 50, 0.6);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.carousel-lightbox__nav:hover {
  background: rgba(50, 50, 50, 0.9);
  border-color: #fff;
}
.carousel-lightbox__nav--prev {
  left: -70px;
}
.carousel-lightbox__nav--next {
  right: -70px;
}

@media (max-width: 1199.98px) {
  .resort-carousel__slide {
    flex: 0 0 280px;
  }
}
@media (max-width: 991.98px) {
  .carousel-lightbox__nav--prev {
    left: -52px;
  }
  .carousel-lightbox__nav--next {
    right: -52px;
  }
}
@media (max-width: 767.98px) {
  .resort-carousel__slide {
    flex: 0 0 240px;
  }
  .resort-carousel__arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .carousel-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .carousel-lightbox__nav--prev {
    left: 8px;
  }
  .carousel-lightbox__nav--next {
    right: 8px;
  }
}
@media (max-width: 575.98px) {
  .resort-carousel {
    padding: 8px 0;
  }
  .resort-carousel__container {
    padding: 0 20px;
  }
  .resort-carousel__slide {
    flex: 0 0 260px;
  }
  .resort-carousel__arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .resort-carousel__arrow--prev {
    left: 4px;
  }
  .resort-carousel__arrow--next {
    right: 4px;
  }
}

/* What You Get & Why You Get It */
.what-why {
  background: #fff;
  padding: 60px 0 70px;
}
.what-why > .container {
  max-width: 1300px;
}
.what-why__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 40px;
}
.what-why__card {
  background: #f0f0f0;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.what-why__badge {
  padding: 24px 32px 0;
}
.what-why__badge-text {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  padding-bottom: 10px;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #58E4FF 0%, #0061FF 100%) 1;
}
.what-why__card-body {
  padding: 28px 32px 36px;
}
.what-why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.what-why__check {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 2px;
}
.what-why__label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.what-why__text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.what-why__view-more {
  display: inline-block;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0A5FD0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid #0A5FD0;
  padding: 6px 20px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}
.what-why__view-more:hover {
  background: #0A5FD0;
  color: #fff;
  text-decoration: none;
}
.what-why__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}
.what-why__cta {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 16px 60px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.what-why__cta:hover {
  opacity: 0.9;
  box-shadow: 0 4px 16px rgba(243, 121, 32, 0.4);
  color: #fff;
  text-decoration: none;
}
.what-why__separator {
  border: none;
  border-top: 1px solid #c0c0c0;
  margin: 28px 0;
}

/* Middle Deal Banner */
.mid-deal {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 0;
  text-align: center;
}
.mid-deal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 120, 0.7);
}
.mid-deal__heading {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.mid-deal__price {
  background: #FFE234;
  color: #1a3a7a;
  padding: 2px 16px;
  font-size: 52px;
}
.mid-deal__subtext {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.5;
}
.mid-deal__cta {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
  color: #FFE234;
  letter-spacing: 0.5px;
}
@media (max-width: 767.98px) {
  .mid-deal {
    padding: 40px 0;
  }
  .mid-deal__heading {
    font-size: 32px;
  }
  .mid-deal__price {
    font-size: 32px;
  }
  .mid-deal__subtext {
    font-size: 15px;
  }
  .mid-deal__cta {
    font-size: 14px;
  }
}

/* Pool-side Hotel Banner */
.pool-banner-wrapper {
  padding: 40px 0 0;
  background: #fff;
}
.pool-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 28px 0 32px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto;
}
.pool-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(220, 230, 245, 0.75);
  border-radius: 16px;
}
.pool-banner__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.pool-banner__text {
  flex: 1;
  padding-left: 170px;
}
.pool-banner__tagline {
  display: inline-block;
  background: linear-gradient(90deg, #58E4FF 0%, #0A5FD0 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  padding: 8px 28px;
  border-radius: 50px;
  margin: 0 0 8px;
}
.pool-banner__tagline em {
  color: #FFE234;
  font-style: italic;
}
.pool-banner__title {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #1a1a1a;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.pool-banner__desc {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #404143;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}
.pool-banner__price-card {
  flex-shrink: 0;
  background: #F9DC00;
  border-radius: 16px;
  padding: 12px 24px 16px;
  text-align: center;
  margin-right: 40px;
}
.pool-banner__duration {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  display: block;
  margin-bottom: 4px;
}
.pool-banner__amount-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pool-banner__dollar {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #0A5FD0;
}
.pool-banner__amount {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: #0A5FD0;
  line-height: 1;
}
.pool-banner__total-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pool-banner__total {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.pool-banner__only {
  background: #FF7701;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 14px;
  border-radius: 6px;
}
@media (max-width: 767.98px) {
  .pool-banner {
    padding: 36px 0;
  }
  .pool-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .pool-banner__text {
    padding-left: 0;
  }
  .pool-banner__price-card {
    margin-right: 0;
  }
  .pool-banner__tagline {
    font-size: 13px;
    padding: 6px 18px;
  }
  .pool-banner__title {
    font-size: 28px;
  }
  .pool-banner__desc {
    max-width: 100%;
    font-size: 13px;
  }
  .pool-banner__amount {
    font-size: 48px;
  }
}

/* Hotel Highlights & Nearby Attractions */
.highlights {
  background: #fff;
  padding: 60px 0 20px;
}
.highlights__heading {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 auto 8px;
  padding-bottom: 10px;
  display: table;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #58E4FF 0%, #0A5FD0 100%) 1;
  text-align: center;
}
.highlights__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.highlights__list li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #333;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlights__list li i {
  color: #299AF5;
  width: 22px;
  text-align: center;
  font-size: 18px;
}
.highlights__cta-wrapper {
  text-align: center;
  margin-top: 32px;
}
.highlights__cta {
  display: inline-block;
  background: linear-gradient(90deg, #58E4FF 0%, #0A5FD0 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  padding: 18px 80px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.2s, transform 0.15s;
}
.highlights__cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .highlights {
    padding: 40px 0 50px;
  }
  .highlights__heading {
    font-size: 22px;
  }
  .highlights__list li {
    font-size: 14px;
  }
  .highlights__cta {
    font-size: 18px;
    padding: 14px 48px;
  }
}

/* Reviews Section */
.reviews {
  background: #fff;
  padding: 0 0 10px;
}
.reviews__header {
  text-align: center;
  margin-bottom: 40px;
}
.reviews__ta-logo {
  height: 120px;
  margin-bottom: 12px;
}
.reviews__hotel-name {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #1a1a1a;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.reviews__rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.reviews__ta-rating {
  height: 40px;
}
.reviews__count {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
}
.reviews__purchased {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #555;
  letter-spacing: 1px;
  margin: 0;
}
.reviews .row {
  row-gap: 16px;
}
.reviews__card {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.reviews__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.reviews__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.reviews__verified-icon {
  height: 20px;
  display: block;
  margin-top: 4px;
}
.reviews__card-ta {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.reviews__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.reviews__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}
.reviews__stars {
  display: flex;
  gap: 3px;
}
.reviews__stars img {
  width: 20px;
  height: 20px;
}
.reviews__cta-wrapper {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 20px;
}
.reviews__cta {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 14px 50px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.2s, transform 0.15s;
}
.reviews__cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .reviews {
    padding: 40px 0 50px;
  }
  .reviews__hotel-name {
    font-size: 28px;
  }
  .reviews__count {
    font-size: 24px;
  }
  .reviews__purchased {
    font-size: 13px;
  }
  .reviews__cta {
    font-size: 20px;
    padding: 16px 48px;
  }
}

/* Our Gallery */
.our-gallery {
  background: #fff;
  padding: 40px 0 0;
}
.our-gallery__heading {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #1a1a1a;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-align: center;
}
.our-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.our-gallery__item {
  overflow: hidden;
  aspect-ratio: 1 / 0.75;
}
.our-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.our-gallery__item:hover .our-gallery__img {
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  .our-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-gallery__heading {
    font-size: 28px;
  }
}

/* Bottom Banner */
.bottom-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.bottom-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 80, 0.75);
}
.bottom-banner__heading {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  font-style: italic;
  margin: 0 0 32px;
  text-transform: uppercase;
  line-height: 1.2;
}
.bottom-banner__orange {
  color: #F37920;
}
.bottom-banner__cta-wrapper {
  text-align: center;
}
.bottom-banner__cta {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  padding: 18px 80px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.2s, transform 0.15s;
}
.bottom-banner__cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .bottom-banner {
    padding: 50px 0;
  }
  .bottom-banner__heading {
    font-size: 28px;
  }
  .bottom-banner__cta {
    font-size: 18px;
    padding: 14px 48px;
  }
}

/* Site Footer */
.site-footer {
  margin-top: 0;
}
.site-footer__urgency {
  background: #F37920;
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer__urgency-white {
  color: #fff;
}
.site-footer__urgency-black {
  color: #000;
}
.site-footer__body {
  background: #000;
  padding: 48px 0 40px;
}
.site-footer__logo {
  height: 100px;
  margin-bottom: 24px;
}
.site-footer__fulfilled {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #ccc;
  margin: 0 0 20px;
}
.site-footer__disclaimer {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}
.site-footer__copyright {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #ccc;
  margin: 20px 0 0;
}

@media (max-width: 991.98px) {
  .what-why {
    padding: 48px 0 56px;
  }
  .what-why__heading {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .what-why__badge-text {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  .what-why {
    padding: 36px 0 40px;
  }
  .what-why__heading {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .what-why__card-body {
    padding: 20px 20px 28px;
  }
  .what-why__badge-text {
    font-size: 16px;
  }
  .what-why__label {
    font-size: 18px;
  }
  .what-why__text {
    font-size: 14px;
  }
  .what-why__check {
    width: 32px;
    height: 32px;
  }
}

/* Bonuses Modal */
.bonuses-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  padding: 40px 16px;
}
.bonuses-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bonuses-modal__content {
  background: #fff;
  border-radius: 16px;
  max-width: 960px;
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}
.bonuses-modal__close {
  position: sticky;
  top: 12px;
  float: right;
  margin-right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  transition: color 0.2s;
}
.bonuses-modal__close:hover {
  color: #000;
}
.bonuses-modal__body {
  padding: 40px 40px 0;
}
.bonuses-modal__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  margin: 0 0 20px;
}
.bonuses-modal__text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 28px;
}
.bonuses-modal__reserve {
  display: block;
  background: #F37920;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.bonuses-modal__reserve:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}
.bonuses-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.bonuses-modal__package {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 0 0 16px 16px;
  padding: 24px 32px;
  margin-top: 32px;
  gap: 24px;
}
.bonuses-modal__price-circle {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border: 3px solid #F37920;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bonuses-modal__days {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
.bonuses-modal__nights {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #555;
  margin-top: -1px;
}
.bonuses-modal__dollar {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  position: relative;
  top: 6px;
}
.bonuses-modal__amount {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1a1a1a;
  line-height: 0.9;
}
.bonuses-modal__only {
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 9px;
  padding: 2px 10px;
  border-radius: 3px;
  position: absolute;
  bottom: 8px;
}
.bonuses-modal__details {
  flex: 1;
}
.bonuses-modal__hotel-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.bonuses-modal__check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #333;
}
.bonuses-modal__check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.bonuses-modal__total {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
.bonuses-modal__section {
  padding: 40px 40px;
}
.bonuses-modal__section:nth-child(even) {
  background: #fafafa;
}
.bonuses-modal__section-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 360px;
}
.bonuses-modal__section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}
.bonuses-modal__section-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 28px;
}
@media (max-width: 991.98px) {
  .bonuses-modal__section {
    padding: 32px 20px;
  }
  .bonuses-modal__section-img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .bonuses-modal__body {
    padding: 32px 20px 0;
  }
  .bonuses-modal__package {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .bonuses-modal__section-title {
    font-size: 22px;
  }
}

/* Hotel Details Page */
.hotel-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0 50px;
}
.hotel-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.hotel-hero > .container {
  max-width: 1140px;
}

/* Hotel Info Card */
.hotel-info__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.hotel-info__content {
  padding-right: 40px;
}
.hotel-info__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 24px;
}
.hotel-info__text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 32px;
}
.hotel-info__reserve-btn {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 16px 60px;
  margin-bottom: 24px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s ease;
}
.hotel-info__reserve-btn:hover {
  background: #e06a10;
  color: #fff;
  text-decoration: none;
}

/* Room Features Card */
.hotel-features {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  overflow: hidden;
}
.hotel-features__header {
  background: #2e5693;
  padding: 16px 28px;
  text-align: center;
}
.hotel-features__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0;
  font-style: italic;
}
.hotel-features__list {
  padding: 8px 0;
}
.hotel-features__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.hotel-features__item:last-child {
  border-bottom: none;
}
.hotel-features__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Package Summary Band (inside white card) */
.hotel-package__band {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.hotel-package__price-circle {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #0A5FD0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
}
.hotel-package__days {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #333;
  text-transform: uppercase;
}
.hotel-package__nights {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #333;
  margin-top: -2px;
}
.hotel-package__dollar {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #1a1a1a;
  position: absolute;
  left: 28px;
  top: 52px;
}
.hotel-package__amount {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: #1a1a1a;
  line-height: 1;
}
.hotel-package__only {
  position: absolute;
  bottom: 32px;
  left: -4px;
  background: #e74c3c;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
}
.hotel-package__total {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hotel-package__hotel-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.hotel-package__check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.hotel-package__check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Hotel Gallery */
.hotel-gallery {
  padding: 10px 0 0;
  overflow: hidden;
}
.hotel-gallery__track-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hotel-gallery__track-wrapper::-webkit-scrollbar {
  display: none;
}
.hotel-gallery__track {
  display: flex;
  gap: 12px;
}
.hotel-gallery__slide {
  flex: 0 0 296px;
  height: 197.33px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.2s ease;
}
.hotel-gallery__slide:hover,
.hotel-gallery__slide.active {
  border-color: #0A5FD0;
}
.hotel-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hotel-gallery__slide:hover .hotel-gallery__img {
  transform: scale(1.08);
}

.hotel-reserve-cta {
  text-align: center;
  padding: 40px 0 50px;
  background: #fff;
}
.hotel-reserve-cta .hotel-info__reserve-btn {
  font-size: 16px;
  padding: 12px 48px;
}

@media (max-width: 991.98px) {
  .hotel-info__content {
    padding-right: 0;
    margin-bottom: 32px;
  }
  .hotel-info__title {
    font-size: 26px;
  }
  .hotel-package__band {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}
@media (max-width: 575.98px) {
  .hotel-hero {
    padding: 24px 0 32px;
  }
  .hotel-info__card {
    padding: 24px 20px;
  }
  .hotel-info__title {
    font-size: 22px;
  }
  .hotel-info__reserve-btn {
    font-size: 16px;
    padding: 14px 40px;
  }
  .hotel-package__band {
    padding: 20px 16px;
    gap: 16px;
  }
  .hotel-package__price-circle {
    width: 120px;
    height: 120px;
  }
  .hotel-package__amount {
    font-size: 42px;
  }
  .hotel-gallery__slide {
    flex: 0 0 240px;
    height: 160px;
  }
}

body.public-page {
  font-family: "Poppins", sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}
body.public-page h1, body.public-page h2, body.public-page h3, body.public-page h4, body.public-page h5, body.public-page h6 {
  font-family: "Oswald", sans-serif;
}

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #f5f5f5;
  overflow-y: auto;
  display: none;
}
.booking-modal.active {
  display: block;
}

.booking-modal__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* Header */
.booking-modal__header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  padding: 20px 28px;
  margin: 0 -16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.booking-modal__close img {
  width: 28px;
  height: 28px;
}
.booking-modal__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.booking-modal__hotel-name {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
}
.booking-modal__hotel-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px;
}
.booking-modal__header-checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.booking-modal__header-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.booking-modal__header-check img {
  width: 18px;
  height: 18px;
}
.booking-modal__header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  margin-right: 40px;
}
.booking-modal__tripadvisor {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-modal__ta-logo {
  height: 28px;
}
.booking-modal__ta-rating {
  height: 22px;
}
.booking-modal__header-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.booking-modal__price-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.booking-modal__price-current {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #E8573A;
  line-height: 1;
}
.booking-modal__price-per {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}
.booking-modal__price-bottom {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}
.booking-modal__price-original {
  color: #999;
  text-decoration: line-through;
}

/* Tabs */
.booking-modal__tabs {
  display: flex;
  gap: 0;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.booking-modal__tab {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-modal__tab.active {
  color: #333;
  border-bottom-color: #E8573A;
}
.booking-modal__tab-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.booking-modal__tab.active .booking-modal__tab-number {
  background: #E8573A;
}

/* Tab Content */
.booking-modal__tab-content {
  display: none;
}
.booking-modal__tab-content.active {
  display: block;
}

/* Cards */
.booking-modal__card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.booking-modal__card-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 18px;
}

/* Form fields */
.booking-modal__field {
  margin-bottom: 16px;
}
.booking-modal__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.booking-modal__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #333;
  transition: border-color 0.2s;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}
.booking-modal__input:focus {
  outline: none;
  border-color: #0A5FD0;
}
.booking-modal__input.is-invalid {
  border-color: #e74c3c;
}
.booking-modal__errors {
  background: #fef2f2;
  border: 1px solid #e74c3c;
  border-radius: 8px;
  color: #c0392b;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
}
select.booking-modal__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23666'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Consent */
.booking-modal__consent {
  margin: 20px 0;
}
.booking-modal__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  cursor: pointer;
}
.booking-modal__consent-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}
.booking-modal__consent-link {
  color: #E8573A;
  text-decoration: underline;
  font-weight: 600;
}

/* CTA Button */
.booking-modal__btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #E8573A;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}
.booking-modal__btn:hover {
  opacity: 0.9;
}

/* Urgency text */
.booking-modal__urgency-text {
  text-align: center;
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #E8573A;
}
.booking-modal__urgency-text i {
  margin-right: 4px;
}

/* Date Toggle */
/* Date header row: title left, toggle right */
.booking-modal__date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.booking-modal__date-header .booking-modal__card-title {
  margin-bottom: 0;
}
.booking-modal__toggle {
  position: relative;
  display: inline-block;
  cursor: pointer;
  flex-shrink: 0;
}
.booking-modal__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.booking-modal__toggle-track {
  position: relative;
  display: flex;
  align-items: center;
  width: 90px;
  height: 42px;
  background: #d1d1d1;
  border-radius: 42px;
  border: 3px solid #e2e2e2;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.booking-modal__toggle-label {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
  transition: opacity 0.25s ease;
  user-select: none;
}
.booking-modal__toggle-label--yes {
  left: 12px;
  opacity: 0;
  color: #fff;
}
.booking-modal__toggle-label--no {
  right: 12px;
  opacity: 1;
  color: #777;
}
.booking-modal__toggle-knob {
  position: absolute;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Checked (Yes) state */
.booking-modal__toggle input:checked + .booking-modal__toggle-track {
  background: #E8573A;
  border-color: #f0cdc5;
}
.booking-modal__toggle input:checked + .booking-modal__toggle-track .booking-modal__toggle-label--yes {
  opacity: 1;
}
.booking-modal__toggle input:checked + .booking-modal__toggle-track .booking-modal__toggle-label--no {
  opacity: 0;
}
.booking-modal__toggle input:checked + .booking-modal__toggle-track .booking-modal__toggle-knob {
  transform: translateX(50px);
}

/* Date Fields */
.booking-modal__date-fields {
  display: none;
  margin-bottom: 20px;
}
.booking-modal__date-fields.visible {
  display: block;
}

/* Booking Calendar */
.bcal__month {
  margin-bottom: 16px;
}
.bcal__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 8px;
}
.bcal__nav-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #E8573A;
  cursor: pointer;
  padding: 4px 10px;
  position: absolute;
}
.bcal__nav-btn--prev { left: 0; }
.bcal__nav-btn--next { right: 0; }
.bcal__month-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}
.bcal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 0;
}
.bcal__dow {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}
.bcal__day {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
  user-select: none;
}
.bcal__day:hover {
  color: #E8573A;
}
.bcal__day--start:hover,
.bcal__day--end:hover {
  color: #fff;
}
.bcal__day--in-range:hover {
  color: #b91c1c;
}
.bcal__day--empty {
  cursor: default;
}
.bcal__day--past {
  color: #cbd5e1;
  cursor: default;
}
.bcal__day--past:hover {
  color: #cbd5e1;
}
.bcal__day--in-range {
  background: #fce0da;
  color: #b91c1c;
}
.bcal__day--start {
  color: #fff;
  position: relative;
  z-index: 1;
}
.bcal__day--start::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: #E8573A;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.bcal__day--end {
  color: #fff;
  position: relative;
  z-index: 1;
}
.bcal__day--end::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: #E8573A;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
/* Range edge rounding */
.bcal__day--start.bcal__day--in-range {
  border-radius: 50% 0 0 50%;
  background: linear-gradient(to right, transparent 50%, #fce0da 50%);
}
.bcal__day--end.bcal__day--in-range {
  border-radius: 0 50% 50% 0;
  background: linear-gradient(to left, transparent 50%, #fce0da 50%);
}
/* Check-in/out summary */
.bcal__summary {
  display: flex;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
  margin-top: 8px;
}
.bcal__summary-col {
  flex: 1;
  text-align: center;
}
.bcal__summary-divider {
  width: 1px;
  height: 40px;
  background: #d1d5db;
}
.bcal__summary-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.bcal__summary-date {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #58E4FF;
  margin-top: 2px;
}

/* Seals */
.booking-modal__seals {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 12px;
}
.booking-modal__seals img {
  width: 80px;
  height: auto;
}
.booking-modal__seal-text {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Payment Tab - Safe Checkout */
.booking-modal__safe-checkout {
  text-align: center;
  margin: 16px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #28a745;
}
.booking-modal__payment-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 28px;
  color: #888;
  margin: 10px 0;
}
.booking-modal__security-text {
  text-align: center;
  font-size: 11px;
  color: #999;
  line-height: 1.5;
  margin: 10px 0 0;
}

/* Timer */
.booking-modal__timer-label {
  font-size: 13px;
  color: #888;
  margin: 0 0 4px;
}
.booking-modal__timer {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #E8573A;
  text-align: center;
  margin: 0 0 12px;
}
.booking-modal__timer-urgency {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0 0 24px;
}

/* Price Details */
.booking-modal__price-details {
  margin-bottom: 24px;
}
.booking-modal__price-title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px;
}
.booking-modal__price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #eee;
}
.booking-modal__price-total {
  background: #f8f8f8;
  padding: 10px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: #333;
  border-bottom: none;
  margin-top: 4px;
}

/* Booking Details Summary */
.booking-modal__booking-details {
  margin-top: 0;
}
.booking-modal__detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: #555;
}
.booking-modal__detail-row span:first-child {
  font-weight: 600;
  color: #444;
}

/* ==========================================================================
   Booking Modal – Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
  .booking-modal__header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-modal__header-right {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .booking-modal__header {
    padding: 16px;
  }
  .booking-modal__hotel-name {
    font-size: 18px;
  }
  .booking-modal__price-current {
    font-size: 36px;
  }
  .booking-modal__card {
    padding: 20px 16px;
  }
  .booking-modal__tab {
    font-size: 13px;
    padding: 12px 10px;
  }
  .booking-modal__timer {
    font-size: 36px;
  }
  .booking-modal__seals img {
    width: 64px;
  }
  .booking-modal__header-checks {
    flex-direction: column;
    gap: 6px;
  }
}

/* ==========================================================================
   Show Tickets Page
   ========================================================================== */
.show-tickets {
  padding: 60px 0 0;
  background: #f5f5f5;
}
.show-tickets__card {
  background: #fff;
  border-radius: 12px;
  padding: 48px 44px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.show-tickets__title {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 24px;
}
.show-tickets__text {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 36px;
}
.show-tickets__text strong {
  color: #222;
}
.show-tickets__reserve-btn {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 480px;
}
.show-tickets__reserve-btn:hover {
  background: #e06a10;
  color: #fff;
  text-decoration: none;
}
.show-tickets__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.show-tickets__banner {
  background: #0A5FD0;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 18px 24px;
  margin-top: 32px;
  border-radius: 0 0 12px 12px;
}

/* Show Card */
.show-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-top: 32px;
  overflow: hidden;
}
.show-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 12px 0 8px 0;
  z-index: 1;
}
.show-card__top-border {
  height: 4px;
  background: #F37920;
}
.show-card__body {
  padding: 36px 40px 40px;
}
.show-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.show-card__name {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: #333;
  margin: 0;
}
.show-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.show-card__stars {
  height: 24px;
  margin-bottom: 4px;
}
.show-card__reviews {
  font-size: 12px;
  color: #888;
}
.show-card__content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.show-card__img-wrapper {
  flex-shrink: 0;
  width: 220px;
}
.show-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.show-card__info {
  flex: 1;
}
.show-card__text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 24px;
}
.show-card__book-btn {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s ease;
}
.show-card__book-btn:hover {
  background: #e06a10;
  color: #fff;
  text-decoration: none;
}

/* Additional Shows Grid */
.show-additional__heading {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #222;
  text-align: center;
  margin: 48px 0 28px;
}
.show-additional__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 24px 20px 0;
  text-align: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.show-additional__name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: #0A5FD0;
  margin: 0 0 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-additional__stars {
  height: 20px;
  display: block;
  margin: 0 auto 4px;
}
.show-additional__reviews {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 16px;
}
.show-additional__img {
  width: calc(100% + 40px);
  margin: 0 -20px;
  height: 180px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .show-tickets__card {
    padding: 32px 24px;
  }
  .show-tickets__title {
    font-size: 28px;
  }
  .show-tickets__right {
    margin-top: 28px;
  }
  .show-card__body {
    padding: 28px 24px 32px;
  }
  .show-card__content {
    flex-direction: column;
  }
  .show-card__img-wrapper {
    width: 100%;
  }
  .show-card__img {
    height: 220px;
  }
}
@media (max-width: 575.98px) {
  .show-tickets {
    padding: 32px 0 0;
  }
  .show-tickets__card {
    padding: 24px 18px;
  }
  .show-tickets__title {
    font-size: 24px;
  }
  .show-tickets__text {
    font-size: 15px;
  }
  .show-tickets__reserve-btn {
    font-size: 18px;
    padding: 14px 32px;
  }
  .show-tickets__banner {
    font-size: 16px;
    padding: 14px 16px;
  }
  .show-card__body {
    padding: 24px 18px 28px;
  }
  .show-card__header {
    flex-direction: column;
    gap: 12px;
  }
  .show-card__rating {
    align-items: flex-start;
  }
  .show-card__name {
    font-size: 19px;
  }
  .show-card__book-btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px 32px;
  }
}

/* ==========================================================================
   Amenities Page
   ========================================================================== */
.amenities {
  padding: 60px 0;
  background: #f5f5f5;
}
.amenities__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Hero */
.amenities__hero {
  padding: 48px 44px;
}
.amenities__title {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 24px;
}
.amenities__text {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 36px;
}
.amenities__text strong {
  color: #222;
}
.amenities__reserve-btn {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 16px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 480px;
}
.amenities__reserve-btn:hover {
  background: #e06a10;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243,121,32,0.35);
}
.amenities__hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.amenities__hero-img:hover {
  transform: scale(1.03);
}

/* Deal Summary Bar */
.amenities__deal-bar {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px 40px;
  margin: 0 44px 48px;
}
.amenities__price-circle {
  position: relative;
  width: 160px;
  height: 160px;
  border: 4px solid #0A5FD0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 4px;
}
.amenities__price-days {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A5FD0;
  letter-spacing: 1px;
}
.amenities__price-nights {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A5FD0;
  letter-spacing: 1px;
  margin-top: -2px;
}
.amenities__price-amount {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #222;
  line-height: 0.9;
}
.amenities__price-amount sup {
  font-size: 22px;
  position: relative;
  top: -14px;
  margin-right: -2px;
}
.amenities__price-only {
  position: absolute;
  bottom: 32px;
  left: -8px;
  background: #F37920;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}
.amenities__price-total {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
}
.amenities__deal-hotel {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px;
}
.amenities__deal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenities__deal-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 5px 0;
}
.amenities__deal-list li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Amenity Sections (zigzag) */
.amenities__section {
  padding: 48px 44px;
  border-top: 1px solid #eee;
}
.amenities__section--last {
  padding-bottom: 48px;
}
.amenities__section-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.amenities__section-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.amenities__section-title {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  font-style: italic;
  margin: 0 0 20px;
}
.amenities__section-text {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 36px;
}
.amenities__section-btn {
  display: inline-block;
  background: #F37920;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 16px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.amenities__section-btn:hover {
  background: #e06a10;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243,121,32,0.35);
}

/* Amenities Animations */
@keyframes amenityFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.amenities__section {
  animation: amenityFadeUp 0.6s ease both;
}
.amenities__section:nth-child(3) { animation-delay: 0s; }
.amenities__section:nth-child(4) { animation-delay: 0.1s; }
.amenities__section:nth-child(5) { animation-delay: 0.15s; }
.amenities__section:nth-child(6) { animation-delay: 0.2s; }
.amenities__section:nth-child(7) { animation-delay: 0.25s; }
.amenities__section:nth-child(8) { animation-delay: 0.3s; }

.amenities__deal-bar {
  transition: box-shadow 0.3s ease;
}
.amenities__deal-bar:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.amenities__price-circle {
  transition: transform 0.3s ease;
}
.amenities__price-circle:hover {
  transform: scale(1.05);
}

.amenities__deal-list li {
  transition: transform 0.2s ease;
}
.amenities__deal-list li:hover {
  transform: translateX(4px);
}

/* Amenities Responsive */
@media (max-width: 991.98px) {
  .amenities__hero {
    padding: 32px 24px;
  }
  .amenities__title {
    font-size: 28px;
  }
  .amenities__hero-img {
    margin-top: 24px;
  }
  .amenities__deal-bar {
    margin: 0 24px 32px;
    padding: 24px 20px;
  }
  .amenities__section {
    padding: 32px 24px;
  }
  .amenities__section-title {
    font-size: 24px;
    margin-top: 24px;
  }
  .amenities__section-img {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .amenities {
    padding: 32px 0;
  }
  .amenities__hero {
    padding: 24px 18px;
  }
  .amenities__title {
    font-size: 24px;
  }
  .amenities__deal-bar {
    margin: 0 18px 24px;
    padding: 20px 16px;
  }
  .amenities__price-circle {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  .amenities__price-amount {
    font-size: 40px;
  }
  .amenities__deal-hotel {
    font-size: 20px;
  }
  .amenities__section {
    padding: 24px 18px;
  }
  .amenities__section-title {
    font-size: 22px;
  }
  .amenities__reserve-btn,
  .amenities__section-btn {
    font-size: 18px;
    padding: 14px 32px;
  }
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--right {
  transform: translateX(30px);
}
.reveal--fade {
  transform: none;
}
.reveal--pop {
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal--visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }
[data-reveal-delay="4"] { transition-delay: 400ms; }
[data-reveal-delay="5"] { transition-delay: 500ms; }
[data-reveal-delay="6"] { transition-delay: 600ms; }
[data-reveal-delay="7"] { transition-delay: 700ms; }
[data-reveal-delay="8"] { transition-delay: 800ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
