/* ==========================================================================
   DESIGN SYSTEM VARIABLES & RESET
   ========================================================================== */

:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --hotel-navy: #0B1F3A;
  --hotel-navy-light: #132845;
  --hotel-navy-dark: #071426;
  --hotel-gold: #C9A84C;
  --hotel-gold-light: #D4B96A;
  --hotel-cream: #FAFAFA;

  --text-dark: #0B1F3A;
  --text-muted: #5a6a7a;
  --text-light: rgba(255, 255, 255, 0.8);
  --border-color: rgba(11, 31, 58, 0.07);
  --border-gold: rgba(201, 168, 76, 0.25);

  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.05);
  --shadow-md: 0 4px 24px rgba(11, 31, 58, 0.07);
  --shadow-lg: 0 8px 40px rgba(11, 31, 58, 0.12);
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--hotel-cream);
  color: var(--hotel-navy);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   LAYOUT UTILITIES & GENERAL STYLES
   ========================================================================== */

.container {
  max-width: 3840px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.flex-1 {
  flex: 1;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.pointer-events-none {
  pointer-events: none;
}

.mt-auto {
  margin-top: auto;
}

.overflow-hidden {
  overflow: hidden;
}

/* Sections */
.pt-navbar {
  padding-top: 72px;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

/* Backgrounds & Borders */
.bg-white {
  background-color: #ffffff;
}

.bg-cream {
  background-color: var(--hotel-cream);
}

.bg-navy {
  background-color: var(--hotel-navy);
  color: #ffffff;
}

.border-none {
  border: none;
}

.rounded-sm {
  border-radius: 2px;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

.font-sans {
  font-family: var(--font-body);
}

.font-body {
  font-family: var(--font-body);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-white {
  color: #ffffff;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-65 {
  color: rgba(255, 255, 255, 0.65);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}

.text-gold {
  color: var(--hotel-gold);
}

.text-navy {
  color: var(--hotel-navy);
}

.text-muted {
  color: var(--text-muted);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

.italic {
  font-style: italic;
}

.leading-none {
  line-height: 1;
}

.leading-relaxed {
  line-height: 1.6;
}

.leading-loose {
  line-height: 1.85;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* Grid base classes */
.grid-cols-1 {
  grid-template-columns: 1fr;
}

/* ==========================================================================
   NAVIGATION & NAVBAR
   ========================================================================== */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, border-bottom 0.3s;
  background: rgba(11, 31, 58, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(11, 31, 58, 0.97);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-container {
  max-width: 3840px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

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

.nav-link.active {
  border-color: var(--hotel-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-family: var(--font-body);
  transition: color 0.3s;
}

.nav-phone:hover {
  color: var(--hotel-gold);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--hotel-gold);
  padding: 0.4rem;
  border-radius: 2px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, border-top 0.35s ease;
  background: rgba(11, 31, 58, 0.98);
}

.mobile-menu-list {
  list-style: none;
  padding: 1rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.3s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--hotel-gold);
}

.mobile-reserve-btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--hotel-navy);
  background: var(--hotel-gold);
  padding: 0.75rem;
  border-radius: 2px;
  transition: background-color 0.3s;
}

.mobile-reserve-btn:hover {
  background-color: var(--hotel-gold-light);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
}

.btn-primary:hover {
  background-color: var(--hotel-gold-light);
}

.btn-secondary {
  background-color: var(--hotel-navy);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--hotel-navy);
  color: var(--hotel-navy);
}

.btn-outline:hover {
  background-color: var(--hotel-navy);
  color: #ffffff;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.btn-full {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.875rem;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--hotel-navy);
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 31, 58, 0.45) 0%, rgba(11, 31, 58, 0.65) 50%, rgba(11, 31, 58, 0.88) 100%);
  z-index: 20;
  pointer-events: none;
}

.hero-gold-line-left {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--hotel-gold), transparent);
  z-index: 20;
  transition: transform 1s;
}

.hero-gold-line-right {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--hotel-gold), transparent);
  z-index: 20;
  transition: transform 1s;
}

.hero-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-accent {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hotel-gold);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-headline span {
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.75;
  margin: 0 auto 2.5rem;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(11, 31, 58, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #ffffff;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.hero-nav-btn:hover {
  background: var(--hotel-gold);
  color: var(--hotel-navy);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn-prev {
  left: 1.5rem;
}

.hero-nav-btn-next {
  right: 1.5rem;
}

.hero-bottom-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--hotel-gold);
  transform: scale(1.3);
}

