@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import './variables.css';
@import './liquid-glass.css';

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

/* ================================================================
   TRENDING ULTRA-LUXURY SPLIT-CURTAIN EDITORIAL PRELOADER
   ================================================================ */
/* Skip preloader on internal page navigation */
html.skip-preloader #site-preloader,
html.skip-preloader .site-preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  animation: none !important;
}

html.skip-preloader .hero-content,
html.skip-preloader .hero-content-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: all;
}

/* Split Shutter Panels */
.preloader-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: #060b18;
  z-index: 1;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.preloader-panel-top {
  top: 0;
  transform-origin: top center;
  border-bottom: none;
}

.preloader-panel-bottom {
  bottom: 0;
  transform-origin: bottom center;
  border-top: none;
}

/* Shutter Opening on Completion */
.site-preloader.fade-out .preloader-panel-top {
  transform: translateY(-101%);
}

.site-preloader.fade-out .preloader-panel-bottom {
  transform: translateY(101%);
}

.site-preloader.fade-out .preloader-main-stage,
.site-preloader.fade-out .preloader-laser-track {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(8px);
  transition: opacity 0.5s ease-out, transform 0.6s ease-out, filter 0.5s ease-out;
}

.site-preloader.fade-out {
  pointer-events: none;
}

/* Ambient Backlight Aura */
.preloader-ambient-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(217, 119, 6, 0.05) 45%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: preloaderAuraBreath 4s ease-in-out infinite alternate;
}

@keyframes preloaderAuraBreath {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.85; }
}

/* Main Content Stage */
.preloader-main-stage {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  max-width: 520px;
  width: 100%;
  transition: all 0.4s ease;
}

/* Emblem with Shimmer Halo */
.preloader-emblem-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.preloader-emblem-img {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.65));
  animation: emblemFloat 3s ease-in-out infinite alternate;
}

.preloader-emblem-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  filter: blur(10px);
  animation: haloPulse 2.5s ease-in-out infinite alternate;
}

@keyframes emblemFloat {
  0% { transform: translateY(0); filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.4)); }
  100% { transform: translateY(-4px); filter: drop-shadow(0 0 32px rgba(245, 158, 11, 0.85)); }
}

@keyframes haloPulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Brand Title & Editorial Subtitle */
.preloader-title-clip {
  overflow: hidden;
  margin-bottom: 6px;
}

.preloader-title-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.preloader-sub-line {
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: rgba(245, 158, 11, 0.88);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Narrative Line */
.preloader-narrative {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  min-height: 22px;
  transition: opacity 0.3s ease;
  margin-bottom: 18px;
}

/* Centered Glowing Luxury Progress Track */
.preloader-horizon-track {
  width: 280px;
  max-width: 80vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  z-index: 4;
  overflow: visible;
  margin: 0 auto;
}

.preloader-horizon-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.4) 0%, #f59e0b 50%, #fbbf24 80%, #ffffff 100%);
  box-shadow: 0 0 12px #fbbf24, 0 0 24px rgba(245, 158, 11, 0.8);
  transition: width 0.18s cubic-bezier(0.25, 1, 0.5, 1);
}

.horizon-flare {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff, 0 0 18px #fbbf24, 0 0 30px rgba(245, 158, 11, 1);
}

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

@media (max-width: 991px) {
  .section-title-nowrap {
    white-space: normal;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-sm {
  max-width: var(--container-sm);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.section-space {
  padding: var(--section-spacing) 0;
  position: relative;
}

.section-space-lg {
  padding: var(--section-spacing-lg) 0;
  position: relative;
}

.section-space-sm {
  padding: var(--section-spacing-sm) 0;
  position: relative;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--dawn-navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.28;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dawn-gold);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
}

.text-center {
  text-align: center;
}


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

.text-navy {
  color: var(--dawn-navy) !important;
}

.text-light {
  color: #ffffff !important;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.ambient-gold {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, rgba(217, 119, 6, 0.1) 70%, transparent 100%);
}

.ambient-navy {
  background: radial-gradient(circle, rgba(11, 19, 43, 0.7) 0%, rgba(7, 13, 30, 0.2) 70%, transparent 100%);
}

/* HEADER & NAVIGATION (LUXURY LIQUID GLASS) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, rgba(7, 13, 30, 0.72) 0%, rgba(7, 13, 30, 0.45) 70%, rgba(7, 13, 30, 0.20) 100%);
  backdrop-filter: blur(24px) saturate(190%) brightness(102%);
  -webkit-backdrop-filter: blur(24px) saturate(190%) brightness(102%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.35), inset 0 1px 0 0 rgba(255, 255, 255, 0.28);
  padding: 13px 0;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.55) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(245, 158, 11, 0.55) 80%, transparent 100%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Liquid Glass Scrolled Header */
.site-header.is-scrolled {
  background: rgba(7, 13, 30, 0.84);
  backdrop-filter: blur(32px) saturate(220%) brightness(104%);
  -webkit-backdrop-filter: blur(32px) saturate(220%) brightness(104%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.32);
  box-shadow: 0 18px 45px -10px rgba(0, 0, 0, 0.72),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.38),
              inset 0 -1px 0 0 rgba(245, 158, 11, 0.35);
  padding: 8px 0;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-brand a {
  display: flex;
  align-items: center;
}

.header-brand .logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(217, 119, 6, 0.35));
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform var(--transition-fast);
}

