/* ==========================================================================
   SALA TAM CỐC HOTEL & SPA - LUXURY BOUTIQUE STYLESHEET
   Version: 20260831-v4 | Mobile nav-menu fix: display:none by default
   Brand Colors: Gold/Bronze (#C5A880, #B89358), Dark Wood/Charcoal (#1B1B1B, #121212), Pearl White (#FCFBF7)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #c5a880;
  --primary-gold-dark: #a9895c;
  --primary-gold-light: #dfcaa7;
  --primary-gold-subtle: rgba(197, 168, 128, 0.12);
  
  --dark-bg: #121315;
  --dark-surface: #1b1c1e;
  --dark-card: #222428;
  --dark-border: rgba(197, 168, 128, 0.25);
  
  --light-bg: #faf8f5;
  --light-surface: #ffffff;
  --light-card: #f5f2eb;
  
  --text-dark: #1f2124;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --text-light-muted: #c2c5c9;
  
  --font-serif: 'Lora', 'Times New Roman', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 25px rgba(197, 168, 128, 0.25);
  
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

*, ::before, ::after {
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1, "pnum" 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #495057;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 30px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-sm {
  padding: 50px 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-light-muted);
}

.section-title-wrap {
  text-align: center;
  max-width: 1050px;
  margin: 0 auto 50px auto;
}

.section-title-wrap p {
  white-space: nowrap;
}

@media (max-width: 992px) {
  .section-title-wrap p {
    white-space: normal;
  }
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-dark .section-subtitle {
  color: var(--primary-gold);
}

.section-title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--primary-gold);
}

.section-title.text-left::after {
  left: 0;
  transform: none;
}

.text-gold {
  color: var(--primary-gold) !important;
}

.bg-gold {
  background-color: var(--primary-gold);
}

.bg-pattern {
  background-image: radial-gradient(rgba(197, 168, 128, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: #121315;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-gold:hover {
  background-color: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: #121315;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--dark-bg);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 0.95rem;
}

.badge-gold {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--primary-gold);
  color: #121315;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.topbar {
  background-color: #0d0e10;
  color: #a0a5ab;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.topbar-info a, .topbar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar-info a:hover {
  color: var(--primary-gold);
}

.topbar-info i {
  color: var(--primary-gold);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.topbar-book-btn {
  padding: 4px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 4px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lang-switch {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--primary-gold);
  color: #121315;
  border-color: var(--primary-gold);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #1a1c20;
  border: 1px solid var(--primary-gold);
  border-radius: 6px;
  min-width: 145px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1050;
  overflow: hidden;
}

.lang-switch:hover .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #e0e0e0;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-dropdown a:last-child {
  border-bottom: none;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: var(--primary-gold);
  color: #121315;
  font-weight: 700;
}

.lang-flag {
  font-size: 1rem;
}

.header-main {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 19, 21, 0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.header-main .container {
  max-width: 100%;
  padding-left: 45px;
  padding-right: 45px;
}

.header-main.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: 0;
}

.logo-emblem, .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(197, 168, 128, 0.4));
  transition: var(--transition);
}

.logo-brand:hover .logo-emblem,
.logo-brand:hover .logo-img {
  transform: scale(1.06);
}

.logo-emblem-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: transform 0.3s ease;
}

.logo-brand:hover .logo-emblem-img {
  transform: scale(1.05);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  background: linear-gradient(135deg, #fff2d6 0%, #c5a880 50%, #9e7d47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  white-space: nowrap;
  margin-top: 3px;
}

.nav-drawer-top-bar,
.nav-overlay {
  display: none !important;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Book Now Golden Circle Button */
.nav-link.nav-book-now {
  border: 1.5px solid var(--primary-gold);
  border-radius: 24px;
  padding: 6px 18px !important;
  color: var(--primary-gold) !important;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  margin-left: 2px;
}

.nav-link.nav-book-now::after {
  display: none !important;
}

.nav-link.nav-book-now:hover {
  background: var(--primary-gold);
  color: #121315 !important;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-surface);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.8rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--primary-gold);
  padding-left: 24px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  margin-right: 0;
}

