:root {
  /* Light Theme — 70% White / 20% Light Pink / 10% Dark Pink */
  --bg-primary: #ffffff;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  
  --text-primary: #1A1520;
  --text-secondary: #5A3D4E;
  --text-inverse: #ffffff;
  
  --gold: #C7A3B8;
  --gold-light: #D4B8CA;
  
  --border-color: rgba(199, 163, 184, 0.35);
  --shadow: rgba(60, 42, 53, 0.06);
  --nav-bg: rgba(255, 255, 255, 0.75);
  --footer-bg: #ffffff;
  
  /* Button Variables */
  --btn-bg: #C7A3B8;
  --btn-text: #ffffff;
  --btn-border: #C7A3B8;
  --btn-hover-bg: transparent;
  --btn-hover-text: #C7A3B8;
  --btn-hover-border: #C7A3B8;

  /* Legacy variables mappings for compatibility */
  --navy: #3D2A35;
  --navy2: #2E1F28;
  --cream: #ffffff;
  --cream2: #ffffff;
  --white: #ffffff;
  --text: #1A1520;
  --muted: #7A5A6C;
  --border: rgba(199, 163, 184, 0.35);
}

[data-theme="dark"] {
  /* Dark Theme — 70% Dark / 20% Dark / 10% Light Accent */
  --bg-primary: #1A1520;
  --bg-secondary: #251B22;
  --bg-card: #2D2029;
  
  --text-primary: #ffffff;
  --text-secondary: #BFA8B5;
  --text-inverse: #1A1520;
  
  --gold: #ffffff;
  --gold-light: #FDE8F0;
  
  --border-color: rgba(255, 255, 255, 0.15);
  --shadow: rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(26, 21, 32, 0.7);
  --footer-bg: #15111A;
  
  /* Legacy variables mappings for compatibility in dark mode */
  --navy: #251B22;
  --navy2: #2D2029;
  --cream: #251B22;
  --cream2: #2D2029;
  --white: #1A1520;
  --text: #ffffff;
  --muted: #BFA8B5;
  --border: rgba(255, 255, 255, 0.15);
  
  /* Button Variables */
  --btn-bg: #ffffff;
  --btn-text: #1A1520;
  --btn-border: #ffffff;
  --btn-hover-bg: transparent;
  --btn-hover-text: #ffffff;
  --btn-hover-border: #ffffff;
}

/* Premium Dark Mode Button Overrides */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .form-submit-btn,
[data-theme="dark"] .type-btn.active,
[data-theme="dark"] .nav-book {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  border-color: var(--gold) !important;
}
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .form-submit-btn:hover,
[data-theme="dark"] .nav-book:hover {
  background: var(--gold-light) !important;
  color: var(--bg-primary) !important;
  border-color: var(--gold-light) !important;
}
[data-theme="dark"] .btn-outline,
[data-theme="dark"] #bookNowTeaserBtn,
[data-theme="dark"] .contact-section .btn-outline {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
  color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
}
[data-theme="dark"] .btn-outline:hover,
[data-theme="dark"] #bookNowTeaserBtn:hover,
[data-theme="dark"] .contact-section .btn-outline:hover {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  border-color: var(--gold) !important;
}

/* Mobile Hamburger Menu Book Now Button styling */
.mobile-menu a[href="booking.html"] {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  padding: 12px 24px !important;
  text-align: center !important;
  margin: 18px 20px 0 !important;
  font-weight: 600 !important;
  display: block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  font-size: 0.8rem !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.mobile-menu a[href="booking.html"]:hover {
  background: var(--gold-light) !important;
}


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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.subpage-body {
  padding-top: 72px;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  color: white;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  text-align: center;
  width: 90%;
  max-width: 480px;
}
.preloader-logo {
  width: 90px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderTextIn 0.8s ease forwards;
}
.preloader-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderTextIn 0.8s ease forwards 0.2s;
}
@keyframes preloaderTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.preloader-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.1, 0.8, 0.3, 1);
}
.preloader-percentage {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 32px var(--shadow);
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none;
}
.nav-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text-primary); line-height: 1;
  text-transform: uppercase;
}
.nav-logo .tag {
  font-size: 0.85rem; letter-spacing: 0.22em; color: var(--gold);
  text-transform: uppercase; margin-top: 2px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Theme Toggle Button styling */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-right: 16px;
  outline: none;
}
.theme-toggle-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.06);
}
.theme-toggle-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  display: block;
}

