/* Room Detail Page - Completely Revamped Design */
/* This file extends the global styles.css with unique room detail layouts */

/* Hero Split Layout */
.hero-section {
  position: relative;
  padding: 6rem 2rem;
  color: var(--white);
  overflow: hidden;
  background-color: #0a2e1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(0.6) contrast(1.2);
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--soft-gold);
}

.hero-title hr {
  flex: 1;
  border: none;
  border-top: 1px solid var(--soft-gold);
  opacity: 0.6;
}

.hero-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  align-items: stretch;
}

.vertical-divider {
  width: 2px;
  opacity: 0.5;
}

.hero-card {
  width: 350px;
  max-width: 450px;
  background: var(--white);
  padding: 0;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Full-width image within card */
.room-image-full {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
}

.room-image-full .hero-swiper {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.room-image-full .hero-swiper img {
  border-radius: 0;
}

/* Content section styling */
.room-content-section {
  text-align: left;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Center the button */
.room-actions {
  text-align: center;
  margin-top: auto;
}

.hero-card h3,
.room-content-section h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  color: var(--deep-green);
  text-align: left;
}

.room-content-section .room-description {
  color: var(--light-gray);
  font-size: 0.95rem;
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-card p {
  color: var(--light-gray);
  font-size: 0.95rem;
  text-align: left;
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  font-size: 1.5rem;
  color: var(--soft-gold);
}

.hero-stats span {
  display: block;
  font-size: 0.75rem;
  color: #ccc;
}

.book-button {
  background-color: transparent;
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
  padding: 0.6rem 1.5rem;
  border-radius: 25px!important;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
  text-decoration: none !important;
}

.book-button:hover {
  background-color: var(--soft-gold);
  border-color: var(--soft-gold);
  color: white;
  text-decoration: none !important;
}

.hero-swiper {
  width: 100%;
  height: 200px;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .swiper-slide img,
.room-image-full .swiper-slide img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  display: block;
}

.swiper-slide:hover img {
  transform: scale(1.08);
  z-index: 1;
}

.hero-swiper .swiper-pagination {
  display: none !important;
}

@media (max-width: 900px) {
  .vertical-divider {
    display: none !important;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--soft-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.book-now-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--soft-gold);
  color: var(--white);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
}

.book-now-btn:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 170, 113, 0.4);
}

.book-now-btn i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.book-now-btn:hover i {
  transform: translateX(5px);
}

/* Desktop Mosaic */
.desktop-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  height: 100%;
}

/* Mobile Carousel */
.mobile-carousel {
  display: none;
  width: 100%;
  height: 100%;
}

.mobile-carousel .swiper {
  width: 100%;
  height: 100%;
}

.mobile-carousel .swiper-slide {
  width: 100%;
  height: 100%;
}

.mobile-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-carousel .swiper-pagination {
  bottom: 20px;
}

.mobile-carousel .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.7;
}

.mobile-carousel .swiper-pagination-bullet-active {
  background: var(--soft-gold);
  opacity: 1;
}

.mobile-carousel .swiper-button-next,
.mobile-carousel .swiper-button-prev {
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.mobile-carousel .swiper-button-next:hover,
.mobile-carousel .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Image Aspect Ratio Consistency */
.image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
}

.mosaic-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

/* Mobile Carousel Images */
.mobile-carousel .swiper-slide {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
}

.mobile-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Facility Section Images */
.facility-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Alternative Room Section Images */
.alt-room-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
}