/* TripAdvisor Luxury Gold Header Badge */
.nav-tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.45);
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 38px;
  white-space: nowrap;
  margin-right: 0;
}

.nav-tripadvisor-badge:hover {
  background: linear-gradient(135deg, #c5a880, #a9895c);
  border-color: #dfcaa7;
  color: #121315;
  box-shadow: 0 4px 18px rgba(197, 168, 128, 0.35);
  transform: translateY(-1px);
}

.ta-badge-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ta-icon {
  font-size: 1.3rem;
  color: var(--primary-gold);
  transition: color 0.35s ease;
}

.nav-tripadvisor-badge:hover .ta-icon {
  color: #121315;
}

.ta-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.ta-sub {
  font-size: 0.52rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #a0a5ab;
  font-weight: 600;
  transition: color 0.35s ease;
}

.nav-tripadvisor-badge:hover .ta-sub {
  color: #222428;
}

.ta-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  font-family: var(--font-serif);
  transition: color 0.35s ease;
}

.nav-tripadvisor-badge:hover .ta-title {
  color: #121315;
}

@media (max-width: 768px) {
  .nav-tripadvisor-badge .ta-text-group {
    display: none;
  }
  .nav-tripadvisor-badge {
    padding: 6px 10px;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO BANNER SLIDER
   ========================================================================== */
.hero-section {
  position: relative;
  height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #121315;
}

.hero-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 19, 21, 0.6) 0%, rgba(18, 19, 21, 0.45) 50%, rgba(18, 19, 21, 0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1150px;
  padding: 40px 20px 100px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary-gold);
  margin-bottom: 14px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 1.18;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 993px) {
  /* Desktop: show nav-menu as horizontal row */
  .nav-menu {
    display: flex !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .hero-title,
  .hero-title-nowrap {
    white-space: nowrap;
  }
}

.hero-title-single-line {
  white-space: normal;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .hero-title-single-line {
    font-size: clamp(1.4rem, 3.2vw, 2.7rem);
  }
}

.section-title-nowrap {
  white-space: normal;
}

.section-title-nowrap {
  white-space: nowrap;
  font-size: clamp(1.3rem, 2.3vw, 2.2rem);
}

@media (max-width: 992px) {
  .section-title-nowrap {
    font-size: clamp(1.3rem, 3.8vw, 2.1rem);
  }
}

@media (max-width: 576px) {
  .section-title-nowrap {
    white-space: normal;
    font-size: clamp(1.2rem, 5vw, 1.7rem);
  }
}

[data-i18n="rooms_desc"] {
  max-width: 1100px !important;
}

.hero-desc {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: #f0f0f0;
  max-width: 850px;
  margin: 0 auto 35px auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   BOOKING BAR ENGINE (QUICK BOOKING)
   ========================================================================== */
.booking-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  padding-bottom: 40px;
}

.booking-bar-title {
  text-align: center;
  color: #D4AF37;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.85;
}

.booking-bar {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)) 190px;
  gap: 18px;
  align-items: flex-end;
  box-sizing: border-box;
  max-width: 100%;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.booking-field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.booking-field input,
.booking-field select {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.booking-field input[type="date"],
input[type="date"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: block;
}

.booking-field input[type="date"]::-webkit-date-and-time-value,
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  display: block;
  width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px var(--primary-gold-subtle);
}