.hero-progress-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  overflow: hidden;
}

.hero-progress-bar {
  height: 100%;
  background: var(--hotel-gold);
  width: 0;
}

.hero-counter {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 40;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--hotel-gold), transparent);
}

/* Animations */
.fade-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes kenBurns {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1.04);
  }
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.hero-slide.active .hero-slide-img {
  animation: kenBurns 6s ease-out forwards;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.45, 0, 0.15, 1);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
}

.hero-text-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active .hero-text-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   WHY CHOOSE US / FEATURES SECTION
   ========================================================================== */

.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.subtitle-line {
  height: 1px;
  width: 40px;
  background-color: var(--hotel-gold);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hotel-gold);
}

.section-title {
  color: var(--hotel-navy);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  border-top: 2px solid var(--hotel-gold);
  background-color: var(--hotel-cream);
  border-radius: 2px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11, 31, 58, 0.18);
}

.hover-lift img {
  transition: transform 0.5s ease;
}

.hover-lift:hover img {
  transform: scale(1.06);
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--hotel-gold);
  margin-bottom: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(8deg);
}

.feature-card h3 {
  color: var(--hotel-navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==========================================================================
   ROOMS FILTER & LISTINGS
   ========================================================================== */

.filter-bar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  position: sticky;
  top: 72px;
  z-index: 50;
}

.filter-container {
  max-width: 3840px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--hotel-navy);
}

.filter-btn.active {
  border-bottom-color: var(--hotel-gold) !important;
  color: var(--hotel-gold) !important;
}

.room-count-label {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 1rem;
}

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

.room-card {
  background-color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.room-card-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.room-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.room-card-type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(11, 31, 58, 0.7);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.room-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-body h3 {
  color: var(--hotel-navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.room-card-body p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.room-amenities-strip {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.room-amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--hotel-gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.room-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.room-feature-icon {
  color: var(--hotel-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-specs-strip {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.room-spec-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.room-spec-icon {
  color: var(--hotel-gold);
}

.room-card-pricing-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--hotel-navy);
}

.room-card-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.room-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* ==========================================================================
   ROOM DETAIL PAGE & SPECIFIC ELEMENTS
   ========================================================================== */

.breadcrumbs-bar {
  background-color: var(--hotel-navy);
  padding: 1rem 0;
}

.breadcrumbs-container {
  max-width: 3840px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
}

.breadcrumbs-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.breadcrumbs-link:hover {
  color: var(--hotel-gold);
}

.breadcrumbs-current {
  color: var(--hotel-gold);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.gallery-main {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--hotel-navy);
}

.gallery-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(11, 31, 58, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.gallery-nav-btn:hover {
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
  left: 1rem;
}

.gallery-nav-next {
  right: 1rem;
}

.gallery-counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(11, 31, 58, 0.65);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

.gallery-thumbs {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumb-btn {
  width: 90px;
  height: 60px;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.3s;
}

.thumb-btn:hover {
  transform: scale(1.04);
}

.thumb-btn.active {
  border-color: var(--hotel-gold) !important;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-specs-card {
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.detail-specs-header {
  background-color: var(--hotel-navy);
  padding: 1.5rem;
  text-align: center;
}

.detail-specs-price {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--hotel-gold);
}

.detail-specs-tax {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  font-family: var(--font-body);
}

.detail-specs-body {
  padding: 1.5rem;
}

.detail-specs-row {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.detail-spec-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.detail-spec-node span {
  color: var(--hotel-gold);
}

.detail-specs-badge-wrap {
  text-align: center;
  margin-bottom: 1.25rem;
}

.detail-specs-badge {
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--hotel-gold);
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-gold);
  font-family: var(--font-body);
}

.detail-specs-footer-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.detail-specs-help {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  text-align: center;
}

.detail-specs-help p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-specs-help a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hotel-navy);
  transition: color 0.3s;
}

.detail-specs-help a:hover {
  color: var(--hotel-gold);
}

.detail-specs-help-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.detail-sidebar-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.detail-sidebar-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.65rem 0.875rem;
  background-color: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 2px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}

.detail-sidebar-nav-link:hover {
  border-color: var(--hotel-gold);
  color: var(--hotel-navy);
}

.detail-sidebar-nav-link-next {
  justify-content: flex-end;
  text-align: right;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* ==========================================================================
   ABOUT PAGE ELEMENTS
   ========================================================================== */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img-wrap {
  position: relative;
}

.story-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 140px;
  height: 140px;
  background-color: var(--hotel-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 4px solid #ffffff;
}

.story-badge-year {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--hotel-gold);
  line-height: 1;
}

.story-badge-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.stats-strip {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-item-num {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--hotel-gold);
}

.stat-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.blockquote-mission {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  border-left: 4px solid var(--hotel-gold);
  padding-left: 1.5rem;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 1.25rem;
}

.blockquote-author {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--hotel-gold);
  letter-spacing: 0.1em;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.team-card-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.6), transparent);
}

.team-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hotel-gold);
  margin-bottom: 0.375rem;
}

