    .room-hero {
      background: url('1ed3ec0270ca11e7a2500a4cef95d023.avif') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      position: relative;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5);
    }
    .room-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
    }
    .room-hero h1, .room-hero p {
      position: relative;
      z-index: 1;
    }
    .room-hero h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    .room-hero p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      padding: 1rem;
    }
    .room-content {
      padding: 3rem 1.5rem;
      max-width: 1100px;
      margin: auto;
    }
    .room-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }
    .room-header h2 {
      font-size: 2rem;
      color: #03053f;
    }
    .room-header a {
      color: #007bff;
      font-weight: 400;
      text-align: right;
    }
    .main-room-img {
      width: 100%;
      border-radius: 12px;
    }
    .room-thumbnails {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
      overflow-x: auto;
      padding-bottom: 1rem;
      scrollbar-width: none; /* Firefox */
    }

    .room-thumbnails::-webkit-scrollbar {
      display: none; /* Chrome */
    }

    .room-thumbnails img {
      flex: 0 0 auto;
      width: 200px;
      height: 140px;
      border-radius: 8px;
      object-fit: cover;
    }

    /* Lightbox base */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
    }

    /* Lightbox image */
    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }

    /* Close button */
    .close-lightbox {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 2.5rem;
      color: white;
      cursor: pointer;
      font-weight: bold;
    }
    .badge-scroll-wrapper {
      overflow: hidden;
      margin-top: 2rem;
      color: #03053f;
      width: 100%;
    }
    .badge-row {
      display: inline-flex;
      gap: 2rem;
      animation: scrollLeftLoop 15s linear infinite;
      white-space: nowrap;
    }

    .badge {
      background: #03053f;
      color: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    @keyframes scrollLeftLoop {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }
    .room-overview, .room-facilities {
      margin-top: 3rem;
      color: #03053f;
    }
    .room-overview h3, .room-facilities h3 {
      margin-bottom: 0.5rem;
    }
    .facility-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1rem;
    }
    .facility-list .facility {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
    }
    .room-button {
        background-color: #1d1f5a;
        color: white;
        border: none;
        padding: 0.9rem 1.8rem;
        border-radius: 999px;
        font-size: 1rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease-in-out;
        margin-top: 2rem;
      }
      .room-button:hover {
        background-color: #000118;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
      }
    @media (max-width: 768px) {
      .room-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
      }
      .room-hero p {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
      }
      .room-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .room-thumbnails img {
        width: 140px;
        height: 100px;
      }
    }