.booking-field select option {
  background-color: var(--dark-card);
  color: #ffffff;
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-images {
  position: relative;
  padding-right: 0;
  padding-bottom: 0;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  display: none !important;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background-color: var(--primary-gold);
  color: #121315;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-experience-badge .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-gold-dark);
  font-size: 1.1rem;
}

/* ==========================================================================
   ACCOMMODATION / ROOMS SECTION
   ========================================================================== */
.rooms-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rooms-filter button {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--text-dark);
  padding: 8px 22px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.rooms-filter button.active,
.rooms-filter button:hover {
  background-color: var(--primary-gold);
  color: #121315;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.room-card {
  background-color: var(--light-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-thumb-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.room-card:hover .room-thumb {
  transform: scale(1.08);
}

.room-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(18, 19, 21, 0.85);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border-left: 3px solid var(--primary-gold);
  backdrop-filter: blur(4px);
}

.room-price-tag span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: var(--transition);
}

.room-title a {
  white-space: nowrap;
}

.room-title a:hover {
  color: var(--primary-gold-dark);
}

.room-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.room-meta-row1,
.room-meta-row2 {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.85rem;
  color: #555555;
  font-weight: 500;
  line-height: 1.35;
}

.room-meta-row1 span,
.room-meta-row2 span,
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.room-meta i {
  color: var(--primary-gold-dark);
  font-size: 0.92rem;
}

.room-desc {
  font-size: 0.88rem;
  color: #5a6268;
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-amenities {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--primary-gold-dark);
  font-size: 1.05rem;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

/* ==========================================================================
   SPECIAL OFFERS & PACKAGES
   ========================================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.offer-card {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary-gold);
}

.offer-thumb-wrap {
  position: relative;
  height: 230px;
}

.offer-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-gold);
  color: #121315;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.offer-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-content .btn {
  margin-top: auto;
}

.offer-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.offer-highlights {
  margin: 15px 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.offer-highlights li {
  font-size: 0.92rem;
  color: #2c2c2c;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.offer-highlights li i {
  color: var(--primary-gold-dark);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.offer-highlights li strong {
  color: #111111;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.offer-highlights li span {
  color: #2b2b2b;
  font-weight: 450;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

/* Dark background section overrides */
.section-dark .offer-highlights li,
.offer-card .offer-highlights li {
  color: #f0f0f0;
}

.section-dark .offer-highlights li strong,
.offer-card .offer-highlights li strong {
  color: var(--primary-gold);
}

.section-dark .offer-highlights li span,
.offer-card .offer-highlights li span {
  color: #e2e8f0;
}

.section-dark .offer-highlights li i,
.offer-card .offer-highlights li i {
  color: var(--primary-gold);
}

/* ==========================================================================
   DINING & RESTAURANT SECTION
   ========================================================================== */
.dining-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background-color: var(--light-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dining-img-wrap {
  height: 100%;
  min-height: 420px;
}

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

.dining-info {
  padding: 40px;
}

.dining-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 25px 0;
  padding: 20px;
  background-color: var(--light-card);
  border-radius: var(--radius-sm);
}

.dining-meta-item {
  display: flex;
  flex-direction: column;
}

.dining-meta-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-gold-dark);
  font-weight: 600;
}

.dining-meta-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ==========================================================================
   SPA & WELLNESS SECTION
   ========================================================================== */
.spa-info .section-title,
[data-i18n="spa_title"] {
  white-space: nowrap !important;
}

.spa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.spa-services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 25px 0;
}

.spa-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background-color: var(--dark-card);
  border-left: 3px solid var(--primary-gold);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.spa-service-item:hover {
  background-color: rgba(197, 168, 128, 0.15);
  transform: translateX(6px);
}

.spa-service-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
}

