.modern-hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.modern-hero-section .hero-container {
  display: flex;
  height: 100%;
  gap: 1rem;
  padding: 0;
  width: 100%;
  margin: 0;
}
.modern-hero-section .hero-container .hero-main {
  flex: 1.1;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.modern-hero-section .hero-container .hero-main .hero-main-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.modern-hero-section .hero-container .hero-main .hero-main-content .hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.modern-hero-section .hero-container .hero-main .hero-main-content .hero-main-image:hover {
  transform: scale(1.02);
}
.modern-hero-section .hero-container .hero-main .hero-main-content .deal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.modern-hero-section .hero-container .hero-secondary {
  flex: 0.8;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.modern-hero-section .hero-container .hero-secondary .hero-secondary-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.modern-hero-section .hero-container .hero-secondary .hero-secondary-content .hero-secondary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.modern-hero-section .hero-container .hero-secondary .hero-secondary-content .hero-secondary-image:hover {
  transform: scale(1.02);
}
.modern-hero-section .hero-container .hero-side-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image.top {
  flex: 1;
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image.bottom {
  flex: 1;
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image img:hover {
  transform: scale(1.05);
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image .gallery-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image .gallery-button svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.modern-hero-section .hero-container .hero-side-images .hero-side-image .gallery-button:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
  .modern-hero-section {
    height: 60vh;
  }
  .modern-hero-section .hero-container {
    padding: 0;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .modern-hero-section {
    height: auto;
    min-height: 400px;
  }
  .modern-hero-section .desktop-hero {
    display: none;
  }
  .modern-hero-section .mobile-hero-carousel {
    display: block;
    height: 50vh;
    min-height: 300px;
  }
  .modern-hero-section .mobile-hero-carousel .item {
    height: 50vh;
    min-height: 300px;
    position: relative;
  }
  .modern-hero-section .mobile-hero-carousel .item .mobile-hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .modern-hero-section .mobile-hero-carousel .item .mobile-hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .modern-hero-section .mobile-hero-carousel .item .mobile-hero-image-container .deal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
}
@media (min-width: 769px) {
  .modern-hero-section .mobile-hero-carousel {
    display: none;
  }
  .modern-hero-section .desktop-hero {
    display: flex;
  }
}
@media (max-width: 480px) {
  .modern-hero-section .hero-container {
    padding: 0;
    gap: 0.25rem;
  }
  .modern-hero-section .hero-container .hero-main .hero-main-content .deal-badge {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
  .modern-hero-section .hero-container .hero-side-images .hero-side-image .gallery-button {
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
  .modern-hero-section .hero-container .hero-side-images .hero-side-image .gallery-button svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.container-hotel-title .slider-highlight {
  @media screen and (max-width: 768px) {
    margin-top: -2rem;
    margin-left: -2rem;
    transform: translateX(1rem);
  }
}

/* Full-size carousel thumbnail fixes */
.full-size-carousel-container .full-size-carousel .owl-carousel.mobile-owl-carousel .owl-item .item {
  height: 5rem !important;
}

.full-size-carousel-container .full-size-carousel .owl-carousel.mobile-owl-carousel .owl-item .item img {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Full-size carousel close button positioning */
.full-size-carousel-container .full-size-carousel .selected-image-container .close-carousel {
  top: 1.5rem !important;
  right: 0.5rem !important;
}