/*
Theme Name: Muchaan Resorts
Theme URI: https://muchaan.com
Author: Muchaan Resorts
Author URI: https://muchaan.com
Description: A luxury boutique resort WordPress theme for Muchaan Resorts — refined, elegant, and timeless.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muchaanresorts
Tags: hotel, resort, luxury, full-width-template, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
  --color-gold:        #C9A96E;
  --color-gold-light: #DFC08A;
  --color-gold-dark:  #A07840;
  --color-charcoal:   #1A1A1A;
  --color-warm-black: #111010;
  --color-cream:      #F8F4EE;
  --color-warm-gray:  #E8E2D9;
  --color-mid-gray:   #9A9088;
  --color-text:       #2C2826;
  --color-white:      #FFFFFF;

  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Jost', 'Helvetica Neue', sans-serif;
  --font-accent:   'Cinzel', serif;

  --transition:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-width:     1440px;
  --gutter:        clamp(24px, 5vw, 80px);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   2. TYPOGRAPHY & UTILITIES
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: var(--color-mid-gray);
}

.label-small {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad {
  padding: clamp(60px, 8vw, 120px) 0;
}

.gold-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 20px 0 28px;
}

.text-center { text-align: center; }
.text-white  { color: var(--color-white) !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-weight: 500;
  text-decoration: none;
}

.btn-gold {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: transparent;
}
.btn-gold:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

.btn-white {
  color: var(--color-white);
  border-color: var(--color-white);
  background: transparent;
}
.btn-white:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

.btn-dark {
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  background: transparent;
}
.btn-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

/* ============================================================
   3. DESKTOP SITE HEADER & DESKTOP NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  padding: 28px 0;
}

#site-header.scrolled {
  background: rgba(17, 16, 16, 0.97);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
}

#site-header.hero-overlay {
  background: transparent;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-logo {
  text-align: center;
  grid-column: 2;
}

.site-logo a {
  display: inline-block;
}

.site-logo-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
}

.site-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-top: 5px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-left a, .nav-right a {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
}

.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-left a:hover, .nav-right a:hover { color: var(--color-gold); }
.nav-left a:hover::after, .nav-right a:hover::after { width: 100%; }

.nav-book-btn {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-charcoal) !important;
  background: var(--color-gold);
  padding: 10px 22px;
  transition: var(--transition) !important;
}
.nav-book-btn:hover { background: var(--color-gold-light); }
.nav-book-btn::after { display: none !important; }

/* Desktop Hamburger (Hidden) */
.hamburger {
  display: none;
}

/* Desktop Mobile Nav Overlay (Hidden) */
.mobile-nav {
  display: none;
}

/* ============================================================
   4. HERO SECTIONS & LAYOUTS
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-warm-black);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--color-white);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   5. DESKTOP BOOKING BAR
   ============================================================ */
.booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(17,16,16,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.booking-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 72px;
  overflow: hidden;
}

.booking-field {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.booking-field:hover { background: rgba(255,255,255,0.04); }
.booking-field:last-of-type { border-right: none; }

.booking-field label {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
  cursor: pointer;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-white);
  cursor: pointer;
  width: 100%;
}
.booking-field select option { background: var(--color-charcoal); color: var(--color-white); }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.4); }