.spa-service-duration {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.spa-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.spa-gallery-item {
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.spa-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spa-gallery-item:hover img {
  transform: scale(1.1);
}

/* ==========================================================================
   TOURS & ACTIVITIES
   ========================================================================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.tour-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-img-wrap {
  height: 200px;
  position: relative;
  flex-shrink: 0;
}

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

.tour-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 3px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.tour-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.tour-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.tour-card-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
  padding-top: 10px;
}

/* ==========================================================================
   GALLERY SECTION & LIGHTBOX
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filter button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 18px;
  font-size: 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #121315;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 19, 21, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  text-align: center;
  padding: 15px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--light-surface);
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: #f5a623;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-author-info .location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LOCATION & MAP SECTION
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-box-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-box-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.info-box-content p, .info-box-content a {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0;
}

.info-box-content a:hover {
  color: var(--primary-gold-dark);
}

.map-wrapper {
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(197, 168, 128, 0.3);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-main {
  background-color: #0b0c0d;
  color: #9ea3a8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-title {
  font-size: 2rem;
}

.footer-brand p {
  color: #8c9196;
  margin-top: 15px;
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-gold);
  color: #121315;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  white-space: nowrap;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1.5px;
  background-color: var(--primary-gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ea3a8;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (CALL / ZALO / BOOKING)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-call {
  background: linear-gradient(135deg, #e53935, #c62828);
  animation: pulse-ring 2s infinite;
}

.float-zalo {
  background: linear-gradient(135deg, #0088ff, #0066cc);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
}

.float-top {
  background: var(--dark-card);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* ==========================================================================
   MODAL BOOKING POPUP
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--dark-surface);
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-gold);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 25px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .header-main .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    display: none !important;
  }

  .nav-cta .nav-tripadvisor-badge {
    display: none !important;
  }

  .header-main.nav-open {
    z-index: 99999 !important;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-drawer-top-bar {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-drawer-close-btn {
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--primary-gold, #c5a880);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
  }

  .nav-drawer-close-btn:hover,
  .nav-drawer-close-btn:active {
    background: var(--primary-gold, #c5a880);
    color: #121315;
  }

  .nav-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 25px 40px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 20;
    gap: 12px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  
  .nav-menu.open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }
  
  .nav-item.dropdown-open .nav-dropdown {
    display: block;
  }
  
  .about-grid,
  .dining-banner,
  .spa-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .booking-bar {
    grid-template-columns: 1fr 1fr;
  }
}

.mobile-drawer-extra {
  display: none;
}

@media (max-width: 992px) {
  .mobile-drawer-extra {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 168, 128, 0.25);
  }

  .mobile-drawer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
  }

  .mobile-lang-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .mobile-lang-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: #e0e0e0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
  }

  .mobile-lang-pill:hover,
  .mobile-lang-pill.active {
    background: var(--primary-gold);
    color: #111111;
    border-color: var(--primary-gold);
    font-weight: 700;
  }

  .mobile-ta-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 175, 135, 0.18);
    border: 1px solid #00af87;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-ta-badge .ta-icon {
    font-size: 1.8rem;
    color: #00af87;
    flex-shrink: 0;
  }

  .mobile-ta-badge .ta-text-group {
    display: flex !important;
    flex-direction: column;
    line-height: 1.2;
  }

  .mobile-ta-badge .ta-sub {
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: #b0b0b0;
    display: block;
    font-weight: 500;
  }

  .mobile-ta-badge .ta-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 45px 0;
  }

  .hero-title {
    font-size: clamp(1.3rem, 5.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.5;
  }
  
  .booking-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .booking-item {
    border-right: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 10px;
  }

  .booking-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-images {
    padding-right: 0;
    padding-bottom: 0;
  }
  
  .about-img-sub {
    display: none;
  }
  
  .modal-backdrop {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .modal-card {
    padding: 22px 18px;
    width: 92%;
    max-width: 480px;
    max-height: 88vh;
    margin: 0 auto;
    border-radius: 14px;
    box-sizing: border-box;
    overflow-x: hidden;
    text-align: left;
  }

  .modal-title {
    font-size: 1.45rem;
    color: var(--primary-gold);
    margin-bottom: 4px;
    padding-right: 25px;
    text-align: left;
    line-height: 1.25;
  }

  .modal-subtitle {
    font-size: 0.82rem;
    color: var(--text-light-muted);
    margin-bottom: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    font-size: 1.5rem;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .form-group {
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .form-group label {
    font-size: 0.72rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-gold);
    text-align: left;
    display: block;
    line-height: 1.3;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.88rem;
    padding: 9px 12px;
    border-radius: 6px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-align: left;
    text-overflow: ellipsis;
  }

  .form-group textarea {
    height: 55px;
  }

  #estimated-price-display {
    padding: 10px 12px;
    font-size: 0.82rem;
    text-align: left;
  }

  #modalBookingForm button[type="submit"] {
    width: 100%;
    padding: 11px 18px;
    font-size: 0.9rem;
    margin-top: 4px;
    text-align: center;
  }

  .dining-banner {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
  }

  .dining-img-wrap {
    order: 1;
    max-height: 250px;
    width: 100%;
  }

  .dining-info {
    order: 2;
    padding: 22px 16px;
    width: 100%;
  }

  .room-footer,
  .tour-modal-actions {
    flex-direction: column;
    width: 100%;
  }

  .room-footer .btn,
  .tour-modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   SPA MENU — LUXURY DESIGN SYSTEM
   ===================================================== */

/* Category wrapper */
.spa-category {
  background: linear-gradient(135deg, #131518, #1a1c21);
  border: 1px solid rgba(197, 168, 128, 0.18);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.spa-category::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8F6E29, #D4AF37, #FCE6B5, #D4AF37, #8F6E29);
}

/* Category header */
.spa-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.spa-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.spa-cat-title {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

/* Massage table */
.spa-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
}

.spa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spa-table thead tr {
  background: rgba(212, 175, 55, 0.12);
}

.spa-table th {
  padding: 16px 20px;
  text-align: left;
  color: #f5cf68;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

.spa-table th:not(:first-child) {
  text-align: center;
}

.spa-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  vertical-align: middle;
}

.spa-table td:not(:first-child) {
  text-align: center;
}

.spa-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.08);
}

.spa-table tbody tr:last-child td {
  border-bottom: none;
}

.spa-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.spa-vi {
  display: block;
  color: #cccccc;
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 3px;
}

.spa-price {
  color: #f5cf68;
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}

/* Luxury packages grid */
.spa-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spa-pkg-card {
  background: #0e1014;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.spa-pkg-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.spa-pkg-featured {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(160deg, #161208, #1f1a08);
}

.spa-pkg-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #8F6E29);
  color: #111;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.spa-pkg-name {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.spa-pkg-vi {
  color: #cccccc;
  font-size: 0.88rem;
  font-style: italic;
  margin: 0;
}