.nav-book {
  background: var(--gold); color: var(--text-inverse);
  padding: 10px 24px; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-book:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: 0.3s; }

/* ── HERO SPLIT ── */
.hero-split {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
  position: relative;
}
.hero-split-left {
  flex: 1.1;
  display: flex;
  align-items: center;
  padding: 120px 8% 80px;
  background: var(--bg-primary);
}
.hero-split-content {
  max-width: 540px;
  width: 100%;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-desktop-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.hero-logo-img {
  width: 110px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 300;
  line-height: 1.15; margin-bottom: 28px;
}
.hero-split .hero-title {
  color: var(--text-primary);
}
.preloader-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.preloader-welcome {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.preloader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
}
.hero-mobile-img-wrap {
  display: none; /* Hidden on desktop */
}
.hero-split-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-split-actions .btn-primary, .hero-split-actions .btn-outline {
  margin-top: 0;
}
.hero-split-right {
  flex: 0.9;
  position: relative;
  background: var(--bg-secondary);
}
.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hero-split {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero-split {
    display: block;
    padding: 85px 24px 64px;
    height: auto;
    min-height: auto;
  }
  .hero-split-left {
    display: block;
    padding: 0;
    width: 100%;
  }
  .hero-split-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.25;
  }
  .hero-mobile-img-wrap {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 28px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--border-color);
  }
  .hero-mobile-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
  }
  .hero-split-actions {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100%;
  }
  .hero-split-actions .btn-outline {
    margin-left: 0 !important;
  }
  .hero-split-right {
    display: none; /* Hide desktop image panel on mobile */
  }
}

/* ── SUBPAGE HERO ── */
.subpage-hero {
  position: relative; height: 40vh; min-height: 280px;
  width: 100%; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.subpage-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.6) 0%, rgba(13,27,42,0.85) 100%);
}
.subpage-hero-content {
  position: relative; z-index: 2; text-align: center; color: white;
  padding: 0 24px; max-width: 800px;
}

/* ── SECTION COMMONS ── */
.section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.sec-label {
  font-size: 0.78rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.15;
  color: var(--text-primary);
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-divider {
  width: 48px; height: 1px; background: var(--gold);
  margin: 24px 0 32px;
}
.sec-desc {
  font-size: 1.05rem; line-height: 1.9; color: var(--muted);
  max-width: 600px;
}

/* ── 3D LANDMARK SLIDER ── */
.landmark-section {
  background-color: var(--bg-secondary);
  padding: 96px 48px;
  overflow: hidden;
  position: relative;
}
/* Mobile (default) 3D Slider container styles */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 48px auto 0;
  height: 460px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landmark-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landmark-slide {
  position: absolute;
  width: 320px;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  cursor: pointer;
  box-shadow: 0 12px 36px var(--shadow);
  display: flex;
  flex-direction: column;
}
.landmark-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.06) 55%, transparent 70%);
  background-size: 250% 250%;
  background-position: 0% 0%;
  transition: background-position 0.9s cubic-bezier(0.25, 1, 0.33, 1);
  pointer-events: none;
  z-index: 15;
}
.landmark-slide.active::after {
  background-position: 100% 100%;
}
.landmark-slide img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.landmark-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
  transition: transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.1), background 0.75s;
}
.landmark-distance {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.landmark-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

/* 3D Slide States for Mobile view */
.landmark-slide.active {
  transform: translate3d(0, 0, 100px) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}
.landmark-slide.prev {
  transform: translate3d(-250px, 0, -50px) rotateY(28deg);
  opacity: 0.6;
  z-index: 5;
  pointer-events: auto;
}
.landmark-slide.next {
  transform: translate3d(250px, 0, -50px) rotateY(-28deg);
  opacity: 0.6;
  z-index: 5;
  pointer-events: auto;
}
.landmark-slide.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, -200px);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-control-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slider-control-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: scale(1.05);
}
.slider-control-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* PC Grid View overrides for large screens */
@media (min-width: 769px) {
  .slider-container {
    height: auto;
    perspective: none;
    display: block;
    margin-top: 56px;
    max-width: 1200px;
  }
  .landmark-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transform-style: flat;
    height: auto;
  }
  .landmark-slide {
    position: relative;
    width: 100%;
    height: 420px;
    margin: 0;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: default;
  }
  .landmark-slide img {
    height: 250px;
    transform: none !important;
  }
  .landmark-slide .landmark-info {
    transform: none !important;
  }
  .slider-controls {
    display: none; /* Hide navigation buttons on PC */
  }
}