.team-card-body h3 {
  color: var(--hotel-navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.team-card-body p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.award-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
}

.award-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--hotel-gold);
  margin-bottom: 1rem;
}

.award-card h3 {
  color: var(--hotel-navy);
  font-size: 0.95rem;
  margin-bottom: 0.375rem;
}

.award-card div {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BOOKING FLOW & PROCESSOR
   ========================================================================== */

.progress-bar-wrap {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  padding: 1.25rem 0;
  position: sticky;
  top: 72px;
  z-index: 99;
}

.progress-indicator-bar {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.step-indicator {
  display: flex;
  align-items: center;
  flex: 1;
}

.step-indicator:last-child {
  flex: none;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(11, 31, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--text-muted);
  background-color: #ffffff;
  transition: all 0.3s;
}

.step-indicator.active .step-icon {
  border-color: var(--hotel-navy);
  background-color: var(--hotel-navy);
  color: #ffffff;
}

.step-indicator.completed .step-icon {
  border-color: var(--hotel-gold);
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
}

.step-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.step-indicator.active .step-text {
  color: var(--hotel-navy);
}

.step-indicator.completed .step-text {
  color: var(--hotel-gold);
}

.step-line {
  height: 2px;
  background-color: rgba(11, 31, 58, 0.1);
  flex: 1;
  margin: 0 1rem;
  transition: background-color 0.3s;
}

.step-indicator.completed .step-line {
  background-color: var(--hotel-gold);
}

.booking-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.booking-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.booking-title {
  color: var(--hotel-navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.booking-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hotel-navy);
}

.form-label span {
  color: var(--hotel-gold);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 31, 58, 0.15);
  border-radius: 2px;
  background-color: #ffffff;
  color: var(--hotel-navy);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: var(--hotel-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.guest-picker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 2px;
}

.guest-picker-label {
  display: flex;
  flex-direction: column;
}

.guest-type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hotel-navy);
}

.guest-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.counter-btn-group {
  display: flex;
  align-items: center;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid rgba(11, 31, 58, 0.15);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hotel-navy);
  transition: all 0.3s;
}

.counter-btn:hover:not(:disabled) {
  border-color: var(--hotel-gold);
  color: var(--hotel-gold);
}

.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-val {
  display: inline-block;
  width: 30px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hotel-navy);
}

.booking-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

#nav-spacer {
  flex-grow: 1;
}

.booking-alert {
  background-color: #fdf6e2;
  border-left: 4px solid var(--hotel-gold);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--hotel-navy);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-success-wrap {
  text-align: center;
  padding: 3rem 2rem;
}

.booking-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(201, 168, 76, 0.12);
  color: var(--hotel-gold);
  margin-bottom: 1.5rem;
}

.booking-ref-badge {
  display: inline-block;
  background-color: var(--hotel-navy);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 1.5rem;
}