.spa-pkg-includes {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  flex: 1;
}

.spa-pkg-includes li {
  color: #aaa;
  font-size: 0.83rem;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.spa-pkg-includes li i {
  color: #D4AF37;
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.spa-pkg-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #D4AF37;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.spa-pkg-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
}

/* Beauty services grid (Hair, Nail, Waxing, Eyelash) */
.spa-beauty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spa-beauty-card {
  background: linear-gradient(135deg, #131518, #1a1c21);
  border: 1px solid rgba(197, 168, 128, 0.18);
  border-radius: 14px;
  padding: 28px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.spa-beauty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.spa-beauty-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.spa-beauty-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #D4AF37;
  font-size: 1.1rem;
}

.spa-beauty-title {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: #D4AF37;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.spa-beauty-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spa-beauty-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #b0a090;
  font-size: 0.87rem;
  line-height: 1.5;
}

.spa-beauty-row:last-child {
  border-bottom: none;
}

.spa-beauty-row em {
  color: #777;
  font-style: italic;
  display: block;
  font-size: 0.78rem;
}

/* Responsive spa menu */
@media (max-width: 900px) {
  .spa-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .spa-category {
    padding: 28px 20px;
  }

  .spa-beauty-grid {
    grid-template-columns: 1fr;
  }

  .spa-table th,
  .spa-table td {
    padding: 12px 12px;
  }
}

/* ==========================================================================
   EZCLOUD BOOKING ENGINE - INTEGRATION STYLES
   ========================================================================== */

.ezcloud-booking-wrap {
  width: 100%;
  padding: 10px 0 4px;
}

.ezcloud-form-target {
  width: 100%;
}

#ezcloud-availability {
  background: var(--light-bg);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

#room-list {
  width: 100%;
  min-height: 120px;
}

/* ==========================================================================
   TOUR DETAILS POPUP MODAL STYLES
   ========================================================================== */

.tour-detail-modal-card {
  max-width: 800px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  border-radius: 14px;
  background: #ffffff;
}

.tour-modal-banner {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.05) saturate(1.08) brightness(1.02);
}