.alt-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gallery Images (if any) */
.gallery-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Quick Info Panel */
.quick-info-panel {
  position: relative;
  z-index: 100;
  margin-top: -3rem;
  margin-bottom: 4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-item i {
  width: 40px;
  height: 40px;
  color: var(--soft-gold);
  flex-shrink: 0;
}

.info-item h4 {
  font-size: var(--font-header-sm);
  margin-bottom: 0.5rem;
  color: var(--deep-green);
}

.info-item p {
  font-size: var(--font-body-sm);
  color: var(--light-gray);
  margin: 0;
}

/* Facilities Section - Zigzag Layout */
.facilities-section {
  padding: 3rem 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.section-header p {
  font-size: var(--font-subheader);
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

.facilities-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.facility-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.facility-item.reverse {
  direction: rtl;
}

.facility-item.reverse .facility-content {
  direction: ltr;
}

.facility-content {
  padding: 2rem;
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: var(--soft-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.facility-icon i {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.facility-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.facility-content p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
}

.facility-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.facility-image:hover {
  transform: scale(1.05);
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Amenities Grid Section */
.amenities-section {
  padding: 4rem 0 0 0;
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.amenity-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 170, 113, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.amenity-card:hover::before {
  left: 100%;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  background: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
}

.amenity-icon svg {
  width: 35px;
  height: 35px;
  color: var(--soft-gold);
  stroke: var(--soft-gold);
}

.amenity-card h3 {
  font-size: var(--font-header-sm);
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.amenity-card p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  line-height: var(--line-height-relaxed);
}

/* Enhanced Amenities Tabs - For page-rooms.php */
.amenities-section .tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.amenities-section .tab-btn {
  padding: 1rem 2rem;
  border: 1px solid var(--soft-gold);
  background: var(--white);
  color: var(--deep-green);
  font-size: var(--font-body-md);
  font-weight: var(--font-medium);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.amenities-section .tab-btn:hover {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.amenities-section .tab-btn.active {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(2px);
}

/* Enhanced Amenities List View - For page-rooms.php */
.amenities-section .amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.amenities-section .amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
  padding: 0;
}

.amenities-section .amenity-item:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.8;
}

.amenities-section .amenity-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--soft-gold);
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  margin-top: 2px;
}

.amenities-section .amenity-item span {
  font-size: var(--font-body-md);
  color: var(--dark-gray);
  font-weight: var(--font-regular);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .amenities-section .tabs-wrapper {
    flex-direction: row; 
    gap: 1rem;
    padding: 0 1rem;
    padding-bottom: 1rem;
    justify-content: flex-start;
    scrollbar-width: thin;
    scrollbar-color: var(--soft-gold) var(--light-gray);
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    overflow-y: hidden;
  }
  
  .amenities-section .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-body-sm);
  }
  
  .amenities-section .amenities-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem;
  }
  
  .amenities-section .amenity-item {
    margin-bottom: 0.8rem;
    gap: 0.6rem;
  }
  
  .amenities-section .amenity-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}

@media (max-width: 480px) {
  .amenities-section .tabs-wrapper {
    align-items: center;
  }
  
  .amenities-section .tab-btn {
    padding: 0.75rem 1rem;
    font-size: var(--font-body-sm);
    min-width: 200px;
    text-align: center;
  }
}

/* Alternative Room Section */
.alternative-room-section {
  padding: 3rem 0;
  background: var(--off-white);
}

.alternative-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding-left: 0;
}

.alt-room-image {
  position: relative;
  overflow: hidden;
}

.alt-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alternative-room:hover .alt-room-image img {
  transform: scale(1.05);
}

.alt-room-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.alt-room-badge {
  background: var(--soft-gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alt-room-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-room-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.alt-room-content p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.alt-room-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.alt-room-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-body-sm);
  color: var(--light-gray);
}

.alt-room-features i {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
}

.alt-room-actions {
  display: flex;
  gap: 1rem;
}

.view-room-btn,
.book-alt-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: var(--font-body-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.view-room-btn {
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
}

.view-room-btn:hover {
  background: var(--deep-green);
  color: var(--white);
}

.book-alt-btn {
  background: var(--soft-gold);
  color: var(--white);
  border: 2px solid var(--soft-gold);
}

.book-alt-btn:hover {
  background: #b89a5f;
  border-color: #b89a5f;
}

/* Booking CTA Section */
.booking-cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: var(--font-subheader);
  margin-bottom: 3rem;
  opacity: 0.95;
  color: var(--white);
  line-height: var(--line-height-relaxed);
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--soft-gold);
  color: var(--white);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
}

.cta-button:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 170, 113, 0.4);
}

.cta-button i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* ========================================
   RESPONSIVE DESIGN - ALL MEDIA QUERIES BELOW
   ======================================== */

