:root {
  /* Premium Hotel Palette */
  --bg-page: #f9fbfb;
  --bg-card: #ffffff;
  
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-accent: #111827; /* Dark Navy/Black */
  
  --btn-dark: #064e3b; /* Deep Emerald Green */
  --btn-light: #f0fdf4;
  
  --border-light: #e5e7eb;
  
  --font-sans: "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Micro-Animation Keyframes */
@keyframes smoothFadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.4);
  }
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 6px rgba(17, 24, 39, 0);
  }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow text */
.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-accent);
  margin-bottom: 8px;
  display: block;
}

/* Typography Helpers */
.h1 {
  font-weight: 800;
  font-size: 32px;
  color: var(--text-main);
  line-height: 1.2;
}

.h2 {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
}

.subtitle {
  font-size: 15px;
  color: var(--text-muted);
}
.navbar {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logoImage {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.titles {
  display: flex;
  flex-direction: column;
}

.mainTitle {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.2;
}

.subTitle {
  font-size: 13px;
  color: var(--text-muted);
}

.infoBtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.infoBtn:hover {
  background-color: var(--bg-page);
  color: var(--text-main);
}

.contactBtn:hover {
  background-color: var(--text-accent);
}

@media (max-width: 768px) {
  .logoText {
    font-size: 18px;
  }
  
  .navLinks {
    display: none; /* Can be replaced with a hamburger menu later if needed */
  }
}
.main {
  padding-bottom: 80px;
}

.layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}

.heroSection {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: transparent;
  animation: smoothFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroLeft {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.heroRight {
  display: flex;
  align-items: center;
}

.statsCard {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.statsCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.statsNumber {
  font-weight: 800;
  font-size: 20px;
  color: var(--text-main);
}

.statsLabel {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.roomsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.roomCard {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  width: 100%;
  text-align: left;
  font-family: inherit;
  animation: smoothFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.roomCard:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.roomCard:active {
  transform: translateY(0) scale(0.98);
}

.roomCardLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}

.goldDot {
  width: 8px;
  height: 8px;
  background-color: var(--text-accent);
  border-radius: 50%;
  animation: pulseDot 3s infinite ease-in-out;
}

.roomCardName {
  font-weight: 600;
  color: var(--text-main);
  font-size: 15px;
  transition: color 0.2s ease;
}

.roomCard:hover .roomCardName {
  color: #2563eb;
}

.chevron {
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.roomCard:hover .chevron {
  transform: translateX(4px);
  color: #2563eb;
}

@media (max-width: 768px) {
  .heroSection {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .statsCard {
    width: 100%;
    justify-content: space-between;
  }
  
  .roomsGrid {
    grid-template-columns: 1fr;
  }
}
.card {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid var(--border-light);
  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
}

.headerLeft {
  display: flex;
  flex-direction: column;
}

.headerRight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zoomBadge {
  background-color: var(--btn-light);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

.pillBtn {
  background-color: #f1f5f9;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.pillBtn:hover {
  background-color: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.pillBtn:active {
  transform: translateY(0) scale(0.96);
}

.pillBtn.btnDark {
  background-color: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

.pillBtn.btnDark:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.toggleBtn {
  background-color: var(--btn-dark);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggleBtn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.3);
}

.toggleBtn:active {
  transform: translateY(0) scale(0.96);
}

.mapContainer {
  position: relative;
  width: 100%;
  background-color: #e2e8f0; /* Map base */
  padding: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mapScrollArea {
  position: relative;
  width: 100%;
}

.blueprintImage {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hotspotsLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotspot {
  position: absolute;
  border: 4px solid #1a1a1a;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 8px;
  /* Reset button styles */
  padding: 0;
  font-family: inherit;
  outline: none;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hotspot:hover, .hotspotActive {
  border-color: var(--text-accent);
  z-index: 10;
  transform: scale(1.025);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.hotspotBgImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.hotspot:hover .hotspotBgImage, .hotspotActive .hotspotBgImage {
  transform: scale(1.08);
}

.hotspotLabel {
  position: relative;
  z-index: 2;
  background: transparent;
  width: 100%;
  padding: 12px 16px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hide-photos .hotspotBgImage,
.hide-photos .hotspotLabel {
  opacity: 0 !important;
}

.hide-photos .hotspot {
  background-color: transparent;
  border-color: rgba(30, 41, 59, 0.3);
  box-shadow: none;
}

.hide-photos .hotspot:hover {
  background-color: rgba(30, 41, 59, 0.15);
  border-color: #1e293b;
  transform: scale(1.015);
}

.hotspot:hover .hotspotLabel, .hotspotActive .hotspotLabel {
  background: transparent;
}

.hotspot:hover .hotspotLabel .labelName, .hotspotActive .hotspotLabel .labelName {
  color: #fff;
}

.labelName {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

.btnActive {
  background-color: var(--text-accent);
  color: #fff;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .headerRight {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .pillBtn, .toggleBtn {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .zoomBadge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .mapContainer {
    padding: 10px 0; /* Less padding on mobile */
  }

  .hotspotLabel {
    transform: scale(0.65) translateY(0) !important;
    transform-origin: center;
    padding: 4px 8px;
  }
}
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.modalContent {
  width: 750px;
  max-width: 95vw;
  max-height: 95vh;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  overflow: hidden;
}

.modalContent::before {
  content: "";
  display: none;
  width: 40px;
  height: 5px;
  background-color: #cbd5e1;
  border-radius: 3px;
  margin: 10px auto 0 auto;
  flex-shrink: 0;
}

.closeBtn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  background-color: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.closeBtn:hover {
  background-color: rgba(0,0,0,0.7);
  transform: rotate(90deg) scale(1.1);
}

.modalHero {
  position: relative;
  height: 400px;
  width: 100%;
  background-color: #000;
  flex-shrink: 0;
}

.modalHero .mainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  border-radius: 4px;
  width: 32px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s;
}

.sliderBtn:hover {
  background-color: rgba(0,0,0,0.8);
}

.prevBtn { left: 16px; }
.nextBtn { right: 16px; }

.modalHeroText {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px 32px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  display: flex;
  flex-direction: column;
}

.modalHeroText h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.modalHeroText span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.sliderDots {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

.modalBody {
  padding: 32px;
  overflow-y: auto;
  background-color: #fff;
  flex: 1;
}

.modalSubheader {
  font-size: 12px;
  font-weight: 800;
  color: #b89047; /* Gold */
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modalTitle {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 24px 0;
}

.infoGrid {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.infoBox {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  background-color: #f8fafc;
  min-width: 140px;
}

.infoBoxTitle {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.infoBoxValue {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

.infoBoxLabel {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.modalDesc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
}

.seatingSetupSection {
  margin-top: 24px;
}

.seatingTitle {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.seatingGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.seatingVisualizer {
  margin-top: 16px;
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e2e8f0;
  animation: fadeIn 0.3s ease;
}

.visualizerImage {
  width: 140px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.visualizerInfo h5 {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #1e293b;
}

.visualizerInfo p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.seatingBtn {
  border: 1px solid #cbd5e1;
  background: transparent;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seatingBtn:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.seatingBtn:active {
  transform: translateY(0) scale(0.97);
}

.seatingBtn.active {
  background-color: #1e293b;
  border-color: #1e293b;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.3);
}

.visualizerImage {
  width: 140px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.seatingVisualizer:hover .visualizerImage {
  transform: scale(1.04);
}

/* Package Card Smooth Animations */
.package-card {
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  animation: smoothFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.package-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08) !important;
}

.package-card .package-img {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.package-card:hover .package-img {
  transform: scale(1.06);
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Bottom Sheet Entrance Keyframe */
@keyframes slideUpBottom {
  from { transform: translateY(100%); opacity: 0.8; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsiveness
   ========================================================================== */

/* Tablet & Smaller Screens (< 768px) */
@media (max-width: 768px) {
  body {
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }
  
  .container {
    padding: 0 16px;
    width: 100%;
  }

  /* Responsive Navbar */
  .navbar {
    padding: 12px 16px !important;
  }

  .navContent {
    gap: 12px;
  }

  .logoImage {
    height: 32px;
  }

  .mainTitle {
    font-size: 14px;
  }

  .subTitle {
    font-size: 11px;
  }

  .infoBtn {
    width: 44px;
    height: 44px;
  }

  /* Hero Section Mobile */
  .layout {
    gap: 16px;
    padding-top: 16px;
  }

  .heroSection {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .heroLeft .h1 {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .heroLeft .subtitle {
    font-size: 13px;
  }

  .heroRight {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }

  .heroRight a, .heroRight button {
    width: 100%;
    text-align: center;
    min-height: 46px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .statsCard {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
  }

  /* Floorplan Card Header Mobile */
  .card .header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .headerLeft {
    text-align: left;
  }

  .headerRight {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .headerRight::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .pillBtn, .toggleBtn {
    font-size: 12px;
    padding: 10px 16px;
    min-height: 42px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Map Container Touch Pan */
  .mapContainer {
    padding: 10px 8px;
    touch-action: pan-x pan-y;
  }

  .hotspotLabel {
    padding: 2px 4px;
  }

  .labelName {
    font-size: 11px !important;
  }

  /* Room Cards Grid Mobile */
  .roomsGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .roomCard {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .roomCardName {
    font-size: 14px;
  }

  /* Modal Bottom-Sheet Drawer on Mobile */
  .modalOverlay {
    align-items: flex-end;
    padding: 0;
    background-color: rgba(15, 23, 42, 0.75);
  }

  .modalContent {
    width: 100% !important;
    max-width: 100vw !important;
    max-height: 88vh !important;
    border-radius: 20px 20px 0 0 !important;
    animation: slideUpBottom 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  }

  .modalContent::before {
    display: block !important;
  }

  .setupModalContent {
    max-height: 88vh !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .modalHero {
    height: 220px !important;
  }

  .modalHeroText {
    padding: 20px 16px 16px 16px;
  }

  .modalHeroText h2 {
    font-size: 22px !important;
  }

  .modalHeroText span {
    font-size: 13px !important;
  }

  .modalBody {
    padding: 20px 16px 28px 16px;
  }

  .modalTitle {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .infoGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }

  .infoBox {
    min-width: unset;
    padding: 12px;
  }

  .modalDesc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .seatingGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .seatingBtn {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seatingVisualizer {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .visualizerImage {
    width: 100%;
    height: 140px;
  }

  /* Packages Page Mobile */
  .packages-header {
    padding: 24px 16px 16px !important;
  }

  .packages-header h1 {
    font-size: 24px !important;
  }

  .filter-container {
    justify-content: flex-start !important;
    overflow-x: auto;
    padding: 4px 16px 12px;
    margin-bottom: 20px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-container::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    min-height: 42px;
    padding: 8px 18px !important;
    font-size: 13px;
    flex-shrink: 0;
  }

  .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 16px 40px !important;
  }
}

/* Extra Small Phone Screens (< 480px) */
@media (max-width: 480px) {
  .heroLeft .h1 {
    font-size: 22px;
  }
  
  .infoGrid {
    grid-template-columns: 1fr;
  }

  .seatingGrid {
    grid-template-columns: 1fr;
  }
}

/* Smart TV & Large Screen Display Optimization (1080p / 4K TV) */
@media (min-width: 1400px) {
  .container {
    max-width: 1560px;
    padding: 0 40px;
  }

  .navbar {
    padding: 24px 0;
  }

  .logoImage {
    height: 52px;
  }

  .mainTitle {
    font-size: 20px;
  }

  .subTitle {
    font-size: 15px;
  }

  .heroLeft .h1 {
    font-size: 42px;
  }

  .heroLeft .subtitle {
    font-size: 18px;
  }

  .eyebrow {
    font-size: 15px;
  }

  .roomCard {
    padding: 22px 28px;
    min-height: 64px;
  }

  .roomCardName {
    font-size: 18px;
  }

  .labelName {
    font-size: 20px;
    font-weight: 600;
  }

  .pillBtn {
    font-size: 15px;
    padding: 10px 24px;
  }

  .infoBtn {
    width: 44px;
    height: 44px;
  }

  .infoBtn svg {
    width: 22px;
    height: 22px;
  }
}
