/* ==========================================================================
   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;
  flex: 0 0 auto;
  gap: 0.75rem;
}

.nav-logo img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.32));
  max-height: 56px;
  max-width: min(250px, calc(100vw - 120px));
  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;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.testimonial-rating {
  color: var(--hotel-gold);
  display: flex;
  gap: 0.2rem;
}

.testimonial-quote {
  color: var(--text-dark);
  font-size: 0.96rem;
  line-height: 1.75;
}

.testimonial-person strong {
  color: var(--hotel-navy);
  display: block;
  font-size: 0.98rem;
}

.testimonial-person span {
  color: var(--text-muted);
  display: block;
  font-size: 0.84rem;
  margin-top: 0.2rem;
}

/* ==========================================================================
   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;
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--hotel-navy);
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.5s;
}

.gallery-main [hidden] {
  display: none !important;
}

.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;
  position: relative;
}

.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;
}

.thumb-video-icon {
  align-items: center;
  background: rgba(11, 31, 58, 0.78);
  color: #ffffff;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
}

.thumb-video-icon svg {
  height: 20px;
  width: 20px;
}

.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 {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
  max-height: 86px;
  max-width: min(340px, 100%);
  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-legal {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-dev-credit a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-dev-credit a:hover {
  color: var(--hotel-gold);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  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);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 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;
  }

  .testimonials-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 {
    height: 300px;
  }

  .gallery-main img,
  .gallery-main video {
    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);
}

.room-feedback-section {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
}

.room-feedback-form {
  display: grid;
  gap: 1rem;
}

.room-feedback-message {
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.8rem 1rem;
}

.room-feedback-message[data-variant="success"] {
  background: #ecfdf3;
  color: #067647;
}

.room-feedback-message[data-variant="error"] {
  background: #fef3f2;
  color: #b42318;
}

/* 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;
  margin-bottom: 0.75rem;
}

.amenities-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hotel-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.amenities-toggle-btn:hover {
  opacity: 0.75;
}

.amenities-toggle-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}

.amenities-toggle-btn.open svg {
  transform: rotate(180deg);
}

.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;
}

/* Admin dashboard */
.admin-page {
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.04), rgba(250, 250, 250, 0) 340px),
    var(--hotel-cream);
}