/* Tablet and Small Desktop (1024px and below) */
@media (max-width: 1024px) {

  .desktop-mosaic {
    height: 520px;
    width: 100%;
    max-width: unset;
  }

  .desktop-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .facility-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .facility-item.reverse {
    direction: ltr;
  }

  .alternative-room {
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0 2rem;
    gap: 0;
  }

  .alt-room-content {
    padding: 2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .alt-room-image {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

/* Mobile and Tablet (768px and below) */
@media (max-width: 768px) {


  .room-badge {
    margin-bottom: 1.5rem;
    background: var(--soft-gold);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }


  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .book-now-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-radius: 30px;
  }

  .mobile-carousel {
    display: block !important;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .mobile-carousel .swiper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  .mobile-carousel .swiper-slide {
    aspect-ratio: 16/10;
    position: relative;
  }

  .mobile-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-carousel .swiper-pagination {
    bottom: 15px;
  }

  .mobile-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--white);
    opacity: 0.6;
    margin: 0 4px;
  }

  .mobile-carousel .swiper-pagination-bullet-active {
    background: var(--soft-gold);
    opacity: 1;
    width: 20px;
    border-radius: 4px;
  }

  .mobile-carousel .swiper-button-next,
  .mobile-carousel .swiper-button-prev {
    display: none;
  }

  /* Hide desktop mosaic, show mobile carousel */
  .desktop-mosaic {
    display: none !important;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .alt-room-features {
    flex-direction: column;
    gap: 1rem;
  }

  .alt-room-actions {
    flex-direction: column;
  }

  .alternative-room {
    padding: 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .facility-content h3 {
    font-size: 1.8rem;
  }

  .alt-room-content h3 {
    font-size: 1.8rem;
  }

  .facilities-section,
  .amenities-section,
  .alternative-room-section,
  .booking-cta-section {
    padding: 1.5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .facility-item {
    margin-bottom: 4rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

  .hero {
    height: 45vh;
    min-height: 320px;
    margin-top: 60px;
    margin-bottom: 25px;
  }

  /* Hero Carousel */
  .hero-carousel {
    height: 100%;
  }

  /* Hero Slide */
  .hero-slide {
    height: 100%;
  }

  /* Hero Image Container - Full Cover on Mobile */
  .hero-image-container {
    background-color: var(--deep-green) !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
  }

  /* Hero Image - Full Size */
  .hero-image {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1 !important;
  }

  /* Hero Gradient Overlay */
  .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Hero Navigation Buttons - Smaller */
  .hero-navigation {
    padding: 0 15px;
  }

  .hero-nav-btn {
    width: 44px;
    height: 44px;
  }

  .hero-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Hero Controls - Smaller and Adjusted */
  .hero-controls {
    bottom: 20px;
    gap: 16px;
    animation: fadeInUp 0.8s ease 1.5s forwards;
  }

  /* Image Counter - Smaller */
  .hero-counter {
    padding: 8px 14px;
    border-radius: 25px;
  }

  .counter-current {
    font-size: 14px;
  }

  .counter-separator {
    width: 16px;
    margin: 0 8px;
  }

  .counter-total {
    font-size: 12px;
  }

  /* Gallery Link Button - Smaller */
  .gallery-link-btn {
    padding: 10px 16px;
    font-size: 11px;
    gap: 8px;
    border-radius: 40px;
  }

  .btn-icon svg,
  .btn-arrow svg {
    width: 13px;
    height: 13px;
  }

  /* Adjust fade-in animation timing */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  .room-badge {
    margin-bottom: 1.2rem;
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
  }


  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .book-now-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 25px;
  }

  .mobile-carousel {
    display: block !important;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .mobile-carousel .swiper {
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }

  .mobile-carousel .swiper-slide {
    aspect-ratio: 16/10;
    position: relative;
  }

  .mobile-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-carousel .swiper-pagination {
    bottom: 12px;
  }

  .mobile-carousel .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: var(--white);
    opacity: 0.6;
    margin: 0 3px;
  }

  .mobile-carousel .swiper-pagination-bullet-active {
    background: var(--soft-gold);
    opacity: 1;
    width: 16px;
    border-radius: 3px;
  }

  .mobile-carousel .swiper-button-next,
  .mobile-carousel .swiper-button-prev {
    display: none;
  }

  .book-now-btn,
  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .facility-content h3 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .alt-room-content h3 {
    font-size: 1.5rem;
  }

  .info-grid {
    padding: 0 1rem;
  }

  .facilities-zigzag {
    padding: 0;
  }

  .amenities-grid {
    padding: 0;
  }

  .alternative-room {
    padding: 0;
    margin: 0;
  }

  .cta-content {
    padding: 0 1rem;
  }

  .facilities-section,
  .amenities-section,
  .alternative-room-section,
  .booking-cta-section {
    padding: 1rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .facility-item {
    margin-bottom: 3rem;
  }

  .info-item {
    padding: 1.5rem;
  }

  .amenity-card {
    padding: 2rem;
  }

  .alt-room-content {
    padding: 1.5rem;
  }

  .facility-content {
    padding: 0;
  }

  /* Maintain aspect ratio for facility images on mobile */
  .facility-image {
    aspect-ratio: 4/3;
  }

  .facility-image img {
    width: 100%;
    height: 100%;
  }
}

/* WYIM (With You In Mind) Section - Based on Facilities Section */
.wyim-section {
  padding: 2rem 0;
  background: var(--white);
}

.wyim-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wyim-section .section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.wyim-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wyim-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.wyim-item.reverse {
  direction: rtl;
}

.wyim-item.reverse .wyim-content {
  direction: ltr;
}

.wyim-content {
  padding: 2rem;
}

.wyim-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
}

.wyim-content p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.wyim-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-gold);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-semibold);
  font-size: var(--font-body-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wyim-action-btn:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
}

.wyim-action-btn .action-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.wyim-action-btn:hover .action-arrow {
  transform: translateX(4px);
}

.wyim-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3; /* Consistent aspect ratio */
  height: auto; /* Allow height to adjust */
}

.wyim-image:hover {
  transform: scale(1.05);
}

.wyim-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wyim-swiper {
  height: 100%;
}

.wyim-swiper .swiper-slide {
  height: 100%;
}

.wyim-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wyim-swiper .swiper-pagination {
  bottom: 20px;
}

.wyim-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.6;
  width: 12px;
  height: 12px;
}