/* Image Sharpening & Uniform Aspect Ratio Fitting */
.dining-img-wrap,
.tour-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #111;
}

.tour-card .tour-img-wrap {
  height: 240px;
  border-radius: 12px 12px 0 0;
}

.dining-img,
.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.05) saturate(1.08) brightness(1.02);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.dining-banner:hover .dining-img,
.tour-card:hover .tour-img {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(1.12) brightness(1.05);
}

@media (max-width: 992px) {
  .dining-img-wrap {
    height: 260px;
  }
}

.tour-modal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 19, 21, 0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 30px;
}

.tour-modal-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.tour-modal-subtitle {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.tour-modal-content {
  padding: 28px 30px;
  color: #333;
}

.tour-modal-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin: 22px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid rgba(197, 168, 128, 0.3);
  padding-bottom: 6px;
}

.tour-timeline {
  list-style: none;
  padding-left: 15px;
  position: relative;
  border-left: 2px dashed var(--primary-gold);
  margin: 15px 0 20px 8px;
}

.tour-timeline-item {
  position: relative;
  margin-bottom: 16px;
  padding-left: 20px;
}

.tour-timeline-item::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-gold-dark);
}

.tour-timeline-time {
  font-weight: 700;
  color: var(--primary-gold-dark);
  font-size: 0.9rem;
}

.tour-timeline-desc {
  font-size: 0.92rem;
  color: #444;
  margin-top: 2px;
  line-height: 1.5;
}

.tour-list-check {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.tour-list-check li {
  font-size: 0.9rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-list-check li i {
  color: #27ae60;
  font-size: 0.9rem;
}

.tour-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ==========================================================================
   ROOM DETAILS POPUP MODAL STYLES
   ========================================================================== */
.room-detail-modal-card,
.tour-detail-modal-card {
  position: relative;
}

/* Floating Back Button & Close Button for Modals */
.modal-back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 9999 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(18, 19, 21, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1.5px solid rgba(197, 168, 128, 0.6);
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
}

.modal-back-btn:hover,
.modal-back-btn:active {
  background: var(--primary-gold);
  color: #121315;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
}

.room-detail-modal-card .modal-close,
.tour-detail-modal-card .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 9999 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18, 19, 21, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1.5px solid rgba(197, 168, 128, 0.6);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
}

.room-detail-modal-card .modal-close:hover,
.room-detail-modal-card .modal-close:active,
.tour-detail-modal-card .modal-close:hover,
.tour-detail-modal-card .modal-close:active {
  background: var(--primary-gold);
  color: #121315;
  border-color: var(--primary-gold);
  transform: rotate(90deg) scale(1.08);
}

.room-detail-modal-card {
  max-width: 880px;
  width: 94%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.room-modal-header {
  position: relative;
  background: #121315;
}

.room-modal-main-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #000;
}

.room-modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.05) saturate(1.08) brightness(1.02);
  transition: opacity 0.3s ease;
}

.room-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 19, 21, 0.7);
  color: var(--primary-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.room-gallery-nav-btn:hover {
  background: var(--primary-gold);
  color: #121315;
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
}

.room-gallery-nav-prev {
  left: 15px;
}

.room-gallery-nav-next {
  right: 15px;
}

.room-gallery-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(18, 19, 21, 0.82);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.room-gallery-thumbs-bar {
  display: flex;
  gap: 10px;
  padding: 12px 18px;
  background: #1a1c20;
  overflow-x: auto;
  scrollbar-width: thin;
}

.room-gallery-thumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.room-gallery-thumb:hover,
.room-gallery-thumb.active {
  opacity: 1;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.room-modal-body {
  padding: 30px;
  color: #333333;
}

.room-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.room-modal-actions .btn {
  flex: 1;
  min-width: 180px;
  box-sizing: border-box;
}

.room-modal-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.room-modal-title-row > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.room-modal-title-text {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--dark-bg);
  margin-bottom: 4px;
}

.room-modal-price-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #2b251a 0%, #171510 100%);
  border: 1px solid var(--primary-gold);
  padding: 10px 18px;
  border-radius: 8px;
  text-align: right;
  white-space: nowrap;
}