@media (max-width: 768px) {
  .landmark-section {
    padding: 64px 10px;
  }
  .slider-container {
    height: 450px;
    perspective: 1000px;
  }
  .landmark-slide {
    width: 95vw;
    height: 380px;
    transition: all 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.15); /* spring ease-out */
  }
  .landmark-slide.active {
    transform: translate3d(0, 0, 100px) rotateY(0deg) rotateZ(0deg) scale(1);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 48px rgba(201, 169, 110, 0.16), 0 10px 24px var(--shadow);
  }
  .landmark-slide.prev {
    transform: translate3d(-92vw, 15px, -150px) rotateY(38deg) rotateZ(-5deg) scale(0.8);
    opacity: 0.22;
    z-index: 5;
    pointer-events: none;
  }
  .landmark-slide.next {
    transform: translate3d(92vw, 15px, -150px) rotateY(-38deg) rotateZ(5deg) scale(0.8);
    opacity: 0.22;
    z-index: 5;
    pointer-events: none;
  }
}

/* ── ROOMS ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.video-room-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  border-radius: 20px;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 24px var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px var(--shadow);
}

.video-room-card-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
  transition: transform 0.6s ease;
}

.video-room-card:hover .video-room-card-inner {
  transform: scale(1.05);
}

.video-room-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 1;
}

.video-room-vertical-text {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  position: absolute;
  left: 20px;
  bottom: 24px;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  transition: color 0.3s ease;
}

.video-room-card:hover .video-room-vertical-text {
  color: var(--gold);
}

.video-room-sparkle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.6s ease, color 0.3s ease;
}

.video-room-card:hover .video-room-sparkle {
  transform: rotate(90deg) scale(1.15);
  color: var(--gold);
}

.video-room-sparkle svg {
  width: 100%;
  height: 100%;
}

/* Scroll reveal overrides for rooms in and out of view */
.scroll-reveal-card {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 600px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 360px;
    margin: 48px auto 0;
  }
}