.wyim-swiper .swiper-pagination-bullet-active {
  background: var(--soft-gold);
  opacity: 1;
}

/* WYIM Responsive Design */
@media (max-width: 1024px) {
  .wyim-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wyim-item.reverse {
    direction: ltr;
  }

  .wyim-section .section-header h2 {
    font-size: 2.5rem;
  }

  /* Ensure consistent aspect ratio on tablet */
  .wyim-image {
    aspect-ratio: 4/3;
    height: auto;
  }
}

 .wyim-image-wrapper {
    order: -1; 
  }

  .wyim-content {
    order: 1; 
  }


@media (max-width: 768px) {
  .wyim-section {
    padding: 1.5rem 0;
  }
  
  .wyim-section .section-header {
    margin-bottom: 2rem;
  }

  .wyim-section .section-header h2 {
    font-size: 2rem;
  }

  .wyim-item {
    margin-bottom: 4rem;
  }

  .wyim-content h3 {
    font-size: 1.8rem;
  }

  /* Ensure consistent aspect ratio on mobile */
  .wyim-image {
    aspect-ratio: 4/3;
    height: auto;
  }
}

@media (max-width: 480px) {
  .wyim-section {
    padding: 1rem 1.5rem;
  }
  
  .wyim-section .section-header {
    margin-bottom: 1.5rem;
  }

  .wyim-section .section-header h2 {
    font-size: 1.5rem;
  }

  .wyim-item {
    margin-bottom: 3rem;
  }

  .wyim-content {
    padding: 0;
  }

  .wyim-content h3 {
    font-size: 1.5rem;
  }

  .wyim-zigzag {
    padding: 0;
  }

  /* Maintain aspect ratio for WYIM images on mobile */
  .wyim-image {
    aspect-ratio: 4/3;
    height: auto; /* Allow height to adjust */
  }

  .wyim-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure proper image fitting */
  }
}