.site-header.is-scrolled .header-brand .logo-img {
  height: 50px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.main-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.nav-link.active {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.28) 0%, rgba(245, 158, 11, 0.16) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(245, 158, 11, 0.55);
  color: var(--dawn-gold-bright);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.site-header.is-scrolled .nav-link {
  padding: 6px 12px;
  font-size: 0.82rem;
}

.site-header.is-scrolled .nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.site-header.is-scrolled .nav-link.active {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.35) 0%, rgba(245, 158, 11, 0.22) 100%);
  border-color: rgba(245, 158, 11, 0.65);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

/* Scrolled state for glass buttons */
.site-header.is-scrolled .btn-glass-header {
  height: 36px;
  min-height: 36px;
  padding: 0 18px;
  font-size: 0.78rem;
}

.site-header.is-scrolled .lang-btn {
  height: 36px;
  padding: 0 14px;
  font-size: 0.80rem;
}

/* DROPDOWN MENU (LIQUID FROSTED GLASS) */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75),
              inset 0 1px 0 rgba(255, 255, 255, 0.32),
              0 0 25px rgba(245, 158, 11, 0.12);
  padding: 10px 8px;
  min-width: 260px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-item a {
  display: block;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.dropdown-item a:hover {
  background: rgba(245, 158, 11, 0.2);
  color: #ffffff;
  padding-left: 20px;
  box-shadow: inset 3px 0 0 var(--dawn-gold-bright);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  color: #ffffff;
  padding: 0 16px;
  height: 38px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* MOBILE TOGGLE & DRAWER */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(7, 13, 30, 0.98);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.6);
  visibility: hidden;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

/* HERO SECTION - REFINED LUXURY SPACING */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  color: #ffffff;
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
}

.page-hero-banner {
  min-height: 85vh !important;
  min-height: 85dvh !important;
  padding-top: 160px !important;
  padding-bottom: 70px !important;
  justify-content: flex-end !important;
}

.page-hero-banner .hero-content-card {
  background: rgba(7, 13, 30, 0.60);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 22px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.subpage-booking-bar {
  margin-top: 36px !important;
  margin-bottom: 48px !important;
}

@media (max-width: 768px) {
  .page-hero-banner {
    min-height: 70vh !important;
    min-height: 70dvh !important;
    padding-top: 130px !important;
    padding-bottom: 50px !important;
  }
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 13, 30, 0.22) 0%, rgba(7, 13, 30, 0.72) 100%),
              linear-gradient(180deg, rgba(7, 13, 30, 0.35) 0%, rgba(7, 13, 30, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-desc {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 740px;
  margin: 0 auto 36px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ROOMS SHOWCASE */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.room-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -10px rgba(217, 119, 6, 0.18);
  border-color: rgba(217, 119, 6, 0.3);
}

.room-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.room-card:hover .room-image-wrap img {
  transform: scale(1.08);
}

.room-badge-top {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.room-badge-top .glass-badge {
  background: rgba(7, 13, 30, 0.85) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 6px 14px !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.room-price-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

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

.room-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dawn-navy);
  transition: color var(--transition-fast);
}

.room-card:hover .room-title {
  color: var(--dawn-gold);
}

.room-specs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.room-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-desc {
  color: var(--text-secondary);
  font-size: 0.94rem;
  margin-bottom: 22px;
  line-height: 1.6;
  flex: 1;
}

.room-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.room-card-footer .btn-glass-outline,
.room-card-footer .btn-glass-primary {
  height: 38px;
  min-height: 38px;
  padding: 0 10px;
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
}

/* SECTION TABS / FILTERS */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--dawn-navy);
  color: #ffffff;
  border-color: var(--dawn-navy);
  box-shadow: 0 6px 20px -4px rgba(11, 19, 43, 0.4);
}