/* ── ROOM CARDS (ROOMS.HTML) ── */
.room-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}
.room-card img {
  width: 100% !important;
  max-width: 100% !important;
  height: 240px;
  object-fit: cover;
  display: block;
}
.room-card-overlay {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.room-badge {
  align-self: flex-start;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.room-size {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}
.room-price {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.room-price .amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── AMENITIES ACCORDION ── */
.amenities-accordion-header {
  background: #e2e5f5; /* Lavender background */
  color: #1a2a6c;
  padding: 18px 36px;
  border-radius: 50px; /* Pill shape */
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin: 32px auto 0;
  max-width: 600px;
}
.amenities-accordion-header:hover {
  background: #d4d9f0;
  transform: translateY(-2px);
}
.accordion-icon {
  font-size: 1.5rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.amenities-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  background: #f8f9fd; /* Light lavender-pink overlay */
  border-radius: 24px;
  margin: 16px auto 0;
  max-width: 600px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
  border: 1px solid transparent;
}
.amenities-accordion-panel.open {
  border-color: #e2e5f5;
}
.amenities-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px 40px;
  text-align: left;
}
.amenity-list-item {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  color: #3f4e85;
  display: flex;
  align-items: center;
  gap: 12px;
}
.amenity-bullet {
  color: #f47920; /* Goibibo orange-gold type theme accent */
  font-size: 1.4rem;
}

/* Theme support overrides for Dark Mode */
[data-theme="dark"] .amenities-accordion-header {
  background: #1b203a;
  color: #b0b8db;
  border: 1px solid var(--border-color);
}
[data-theme="dark"] .amenities-accordion-header:hover {
  background: #252b48;
}
[data-theme="dark"] .amenities-accordion-panel {
  background: #111528;
}
[data-theme="dark"] .amenities-accordion-panel.open {
  border-color: #1b203a;
}
[data-theme="dark"] .amenity-list-item {
  color: #b0b8db;
}

@media (max-width: 600px) {
  .amenities-list-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* ── CONFERENCE ── */
.conference-section { background: var(--cream); }
.conference-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 56px;
}
.conf-image-wrap {
  position: relative;
}
.conf-image-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.conf-image-wrap::before {
  content: ''; position: absolute;
  width: 80%; height: 80%; top: -20px; left: -20px;
  border: 1px solid var(--gold); z-index: -1;
}
.conf-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 40px;
}
.conf-card {
  background: var(--bg-card); padding: 20px;
  border-left: 3px solid var(--gold);
}
.conf-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--text-primary); margin-bottom: 4px;
}
.conf-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.conf-features { list-style: none; margin-top: 28px; }
.conf-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.96rem; color: var(--text);
}
.conf-features li::before {
  content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0;
}
.btn-primary {
  display: inline-block; margin-top: 32px;
  padding: 14px 36px; background: var(--navy);
  color: white; font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: 2px solid var(--navy);
  text-decoration: none; transition: 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--text-primary); }
.btn-outline {
  display: inline-block; margin-top: 32px;
  padding: 14px 36px; background: transparent;
  color: var(--text-primary); font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: 2px solid var(--navy);
  text-decoration: none; transition: 0.2s; margin-left: 12px;
}
.btn-outline:hover { background: var(--navy); color: white; }

/* ── AMENITIES ── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,169,110,0.18);
  border: 1px solid rgba(201,169,110,0.18);
  margin-top: 56px;
}
.amenity-card {
  background: var(--bg-card); padding: 44px 28px; text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}
.amenity-icon {
  width: 48px; height: 48px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: transform 0.3s, color 0.3s;
}
.amenity-icon svg { width: 36px; height: 36px; stroke: currentColor; }
.amenity-card:hover .amenity-icon { transform: scale(1.1); color: var(--gold-light); }
.amenity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--text-primary); margin-bottom: 10px;
  transition: color 0.3s;
}
.amenity-card:hover h3 { color: var(--gold); }
.amenity-card p {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}

/* ── GALLERY ── */
.gallery-section { background: var(--navy); padding: 96px 0 96px; }
.gallery-section .sec-title { color: white; }
.gallery-section .gallery-header { padding: 0 48px; }
.gallery-scroll-wrap {
  position: relative; margin-top: 48px; overflow: hidden;
}
.gallery-track {
  display: flex; gap: 6px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 0 48px;
  scroll-padding-left: 48px;
  width: 100%;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gal-item {
  flex: 0 0 auto; height: 320px;
  overflow: hidden; position: relative; cursor: pointer;
  scroll-snap-align: start; border-radius: 2px;
}
.gal-item img {
  width: auto; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.85);
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gal-item .gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.75));
  padding: 24px 16px 14px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); opacity: 0; transition: opacity 0.3s;
}
.gal-item:hover .gal-caption { opacity: 1; }
.gallery-arrows {
  display: flex; justify-content: center; gap: 12px; margin-top: 28px; padding: 0 48px;
}
.gal-arrow {
  width: 48px; height: 48px; border: 1px solid rgba(201,169,110,0.4);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: 0.2s; color: var(--gold);
}
.gal-arrow:hover { background: var(--gold); color: var(--text-primary); border-color: var(--gold); }
.gal-arrow svg { width: 18px; height: 18px; }