.room-modal-price-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.2;
}

.room-modal-price-sub {
  font-size: 0.76rem;
  color: #c5a880;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .room-modal-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .room-modal-price-badge {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
}

.room-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .room-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .room-modal-main-img-wrap {
    height: 260px;
  }
  .room-spec-box {
    padding: 10px 6px !important;
    min-height: 94px !important;
  }
  .room-spec-val {
    font-size: 0.84rem !important;
  }
}

.room-spec-box {
  background: #f8f6f2;
  border: 1px solid #eae5db;
  padding: 12px 8px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  box-sizing: border-box;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

.room-spec-box i {
  font-size: 1.25rem;
  color: var(--primary-gold-dark);
  margin-bottom: 5px;
  display: block;
}

.room-spec-label {
  font-size: 0.72rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin-bottom: 3px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.room-spec-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.room-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.room-amenity-pill {
  background: #f3f0e8;
  border: 1px solid #e2dbcd;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-amenity-pill i {
  color: var(--primary-gold-dark);
}

/* =====================================================
   MOBILE OPTIMIZATIONS
   ===================================================== */
@media (max-width: 768px) {
  .dining-info {
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .dining-info .section-title {
    font-size: clamp(1.2rem, 4.8vw, 1.55rem) !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .spa-info .section-title,
  [data-i18n="spa_title"] {
    white-space: nowrap !important;
    font-size: clamp(1.45rem, 6.2vw, 2.5rem) !important;
    line-height: 1.25 !important;
  }
}

  .policies-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .rooms-filter, .gallery-filter {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto 30px auto !important;
    gap: 10px !important;
  }
  .rooms-filter button, .gallery-filter button {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 10px 16px !important;
  }
  .btn {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .btn-mobile-full {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    font-size: 0.88rem !important;
    padding: 12px 14px !important;
    text-align: center !important;
  }
  .dining-meta-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 14px !important;
    padding: 14px 12px !important;
    background: linear-gradient(135deg, #faf7f0 0%, #f3ece0 100%) !important;
    border: 1px solid rgba(197, 168, 128, 0.35) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }
  .dining-meta-item {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .dining-meta-item .label {
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }
  .dining-meta-item .value {
    font-size: clamp(0.78rem, 3.2vw, 0.88rem) !important;
    font-weight: 700 !important;
    color: #1f1f1f !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
  .dining-meta-item:nth-child(4) {
    grid-column: span 2 !important;
    border-top: 1px dashed rgba(197, 168, 128, 0.4) !important;
    padding-top: 10px !important;
    margin-top: 2px !important;
  }
  .dining-info > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .dining-info > div:last-child .btn {
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.8px !important;
    border-radius: 8px !important;
  }

  /* Spa Table & Tour Modal Buttons Mobile Fixes */
  .spa-category {
    padding: 20px 10px !important;
  }
  .spa-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .spa-table {
    table-layout: fixed !important;
    width: 100% !important;
    min-width: 310px !important;
  }
  .spa-table th {
    padding: 10px 3px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.3px !important;
  }
  .spa-table th:first-child,
  .spa-table td:first-child {
    width: 37% !important;
    padding-left: 4px !important;
    padding-right: 2px !important;
  }
  .spa-table th:not(:first-child),
  .spa-table td:not(:first-child) {
    width: 21% !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
  .spa-table td {
    padding: 10px 2px !important;
    font-size: 0.75rem !important;
  }
  .spa-name {
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
    display: block !important;
    word-break: break-word !important;
  }
  .spa-price {
    font-size: 0.76rem !important;
    white-space: nowrap !important;
  }
  .tour-modal-actions,
  .room-modal-actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .tour-modal-actions .btn,
  .room-modal-actions .btn,
  .room-modal-body .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    font-size: clamp(0.72rem, 3.2vw, 0.82rem) !important;
    padding: 12px 8px !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    line-height: 1.3 !important;
    letter-spacing: 0.4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