.admin-login-view {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.admin-login-panel {
  width: min(100%, 440px);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--hotel-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.admin-login-brand,
.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.admin-login-brand {
  margin-bottom: 1.75rem;
}

.admin-login-brand img,
.admin-sidebar-brand img {
  filter: drop-shadow(0 1px 2px rgba(7, 18, 40, 0.18));
  max-height: 64px;
  max-width: min(220px, 100%);
  width: auto;
  object-fit: contain;
}

.admin-login-brand span {
  color: var(--hotel-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-login-panel h1,
.admin-section-header h1 {
  font-family: var(--font-heading);
  color: var(--hotel-navy);
  font-weight: 500;
  letter-spacing: 0;
}

.admin-login-panel h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.admin-page .form-group {
  margin-bottom: 1.15rem;
}

.admin-page .form-group label {
  display: block;
  color: var(--hotel-navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.admin-page .form-group input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: var(--hotel-navy);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-page .form-group input:focus {
  outline: none;
  border-color: var(--hotel-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.admin-error {
  display: none;
  color: #9f1d1d;
  background: #fff4f4;
  border: 1px solid rgba(159, 29, 29, 0.18);
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
}

.btn-admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--hotel-gold);
  color: var(--hotel-navy);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 42px;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-admin:hover {
  background: var(--hotel-gold-light);
  transform: translateY(-1px);
}

.btn-admin svg {
  width: 16px;
  height: 16px;
}

.admin-login-submit,
.admin-modal-submit {
  width: 100%;
}

.admin-dashboard-view {
  display: none;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
}

.admin-sidebar {
  background: var(--hotel-navy);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
}

.admin-sidebar-brand {
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 0.75rem;
}

.admin-sidebar-brand h2 {
  color: var(--hotel-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
}

.admin-sidebar .nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.95rem 1.25rem;
  text-align: left;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.admin-sidebar .nav-item:hover,
.admin-sidebar .nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--hotel-gold);
  color: #ffffff;
}

.admin-sidebar .nav-item svg {
  width: 18px;
  height: 18px;
  color: var(--hotel-gold);
  flex: 0 0 auto;
}

.admin-logout {
  margin-top: auto;
}

.admin-logout-form {
  margin-top: auto;
}

.admin-logout-form .admin-logout {
  margin-top: 0;
}

.admin-main-content {
  min-width: 0;
  padding: 2.5rem;
}

.content-section {
  display: none;
}

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

.admin-section-header {
  margin-bottom: 1.25rem;
}

.admin-section-header h1 {
  font-size: 2rem;
}

.admin-section-header-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-table-shell {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.admin-page table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-page th,
.admin-page td {
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
}

.admin-page th {
  background: rgba(11, 31, 58, 0.035);
  color: var(--hotel-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-page td {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.admin-page td strong {
  color: var(--hotel-navy);
}

.admin-table-action {
  min-height: 32px;
  padding: 0.45rem 0.65rem;
  font-size: 0.7rem;
}

.admin-table-action-secondary {
  background: transparent;
  border-color: rgba(11, 31, 58, 0.16);
  color: var(--hotel-navy);
}

.admin-table-action-secondary:hover {
  background: rgba(11, 31, 58, 0.05);
}

.admin-table-action-danger {
  background: #9f1d1d;
  color: #ffffff;
}

.admin-table-action-danger:hover {
  background: #7e1717;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 38, 0.68);
  padding: 1.5rem;
  z-index: 1200;
}

.modal-content {
  width: min(100%, 540px);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.modal-header h2 {
  color: var(--hotel-navy);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

.close-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 6px;
  background: #ffffff;
  color: var(--hotel-navy);
  cursor: pointer;
}

.close-modal:hover {
  border-color: var(--hotel-gold);
  color: var(--hotel-gold);
}

.admin-room-form {
  display: grid;
  gap: 0.1rem;
}

@media (max-width: 900px) {
  .admin-dashboard-view {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-sidebar-brand {
    padding-bottom: 1rem;
  }

  .admin-sidebar .nav-item {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .admin-logout {
    margin-top: 0;
  }

  .admin-main-content {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .admin-login-view {
    align-items: flex-start;
    padding: 2rem 1rem;
  }

  .admin-login-panel {
    padding: 1.5rem;
  }

  .admin-section-header-split {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-add-room {
    width: 100%;
  }

  .admin-page table {
    min-width: 680px;
  }
}

/* ==========================================================================
   ADMIN OPERATIONS UI
   ========================================================================== */

.admin-body {
  background: #f4f6f8;
  color: #172033;
  display: block;
  min-height: 100vh;
}

.admin-page {
  background: #f4f6f8;
  min-height: 100vh;
}

.admin-login-view {
  background: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  min-height: 100vh;
  padding: 0;
}

.admin-login-media {
  background: #0b1220;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.admin-login-media::after {
  background: linear-gradient(180deg, rgba(4, 11, 24, 0.18), rgba(4, 11, 24, 0.52));
  content: "";
  inset: 0;
  position: absolute;
}

.admin-login-media img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.admin-login-panel {
  align-self: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  justify-self: center;
  padding: 72px 0 32px;
  width: min(calc(100% - 48px), 356px);
}

.admin-login-brand,
.admin-sidebar-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.admin-login-brand {
  display: block;
  margin-bottom: 74px;
}

.admin-login-logo-link {
  display: inline-flex;
  max-width: 100%;
  text-decoration: none;
}

.admin-login-brand img,
.admin-sidebar-brand img {
  filter: drop-shadow(0 1px 2px rgba(7, 18, 40, 0.18));
  max-height: 64px;
  max-width: min(220px, 100%);
  object-fit: contain;
  width: auto;
}

.admin-login-brand img {
  max-height: 86px;
  max-width: min(300px, 100%);
}

.admin-sidebar-brand span {
  color: #7b8494;
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-sidebar-brand strong {
  color: #172033;
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.admin-login-wordmark {
  align-items: center;
  display: flex;
  gap: 4px;
  line-height: 1;
}

.admin-login-brand .admin-login-mark {
  color: #b79a57;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.admin-login-brand .admin-login-name {
  color: #071228;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-login-brand strong {
  color: #071228;
  display: block;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 4px;
}

.admin-login-copy {
  margin-bottom: 32px;
}

.admin-login-copy h1 {
  color: #071228;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 12px;
}

.admin-login-copy p {
  color: #071228;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 350px;
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-login-form .form-group {
  margin-bottom: 0;
}

.admin-login-label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.admin-login-form .form-group input {
  border-color: #d7dce4;
  border-radius: 7px;
  color: #071228;
  font-size: 1rem;
  min-height: 44px;
  padding: 10px 13px;
}

.admin-login-form .form-group input::placeholder {
  color: #7b8494;
}

.admin-remember-row {
  align-items: center;
  color: #071228;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.98rem;
  gap: 10px;
  line-height: 1.2;
}

.admin-remember-row input {
  appearance: none;
  background: #ffffff;
  border: 1px solid #d7dce4;
  border-radius: 5px;
  height: 20px;
  margin: 0;
  position: relative;
  width: 20px;
}

.admin-remember-row input:checked {
  background: #071228;
  border-color: #071228;
}

.admin-remember-row input:checked::after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 9px;
  left: 7px;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  width: 5px;
}

.admin-login-submit {
  background: #06133a;
  border-color: #06133a;
  border-radius: 7px;
  font-size: 0.95rem;
  min-height: 44px;
}

.admin-login-submit:hover {
  background: #0a1b4f;
  border-color: #0a1b4f;
}

.admin-page .form-group {
  margin-bottom: 16px;
}

.admin-page .form-group label {
  color: #38445a;
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-transform: none;
}

.admin-page .form-group input,
.admin-page .form-group textarea {
  background: #ffffff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  color: #172033;
  font: inherit;
  min-height: 42px;
  padding: 9px 11px;
  resize: vertical;
  width: 100%;
}

.admin-page .form-group input:focus,
.admin-page .form-group textarea:focus {
  border-color: #496a9c;
  box-shadow: 0 0 0 3px rgba(73, 106, 156, 0.16);
  outline: none;
}

.form-grid-2 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-error {
  background: #fff1f1;
  border: 1px solid #f0b8b8;
  border-radius: 6px;
  color: #9f1d1d;
  display: none;
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding: 10px 12px;
}

.btn-admin {
  align-items: center;
  background: #172033;
  border: 1px solid #172033;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0;
  min-height: 38px;
  padding: 9px 13px;
  text-transform: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

.btn-admin:hover {
  background: #24314a;
  border-color: #24314a;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.16);
  transform: none;
}

.btn-admin svg {
  height: 16px;
  width: 16px;
}

.admin-login-submit,
.admin-modal-submit {
  width: 100%;
}

.btn-admin:disabled,
.btn-admin.is-saving {
  box-shadow: none;
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-admin.is-saving svg {
  animation: adminButtonSpin 0.8s linear infinite;
}

@keyframes adminButtonSpin {
  to {
    transform: rotate(360deg);
  }
}

.admin-dashboard-view {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  background: #111827;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px 12px;
}

.admin-sidebar-brand {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0 8px 18px;
}

.admin-sidebar-brand img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.32));
  max-height: 56px;
  max-width: min(200px, 100%);
}

.admin-sidebar-brand strong {
  color: #ffffff;
}

.admin-sidebar-nav {
  display: grid;
  gap: 4px;
}

.admin-sidebar .nav-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #cbd5e1;
  cursor: pointer;
  display: flex;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  min-height: 42px;
  padding: 10px 12px;
  text-align: left;
  text-transform: none;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}

.admin-sidebar .nav-item:hover,
.admin-sidebar .nav-item.active {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.admin-sidebar .nav-item svg {
  color: #d8b85a;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.admin-sidebar-footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.admin-logout-form,
.admin-logout {
  margin-top: 0;
}

.admin-sidebar .admin-logout {
  color: #fecaca;
}

.admin-workspace {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-eyebrow {
  color: #667085;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.admin-topbar h1 {
  color: #172033;
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.admin-topbar p:not(.admin-eyebrow),
.admin-section-header p {
  color: #667085;
  font-size: 0.92rem;
  margin-top: 4px;
}

.admin-topbar-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.admin-security-badge {
  align-items: center;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 999px;
  color: #067647;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 7px;
  min-height: 34px;
  padding: 6px 11px;
  white-space: nowrap;
}

.admin-security-badge svg {
  height: 15px;
  width: 15px;
}

.admin-metrics-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-metric {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  min-height: 84px;
  padding: 16px;
}

.admin-metric-icon {
  align-items: center;
  background: #f3f6fb;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  color: #344765;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.admin-metric-icon svg {
  height: 19px;
  width: 19px;
}

.admin-metric p {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-metric strong {
  color: #172033;
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-top: 2px;
}

.admin-chart-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
}

.admin-chart-panel {
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  min-width: 0;
  padding: 18px;
}

.admin-chart-canvas {
  height: 320px;
  min-width: 0;
  position: relative;
}

.admin-chart-canvas-small {
  height: 280px;
}

.content-section {
  display: none;
}

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

.admin-section-header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-section-header h2 {
  color: #172033;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.admin-section-header-split {
  align-items: center;
}

.admin-table-shell {
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: none;
  overflow-x: auto;
}

.admin-table-state {
  color: #667085;
  font-size: 0.94rem;
  padding: 28px 18px;
  text-align: center;
}

.admin-table-state[data-variant="error"] {
  color: #b42318;
}

.admin-table-state[data-variant="empty"] {
  color: #667085;
}

.admin-page table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.admin-page table[hidden] {
  display: none;
}

.admin-page .dataTables_wrapper {
  color: #536174;
  min-width: 760px;
  padding: 14px 14px 10px;
}

.admin-page .dataTables_wrapper .dataTables_filter,
.admin-page .dataTables_wrapper .dataTables_info,
.admin-page .dataTables_wrapper .dataTables_paginate {
  color: #667085;
  font-size: 0.84rem;
}

.admin-page .dataTables_wrapper .dataTables_filter {
  margin-bottom: 12px;
}

.admin-page .dataTables_wrapper .dataTables_filter input {
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  color: #172033;
  margin-left: 8px;
  min-height: 34px;
  padding: 6px 9px;
}

.admin-page .dataTables_wrapper .dataTables_filter input:focus {
  border-color: #344765;
  box-shadow: 0 0 0 3px rgba(52, 71, 101, 0.12);
  outline: none;
}

.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button {
  border: 1px solid transparent;
  border-radius: 6px;
  color: #344765 !important;
  font-size: 0.82rem;
  margin-left: 4px;
  padding: 5px 9px;
}

.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #344765;
  border-color: #344765;
  color: #ffffff !important;
}

.admin-page .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f8fafc;
  border-color: #cfd8e3;
  color: #172033 !important;
}

.admin-page th,
.admin-page td {
  border-bottom: 1px solid #edf1f5;
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
}

.admin-page th {
  background: #f8fafc;
  color: #475467;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.admin-page td {
  color: #536174;
  font-size: 0.9rem;
}

.admin-page td strong {
  color: #172033;
}

.admin-page td small {
  color: #7b8494;
}

.admin-status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 4px 9px;
}

.admin-status-success {
  background: #ecfdf3;
  color: #067647;
}

.admin-status-warning {
  background: #fffaeb;
  color: #b54708;
}

.admin-status-danger {
  background: #fef3f2;
  color: #b42318;
}

.admin-status-muted {
  background: #f2f4f7;
  color: #667085;
}

.admin-table-action {
  min-height: 32px;
  padding: 6px 9px;
}

.admin-table-action-secondary {
  background: #ffffff;
  border-color: #cfd8e3;
  color: #172033;
}

.admin-table-action-secondary:hover {
  background: #f8fafc;
  border-color: #aebccc;
}

.admin-table-action-danger {
  background: #b42318;
  border-color: #b42318;
  color: #ffffff;
}

.admin-table-action-danger:hover {
  background: #912018;
  border-color: #912018;
}

.admin-table-action-success {
  background: #067647;
  border-color: #067647;
  color: #ffffff;
}

.admin-table-action-success:hover {
  background: #05603a;
  border-color: #05603a;
}

.swal-overlay {
  align-items: center;
  background: rgba(15, 23, 42, 0.58);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 1400;
}

.swal-modal {
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 21, 39, 0.24);
  max-width: 420px;
  padding: 22px;
  text-align: center;
  width: min(100%, 420px);
}

.swal-icon {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 14px;
  width: 42px;
}

.swal-icon-success {
  background: #ecfdf3;
  color: #067647;
}

.swal-icon-error,
.swal-icon-warning {
  background: #fef3f2;
  color: #b42318;
}

.swal-icon-info {
  background: #eff6ff;
  color: #175cd3;
}

.swal-title {
  color: #172033;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
}

.swal-text {
  color: #667085;
  font-size: 0.94rem;
  line-height: 1.5;
  margin-top: 8px;
}

.swal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.swal-button {
  border: 1px solid #172033;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
  min-height: 38px;
  min-width: 96px;
  padding: 8px 14px;
}

.swal-button-confirm {
  background: #172033;
  color: #ffffff;
}

.swal-button-confirm:hover {
  background: #24314a;
  border-color: #24314a;
}

.swal-button-cancel {
  background: #ffffff;
  border-color: #cfd8e3;
  color: #172033;
}

.swal-button-cancel:hover {
  background: #f8fafc;
  border-color: #aebccc;
}

.modal {
  align-items: center;
  background: rgba(15, 23, 42, 0.56);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 1200;
}

.modal-content {
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 21, 39, 0.24);
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  width: min(100%, 560px);
}

.modal-header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-header h2 {
  color: #172033;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: 0;
}

.close-modal {
  align-items: center;
  background: #ffffff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  color: #344054;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.close-modal:hover {
  background: #f8fafc;
  border-color: #aebccc;
  color: #172033;
}

.admin-room-form {
  display: grid;
  gap: 2px;
}

.admin-check-row {
  align-items: center;
  color: #38445a;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
  margin: 0 0 16px;
}

.admin-check-row input {
  height: 16px;
  width: 16px;
}

.admin-multi-select {
  background: #ffffff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  color: #172033;
  min-height: 180px;
  padding: 8px;
  width: 100%;
}

.admin-multi-select:focus {
  border-color: #496a9c;
  box-shadow: 0 0 0 3px rgba(73, 106, 156, 0.16);
  outline: none;
}

.admin-multi-select option {
  border-radius: 4px;
  padding: 5px 7px;
}

.admin-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.admin-settings-grid {
  display: grid;
  gap: 14px;
}

.admin-rbac-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
}

.admin-settings-panel {
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  padding: 18px;
}

.admin-settings-panel h3 {
  color: #172033;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.admin-room-filters-panel {
  margin-top: 14px;
}

.admin-list-stack {
  display: grid;
  gap: 10px;
}

.admin-list-item {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px;
}

.admin-list-item strong {
  color: #172033;
  display: block;
  font-size: 0.92rem;
}

.admin-list-item small {
  color: #667085;
  display: block;
  font-size: 0.82rem;
  margin-top: 3px;
  max-width: 760px;
}

.admin-list-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.admin-table-shell-compact table,
.admin-table-shell-compact .dataTables_wrapper {
  min-width: 640px;
}

.admin-checkbox-list {
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding: 10px;
}

.admin-checkbox-option {
  margin: 0;
}

.admin-permission-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
}

.admin-permission-group {
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  padding: 12px;
}

.admin-permission-heading {
  color: #172033;
  display: block;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.admin-permission-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-role-modal {
  width: min(100%, 760px);
}

.admin-media-list {
  display: grid;
  gap: 8px;
}

.admin-media-item {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  padding: 8px;
}

.admin-media-item img,
.admin-media-video-label {
  align-items: center;
  background: #e2e8f0;
  border-radius: 6px;
  color: #475467;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  object-fit: cover;
  width: 54px;
}

.admin-media-item small {
  color: #667085;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-muted-note {
  background: #f8fafc;
  border: 1px dashed #cfd8e3;
  border-radius: 8px;
  color: #667085;
  font-size: 0.88rem;
  padding: 12px;
}

.admin-booking-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-feedback-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-contact-modal {
  width: min(100%, 620px);
}

.admin-contact-details {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.admin-contact-details div {
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  padding: 10px;
}

.admin-contact-details dt {
  color: #667085;
  font-size: 0.74rem;
  font-weight: 850;
  margin-bottom: 4px;
}

.admin-contact-details dd {
  color: #172033;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.admin-contact-message {
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  color: #344054;
  line-height: 1.65;
  min-height: 120px;
  padding: 14px;
  white-space: pre-wrap;
}

@media (max-width: 980px) {
  .admin-login-view {
    grid-template-columns: 1fr;
  }

  .admin-login-media {
    display: none;
  }

  .admin-login-panel {
    padding: 48px 0 32px;
  }

  .admin-login-brand {
    margin-bottom: 56px;
  }

  .admin-dashboard-view {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    min-height: auto;
    padding: 14px;
  }

  .admin-sidebar-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-sidebar-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 12px;
  }

  .admin-workspace {
    padding: 18px;
  }

  .admin-metrics-grid,
  .admin-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-chart-grid {
    grid-template-columns: 1fr;
  }

  .admin-rbac-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .admin-login-panel {
    width: min(calc(100% - 36px), 356px);
  }

  .admin-topbar,
  .admin-section-header,
  .admin-section-header-split {
    display: grid;
  }

  .admin-topbar-actions,
  .admin-add-room {
    width: 100%;
  }

  .admin-security-badge {
    justify-content: center;
    width: 100%;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-nav {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-footer {
    grid-template-columns: 1fr;
  }

  .form-grid-2,
  .form-grid-3,
  .admin-contact-details {
    grid-template-columns: 1fr;
  }

  .admin-list-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-list-actions {
    justify-content: flex-start;
  }

  .admin-media-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .admin-media-item .admin-table-action {
    grid-column: 1 / -1;
  }

  .admin-permission-options,
  .swal-actions {
    grid-template-columns: 1fr;
  }

  .admin-permission-options {
    display: grid;
  }

  .swal-actions {
    display: grid;
  }

  .swal-button {
    width: 100%;
  }

  .admin-page table {
    min-width: 700px;
  }
}

@media (max-width: 520px) {
  .admin-login-panel {
    padding: 36px 0 28px;
  }

  .admin-workspace {
    padding: 14px;
  }
}

/* ==========================================================================
   ADMIN DASHBOARD REDESIGN (reference: screen.png)
   ========================================================================== */

/* Sidebar: muted icons, white on active/hover */
.admin-sidebar .nav-item svg {
  color: #8899ab;
}

.admin-sidebar .nav-item:hover svg,
.admin-sidebar .nav-item.active svg {
  color: #ffffff;
}

.admin-sidebar .nav-item.active {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

/* --- Topbar ---------------------------------------------------------------- */
.admin-topbar {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #edf1f5;
  display: flex;
  gap: 12px;
  margin: -24px -24px 24px;
  padding: 13px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-topbar-copy {
  flex: 0 1 300px;
  min-width: 220px;
}

.admin-topbar-copy .admin-eyebrow {
  font-size: 0.68rem;
  margin-bottom: 2px;
}

.admin-topbar-copy h1 {
  color: #172033;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.18;
}

.admin-topbar-copy p:not(.admin-eyebrow) {
  color: #667085;
  font-size: 0.82rem;
  line-height: 1.35;
  margin-top: 2px;
}

.admin-topbar-search {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  flex: 1;
  gap: 9px;
  max-width: 460px;
  padding: 8px 13px;
}

.admin-topbar-search svg {
  color: #94a3b8;
  flex-shrink: 0;
  height: 15px;
  width: 15px;
}

.admin-topbar-search input[type="search"] {
  background: transparent;
  border: none;
  color: #172033;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.admin-topbar-search input[type="search"]::placeholder {
  color: #94a3b8;
}

.admin-topbar-right {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  margin-left: auto;
}

.admin-bell-btn {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #475467;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 38px;
  justify-content: center;
  position: relative;
  transition: background 0.18s, border-color 0.18s;
  width: 38px;
}

.admin-bell-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.admin-bell-btn svg {
  height: 17px;
  width: 17px;
}

.admin-bell-badge {
  align-items: center;
  background: #e53e3e;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  font-size: 0.62rem;
  font-weight: 850;
  height: 17px;
  justify-content: center;
  min-width: 17px;
  padding: 0 3px;
  position: absolute;
  right: -5px;
  top: -5px;
}

.admin-user-chip {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: default;
  display: flex;
  gap: 8px;
  padding: 5px 10px 5px 6px;
}

.admin-user-avatar {
  align-items: center;
  background: #344765;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 850;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.admin-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.admin-user-role {
  color: #667085;
  font-size: 0.68rem;
  font-weight: 700;
}

.admin-user-name {
  color: #172033;
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-user-chip > svg {
  color: #94a3b8;
  height: 14px;
  width: 14px;
}

/* --- Metric cards --------------------------------------------------------- */
.admin-metrics-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.admin-metric {
  background: #ffffff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 16px 16px 12px;
  min-height: 142px;
  align-items: unset;
  gap: 0;
}

.admin-metric-top {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-metric-icon {
  align-items: center;
  background: #f3f6fb;
  border: 1px solid #e2eaf3;
  border-radius: 8px;
  color: #344765;
  display: inline-flex;
  flex-shrink: 0;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.admin-metric-icon.admin-metric-icon-purple {
  background: #f4f0ff;
  border-color: #ddd6fe;
  color: #6941c6;
}

.admin-metric-icon.admin-metric-icon-amber {
  background: #fffbf0;
  border-color: #fed7aa;
  color: #b54708;
}

.admin-metric-icon.admin-metric-icon-green {
  background: #ecfdf3;
  border-color: #abefc6;
  color: #067647;
}

.admin-metric-icon svg {
  height: 17px;
  width: 17px;
}

.admin-metric-label {
  color: #475467;
  flex: 1;
  font-size: 0.83rem;
  font-weight: 600;
  min-width: 0;
}

.admin-metric-period {
  color: #98a2b3;
}

.admin-metric-trend {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  flex-shrink: 0;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.admin-metric-trend svg {
  height: 14px;
  width: 14px;
}

.admin-metric-trend-up {
  background: #ecfdf3;
  color: #067647;
}

.admin-metric-trend-down {
  background: #fff1f0;
  color: #d32f2f;
}

.admin-metric-trend-dots {
  align-items: center;
  color: #98a2b3;
  display: inline-flex;
  flex-shrink: 0;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.admin-metric-trend-dots svg {
  height: 16px;
  width: 16px;
}

.admin-metric-visual {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(68px, max-content) minmax(96px, 1fr);
  margin-bottom: 10px;
  min-height: 54px;
}

.admin-metric-value {
  color: #172033;
  display: block;
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.admin-sparkline {
  display: block;
  height: 54px;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.admin-metric-updated {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: auto;
}

/* --- Chart grid overrides ------------------------------------------------- */
.admin-chart-grid {
  grid-template-columns: minmax(0, 1.9fr) minmax(240px, 1fr);
}

.admin-chart-canvas-revenue {
  height: 360px;
}

/* --- Responsive overrides ------------------------------------------------- */
@media (max-width: 980px) {
  .admin-topbar {
    margin: -18px -18px 18px;
  }

  .admin-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .admin-topbar {
    flex-wrap: wrap;
    gap: 10px;
    margin: -14px -14px 14px;
  }

  .admin-topbar-copy {
    flex: 1 0 100%;
    min-width: 0;
  }

  .admin-topbar-search {
    max-width: 100%;
    order: 2;
    width: 100%;
  }

  .admin-topbar-right {
    margin-left: 0;
    order: 1;
    width: 100%;
    justify-content: flex-end;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .admin-user-info {
    display: none;
  }
}