/* ── DINING ── */
.dining-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 56px; overflow: hidden;
}
.dining-img {
  position: relative; overflow: hidden; aspect-ratio: unset; min-height: 480px;
}
.dining-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.dining-content {
  background: var(--navy); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.dining-content .sec-label { margin-bottom: 10px; }
.dining-content .sec-title { color: white; }
.dining-content .sec-divider { background: var(--gold); }
.dining-content .sec-desc { color: rgba(255,255,255,0.65); }
.dining-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.dining-tag {
  padding: 7px 18px; border: 1px solid var(--border);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.dining-content .dining-tag {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-card); padding: 36px;
  border-top: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic; line-height: 1.8;
  color: var(--text-primary); margin-bottom: 20px;
}
.testimonial-author { font-size: 0.88rem; color: var(--muted); letter-spacing: 0.1em; }
.testimonial-author strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

/* ── CONTACT ── */
.contact-section { background: var(--cream2); }
.contact-layout {
  display: block; max-width: 800px; margin: 56px auto 0;
}
.info-cards-top {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-bottom: 64px;
}
.info-card {
  background: var(--navy); padding: 28px 20px; text-align: center;
}
.info-card-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--gold);
}
.info-card-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.info-card h4 {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.info-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.info-card a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.info-card a:hover { color: var(--gold); }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--text-primary); margin-bottom: 6px;
}
.contact-info h3 em { font-style: italic; color: var(--gold); }
.contact-info .sub-text {
  font-size: 0.96rem; color: var(--muted); line-height: 1.7; margin-bottom: 0;
}
.contact-item {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-of-type { border-top: 1px solid var(--border); margin-top: 28px; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.contact-item h4 {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.contact-item p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.contact-item a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.hours-block {
  background: var(--bg-card); padding: 24px; margin-top: 28px;
  border-left: 3px solid var(--gold);
}
.hours-block h4 {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-primary); font-weight: 500; }
.hours-row span:last-child { color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--text-primary); margin-bottom: 6px;
}
.form-heading em { font-style: italic; color: var(--gold); }
.form-sub { font-size: 0.96rem; color: var(--muted); line-height: 1.7; margin-bottom: 0; }
.gold-line { width: 48px; height: 1px; background: var(--gold); margin: 20px 0 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 13px 16px; border: 1px solid #ddd;
  font-family: 'Jost', sans-serif; font-size: 0.92rem;
  background: var(--bg-card); outline: none; transition: border 0.2s; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.form-submit {
  padding: 15px 40px; background: var(--navy); color: white;
  border: 2px solid var(--navy); font-family: 'Jost', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: 0.2s; align-self: flex-start; margin-top: 6px;
}
.form-submit:hover { background: transparent; color: var(--text-primary); }

/* ── MAP ── */
.map-wrap { height: 400px; position: relative; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-overlay {
  position: absolute; top: 28px; left: 28px;
  background: var(--navy); color: white; padding: 18px 24px;
}
.map-overlay h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 4px;
}
.map-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ── FOOTER ── */
footer {
  background-color: #1A1520;
  color: #ffffff;
  padding: 64px 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
}
.footer-row-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-svg {
  width: 48px;
  height: 48px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
}
.footer-logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-info-col h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-info-col p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
}
.footer-info-col p a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info-col p a:hover {
  color: var(--gold);
}
.footer-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-social-icons a {
  color: var(--text-primary);
  transition: color 0.2s, transform 0.2s;
}
.footer-social-icons a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-social-icons svg {
  width: 20px;
  height: 20px;
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-copyright a {
  color: var(--gold);
  text-decoration: underline;
}
.footer-strip {
  background: var(--navy);
  padding: 20px 48px;
  margin-left: -48px;
  margin-right: -48px;
}
.footer-strip-links {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-strip-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 8px;
}
.footer-strip-links a:hover {
  color: var(--gold);
}

/* Responsive Footer overrides */
@media (max-width: 1024px) {
  .footer-row-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-right-col {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 48px 24px 0;
  }
  .footer-row-main {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: center;
  }
  .footer-brand-col {
    align-items: center;
  }
  .footer-right-col {
    align-items: center;
    text-align: center;
  }
  .footer-strip {
    margin-left: -24px;
    margin-right: -24px;
    padding: 16px 20px;
  }
  .footer-strip-links {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}

/* ── MODALS ── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg-card); width: 90%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  padding: 48px; position: relative;
  animation: modalIn 0.3s ease;
}
.modal.wide-modal { max-width: 720px; }
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--muted);
}
.modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--text-primary); margin-bottom: 6px;
}
.modal .modal-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 32px; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.toast {
  position: fixed;
  top: 90px; /* below navbar */
  right: 24px;
  left: auto;
  bottom: auto;
  z-index: 999999;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  font-size: 0.84rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  max-width: 380px;
  min-width: 260px;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transform: translateX(calc(100% + 30px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.toast-gold {
  background: var(--gold) !important;
  color: #1A1520 !important;
  border-color: #1A1520 !important;
}

@media (max-width: 768px) {
  .toast {
    top: 80px;
    left: 16px;
    right: 16px;
    max-width: none;
    min-width: auto;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--gold);
    transform: translateY(-120px);
  }
  .toast.show {
    transform: translateY(0);
  }
}

/* ── FLOATING MAP BUTTON ── */
.floating-map-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: #C7A3B8;
  color: #1A1520;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.25), 0 0 0 0 rgba(201, 169, 110, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s, box-shadow 0.3s;
  animation: pulseGold 2s infinite;
}
.floating-map-btn:hover {
  transform: scale(1.1);
  background-color: #D4B8CA;
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.35);
  animation: none;
}
.floating-map-btn svg {
  width: 26px;
  height: 26px;
}
@keyframes pulseGold {
  0% {
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.25), 0 0 0 0 rgba(201, 169, 110, 0.5);
  }
  70% {
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.25), 0 0 0 12px rgba(201, 169, 110, 0);
  }
  100% {
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.25), 0 0 0 0 rgba(201, 169, 110, 0);
  }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.floating-call-btn {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s, box-shadow 0.3s;
  border: none;
}
.floating-call-btn:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.floating-call-btn svg {
  width: 26px;
  height: 26px;
}
[data-theme="dark"] .floating-call-btn {
  background-color: #25D366;
  color: #fff;
  border: none;
}

