main.rooms {
    background-color: #f9fafb;
}

.rooms-hero {
    font-family: 'Cormorant Garamond', Georgia, serif;  
    background-color: var(--bg-color);
    color: var(--primary-lighter);
    padding: 4rem 2rem;
    text-align: center;
}

.rooms-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.rooms-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.room-highlights {
  background: var(--primary-lighter);
  color: var(--bg-color);
  padding: 1rem 0;
  border-bottom: 1px solid #e0f2e9;
  margin-bottom: 2.5em;
}

.highlights-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.highlight-icon {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 4px 10px rgba(10, 70, 31, 0.1);
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid var(--secondary-color);
}

.highlight-text h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.highlight-text p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 970px) {
  .highlights-wrapper, .features {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 550px) {
  .highlights-wrapper, .features {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

/* Room Sections */
.rooms-section .wrapper {
max-width: 1150px;
}

.section-title {
  font-size: 2rem;
  color: var(--bg-color);
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #dbeafe;
  margin-left: 15px;
}

/* Carousel */
.carousel {
  position: relative;
  height: 550px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blurred-frame {
  width: 100%;
  height: 100%;
  filter: blur(3px) brightness(0.4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; 
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  transition: opacity 0.5s;
  position: absolute;
  top: 0;
}

.carousel img.active {
  display: block;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 70, 31, 0.6);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel button:hover {
  background: rgba(10, 70, 31, 0.9);
}

.carousel .prev {
  left: 20px;
}

.carousel .next {
  right: 20px;
}

/* Room Cards */
.room-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.room {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.room h3 {
  font-size: 1.5rem;
  color: var(--bg-color);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.room h3 svg {
  color: var(--secondary-color);
}

.room ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.room ul li {
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
}

.room ul li svg {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.rooms-section .book-now-btn {
  margin-top: 50px;
  padding: 1.2em;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
  border-radius: 20px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature svg {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--bg-lighter);
}

.feature p {
  color: #5b5b5b;
  line-height: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 21ch;
}

@media (max-width:768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .carousel {
    height: 260px;
  }

  .room h3 {
    font-size: 1.4rem;
  }
  .room ul li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
  }
  .rooms-section .book-now-btn {
    font-size: 0.9rem;
  }
}