.summary-table th,
.summary-table td {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-table th {
  background-color: var(--hotel-cream);
  color: var(--hotel-navy);
  font-weight: 600;
  font-family: var(--font-body);
}

.summary-table td {
  color: var(--text-muted);
}

.summary-total-row th,
.summary-total-row td {
  border-top: 2px solid var(--hotel-navy);
  border-bottom: none;
  font-size: 1.1rem !important;
  color: var(--hotel-navy) !important;
  font-weight: bold;
}

/* ==========================================================================
   CONTACT PAGE & ELEMENTS
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-row {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-detail-icon {
  color: var(--hotel-gold);
  margin-top: 3px;
}

.contact-detail-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hotel-navy);
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  white-space: pre-line;
}

.map-container {
  position: relative;
  height: 250px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.success-message-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.success-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(201, 168, 76, 0.12);
  color: var(--hotel-gold);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: var(--hotel-navy);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
}

.footer-top-gradient {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--hotel-gold), transparent);
}

.footer-content {
  max-width: 3840px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hotel-gold);
  margin-bottom: 1.25rem;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.social-btn:hover {
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
  border-color: var(--hotel-gold);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--hotel-gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.contact-icon {
  color: var(--hotel-gold);
  margin-top: 2px;
}

.footer-newsletter-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-right: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  color: #ffffff;
  font-size: 0.8rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  padding: 0.6rem 1rem;
  background: var(--hotel-gold);
  border: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  color: var(--hotel-navy);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-btn:hover {
  background-color: var(--hotel-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-bottom-link:hover {
  color: var(--hotel-gold);
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-actions a:not(.mobile-menu-btn) {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-badge {
    bottom: -1rem;
    left: 1rem;
    width: 120px;
    height: 120px;
  }

  .story-badge-year {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .room-count-label {
    display: none;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main img {
    height: 300px;
  }

  .booking-card {
    padding: 1.25rem;
  }

  .progress-indicator-bar {
    padding: 0 1rem;
  }

  .step-text {
    font-size: 0.65rem;
  }

  .step-line {
    margin: 0 0.5rem;
  }
}

/* ==========================================================================
   ADDITIONAL SEMANTIC COMPONENTS (REFAC FROM TAILWIND)
   ========================================================================== */

.back-to-rooms {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: transparent;
  border: none;
  color: var(--hotel-navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 2rem;
  padding: 0;
  transition: transform 0.3s;
}

.back-to-rooms:hover {
  transform: translateX(-4px);
}

.detail-amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--hotel-navy);
  background-color: #ffffff;
  font-family: var(--font-body);
  transition: transform 0.2s, border-color 0.3s;
}

.detail-amenity-item:hover {
  transform: scale(1.06);
  border-color: var(--hotel-gold);
}

.detail-amenity-icon {
  color: var(--hotel-gold);
  display: flex;
  align-items: center;
}

.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background-color: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--hotel-gold);
}

/* Booking Step 2 Room Cards */
.select-room-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid rgba(11, 31, 58, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .select-room-card {
    flex-direction: row;
  }
}

.select-room-card.selected {
  border-color: var(--hotel-gold);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.select-room-card-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .select-room-card-img-wrap {
    width: 220px;
  }
}

.select-room-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.select-room-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.select-room-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.select-room-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.select-room-card-title {
  color: var(--hotel-navy);
  font-size: 1.1rem;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
}

.select-room-card-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.select-room-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.select-room-card-meta-icon {
  color: var(--hotel-gold);
}

.select-room-card-pricing {
  text-align: right;
}

.select-room-card-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--hotel-navy);
  font-family: var(--font-heading);
}

.select-room-card-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.select-room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.select-room-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Booking Step 4 Summary Details */
.summary-details-list {
  display: flex;
  flex-direction: column;
}

.summary-details-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
}

.summary-details-row:last-child {
  border-bottom: none;
}

.summary-details-row .label {
  color: var(--text-muted);
  font-weight: 500;
}

.summary-details-row .value {
  color: var(--hotel-navy);
  font-weight: 600;
}

.summary-details-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--hotel-navy);
}

.summary-details-total .label {
  color: var(--hotel-navy);
  font-weight: bold;
  font-family: var(--font-body);
}