.booking-submit {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border: none;
  height: 100%;
  padding: 0 48px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.booking-submit:hover { background: var(--color-gold-light); }

/* ============================================================
   6. INNER SECTIONS
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 { color: var(--color-charcoal); margin-bottom: 20px; }
.intro-text p  { margin-bottom: 24px; }
.intro-stats { display: flex; gap: 48px; margin: 40px 0; }
.intro-stat .number { font-family: var(--font-display); font-size: 3rem; color: var(--color-gold); line-height: 1; display: block; }
.intro-stat .stat-label { font-family: var(--font-accent); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-mid-gray); display: block; margin-top: 4px; }

.intro-image-stack { position: relative; height: 520px; }
.intro-image-main { position: absolute; inset: 0 80px 0 0; background: linear-gradient(135deg, #2a1f14 0%, #3d2a18 50%, #2a1a10 100%); border-radius: 2px; }
.intro-image-accent { position: absolute; right: 0; bottom: 40px; width: 200px; height: 280px; background: linear-gradient(135deg, #c9a96e 0%, #a07840 100%); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.intro-image-accent-text { font-family: var(--font-display); font-size: 0.85rem; color: var(--color-white); text-align: center; padding: 20px; line-height: 1.6; font-style: italic; }

.rooms-section { background: var(--color-warm-black); overflow: hidden; }
.rooms-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.room-slider-wrapper { position: relative; overflow: hidden; }
.room-slider { display: flex; gap: 24px; }
.room-card { flex: 0 0 calc(33.333% - 16px); position: relative; background: #1c1a18; overflow: hidden; transition: transform var(--transition); }
.room-card:hover { transform: translateY(-4px); }
.room-card-image { height: 300px; position: relative; overflow: hidden; }
.room-card-image-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.room-card:hover .room-card-image-bg { transform: scale(1.07); }

.bg-superior   { background-image: linear-gradient(135deg, #1a0e08 0%, #2d1a0e 60%, #1a1208 100%); }
.bg-deluxe     { background-image: linear-gradient(135deg, #080e1a 0%, #0e1a2d 60%, #081218 100%); }
.bg-privilege  { background-image: linear-gradient(135deg, #0a1208 0%, #142212 60%, #0a1208 100%); }
.bg-suite      { background-image: linear-gradient(135deg, #1a1008 0%, #2d1a08 60%, #1a1008 100%); }
.bg-penthouse  { background-image: linear-gradient(135deg, #10081a 0%, #1a0e2d 60%, #10081a 100%); }
.bg-presidential { background-image: linear-gradient(135deg, #1a0808 0%, #2d0e0e 60%, #1a0808 100%); }

.room-card-badge { position: absolute; top: 20px; left: 20px; font-family: var(--font-accent); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-charcoal); background: var(--color-gold); padding: 5px 12px; }
.room-card-body { padding: 32px; }
.room-card-type { font-family: var(--font-accent); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); display: block; margin-bottom: 10px; }
.room-card h3 { color: var(--color-white); font-size: 1.4rem; margin-bottom: 12px; }
.room-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.room-card-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.room-price { font-family: var(--font-display); color: var(--color-gold); }
.room-price .from { font-family: var(--font-body); font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; display: block; }
.room-price .amount { font-size: 1.8rem; line-height: 1; }
.room-price .per { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.room-card-links { display: flex; gap: 12px; }
.room-card-links a { font-family: var(--font-accent); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 18px; border: 1px solid; transition: all var(--transition); display: inline-flex; align-items: center; }

.link-view { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.15); background: transparent; }
.link-view:hover { color: var(--color-white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.link-book { color: var(--color-gold); border-color: var(--color-gold); background: transparent; }
.link-book:hover { background: var(--color-gold); color: var(--color-charcoal); border-color: var(--color-gold); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; }
.slider-btn { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.2); background: none; color: var(--color-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 1rem; }
.slider-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.slider-count { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.4); }
.slider-count span { color: var(--color-gold); }

.quote-banner { background: var(--color-gold); padding: clamp(48px, 6vw, 80px) 0; text-align: center; position: relative; overflow: hidden; }
.quote-banner::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 20rem; color: rgba(0,0,0,0.05); line-height: 1; pointer-events: none; }
.quote-text { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--color-charcoal); font-style: italic; max-width: 820px; margin: 0 auto 20px; line-height: 1.4; }
.quote-author { font-family: var(--font-accent); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(26,26,26,0.6); }

.dining-section { background: var(--color-cream); }
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.dining-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.dining-card { position: relative; height: 520px; overflow: hidden; }
.dining-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.dining-card:hover .dining-card-bg { transform: scale(1.08); }

.dining-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); transition: var(--transition); }
.dining-card:hover .dining-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%); }
.dining-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; transform: translateY(60px); transition: transform var(--transition); }
.dining-card:hover .dining-card-content { transform: translateY(0); }
.dining-card-content h3 { font-size: 1.8rem; color: var(--color-white); margin-bottom: 16px; }
.dining-card-content p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; opacity: 0; transition: opacity var(--transition); line-height: 1.6; }
.dining-card:hover .dining-card-content p { opacity: 1; }

.perks-section { background: var(--color-charcoal); }
.perks-header { text-align: center; margin-bottom: 60px; }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.06); }
.perk-item { padding: 48px 40px; border-right: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.perk-item:nth-child(3n) { border-right: none; }
.perk-item:hover { background: rgba(255,255,255,0.03); }
.perk-icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--color-gold); }
.perk-item h4 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 12px; font-family: var(--font-display); }
.perk-item p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.gallery-section { background: var(--color-cream); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 280px); gap: 4px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.gallery-item:hover .gallery-item-bg { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-expand-icon { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; opacity: 0; transform: scale(0.8); transition: var(--transition); }
.gallery-item:hover .gallery-expand-icon { opacity: 1; transform: scale(1); }

.testimonials-section { background: var(--color-warm-black); text-align: center; }
.testimonials-header { margin-bottom: 60px; }
.testimonials-slider { max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonial { display: none; }
.testimonial.active { display: block; }
.testimonial-stars { color: var(--color-gold); font-size: 0.9rem; letter-spacing: 4px; margin-bottom: 28px; }
.testimonial-text { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.7rem); color: var(--color-white); font-style: italic; line-height: 1.6; margin-bottom: 32px; }
.testimonial-author { font-family: var(--font-accent); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); }
.testimonials-nav { display: flex; justify-content: center; gap: 16px; }

/* ============================================================
   7. PERFORMANCE LAYER OPTIMIZATIONS
   ============================================================ */
@media (max-width: 768px) {
  .page-hero, section[style*="fixed"] {
    background-attachment: scroll !important;
  }
  .room-slider {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* ============================================================
   8. MOBILE RESPONSIVE LAYOUT (Max-Width: 991px)
   ============================================================ */
@media screen and (max-width: 991px) {
  
  /* --- DESKTOP ITEMS HIDDEN --- */
  .nav-left, .nav-right, .hero-scroll {
    display: none !important;
  }

  /* --- COMPACT HEADER (Left Logo, Right Menu) --- */
  #site-header {
    padding: 12px 0 !important;
  }
  .header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .site-logo {
    max-width: 140px;
    text-align: left;
    margin: 0;
  }
  .site-logo img {
    max-height: 40px;
    width: auto;
  }
  .hamburger {
    display: flex !important;
    margin: 0;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
  }

  /* --- SMOOTH MOBILE MENU OVERLAY --- */
  .mobile-nav {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: #111010;
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .mobile-nav a {
    color: #ffffff;
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin: 10px 0;
  }
  .mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  /* --- HERO SECTION FLUIDITY --- */
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px; /* Space for the header */
    height: auto;
    min-height: 100svh;
  }
  .hero-content {
    margin-top: auto;
    margin-bottom: auto; /* Auto margin safely centers text above booking bar */
    padding: 40px 0 60px 0;
  }

  /* --- SAFE BOOKING BAR (Anchors to Bottom of Hero naturally) --- */
  .booking-bar {
    position: relative !important; /* Forces it into layout flow so it doesn't overlap text */
    width: 100%;
    margin-top: auto; /* Pushes it to the bottom of the flex column */
    background: rgba(17,16,16,0.96) !important;
  }
  .booking-bar-inner {
    flex-direction: column !important;
    height: auto !important;
    padding: 24px 20px !important;
    gap: 16px !important;
  }
  .booking-field {
    width: 100% !important;
    height: auto !important;
    padding: 0 0 10px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .booking-field label {
    font-size: 0.75rem !important;
    margin-bottom: 4px !important;
  }
  .booking-field input[type="date"],
  .booking-field select {
    font-size: 1rem !important;
    padding: 4px 0 !important;
  }
  .booking-submit {
    width: 100% !important;
    height: 50px !important;
    line-height: 50px !important;
    padding: 0 !important;
    margin-top: 8px !important;
    text-align: center !important;
  }

  /* --- GRID RESTRUCTURING (Without breaking sliders) --- */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dining-grid {
    grid-template-columns: 1fr;
  }
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .gallery-mosaic {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .gallery-item {
    height: 300px;
  }

  /* --- ROOM SLIDER PRESERVATION --- */
  .room-card {
    flex: 0 0 100% !important; /* Preserves horizontal slider track but shows 1 item per view */
    max-width: 100%;
  }

  /* Fix dining descriptions getting lost off screen */
  .dining-card-content {
    transform: translateY(0);
  }
  .dining-card-content p {
    opacity: 1;
  }
}

/* ============================================================
   9. NEWSLETTER & STAY CONNECTED
   ============================================================ */
.newsletter-section {
  background: var(--color-warm-black);
  text-align: center;
}
.newsletter-section .gold-divider {
  margin-left: auto;
  margin-right: auto;
}
.newsletter-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.newsletter-section p {
  max-width: 600px;
  margin: 0 auto 32px;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
  transition: border-color var(--transition);
}
.newsletter-form:focus-within {
  border-color: var(--color-gold);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-white);
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 12px;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  transition: color var(--transition);
}
.newsletter-form button:hover {
  color: var(--color-white);
}

/* ============================================================
   10. FOOTER SECTION
   ============================================================ */
.site-footer {
  background: #0a0908;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 30px;
  font-size: 0.85rem;
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-widget h5 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}
.footer-widget ul {
  list-style: none;
}
.footer-widget ul li {
  margin-bottom: 12px;
}
.footer-widget a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-widget a:hover {
  color: var(--color-gold);
}
.site-info {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   11. MOBILE OVERRIDES: FOOTER & NEWSLETTER
   ============================================================ */
@media screen and (max-width: 991px) {
  .newsletter-form {
    flex-direction: column !important;
    border-bottom: none !important;
    gap: 16px;
  }
  .newsletter-form input {
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    text-align: center !important;
    padding: 12px !important;
  }
  .newsletter-form button {
    background: var(--color-gold) !important;
    color: var(--color-charcoal) !important;
    padding: 14px !important;
    width: 100% !important;
  }
  .footer-widgets {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  padding: 16px 0; /* Reduced from 28px to slim down desktop header */
}

#site-header.scrolled {
  background: rgba(17, 16, 16, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0; /* Slimmer when scrolling */
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
}

.site-logo a {
  display: inline-block;
}

.site-logo img,
.custom-logo-link img {
  max-height: 65px; /* Constrains desktop logo height perfectly */
  width: auto;
  margin: 0 auto;
  display: block;
}

/* ============================================================
   LOCATION & MAP SECTION
   ============================================================ */
.location-section {
  background: var(--color-warm-black);
}

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

.location-text h2 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.location-info {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.info-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

a.info-text:hover {
  color: var(--color-white);
}

.location-map iframe {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: 4px;
  display: block;
  filter: grayscale(20%) contrast(110%); /* Adds a subtle luxury tone to Google Maps */
}

/* ============================================================
   NEWSLETTER & FOOTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--color-charcoal);
  text-align: center;
}

.newsletter-section .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

.newsletter-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.newsletter-section p {
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
  transition: border-color var(--transition);
}

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

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-white);
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 12px;
}

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

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  transition: color var(--transition);
}

.newsletter-form button:hover {
  color: var(--color-white);
}

/* Base Footer Styles */
.site-footer {
  background: #0a0908;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 30px;
  font-size: 0.85rem;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget h5 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-widget ul {
  list-style: none;
}

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

.footer-widget a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-widget a:hover {
  color: var(--color-gold);
}

.site-info {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   NEWSLETTER & FOOTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--color-charcoal);
  text-align: center;
}

.newsletter-section .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

.newsletter-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.newsletter-section p {
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
  transition: border-color var(--transition);
}

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

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-white);
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 12px;
}

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

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  transition: color var(--transition);
}

.newsletter-form button:hover {
  color: var(--color-white);
}

/* Base Footer Styles */
.site-footer {
  background: #0a0908;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 30px;
  font-size: 0.85rem;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget h5 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-widget ul {
  list-style: none;
}

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

.footer-widget a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-widget a:hover {
  color: var(--color-gold);
}

.site-info {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   LOCATION / MAP SECTION
   ============================================================ */
.location-section { background: var(--color-warm-black); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-text h2 { color: var(--color-white); margin-bottom: 24px; }
.location-info { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.location-info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon { font-size: 1.5rem; line-height: 1; }
.info-content { display: flex; flex-direction: column; }
.info-title { font-family: var(--font-accent); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 4px; }
.info-text, a.info-text { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition); }
a.info-text:hover { color: var(--color-white); }
.location-map iframe { width: 100%; height: 460px; border: none; border-radius: 4px; display: block; filter: grayscale(20%) contrast(110%); }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section { background: var(--color-charcoal); text-align: center; }
.newsletter-section .gold-divider { margin-left: auto; margin-right: auto; }
.newsletter-section h2 { color: var(--color-white); margin-bottom: 16px; }
.newsletter-section p { max-width: 600px; margin: 0 auto 32px; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 5px; transition: border-color var(--transition); }
.newsletter-form:focus-within { border-color: var(--color-gold); }
.newsletter-form input { flex: 1; background: transparent; border: none; color: var(--color-white); outline: none; font-family: var(--font-body); font-size: 1rem; padding: 8px 12px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { background: transparent; border: none; color: var(--color-gold); font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; padding: 8px 16px; transition: color var(--transition); }
.newsletter-form button:hover { color: var(--color-white); }

/* ============================================================
   FOOTER SECTION (Matched to footer.php)
   ============================================================ */
#site-footer { background: #0a0908; color: rgba(255,255,255,0.5); padding: 80px 0 30px; font-size: 0.85rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .site-logo-text { font-family: var(--font-accent); font-size: 1.5rem; color: var(--color-white); display: block; text-transform: uppercase; letter-spacing: 0.15em; line-height: 1; }
.footer-brand .site-logo-sub { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.35em; color: var(--color-gold); text-transform: uppercase; display: block; margin-top: 5px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 24px; line-height: 1.8; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color var(--transition); display: inline-flex; align-items: center; justify-content: center; }
.footer-social a:hover { color: var(--color-gold); }
.footer-col h5 { font-family: var(--font-accent); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-white); margin-bottom: 24px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.5); transition: color var(--transition); text-decoration: none; }
.footer-col a:hover { color: var(--color-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; }
.footer-bottom-links ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--color-gold); }

/* ============================================================
   MOBILE OVERRIDES (Map, Newsletter, Footer)
   ============================================================ */
@media screen and (max-width: 991px) {
  /* Fix Map Stacking */
  .location-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .location-map iframe { height: 350px !important; }

  /* Fix Newsletter */
  .newsletter-form { flex-direction: column !important; border-bottom: none !important; gap: 16px !important; }
  .newsletter-form input { border-bottom: 1px solid rgba(255,255,255,0.3) !important; text-align: center !important; padding: 12px !important; }
  .newsletter-form button { background: var(--color-gold) !important; color: var(--color-charcoal) !important; padding: 14px !important; width: 100% !important; }

  /* Fix Footer */
  .footer-top { grid-template-columns: 1fr !important; text-align: center !important; gap: 40px !important; }
  .footer-social { justify-content: center !important; }
  .footer-bottom { flex-direction: column !important; gap: 20px !important; text-align: center !important; }
  .footer-bottom-links ul { flex-wrap: wrap !important; justify-content: center !important; }
}

/*
Theme Name: Muchaan Resorts
Theme URI: https://muchaan.com
Author: Muchaan Resorts
Author URI: https://muchaan.com
Description: A luxury boutique resort WordPress theme for Muchaan Resorts — refined, elegant, and timeless.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muchaanresorts
Tags: hotel, resort, luxury, full-width-template, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   MUCHAAN RESORTS — WORDPRESS THEME
   Designed with refinement, elegance, and sophistication.
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --color-gold:        #C9A96E;
  --color-gold-light: #DFC08A;
  --color-gold-dark:  #A07840;
  --color-charcoal:   #1A1A1A;
  --color-warm-black: #111010;
  --color-cream:      #F8F4EE;
  --color-warm-gray:  #E8E2D9;
  --color-mid-gray:   #9A9088;
  --color-text:       #2C2826;
  --color-white:      #FFFFFF;

  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Jost', 'Helvetica Neue', sans-serif;
  --font-accent:   'Cinzel', serif;

  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-width:     1440px;
  --gutter:        clamp(24px, 5vw, 80px);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Ensure the individual slides act as standard relative wrapper layers */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Force the video element to scale dynamically like a background cover */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: var(--color-mid-gray);
}

.label-small {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ============================================================
   GOOGLE LIGHTHOUSE MOBILE PERFORMANCE OPTIMIZATIONS
   ============================================================ */

@media (max-width: 768px) {
    /* Deactivate expensive fixed backgrounds on mobile to avoid painting lag */
    .page-hero,
    section[style*="fixed"] {
        background-attachment: scroll !important;
    }

    /* Force hardware acceleration layers for the touch interaction layout slider */
    .room-slider {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    /* Expand tap areas safely on small viewports for touch validation passes */
    .mobile-nav a,
    .slider-btn {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad {
  padding: clamp(60px, 8vw, 120px) 0;
}

.gold-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 20px 0 28px;
}

.text-center { text-align: center; }
.text-white  { color: var(--color-white) !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-weight: 500;
  text-decoration: none;
}

/* Gold button: gold border + gold text → hover: gold background + DARK charcoal text */
.btn-gold {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: transparent;
}
.btn-gold:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

/* White button (on dark backgrounds): white border + white text → hover: white background + DARK text */
.btn-white {
  color: var(--color-white);
  border-color: var(--color-white);
  background: transparent;
}
.btn-white:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

/* Dark button (on light backgrounds): dark border + dark text → hover: dark background + WHITE text */
.btn-dark {
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  background: transparent;
}
.btn-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

/* ============================================================
   SITE HEADER & NAVIGATION
   ============================================================ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  padding: 28px 0;
}

#site-header.scrolled {
  background: rgba(17, 16, 16, 0.97);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
}

#site-header.hero-overlay {
  background: transparent;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Logo */
.site-logo {
  text-align: center;
  grid-column: 2;
}

.site-logo a {
  display: inline-block;
}

.site-logo-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
}

.site-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-top: 5px;
}

/* Main Nav */
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-left a, .nav-right a {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
}

.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-left a:hover, .nav-right a:hover { color: var(--color-gold); }
.nav-left a:hover::after, .nav-right a:hover::after { width: 100%; }

/* Book Now CTA */
.nav-book-btn {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-charcoal) !important;
  background: var(--color-gold);
  padding: 10px 22px;
  transition: var(--transition) !important;
}

.nav-book-btn:hover {
  background: var(--color-gold-light);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu Base */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-warm-black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-white);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--color-gold); }

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: var(--gutter);
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.mobile-nav-close:hover { color: var(--color-gold); }

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

@media (max-width: 991px) {
  .nav-left, .nav-right {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    z-index: 99;
  }

  .hamburger span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
  }

  .mobile-nav {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1512;
    z-index: 9999;
  }

  /* Safe handling for either JS toggle system (.open or .is-open) */
  .mobile-nav.open,
  .mobile-nav.is-open {
    display: flex !important;
  }

  .mobile-nav a {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 12px 0;
    text-decoration: none;
  }

  .mobile-nav-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffffff;
  }
}