/* CUISINE & BATHS FEATURES */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-split.reverse .feature-content {
  order: 2;
}

.feature-split.reverse .feature-media {
  order: 1;
}

.feature-media {
  position: relative;
}

.feature-card-glow {
  position: absolute;
  bottom: -20px;
  right: 20px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 280px;
  z-index: 2;
}

/* BLOG & NEWS CARDS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.news-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.news-media {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.news-card:hover .news-media img {
  transform: scale(1.08);
}

.news-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.8rem;
  color: var(--dawn-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--dawn-navy);
}

.news-card:hover .news-title {
  color: var(--dawn-gold);
}

/* FOOTER (LUXURY BALANCED 4-COLUMN LAYOUT) */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 90px 0 36px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-brand-hero {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(217, 119, 6, 0.35));
}

.footer-brand-tagline h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-brand-tagline p {
  color: var(--text-light-muted);
  font-size: 0.92rem;
  max-width: 520px;
  line-height: 1.6;
}

.footer-quick-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Main Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.95fr 1.55fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dawn-gold-light);
  margin-top: 8px;
  border-radius: var(--radius-pill);
}

/* Liquid Glass Contact Pills */
.footer-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-pill {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text-light);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-contact-pill:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.contact-pill-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.contact-pill-label {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-pill-val {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-pill:hover .contact-pill-val {
  color: var(--dawn-gold-bright);
}

/* Footer Nav Links */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: var(--text-light-muted);
  font-size: 0.90rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-nav-list a:hover {
  color: var(--dawn-gold-bright);
  transform: translateX(4px);
}

/* Footer Luxury Google Maps Card */
.footer-map-luxury-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
}

.footer-map-luxury-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 25px rgba(217, 119, 6, 0.2);
}

.map-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.map-badge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}

.map-open-btn {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.92) 0%, rgba(245, 158, 11, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.35);
}

.map-open-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
  transform: translateY(-1px);
}

.map-iframe-container {
  width: 100%;
  height: 155px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-card-note {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.86rem;
  color: var(--text-light-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--dawn-gold-bright);
}

.dot-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-top-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* MODAL & TOAST */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-content {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-spring);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.15);
}

.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast-msg {
  background: rgba(7, 13, 30, 0.94);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  animation: slideInRight 0.4s ease forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE BREAKPOINTS - COMPREHENSIVE MOBILE OPTIMIZATION */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 70px;
    --section-spacing-lg: 88px;
    --section-spacing-sm: 48px;
  }

  .main-nav-list { display: none !important; }
  .mobile-toggle { display: flex !important; }
  
  .room-grid, .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .feature-split.reverse .feature-content {
    order: 1;
  }
  
  .feature-split.reverse .feature-media {
    order: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 56px;
    --section-spacing-lg: 72px;
    --section-spacing-sm: 36px;
  }

  .container {
    padding: 0 16px;
  }

  .site-header {
    height: 70px;
  }

  .site-header .container {
    padding: 0 14px;
  }

  .header-brand .logo-img {
    height: 48px;
  }

  .hero-section {
    padding-top: 130px;
    padding-bottom: 50px;
    min-height: 80vh;
    min-height: 80dvh;
  }

  .page-hero-banner {
    min-height: 65vh !important;
    min-height: 65dvh !important;
    padding-top: 110px !important;
    padding-bottom: 30px !important;
  }

  .page-hero-banner .hero-content-card {
    padding: 16px 20px;
    border-radius: 18px;
    width: 95%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-glass-primary,
  .hero-actions .btn-glass-outline {
    width: 100%;
    height: 48px;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.1rem);
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .feature-media .image-rounded-luxury,
  .feature-media .image-arch {
    height: 300px;
    border-radius: 18px;
  }

  .footer-top-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    text-align: center;
  }

  .footer-brand-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-quick-cta .btn-glass-primary {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .room-grid, .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal-content {
    padding: 24px 16px !important;
    border-radius: 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-content form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .feature-media .image-rounded-luxury,
  .feature-media .image-arch {
    height: 240px;
  }

  .room-card .room-image-wrap {
    height: 220px;
  }

  .room-card-footer {
    flex-direction: column;
    gap: 8px;
  }

  .room-card-footer .btn-glass-outline,
  .room-card-footer .btn-glass-primary {
    width: 100%;
    justify-content: center;
  }

  .feature-content div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