.summary-details-total .value {
  color: var(--hotel-gold);
  font-weight: bold;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* ==========================================================================
   MIGRATION HELPERS & UTILITIES
   ========================================================================== */

/* Image fitting */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Custom Hero Slider elements */
.hero-content-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.hero-accent-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-accent-line {
  height: 1px;
  width: 32px;
  background-color: var(--hotel-gold);
}

.hero-headline span.highlight {
  color: var(--hotel-gold);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-actions .btn {
  padding: 0.875rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-nav-btn svg {
  width: 20px;
  height: 20px;
}

.hero-pause-btn {
  margin-left: 0.25rem;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(11, 31, 58, 0.4);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.hero-pause-btn:hover {
  transform: scale(1.15);
  color: #ffffff;
  background-color: rgba(11, 31, 58, 0.6);
}

.hero-pause-btn:active {
  transform: scale(0.9);
}

.hero-pause-btn svg {
  width: 12px;
  height: 12px;
}

.hero-dot {
  transition: width 0.3s, background-color 0.3s, transform 0.3s;
}

.hero-dot.active {
  width: 28px;
  background-color: var(--hotel-gold);
  border-radius: 4px;
  transform: none;
}

/* Room details page layout grid */
.detail-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .detail-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Map placeholder card */
.map-placeholder {
  position: relative;
  background-color: var(--hotel-navy);
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(201, 168, 76, 0.15) 1px, transparent 1px);
  background-size: 16px 16px;
}

.map-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(201, 168, 76, 0.08);
}

.map-pin-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.map-pin-circle {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  color: var(--hotel-gold);
  background-color: rgba(201, 168, 76, 0.15);
  border: 2px solid var(--hotel-gold);
}

.map-pin-circle svg {
  width: 22px;
  height: 22px;
}

.map-info-box {
  position: relative;
  z-index: 10;
  text-align: center;
}

.map-info-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #ffffff;
}

.map-info-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.map-coords {
  position: relative;
  z-index: 10;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
}

/* Page-specific layouts */
.about-hero-img {
  object-position: center 40%;
}

.contact-hero-desc {
  max-width: 480px;
  margin: 0 auto;
}

/* Global contextual SVG icon sizes */
.nav-phone svg {
  width: 13px;
  height: 13px;
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.award-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.room-amenity-icon svg {
  width: 14px;
  height: 14px;
}

.room-feature-icon svg {
  width: 11px;
  height: 11px;
}

.room-spec-icon svg {
  width: 13px;
  height: 13px;
}

/* Fill the star icon in room specs */
.room-specs-strip .room-spec-item:last-child .room-spec-icon svg {
  fill: currentColor;
}

.room-card-actions svg {
  width: 13px;
  height: 13px;
}

.gallery-nav-btn svg {
  width: 20px;
  height: 20px;
}

.detail-amenity-icon svg {
  width: 15px;
  height: 15px;
}

.detail-feature-icon svg {
  width: 10px;
  height: 10px;
}

.detail-sidebar-nav-link svg {
  width: 14px;
  height: 14px;
}

.select-room-card-meta-icon svg {
  width: 14px;
  height: 14px;
}

/* Global utilities & sizing fallbacks */
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.justify-start {
  justify-content: flex-start;
}

textarea.form-control {
  resize: vertical;
}

/* Subpage Hero templates */
.hero-subpage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.about-hero {
  height: 360px;
}

.rooms-hero {
  height: 320px;
}

.booking-hero {
  background-color: var(--hotel-navy);
  padding: 3rem 2rem;
  text-align: center;
}

.contact-hero {
  background-color: var(--hotel-navy);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--hotel-navy);
  z-index: 10;
  opacity: 0.7;
}

.hero-subpage-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-family: var(--font-heading);
  margin: 0;
}

/* Story elements */
.story-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.story-grid .subtitle-line {
  width: 32px;
}

/* Room details styling */
.room-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* Booking Layout & Steps */
.booking-card-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.room-selection-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-summary-card {
  text-align: left;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.booking-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.booking-summary-title {
  font-size: 1.1rem;
  margin: 0;
}

.booking-actions-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.booking-success-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

/* Contact page additions */
.success-icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Room details section elements */
.room-detail-section {
  margin-top: 2rem;
}

.detail-amenities-wrap {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.detail-sidebar-sticky {
  position: sticky;
  top: 90px;
}

.detail-spec-node span svg {
  fill: currentColor;
}

/* Disabled state utilities */
.opacity-50 {
  opacity: 0.5;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Small button variant for room card actions */
.btn-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
}

/* Gallery badge overlay (room detail page) */
.gallery-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--hotel-gold);
  color: var(--hotel-navy);
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  z-index: 10;
}

/* Empty room message for booking step 2 */
.no-rooms-message {
  text-align: center;
  padding: 2rem;
}

.no-rooms-message .booking-desc {
  margin-bottom: 0;
}

/* Room not found fallback */
.room-not-found {
  min-height: 50vh;
}

.room-not-found h2 {
  color: var(--hotel-navy);
}

.room-not-found a {
  text-decoration: none;
}

/* Summary value truncation */
.summary-value-truncate {
  text-align: right;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Contact success title (smaller) */
.success-title-sm {
  font-size: 1.25rem;
}

/* Spacer for sidebar nav */
.flex-spacer {
  flex: 1;
}