@media (min-width: 992px) {
  .hamburger {
    display: none !important;
  }
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-warm-black);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) {
  background-image: linear-gradient(135deg, #1a0f08 0%, #2d1a0e 30%, #1a1208 60%, #0e0c08 100%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%23221409'/%3E%3C/svg%3E");
}
.hero-slide:nth-child(2) {
  background-image: linear-gradient(135deg, #0a1020 0%, #162030 40%, #0e1828 100%);
}
.hero-slide:nth-child(3) {
  background-image: linear-gradient(135deg, #100a08 0%, #201208 40%, #100e08 100%);
}

/* Luxe gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--color-white);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.6s forwards;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.9s forwards;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.2s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2s 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--color-gold);
  transform: scale(1.4);
}

/* Booking Bar */
.booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(17,16,16,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.booking-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 72px;
  overflow: hidden;
}

.booking-field {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.booking-field:hover { background: rgba(255,255,255,0.04); }
.booking-field:last-of-type { border-right: none; }

.booking-field label {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
  cursor: pointer;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-white);
  cursor: pointer;
  width: 100%;
}
.booking-field select option { background: var(--color-charcoal); color: var(--color-white); }
.booking-field input::placeholder { color: rgba(255,255,255,0.4); }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.4); }

.booking-submit {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border: none;
  height: 100%;
  padding: 0 48px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.booking-submit:hover { background: var(--color-gold-light); }

/* ============================================================
   INTRO SECTION
   ============================================================ */

.intro-section {
  background: var(--color-cream);
}

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

.intro-text { }
.intro-text h2 { color: var(--color-charcoal); margin-bottom: 20px; }
.intro-text p  { margin-bottom: 24px; }
.intro-stats {
  display: flex;
  gap: 48px;
  margin: 40px 0;
}
.intro-stat .number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}
.intro-stat .stat-label {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  display: block;
  margin-top: 4px;
}

.intro-image-stack {
  position: relative;
  height: 520px;
}
.intro-image-main {
  position: absolute;
  inset: 0 80px 0 0;
  background: linear-gradient(135deg, #2a1f14 0%, #3d2a18 50%, #2a1a10 100%);
  border-radius: 2px;
}
.intro-image-accent {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 200px;
  height: 280px;
  background: linear-gradient(135deg, #c9a96e 0%, #a07840 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-image-accent-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-white);
  text-align: center;
  padding: 20px;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */

.rooms-section {
  background: var(--color-warm-black);
  overflow: hidden;
}

.rooms-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.rooms-header h2 { color: var(--color-white); }

/* Room slider */
.room-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.room-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card {
  flex: 0 0 calc(33.333% - 16px);
  position: relative;
  background: #1c1a18;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition);
}
.room-card:hover { transform: translateY(-4px); }

.room-card-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.room-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.room-card:hover .room-card-image-bg { transform: scale(1.07); }

/* Unique gradient backgrounds for each room type */
.bg-superior   { background-image: linear-gradient(135deg, #1a0e08 0%, #2d1a0e 60%, #1a1208 100%); }
.bg-deluxe     { background-image: linear-gradient(135deg, #080e1a 0%, #0e1a2d 60%, #081218 100%); }
.bg-privilege  { background-image: linear-gradient(135deg, #0a1208 0%, #142212 60%, #0a1208 100%); }
.bg-suite      { background-image: linear-gradient(135deg, #1a1008 0%, #2d1a08 60%, #1a1008 100%); }
.bg-penthouse  { background-image: linear-gradient(135deg, #10081a 0%, #1a0e2d 60%, #10081a 100%); }
.bg-presidential { background-image: linear-gradient(135deg, #1a0808 0%, #2d0e0e 60%, #1a0808 100%); }

.room-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: var(--color-gold);
  padding: 5px 12px;
}

.room-card-body {
  padding: 32px;
}
.room-card-type {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 10px;
}
.room-card h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.room-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.room-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.room-price {
  font-family: var(--font-display);
  color: var(--color-gold);
}
.room-price .from {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.room-price .amount {
  font-size: 1.8rem;
  line-height: 1;
}
.room-price .per { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.room-card-links {
  display: flex;
  gap: 12px;
}
.room-card-links a {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
/* View link: subtle border, muted text → hover: brighter white, not white-on-white */
.link-view {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.15);
  background: transparent;
}
.link-view:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
/* Book link: gold border + gold text → hover: gold background + DARK charcoal text (never white-on-gold) */
.link-book {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: transparent;
}
.link-book:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
.slider-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.slider-count {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
}
.slider-count span { color: var(--color-gold); }

/* ============================================================
   QUOTE BANNER
   ============================================================ */

.quote-banner {
  background: var(--color-gold);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--color-charcoal);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.quote-author {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6);
}

/* ============================================================
   DINING & EXPERIENCES
   ============================================================ */

.dining-section {
  background: var(--color-cream);
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

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

.dining-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.dining-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.dining-card:hover .dining-card-bg { transform: scale(1.08); }

.bg-rooftop  { background-image: linear-gradient(135deg, #0a1020 0%, #162030 50%, #0a1828 100%); }
.bg-restaurant { background-image: linear-gradient(135deg, #080e12 0%, #0e1a20 50%, #080e14 100%); }
.bg-bar      { background-image: linear-gradient(135deg, #10080a 0%, #201018 50%, #10080e 100%); }

.dining-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: var(--transition);
}
.dining-card:hover .dining-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%);
}

.dining-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  transform: translateY(60px);
  transition: transform var(--transition);
}
.dining-card:hover .dining-card-content { transform: translateY(0); }

.dining-card-content .label-small { margin-bottom: 10px; }
.dining-card-content h3 {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 16px;
}
.dining-card-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  opacity: 0;
  transition: opacity var(--transition);
  line-height: 1.6;
}
.dining-card:hover .dining-card-content p { opacity: 1; }
.dining-card-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   PERKS SECTION
   ============================================================ */

.perks-section {
  background: var(--color-charcoal);
}

.perks-header { text-align: center; margin-bottom: 60px; }
.perks-header h2 { color: var(--color-white); }

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.perk-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.perk-item:nth-child(3n) { border-right: none; }
.perk-item:hover { background: rgba(255,255,255,0.03); }

.perk-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--color-gold);
}
.perk-item h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.perk-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
  background: var(--color-cream);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; }

.gallery-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.08); }

.gi-1 { background-image: linear-gradient(135deg, #1a0e08 0%, #3d2010 60%, #1a1008 100%); }
.gi-2 { background-image: linear-gradient(135deg, #080e1a 0%, #102030 60%, #081218 100%); }
.gi-3 { background-image: linear-gradient(135deg, #0a1008 0%, #182210 60%, #0a1008 100%); }
.gi-4 { background-image: linear-gradient(135deg, #1a0808 0%, #301010 60%, #1a0808 100%); }
.gi-5 { background-image: linear-gradient(135deg, #10081a 0%, #201030 60%, #10081a 100%); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-expand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-expand-icon { opacity: 1; transform: scale(1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background: var(--color-warm-black);
  text-align: center;
}

.testimonials-header { margin-bottom: 60px; }
.testimonials-header h2 { color: var(--color-white); }

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
}
.testimonial.active { display: block; }

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--color-white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
}
.testimonial-author {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.tNav-dot {
  width: 8px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.tNav-dot.active {
  width: 32px;
  background: var(--color-gold);
}

/* ============================================================
   LOCATION / MAP SECTION
   ============================================================ */

.location-section {
  background: var(--color-cream);
}

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

.location-text h2 { color: var(--color-charcoal); margin-bottom: 20px; }
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.location-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-info-item .info-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.location-info-item .info-content {}
.location-info-item .info-title {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}
.location-info-item .info-text {
  font-size: 0.9rem;
  color: var(--color-mid-gray);
  line-height: 1.6;
}

.location-map {
  height: 460px;
  background: linear-gradient(135deg, #d4c4b0, #c0a882);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.map-pin {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  animation: pinBounce 2s ease-in-out infinite;
}
.map-pin::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: white;
  padding: 8px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 8px;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */

.newsletter-section {
  background: var(--color-charcoal);
  text-align: center;
}

.newsletter-section h2 { color: var(--color-white); margin-bottom: 16px; }
.newsletter-section p  { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 40px; }

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--color-gold);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--color-gold-light); }

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

#site-footer {
  background: var(--color-warm-black);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .site-logo-text { font-size: 1.2rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin: 20px 0 32px;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-gold); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--color-gold); }

/* ============================================================
   PAGE TEMPLATES — INNER PAGES
   ============================================================ */

/* Page Hero */
.page-hero {
  height: 60vh;
  min-height: 400px;
  background: var(--color-warm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero-content h1 { color: var(--color-white); margin-bottom: 16px; }
.page-hero-breadcrumb {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.page-hero-breadcrumb a { color: var(--color-gold); }
.page-hero-breadcrumb span { margin: 0 10px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%       { transform: rotate(-45deg) translateY(-8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .room-card { flex: 0 0 calc(50% - 12px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .dining-card { height: 380px; }
  .dining-card-content { transform: translateY(0); }
  .dining-card-content p { opacity: 1; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image-stack { height: 320px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 280px; }
  .gallery-item:not(:first-child) { height: 200px; }
  .booking-bar-inner { flex-wrap: wrap; height: auto; }
  .booking-field { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .booking-submit { flex: 0 0 100%; height: 56px; }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }

  .room-card { flex: 0 0 calc(100% - 0px); }

  .perks-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item { height: 220px !important; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .intro-stats { gap: 24px; flex-wrap: wrap; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .booking-field { flex: 0 0 100%; }
}

/* ============================================================
   LOGO IMAGE SUPPORT
   ============================================================ */

.site-logo-img {
  display: block;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.hero-overlay .site-logo-img { filter: brightness(0) invert(1); }
.scrolled .site-logo-img { filter: none; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-page-hero {
  background: var(--color-charcoal);
  padding: clamp(100px,12vw,160px) 0 clamp(60px,7vw,100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gallery-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-page-hero h1 { color: var(--color-white); margin-bottom: 16px; }

/* Filter tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: clamp(32px,4vw,56px) 0 clamp(40px,5vw,72px);
}
.gallery-filter-btn {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  background: transparent;
  border: 1px solid var(--color-warm-gray);
  padding: 10px 24px;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-charcoal);
  color: var(--color-gold);
  border-color: var(--color-charcoal);
}

/* Masonry grid */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
  padding: 0 0 clamp(60px,8vw,120px);
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.gallery-grid-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-grid-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,16,16,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-grid-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
}
.gallery-item-cat {
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
}
.gallery-lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.gallery-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.gallery-lightbox-close:hover { opacity: 1; }
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.1rem;
}
.gallery-lightbox-nav:hover { background: rgba(201,169,110,0.25); }
.gallery-lightbox-prev { left: -72px; }
.gallery-lightbox-next { right: -72px; }
@media (max-width: 768px) {
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
}
.gallery-lightbox-caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* ============================================================
   ROOM PHOTO GALLERY (single-room.php)
   ============================================================ */

.room-photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin: 40px 0;
}
.room-photo-gallery a:first-child {
  grid-row: span 2;
}
.room-photo-gallery a {
  display: block;
  overflow: hidden;
  position: relative;
}
.room-photo-gallery a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.room-photo-gallery a:hover img { transform: scale(1.06); }
.room-photo-gallery .view-all-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,16,16,0.6);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 768px) {
  .room-photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .room-photo-gallery a:first-child { grid-row: span 1; grid-column: span 2; }
}

/* ============================================================
   CONTACT PAGE — STYLISH REDESIGN
   ============================================================ */

.contact-hero {
  background: var(--color-charcoal);
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(60px,8vw,100px);
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(201,169,110,0.14) 0%, transparent 65%);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.contact-hero-grid h1 { color: var(--color-white); line-height: 1.05; }
.contact-hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  line-height: 1.7;
  max-width: 400px;
}
.contact-quick-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 8px;
}
.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-quick-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--color-gold);
}
.contact-quick-label {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}
.contact-quick-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
}
.contact-quick-value a { color: var(--color-white); transition: color 0.2s; }
.contact-quick-value a:hover { color: var(--color-gold); }

/* Form section */
.contact-form-section {
  background: var(--color-cream);
  padding: clamp(60px,8vw,120px) 0;
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}
.contact-form-side h2 { margin-bottom: 10px; }
.contact-form-side .label-small { margin-bottom: 12px; display: block; }

.contact-form { margin-top: 40px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.cf-row.full { grid-template-columns: 1fr; }

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-field label {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-warm-gray);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--color-gold); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-field select { appearance: none; cursor: pointer; }

.contact-inquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 24px;
}
.inquiry-chip {
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--color-warm-gray);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-mid-gray);
  background: transparent;
  user-select: none;
}
.inquiry-chip.selected,
.inquiry-chip:hover {
  background: var(--color-charcoal);
  color: var(--color-gold);
  border-color: var(--color-charcoal);
}

/* Info panel beside form */
.contact-info-panel {
  position: sticky;
  top: 100px;
  background: var(--color-charcoal);
  padding: clamp(36px,4vw,56px);
}
.contact-info-panel h3 { color: var(--color-white); margin: 16px 0 8px; }
.contact-info-panel p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.contact-social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: all 0.25s;
}
.contact-social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 28px 0;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.contact-hours-row span:first-child { color: rgba(255,255,255,0.4); }
.contact-hours-row span:last-child { color: var(--color-white); font-family: var(--font-display); }

/* Map strip */
.contact-map-strip {
  height: 360px;
  background: var(--color-warm-gray);
  position: relative;
  overflow: hidden;
}
.contact-map-strip iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}
.contact-map-overlay {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 20px 28px;
  max-width: 320px;
}
.contact-map-overlay .label-small { color: var(--color-gold); margin-bottom: 8px; display: block; }
.contact-map-overlay p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 6px; }

/* Response */
.cf-response {
  padding: 16px 20px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  display: none;
}
.cf-response.success { background: rgba(201,169,110,0.1); color: var(--color-gold); border-left: 3px solid var(--color-gold); }
.cf-response.error { background: rgba(200,60,60,0.08); color: #c44; border-left: 3px solid #c44; }

@media (max-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* MOBILE ONLY OPTIMIZATIONS (Max-Width: 991px)                 */
/* ============================================================ */
@media (max-width: 991px) {
    
    /* 1. HEADER FIX: Push Logo to Left, Hamburger to Right */
    .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .site-logo {
        margin: 0 !important; /* Removes central alignment forces */
        text-align: left !important;
    }

    .hamburger {
        margin-left: auto !important; /* Explicitly targets right side alignment */
    }

    /* 2. BOOKING BAR FIX: Make fields scannable, spaced, and user friendly */
    .booking-bar-inner {
        display: flex !important;
        flex-direction: column !important; /* Stack fields cleanly vertically */
        gap: 16px !important; /* Generous breathing room between inputs */
        padding: 20px !important;
        background-color: rgba(26, 21, 18, 0.95) !important; /* Solidifies dark theme luxury background */
        border-radius: 8px !important;
    }

    .booking-field {
        width: 100% !important; /* Force each option block to span full width */
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important; /* Gap between field label text and the input box */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; /* Clean separator line instead of rigid grid blocks */
        padding-bottom: 12px !important;
    }

    /* Labels styling configuration */
    .booking-field label {
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        color: #c5a880 !important; /* Luxury gold accent for structural titles */
    }

    /* Form input fields adjustments */
    .booking-field input[type="date"],
    .booking-field select {
        width: 100% !important;
        background: transparent !important;
        color: #ffffff !important;
        border: none !important;
        font-size: 0.95rem !important;
        padding: 4px 0 !important;
        outline: none !important;
        -webkit-appearance: none; /* Modern reset for native select inputs */
    }

    /* Submit button expansion configuration */
    .booking-submit {
        width: 100% !important;
        padding: 14px !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.15em !important;
        margin-top: 8px !important;
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    .nav-left, .nav-right {
        display: none !important;
    }
    .hamburger {
        display: block !important;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 99;
    }
    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #ffffff;
        margin: 5px 0;
    }

    /* Initial hidden state */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1a1512;
        z-index: 9999;
        display: none; /* Kept hidden until opened */
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* JavaScript applies this class to open the menu cleanly */
    .mobile-nav.is-open {
        display: flex !important;
    }

    .mobile-nav a {
        color: #ffffff;
        font-size: 1.5rem;
        margin: 12px 0;
        text-decoration: none;
    }
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        color: #ffffff;
        background: transparent;
        border: none;
        cursor: pointer;
    }
}

@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}


/* ============================================================
   FLOATING SOCIAL SIDEBAR (Optimized & Responsive)
   ============================================================ */
.social-sidebar {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 15px 10px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(5px) !important;
    visibility: visible !important;
}

.social-sidebar a {
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    transition: transform 0.3s ease !important;
}

.social-sidebar a:hover {
    transform: scale(1.1) !important;
}

.social-sidebar a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .social-sidebar {
        right: 10px !important;
        padding: 10px 5px !important;
        gap: 8px !important;
    }

    .social-sidebar a {
        width: 30px !important;
        height: 30px !important;
    }
}

/* ============================================================
   INTERACTIVE CONTACT FAB
   ============================================================ */
.contact-fab-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 2px !important; /* Changed from 20px to 5px to move it further right */
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    gap: 12px !important;
}

/* The Main Pill Button */
.contact-fab-toggle {
    background: var(--color-gold) !important;
    color: var(--color-charcoal) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.contact-fab-toggle .fab-text {
    font-family: var(--font-accent) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
}

.contact-fab-toggle:hover,
.contact-fab-toggle.is-active {
    background: var(--color-white) !important;
    transform: scale(1.05) !important;
}

/* The Hidden Menu (WhatsApp & Call) */
.contact-fab-menu {
    display: flex !important;
    flex-direction: row !important; /* Horizontal layout */
    gap: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(20px) !important; /* Starts slightly hidden to the right */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Active State (Triggered by JS) */
.contact-fab-menu.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important; /* Slides into place smoothly */
}

.contact-fab-menu a {
    display: block !important;
    width: 45px !important;
    height: 45px !important;
    transition: transform 0.3s ease !important;
}

.contact-fab-menu a:hover {
    transform: scale(1.15) !important;
}

.contact-fab-menu a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .contact-fab-container {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .contact-fab-toggle {
        padding: 10px 18px !important;
    }
    
    .contact-fab-menu a {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ============================================================
   FLOATING CHAT BUTTON (Optimized, No Duplicates)
   ============================================================ */
.contact-fab-container {
    position: fixed !important;
    bottom: 60px !important; /* Original 20px + 15px shift */
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 15px !important;
}

/* Button & Link Shared Styles */
.contact-fab-toggle, 
.contact-fab-menu a {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease !important;
    cursor: pointer !important;
}

/* Main Toggle Button */
.contact-fab-toggle {
    width: 60px !important;
    height: 60px !important;
}

.contact-fab-toggle:hover { 
    transform: scale(1.1) !important; 
}

.contact-fab-toggle svg {
    width: 50px !important;
    height: 50px !important;
}

/* The Menu */
.contact-fab-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.contact-fab-menu.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-fab-menu a {
    width: 50px !important;
    height: 50px !important;
}

.contact-fab-menu a:hover { 
    transform: scale(1.1) !important; 
}

.contact-fab-menu a svg {
    width: 50px !important;
    height: 50px !important;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .contact-fab-container {
        bottom: 95px !important; /* Original 80px + 15px shift */
    }
}