/* ── MOBILE NAV ── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy); z-index: 9990;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; transform: translateX(100%); transition: transform 0.4s ease;
  padding: 80px 24px 40px;
}
.mobile-menu.open { transform: translateX(0); }
.mob-back {
  position: absolute; top: 24px; left: 20px;
  background: none; border: 1px solid rgba(201,169,110,0.35);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold); transition: 0.2s;
}
.mob-back:hover { background: var(--gold); color: var(--text-primary); }
.mob-back svg { width: 20px; height: 20px; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: white; text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s; text-align: center;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── BOOKING PANEL SPECIFIC ── */
.booking-container {
  width: 100%;
  max-width: 680px;
  background: var(--bg-card);
  box-shadow: 0 12px 48px rgba(13,27,42,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}
.form-panel {
  padding: 56px 48px;
  width: 100%;
}
.form-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
}
.btn-back:hover {
  color: var(--text-primary);
}
.btn-back svg {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.btn-back:hover svg {
  transform: translateX(-3px);
}
.form-header {
  margin-bottom: 32px;
}
.form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
}
.form-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.form-header p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.type-selector {
  display: flex;
  background: rgba(13, 27, 42, 0.05);
  padding: 4px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.type-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  color: var(--muted);
  text-align: center;
}
.type-btn.active {
  background: var(--navy);
  color: white;
}
.form-submit-btn {
  padding: 15px;
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.form-submit-btn:hover {
  background: transparent;
  color: var(--text-primary);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .conference-layout, .dining-layout, .contact-layout { grid-template-columns: 1fr; }
  .contact-form-layout { grid-template-columns: 1fr; gap: 32px; }
  .conf-image-wrap::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-cards-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-logo .tag { font-size: 8px; letter-spacing: 0.15em; }
  .hero-desktop-branding {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 10px !important;
  }
  .hero-logo-img {
    margin-bottom: 0 !important;
  }
  .hero-title { display: none !important; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .about-strip { padding: 40px 20px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .conf-cards { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gal-item { flex: 0 0 auto; height: 65vw; }
  .gallery-section .gallery-header, .gallery-arrows { padding-left: 20px; padding-right: 20px; }
  .gallery-track { padding: 0 5vw; scroll-padding-left: 5vw; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .map-overlay { left: 16px; top: 16px; }
  .modal { padding: 32px 24px; }
  .dining-img { min-height: 300px; }
  .info-cards-top { grid-template-columns: 1fr 1fr; }
  .form-panel { padding: 36px 20px; }

  /* Zoom-in scroll reveal animation restricted to mobile view only */
  .scroll-reveal-card {
    opacity: 0 !important;
    transform: scale(0.6) !important;
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }
  .scroll-reveal-card.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .info-cards-top { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
}

/* ── THEME & COLOR OVERRIDES FOR LIGHT/DARK MODE ── */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}
.sec-title {
  color: var(--text-primary);
}
.sec-desc {
  color: var(--text-secondary);
}
.conf-card {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-left: 3px solid var(--gold) !important;
}
.conf-card h4 {
  color: var(--text-primary) !important;
}
.conf-card p {
  color: var(--text-secondary) !important;
}
.conf-features li {
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
.amenity-card {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}
.amenity-card h3 {
  color: var(--text-primary) !important;
}
.amenity-card p {
  color: var(--text-secondary) !important;
}

.dining-features li {
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
.testimonial-card {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 8px 32px var(--shadow) !important;
}
.testimonial-text {
  color: var(--text-primary) !important;
}
.testimonial-author {
  color: var(--text-secondary) !important;
}
.testimonial-author strong {
  color: var(--text-primary) !important;
}
.mobile-menu {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}
.mobile-menu a {
  color: var(--text-primary) !important;
}
.mobile-menu a:hover {
  color: var(--gold) !important;
}
.mobile-menu .theme-toggle-btn {
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}
.booking-container, .form-panel {
  background-color: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  box-shadow: 0 12px 48px var(--shadow) !important;
}
.logo-text, .form-header h2 {
  color: var(--text-primary) !important;
}
.form-header p {
  color: var(--text-secondary) !important;
}
.form-group label {
  color: var(--text-primary) !important;
}
input, select, textarea {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
}
.type-selector {
  background-color: var(--bg-secondary) !important;
}
.type-btn {
  color: var(--text-secondary) !important;
}
.type-btn.active {
  background-color: var(--gold) !important;
  color: var(--text-inverse) !important;
}
.form-submit-btn {
  background-color: var(--btn-bg) !important;
  color: var(--btn-text) !important;
  border-color: var(--btn-border) !important;
}
.form-submit-btn:hover {
  background-color: var(--btn-hover-bg) !important;
  color: var(--btn-hover-text) !important;
  border-color: var(--btn-hover-border) !important;
}
.toast {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 32px var(--shadow) !important;
}
.toast-gold {
  background-color: var(--gold) !important;
  color: var(--bg-primary) !important;
}

/* Pricing Table Details */
.pricing-table th {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-bottom: 2px solid var(--border-color) !important;
}
.pricing-table td {
  border-bottom: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
}
.pricing-table tr:hover {
  background-color: var(--bg-secondary) !important;
}
.policy-card {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}
.policy-card h4 {
  color: var(--text-primary) !important;
}
.policy-card p {
  color: var(--text-secondary) !important;
}

/* Contact Page info */
.info-card {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}
.info-card h3 {
  color: var(--text-primary) !important;
}
.info-card p, .info-card a {
  color: var(--text-secondary) !important;
}
.info-card a:hover {
  color: var(--gold) !important;
}
.contact-form-panel {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}

/* ── LOGO MARQUEE ── */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-loop 14s linear infinite; /* Faster slide duration on mobile */
}
.logo-slide {
  padding: 0 45px;
  flex-shrink: 0;
}
.logo-slide img {
  height: 68px; /* Bigger size on mobile (close to double the original 38px) */
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 1;
  filter: none; /* Keep original color in Light Mode */
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  display: block;
}
[data-theme="dark"] .logo-slide img {
  filter: grayscale(100%) brightness(0.9) contrast(0.8); /* Grey only in Dark Mode */
  opacity: 0.65;
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}
.logo-slide img:hover {
  transform: scale(1.05);
}
[data-theme="dark"] .logo-slide img:hover {
  opacity: 0.9;
  filter: grayscale(100%) brightness(1.2) contrast(0.9);
}

@media (min-width: 769px) {
  .logo-marquee-track {
    animation-duration: 28s; /* Slower/normal slide speed on PC */
  }
  .logo-slide img {
    height: 85px; /* Enlarge logos for PC viewport accordingly */
    max-width: 280px;
  }
  .logo-slide {
    padding: 0 60px; /* Adjust spacing slightly for larger images */
  }
}

@keyframes marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CUSTOM GUESTS SELECTOR & PRICE ESTIMATOR ── */
.guests-counter-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  min-width: 0;
}

.guests-counter-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.guests-counter-wrapper .counter-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 36px;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guests-counter-wrapper .counter-btn:hover {
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold);
}

.guests-counter-wrapper input[type="number"] {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none !important;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: transparent !important;
  color: var(--text-primary) !important;
  height: 100%;
  padding: 0 !important;
  margin: 0;
  box-shadow: none !important;
  -moz-appearance: textfield;
}

.guests-counter-wrapper input[type="number"]::-webkit-outer-spin-button,
.guests-counter-wrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-summary-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 24px;
  margin-top: 10px;
  margin-bottom: 20px;
  animation: slideDownFadeIn 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideDownFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-summary-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

[data-theme="dark"] .price-summary-header {
  color: var(--gold);
}

.price-summary-line {
  display: flex;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price-summary-line.total {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 0;
}

.price-summary-divider {
  height: 1px;
  background: var(--border-color);
  margin: 12px 0;
}

.price-info-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
  font-style: italic;
  margin-top: 12px;
  line-height: 1.5;
}

.price-warning {
  color: #e63946 !important;
  font-weight: 500;
}

/* Footer Logo Image & Dark Mode Overrides */
.footer-logo-img {
  width: 90px;
  height: auto;
  margin-bottom: 12px;
  display: block;
}

footer .footer-logo-name,
footer .footer-info-col h3 {
  color: #ffffff !important;
}
footer .footer-info-col p,
footer .footer-info-col p a,
footer .footer-social-icons a,
footer .footer-strip-links a {
  color: rgba(255, 255, 255, 0.75) !important;
}
footer .footer-logo-tag {
  color: var(--gold) !important;
}
footer .footer-info-col p a:hover,
footer .footer-social-icons a:hover,
footer .footer-strip-links a:hover {
  color: var(--gold) !important;
}



[data-theme="dark"] footer {
  background-color: #1A1520 !important;
}
[data-theme="dark"] .footer-strip {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ==========================================
   PREMIUM CARD SLIDER / CAROUSEL STYLES
   ========================================== */
.card-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-slider-track img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  flex-shrink: 0;
}
.card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.card-slider:hover .card-slider-btn {
  opacity: 1;
}
.card-slider-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-50%) scale(1.08);
}
.card-slider-btn.prev {
  left: 12px;
}
.card-slider-btn.next {
  right: 12px;
}
.card-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.card-slider:hover .card-slider-dots {
  opacity: 1;
}
.card-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.card-slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.room-book-btn {
  padding: 10px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gold);
  color: var(--bg-primary);
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s;
  text-align: center;
}
.room-book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
