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

/* Hero Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 0 4rem;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  color: var(--white);
  position: relative;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.room-badge {
  display: inline-block;
  background: var(--soft-gold);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.hero-description {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: 3rem;
  opacity: 0.95;
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.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);
}

.hero-right {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* 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);
}

.room-hero-swiper {
  width: 100%;
  height: 100%;
}

.room-hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

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

/* Swiper Navigation Styling */
.room-hero-next,
.room-hero-prev {
  color: var(--white) !important;
  background: rgba(0, 0, 0, 0.3);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.room-hero-next:hover,
.room-hero-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

.room-hero-pagination {
  bottom: 20px !important;
}

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

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

/* 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: 1200px;
  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: 6rem 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: 6rem 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);
}

/* Alternative Room Section */
.alternative-room-section {
  padding: 6rem 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: 6rem 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) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-left {
    padding: 4rem 2rem;
    min-height: 60vh;
  }

  .hero-right {
    padding: 2rem;
    min-height: 40vh;
    width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .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) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  }

  .hero-left {
    padding: 3rem 2rem 2rem;
    min-height: auto;
    background: transparent;
    text-align: center;
  }

  .hero-left::before {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 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;
  }

  .hero-right {
    padding: 2rem 1.5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 30px 30px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  }

  .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: 4rem 0;
  }

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

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

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  }

  .hero-left {
    padding: 2.5rem 1.5rem 1.5rem;
    min-height: auto;
    background: transparent;
    text-align: center;
  }

  .hero-left::before {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .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;
  }

  .hero-right {
    padding: 1.5rem 1rem 1.5rem;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 25px 25px 0 0;
    margin-top: -15px;
    position: relative;
    z-index: 2;
    box-shadow: none;
  }

  .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: 3rem 2rem;
  }

  .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%;
  }
}
