/* ═══════════════════════════════════════════════════════
   DESIGN_02 — HAVANZA-INSPIRED EDITORIAL LUXURY
   Hotel MM Castle · Gurdaspur, Punjab
   ═══════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Dancing+Script:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────── */
:root {
  /* Warm Earthy / Punjab Heritage Palette */
  --cream: #F5F0E8;
  --cream-light: #FAF7F1;
  --cream-dark: #EDE5D0;
  --sand: #D9CEB0;
  
  --terracotta: #6B1F2A;        /* Royal Maroon Signature */
  --terracotta-dark: #4A1019;   /* Deep Royal Maroon */
  --terracotta-light: #8B3040;  /* Light Royal Maroon */
  
  --olive: #B8922A;             /* Punjab Gold Accent */
  --olive-light: #D4A843;       /* Bright Accent Gold */
  --olive-dark: #8B6914;        /* Deep Luxurious Gold */
  
  --charcoal: #1A1A1A;          /* Deep Off-Black for text */
  --espresso: #2C1A0E;          /* Rich espresso accent */
  --charcoal-mid: #2C1A0E;
  --warm-gray: #5C4A38;         /* Elegant warm body accent */
  --warm-gray-light: #8C7B6A;   
  --white: #FFFFFF;
  --white-soft: rgba(255, 255, 255, 0.92);

  /* Legacy & Cross-Theme Color Mappings (Maintains 100% Code Compatibility) */
  --gold-light-bg: #F4EEDC;
  --royal-maroon: var(--terracotta);
  --royal-maroon-dark: var(--terracotta-dark);
  --gold-accent: var(--olive);
  --teal: var(--olive-dark);
  --teal-light: var(--olive-light);
  --orange-card: var(--olive);
  --green-card: var(--terracotta-dark);
  --blue-card: var(--terracotta-light);

  /* Typography - Standardized to Outfit (Inter pruned for 30% speedup) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-cursive: 'Dancing Script', cursive;
  --font-outfit: 'Outfit', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 10vw, 120px);
  --section-pad-sm: clamp(40px, 6vw, 80px);
  --container-max: 1320px;
  --gap-lg: clamp(30px, 4vw, 60px);
  --gap-md: clamp(20px, 3vw, 40px);
  --gap-sm: clamp(12px, 2vw, 24px);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(42, 42, 42, 0.08);
  --shadow-hover: 0 12px 40px rgba(42, 42, 42, 0.14);
  --shadow-polaroid: 0 8px 30px rgba(42, 42, 42, 0.12);
  --shadow-deep: 0 20px 60px rgba(26, 26, 26, 0.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-normal: 0.4s;
  --t-slow: 0.6s;
  --t-hero: 1s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ─── TYPOGRAPHY UTILITIES ─────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-cursive);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--terracotta);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-title-light {
  color: var(--cream-light);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 560px;
}

.cursive-accent {
  font-family: var(--font-cursive);
  color: var(--terracotta);
}

.serif-display {
  font-family: var(--font-display);
}

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream-light);
  border: 2px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--cream-light);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
}

.btn-terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-size: 0.82rem;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn-pill:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--t-normal) var(--ease-out);
}

/* ═══════════════════════════════════════════════════════
   1. NAVIGATION — Premium Glassmorphism Bar
   ═══════════════════════════════════════════════════════ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(90deg, #F4EEDC, #EDE5D0, #F4EEDC);
  border-bottom: 1px solid rgba(184, 146, 42, 0.3);
  color: var(--charcoal);
  z-index: 1001;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: transform 0.45s var(--ease-out);
}

.top-bar-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-left a,
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

.top-bar-left a:hover {
  color: var(--terracotta);
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-right a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--t-fast) ease;
  display: flex;
  align-items: center;
}

.top-bar-right a:hover {
  color: var(--terracotta);
}

.top-icon {
  width: 13px;
  height: 13px;
  color: var(--terracotta);
}

.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 3vw, 48px);
  transition: background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), top 0.45s var(--ease-out);
  /* Always slightly visible so brand is legible on hero */
  background: linear-gradient(180deg,
      rgba(10, 8, 6, 0.52) 0%,
      rgba(10, 8, 6, 0.0) 100%);
}

/* Thin gold accent line across the very bottom of the nav bar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(20px, 3vw, 48px);
  right: clamp(20px, 3vw, 48px);
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(196, 152, 42, 0.35) 30%,
      rgba(196, 152, 42, 0.35) 70%,
      transparent);
  transition: opacity 0.45s ease;
}

.navbar.scrolled::after {
  opacity: 0;
}

.navbar.scrolled {
  top: 0px;

  background: var(--cream-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(42, 42, 42, 0.08), 0 4px 24px rgba(42, 42, 42, 0.06);
}

.navbar.scrolled~.top-bar,
body.scrolled .top-bar {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: var(--container-max);
  margin: 0 auto;
}

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

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

/* ── Hamburger ─────────────────────────────── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: all var(--t-normal) var(--ease-out);
  border-radius: 2px;
}

.nav-hamburger span:nth-child(2) {
  width: 14px;
}

.navbar.scrolled .nav-hamburger span {
  background: var(--charcoal);
}

/* ── Nav Links ─────────────────────────────── */
.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t-fast) ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta-light);
  transition: width var(--t-normal) var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .nav-link {
  color: var(--charcoal);
}

.navbar.scrolled .nav-link:hover {
  color: var(--terracotta);
}

.navbar.scrolled .nav-link::after {
  background: var(--terracotta);
}

/* Active state for top navigation links */
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--terracotta-light);
  transition: width var(--t-normal) var(--ease-out);
}

.navbar.scrolled .nav-link.active {
  color: var(--terracotta);
}

.navbar.scrolled .nav-link.active::after {
  background: var(--terracotta);
  width: 100%;
}

/* ── Brand Block (Center) ──────────────────── */
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-brand-logo {
  height: 48px;
  width: auto;
  transition: transform var(--t-normal) var(--ease-out);
  flex-shrink: 0;
}

.nav-brand-link:hover .nav-brand-logo {
  transform: scale(1.04);
}

.nav-brand-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, 0.35) 30%,
      rgba(255, 255, 255, 0.35) 70%,
      transparent);
  flex-shrink: 0;
  transition: background 0.45s ease;
}

.navbar.scrolled .nav-brand-divider {
  background: linear-gradient(180deg,
      transparent,
      rgba(42, 42, 42, 0.18) 30%,
      rgba(42, 42, 42, 0.18) 70%,
      transparent);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.45s ease;
}

.navbar.scrolled .nav-brand-name {
  color: var(--charcoal);
}

.nav-brand-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-accent);
  white-space: nowrap;
  line-height: 1;
}

/* ── Book Now Button ───────────────────────── */
.nav-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-normal) var(--ease-out);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.nav-booking-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 88, 42, 0.4);
  transform: translateY(-1px);
}

.navbar.scrolled .nav-booking-btn {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.navbar.scrolled .nav-booking-btn:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  box-shadow: 0 4px 20px rgba(196, 88, 42, 0.3);
}

/* ── Mobile Nav Drawer ─────────────────────── */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-normal) var(--ease-out);
}

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

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(380px, 85vw);
  background: var(--cream-light);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform var(--t-slow) var(--ease-out);
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--charcoal);
  padding: 8px;
  margin-bottom: 32px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  transition: color var(--t-fast) ease, padding-left var(--t-fast) ease;
}

.nav-mobile-link:hover {
  color: var(--terracotta);
  padding-left: 8px;
}

.nav-mobile-contact {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.nav-mobile-contact p {
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nav-mobile-contact a {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.1rem;
}


/* ═══════════════════════════════════════════════════════
   2. HERO SECTION — Premium Cinematic Slider
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  max-height: 1100px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(70px, 12vh, 130px);
  isolation: isolate;
}

/* ── Slide Stack ─────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease-out;
  will-change: transform;
}

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

/* ── Multi-layer Cinematic Overlays ────────── */
.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, transparent 40%, rgba(10, 8, 6, 0.55) 100%);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(10, 8, 6, 0.18) 0%,
      rgba(10, 8, 6, 0.05) 30%,
      rgba(10, 8, 6, 0.08) 55%,
      rgba(10, 8, 6, 0.55) 80%,
      rgba(10, 8, 6, 0.82) 100%);
}

/* ── Ambient Floating Badge (top-right) ─────── */
.hero-ambient-badge {
  position: absolute;
  top: 110px;
  right: clamp(24px, 4vw, 60px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.6s forwards;
}

.hero-ambient-star {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  text-shadow: 0 0 12px rgba(196, 152, 42, 0.6);
}

.hero-ambient-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero-ambient-loc {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

/* ── Hero Content ───────────────────────────── */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 clamp(24px, 6vw, 90px);
  max-width: 860px;
}

/* Eyebrow rule */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Cursive accent */
.hero-cursive {
  font-family: var(--font-cursive);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--terracotta-light);
  margin-bottom: 6px;
  line-height: 1;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.4s forwards;
  text-shadow: 0 2px 20px rgba(196, 88, 42, 0.35);
}

/* Title lines */
.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 18px;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) 0.7s forwards;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.3));
}

.hero-title-line3 {
  display: block;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) 0.88s forwards;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 1.05s forwards;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 6px 30px rgba(196, 88, 42, 0.4);
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(196, 88, 42, 0.55);
  background: var(--terracotta-dark);
}

.hero-btn-primary:hover::before {
  opacity: 1;
}

.hero-btn-primary svg {
  transition: transform 0.3s var(--ease-spring);
}

.hero-btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(8px);
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  transform: translateY(-2px);
}

/* Rating strip */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.45s forwards;
}

.hero-rating-stars {
  font-size: 0.8rem;
  color: var(--gold-accent);
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(196, 152, 42, 0.5);
}

.hero-rating-score {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-rating-sep {
  color: rgba(255, 255, 255, 0.3);
}

.hero-rating-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Slide Controls (bottom-right) ───────────── */
.hero-controls {
  position: absolute;
  bottom: clamp(28px, 5vh, 52px);
  right: clamp(24px, 4vw, 60px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.5s forwards;
}

.hero-ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.hero-ctrl-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: scale(1.08);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  padding: 0;
}

.hero-dot.active {
  background: var(--terracotta-light);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(196, 88, 42, 0.6);
}

/* ── Progress Bar ─────────────────────────────── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--gold-accent));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(196, 88, 42, 0.5);
}

/* ── Slide Caption (bottom-left) ──────────────── */
.hero-caption {
  position: absolute;
  bottom: clamp(28px, 5vh, 56px);
  left: clamp(24px, 6vw, 90px);
  z-index: 5;
  display: flex;
  align-items: baseline;
  gap: 6px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.5s forwards;
}

.hero-caption-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-caption-sep,
.hero-caption-total {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.hero-caption-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Scroll Indicator ─────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 6vh, 56px);
  right: 50%;
  transform: translateX(50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.8s forwards;
}

.hero-scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── Keyframes ───────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleY(1.25);
  }
}

/* ═══════════════════════════════════════════════════════
   2b. AMENITY MARQUEE STRIP
   ═══════════════════════════════════════════════════════ */
.marquee-strip {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  padding: 0;
  height: 58px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Left & right fade-edge masks */
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal), transparent);
}

.marquee-inner {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.marquee-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.marquee-item-icon {
  display: flex;
  align-items: center;
  opacity: 0.55;
  color: var(--terracotta-light);
  flex-shrink: 0;
}

.marquee-item-icon svg {
  display: block;
}

.marquee-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.55;
  flex-shrink: 0;
  margin: 0 4px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Mobile hero adjustments ─────────────────── */
@media (max-width: 768px) {
  .hero {
    align-items: center;
    padding-bottom: 0;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    padding: 0 24px;
    margin-top: 80px;
  }

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

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

  .hero-rating {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-ambient-badge {
    display: none;
  }

  .hero-caption {
    bottom: 90px;
    left: 24px;
  }

  .hero-controls {
    bottom: 100px;
    right: 24px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-title-line2 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }

  .hero-title-line3 {
    font-size: clamp(2.5rem, 12vw, 4.8rem);
  }
}




/* ═══════════════════════════════════════════════════════
   BOOKING BAR
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   BOOKING BAR — PREMIUM UPGRADE
   ═══════════════════════════════════════════════════════ */
.booking-bar {
  position: relative;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(26, 26, 26, 0.13), 0 2px 8px rgba(26, 26, 26, 0.06);
}

/* Gold top line */
.bb-gold-line {
  height: 3px;
  background: linear-gradient(90deg,
      var(--terracotta-dark),
      var(--olive) 30%,
      var(--olive-light) 50%,
      var(--olive) 70%,
      var(--terracotta-dark));
}

.booking-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 100px;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.booking-field:hover {
  background: var(--cream-light);
}

/* Focused field gets a subtle top gold accent */
.booking-field:focus-within {
  background: rgba(184, 146, 42, 0.04);
}

.booking-field:focus-within::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px 2px 0 0;
}

.bb-field-sm {
  flex: 0.7;
}

.bb-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray-light);
  margin-bottom: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.bb-label svg {
  color: var(--olive);
  flex-shrink: 0;
}

/* Large date number display — like the reference */
.bb-date-display {
  display: flex;
  align-items: baseline;
  gap: 5px;
  position: relative;
  pointer-events: none;
}

.bb-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.booking-field:focus-within .bb-num {
  color: var(--terracotta);
}

.bb-month {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bb-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
}

.bb-divider {
  width: 1px;
  background: linear-gradient(180deg,
      transparent,
      rgba(42, 42, 42, 0.12) 30%,
      rgba(42, 42, 42, 0.12) 70%,
      transparent);
  align-self: stretch;
  margin: 12px 0;
}

/* CTA Panel — textured maroon */
.bb-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--terracotta);
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.025) 10px,
      rgba(255, 255, 255, 0.025) 20px);
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.bb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.bb-cta:hover {
  background-color: var(--terracotta-dark);
}

.bb-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
}

.bb-cta-inner svg {
  transition: transform 0.3s var(--ease-spring);
  opacity: 0.9;
}

.bb-cta:hover .bb-cta-inner svg {
  transform: scale(1.15);
}

.bb-cta-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}

.booking-bar {
  position: relative;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(26, 26, 26, 0.12), 0 2px 8px rgba(26, 26, 26, 0.06);
  border-bottom: 3px solid var(--terracotta);
}

.booking-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 90px;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.booking-field:hover {
  background: var(--cream-light);
}

.bb-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 6px;
  cursor: pointer;
}

.bb-label svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.bb-value {
  position: relative;
}

.bb-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 2px;
}

.bb-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

/* When select is focused, show the bb-day text in terracotta */
.bb-select:focus~.bb-day,
.booking-field:focus-within .bb-day {
  color: var(--terracotta);
}

.bb-divider {
  width: 1px;
  background: rgba(42, 42, 42, 0.1);
  align-self: stretch;
  margin: 16px 0;
}

.bb-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 40px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.2s ease;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.bb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bb-cta:hover {
  background: var(--terracotta-dark);
}

.bb-cta:hover::before {
  opacity: 1;
}

.bb-cta svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring);
}

.bb-cta:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   3. ABOUT / INTRODUCTION
   ═══════════════════════════════════════════════════════ */
.about {
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

/* ── Top editorial zone ────────────── */
.about-editorial-top {
  padding: var(--section-pad) 0 clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-editorial-text {
  padding-right: 10px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* ── Gold Ornament Bar (left side) ────── */
.about-ornament-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
  flex-shrink: 0;
}

.about-ornament-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
}

.about-ornament-line {
  width: 1.5px;
  height: 60px;
  background: linear-gradient(180deg, var(--olive), rgba(184, 146, 42, 0.2));
}

.about-ornament-diamond {
  font-size: 0.9rem;
  color: var(--olive);
  line-height: 1;
  margin: 4px 0;
}

.about-editorial-text-inner {
  flex: 1;
  min-width: 0;
}

/* Enhanced title with italic serif for the hotel name */
.about-title-em {
  font-style: italic;
  color: var(--terracotta);
  display: block;
}

/* Premium ornament gold rule */
.about-gold-rule-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 28px;
}

.about-gold-ornament {
  font-size: 0.7rem;
  color: var(--olive);
  flex-shrink: 0;
}

.about-gold-rule-line {
  flex: 1;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--olive) 0%, rgba(184, 146, 42, 0.15) 100%);
}

.about-editorial-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ── Room Photo with overlapping stamp ─────── */
.about-editorial-photo {
  position: relative;
  padding: 20px 0 70px 20px;
}

/* Decorative tilted frame behind the photo */
.about-photo-frame-bg {
  position: absolute;
  top: 0;
  left: 40px;
  right: -20px;
  bottom: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%);
  border: 2px solid rgba(184, 146, 42, 0.2);
  transform: rotate(2.5deg);
  z-index: 0;
}

.about-room-photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.2), 0 4px 16px rgba(26, 26, 26, 0.08);
}

.about-room-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.about-room-photo-wrap:hover .about-room-photo {
  transform: scale(1.02);
}

/* Floating "Est." badge on top-left of photo */
.about-est-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 12;
  background: var(--terracotta-dark);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 8px 24px rgba(74, 16, 25, 0.4);
  border: 3px solid rgba(184, 146, 42, 0.5);
  animation: float 5s ease-in-out infinite;
}

.about-est-since {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.8;
}

.about-est-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.about-est-text {
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--olive-light);
}

/* Stamp floating out of photo bottom-right */
.about-stamp-float {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 170px;
  height: 170px;
  z-index: 10;
  pointer-events: none;
}

.about-stamp-float .rotating-stamp,
.about-stamp-overlay .rotating-stamp {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin360 28s linear infinite;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

/* ── Pencil Drawing Zone — ENHANCED ─────────── */
.about-drawing-zone {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin-top: 60px;
  /* extra top margin to let stamp overflow clear */
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.about-pencil-art {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 115%;
  width: auto;
  max-width: none;
  object-fit: contain;
  /* More visible — key artistic element */
  opacity: 0.35;
  filter: sepia(20%) brightness(0.8) contrast(1.15);
  animation: drawingDrift 35s ease-in-out infinite alternate;
}

@keyframes drawingDrift {
  from {
    transform: translateX(-51%) scale(1);
  }

  to {
    transform: translateX(-49%) scale(1.04);
  }
}

/* Fade edges: top fades to cream (to blend with editorial zone above), bottom fades out */
.about-drawing-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--cream-light) 0%,
      rgba(245, 240, 232, 0.3) 20%,
      transparent 38%,
      transparent 65%,
      var(--cream) 100%);
  pointer-events: none;
}

/* Elegant location watermark */
.about-drawing-watermark {
  position: absolute;
  bottom: 28px;
  right: clamp(24px, 5vw, 60px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(92, 74, 56, 0.25);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
}

/* ── Booking Bar Mobile ──────────── */
@media (max-width: 1024px) {
  .booking-bar-inner {
    flex-wrap: wrap;
  }

  .booking-field {
    flex: 0 0 calc(50% - 1px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
    padding: 12px 20px;
  }

  .bb-cta {
    flex: 0 0 100%;
    min-height: 58px;
    border-radius: 0;
  }

  .bb-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .booking-field {
    flex: 0 0 50%;
  }

  .bb-day {
    font-size: 1.05rem;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-text {
    padding-right: 0;
    order: 1;
  }

  .about-editorial-photo {
    order: 2;
  }

  .about-room-photo {
    height: 320px;
  }

  .about-stamp-float {
    width: 100px;
    height: 100px;
    bottom: -35px;
    right: -10px;
  }

  .about-drawing-zone {
    height: 220px;
  }
}



.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-text {
  padding-left: 10px;
}

.about-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(196, 88, 42, 0.08);
  border: 1px solid rgba(196, 88, 42, 0.15);
  color: var(--terracotta);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-text .section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

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

.about-description {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-description strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Elegant Rule */
.gold-rule {
  border: none;
  height: 2px;
  background: linear-gradient(to right, var(--terracotta) 40px, rgba(42, 42, 42, 0.08) 40px);
  margin: 24px 0 28px 0;
}

/* 360° Tours Section */
.about-tours-wrapper {
  background: var(--cream);
  border: 1px solid rgba(42, 42, 42, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.about-tours-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.about-tours-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-tours-buttons .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(42, 42, 42, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--t-fast) ease;
  cursor: pointer;
}

.about-tours-buttons .btn-outline svg {
  color: var(--terracotta);
  transition: transform var(--t-fast) ease;
}

.about-tours-buttons .btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(196, 88, 42, 0.08);
}

.about-tours-buttons .btn-outline:hover svg {
  transform: scale(1.1);
}

/* Stats 4 Columns */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(42, 42, 42, 0.08);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.about-stat-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-top: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Floating Rating Badge */
.about-rating-tag {
  position: absolute;
  top: 30px;
  left: -20px;
  z-index: 10;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-left: 3px solid var(--terracotta);
}

.about-rating-stars {
  display: flex;
  gap: 3px;
}

.gold-star {
  color: #d4af37;
}

/* Float animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* About Image — Premium Split-Panel Layout */
.about-visual {
  position: relative;
}

.about-img-premium {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 10px;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-main {
  position: relative;
  /* Allow stamp to overflow visually */
  overflow: visible;
}

.about-img-main-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about-img-main:hover .about-img-main-inner img {
  transform: scale(1.04);
}

.about-stamp-overlay {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 140px;
  height: 140px;
  z-index: 5;
  pointer-events: none;
}

.about-img-main {
  /* Ensure the stamp can overflow out of the container for a premium overlapping look */
  overflow: visible;
}

/* Because we set overflow: visible on about-img-main to let the stamp overlap, we need a wrapper to hide the main image zoom overflow */
.about-img-main-inner {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.rotating-stamp {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin360 24s linear infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.about-img-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.about-img-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-img-thumb {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about-img-thumb:hover img {
  transform: scale(1.05);
}

/* Rating tag — now sits inside the main image overlay */
.about-rating-tag {
  background: rgba(26, 26, 26, 0.82);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 3px solid var(--gold-accent);
}

.about-rating-stars {
  display: flex;
  gap: 3px;
}

.gold-star {
  color: #d4af37;
}

/* Float animation kept for other uses */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   4. ROOMS — POLAROID CAROUSEL (WARM LIGHT)
   ═══════════════════════════════════════════════════════ */
.rooms {
  padding: var(--section-pad) 0;
  background-color: var(--cream);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

.rooms::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/Logo and Fevicon/pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  /* high-end detailed scale */
  opacity: 0.50;
  /* soft, luxurious watermark texture */
  z-index: -1;
  pointer-events: none;
}

.rooms .section-label {
  color: var(--terracotta);
}

.rooms .section-title {
  color: var(--charcoal);
}

.rooms .rooms-nav-btn {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.rooms .rooms-nav-btn:hover {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
}

.rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--gap-lg);
  flex-wrap: wrap;
  gap: 20px;
}

.rooms-header-text .section-title {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.rooms-nav {
  display: flex;
  gap: 10px;
}

.rooms-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  transition: all var(--t-normal) var(--ease-out);
}

.rooms-nav-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.rooms-carousel {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0 40px;
}

.rooms-carousel::-webkit-scrollbar {
  display: none;
}

/* Polaroid Room Card */
.room-polaroid {
  flex: 0 0 clamp(280px, 30vw, 380px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 12px 12px 24px;
  box-shadow: var(--shadow-polaroid);
  transition: all var(--t-slow) var(--ease-out);
  position: relative;
}

.room-polaroid:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: var(--shadow-deep);
}

.room-polaroid:nth-child(1) {
  transform: rotate(-1.5deg);
}

.room-polaroid:nth-child(2) {
  transform: rotate(0.8deg);
}

.room-polaroid:nth-child(3) {
  transform: rotate(-0.5deg);
}

.room-polaroid-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.room-polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.room-polaroid:hover .room-polaroid-img img {
  transform: scale(1.05);
}

/* Colored frame border */
.room-polaroid-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  z-index: 1;
  pointer-events: none;
}

.room-polaroid[data-color="green"] .room-polaroid-img::before {
  border: 4px solid var(--green-card);
}

.room-polaroid[data-color="orange"] .room-polaroid-img::before {
  border: 4px solid var(--orange-card);
}

.room-polaroid[data-color="teal"] .room-polaroid-img::before {
  border: 4px solid var(--teal);
}

/* Room labels inside image */
.room-polaroid-labels {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.room-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

/* 360° badge */
.room-360-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(8px);
  color: var(--cream-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
}

.room-360-badge:hover {
  background: var(--terracotta);
}

.room-360-badge svg {
  width: 14px;
  height: 14px;
  animation: spin360 3s linear infinite;
}

@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.room-polaroid-info {
  padding: 16px 4px 0;
}

.room-polaroid-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.room-polaroid-size {
  font-size: 0.82rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.room-polaroid-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  color: var(--white);
  /* color set by inline style from JS */
}

/* Amenities preview on room card */
.room-amenities-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(42, 42, 42, 0.08);
}

.room-amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--warm-gray);
}

.room-amenity-item svg {
  flex-shrink: 0;
  color: var(--terracotta);
}

/* Gallery hint overlay on room card image */
.room-gallery-hint {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(26, 26, 26, 0.82);
  color: var(--white);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.room-polaroid:hover .room-gallery-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Room card pointer cursor */
.room-polaroid {
  cursor: pointer;
}

/* ── ROOM LIGHTBOX ─────────────────────────────── */
.room-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.room-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(8px);
}

.lb-panel {
  position: relative;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  width: min(1100px, 95vw);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.35s var(--ease-out);
}

.room-lightbox.open .lb-panel {
  transform: translateY(0);
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) ease;
}

.lb-close:hover {
  background: var(--terracotta);
  transform: scale(1.1);
}

.lb-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  flex: 1;
  overflow: hidden;
}

.lb-images {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  gap: 8px;
  padding: 8px;
  overflow: hidden;
}

.lb-main-wrap {
  position: relative;
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 0;
}

.lb-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s ease;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) ease;
  z-index: 5;
}

.lb-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lb-prev {
  left: 10px;
}

.lb-next {
  right: 10px;
}

.lb-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.lb-thumbs {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  overflow-x: auto;
  padding: 2px;
}

.lb-thumbs::-webkit-scrollbar {
  height: 3px;
}

.lb-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.lb-thumb {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: all var(--t-fast) ease;
}

.lb-thumb.active,
.lb-thumb:hover {
  opacity: 1;
  border-color: var(--terracotta);
}

.lb-details {
  padding: clamp(24px, 3vw, 40px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Lightbox Details Styling */
.lb-category {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin: 0;
}

.lb-room-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.25;
}

.lb-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-weight: 600;
}

.lb-sep {
  color: var(--olive-light);
  font-weight: 700;
}

.lb-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal-mid);
  margin: 0;
}

.lb-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin-top: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(42, 42, 42, 0.06);
  border-bottom: 1px solid rgba(42, 42, 42, 0.06);
}

.lb-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  font-weight: 600;
}

.lb-feature svg {
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .lb-features-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px 0 !important;
  }
}

/* ── Room Lightbox Responsiveness ── */
@media (max-width: 768px) {
  .room-lightbox {
    align-items: flex-end; /* Align to the bottom of the screen on mobile like a premium drawer */
  }

  .lb-panel {
    width: 100vw !important;
    max-height: 88vh !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; /* Premium rounded top corner drawer */
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .room-lightbox.open .lb-panel {
    transform: translateY(0);
  }

  .lb-body {
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    max-height: calc(88vh - 0px) !important;
  }

  .lb-images {
    flex: 0 0 280px !important; /* Lock image gallery height on mobile */
    height: 280px !important;
    padding: 6px !important;
    gap: 6px !important;
    position: relative;
  }

  .lb-main-wrap {
    flex: 1 !important;
    height: calc(100% - 44px) !important; /* Leave room for thumbnails */
    min-height: 0 !important;
  }

  .lb-main-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .lb-thumbs {
    height: 38px !important;
    padding: 2px 0 0 !important;
    gap: 6px !important;
  }

  .lb-thumb {
    width: 50px !important;
    height: 34px !important;
  }

  .lb-details {
    padding: 24px 20px !important;
    overflow-y: visible !important;
    height: auto !important;
    gap: 16px !important;
  }

  /* Make details panel action buttons stack on mobile devices for ease of tap */
  .lb-actions {
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .lb-actions button {
    width: 100% !important;
    flex: none !important;
    height: 48px !important;
  }

  /* Reposition close button to be more premium overlay on image panel */
  .lb-close {
    top: 12px !important;
    right: 12px !important;
    background: rgba(10, 8, 6, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 36px !important;
    height: 36px !important;
    z-index: 20 !important;
  }
}

/* ═══════════════════════════════════════════════════════
   6. RESTAURANT — SPICE NATION (DARK EDITORIAL & GALLERY)
   ═══════════════════════════════════════════════════════ */
.restaurant-editorial {
  padding: var(--section-pad) 0;
  background-color: var(--cream-light);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Dark Theme support */
.restaurant-editorial.dark-theme {
  background-color: var(--charcoal);
  color: var(--cream-light);
}

.restaurant-editorial.dark-theme .resto-row-title {
  color: var(--cream-light);
}

.restaurant-editorial.dark-theme .resto-row {
  border-color: rgba(255, 255, 255, 0.12);
}

.restaurant-editorial.dark-theme .resto-row-subtext {
  color: var(--sand);
}

/* Beautiful grid layout for restaurant editorial */
.resto-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid rgba(92, 74, 56, 0.15);
  padding-top: clamp(40px, 6vw, 80px);
}

/* Horizontal rows block on the left */
.resto-rows-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

.resto-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.1fr;
  align-items: center;
  padding: clamp(28px, 4.5vw, 44px) 0;
  border-bottom: 1px solid rgba(92, 74, 56, 0.15);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.resto-row:first-child {
  border-top: 1px solid rgba(92, 74, 56, 0.15);
}

.restaurant-editorial.dark-theme .resto-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Info descriptive text blocks on left and right */
.resto-row-left-info {
  padding-right: 15px;
}

.resto-row-right-info {
  padding-left: 15px;
  text-align: left;
}

.resto-row-label {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 4px;
}

.resto-row-subtext {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.45;
  margin: 0;
}

/* Slanted high-end playfair typography for row titles */
.resto-row-center {
  text-align: center;
  position: relative;
}

.resto-row-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.resto-flower-icon {
  font-size: 1.3rem;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
  animation: float 6s ease-in-out infinite alternate;
}

/* Thumbnail images floating on left/right side of rows */
.resto-row-thumbnail {
  position: absolute;
  width: 145px;
  height: 98px;
  background: var(--white);
  padding: 5px 5px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.8) rotate(-15deg);
  transition: all 0.45s var(--ease-spring);
  top: 50%;
}

/* Dark mode thumbnail style */
.restaurant-editorial.dark-theme .resto-row-thumbnail {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.resto-row-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.thumb-left {
  left: -35px;
}

.thumb-right {
  right: -35px;
  left: auto;
}

/* HOVER INTERACTIONS: Show floated polaroids + slide text */
.resto-row:hover {
  background: rgba(184, 146, 42, 0.03);
}

.restaurant-editorial.dark-theme .resto-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.resto-row:hover .resto-row-title {
  color: var(--olive-light);
  transform: scale(1.03);
}

.resto-row:hover .resto-row-thumbnail {
  opacity: 1;
  transform: translateY(-60%) scale(1) rotate(-6deg);
}

.resto-row:hover .thumb-right {
  transform: translateY(-60%) scale(1) rotate(8deg);
}


/* ─── RIGHT COLUMN: TILTED HERO CARD ─── */
.resto-hero-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px 0;
}

/* Handwritten Cursive Header above image */
.resto-cursive-header {
  font-family: var(--font-cursive);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--olive-light);
  line-height: 1;
  margin-bottom: -15px;
  z-index: 10;
  transform: rotate(-4deg);
}

/* Large Tilted Polaroid Photo Card */
.resto-hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  padding: 16px 16px 24px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: rotate(3deg);
  transition: transform 0.6s var(--ease-out);
  position: relative;
  z-index: 2;
}

/* Gold accented dark card frame for premium appearance */
.resto-hero-card.dark-card {
  background: var(--charcoal-mid);
  border: 1.5px solid var(--olive);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.resto-hero-card.dark-card .resto-hero-caption {
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 16px;
}

.resto-hero-frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.resto-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.resto-hero-card:hover {
  transform: rotate(1deg) scale(1.02);
}

.resto-hero-card:hover .resto-hero-img {
  transform: scale(1.05);
}

/* Action button strip below card */
.resto-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  z-index: 5;
}

/* Decorative Bird Silhouette */
.resto-bird-deco {
  position: absolute;
  bottom: 0;
  right: 5%;
  color: rgba(255, 255, 255, 0.06);
  z-index: 1;
  animation: float 8s ease-in-out infinite alternate;
}


/* ─── BOTTOM PART: SPACE GALLERY STYLE ─── */
.resto-gallery-container {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.resto-gallery-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.resto-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--terracotta);
  margin: 6px 0 16px;
  letter-spacing: -0.01em;
}

.resto-gallery-description {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.resto-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.resto-gallery-card {
  background: var(--charcoal-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.resto-gallery-img-wrap {
  width: 100%;
  aspect-ratio: 1.25;
  overflow: hidden;
  position: relative;
}

.resto-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resto-gallery-info {
  padding: 18px 20px;
}

.resto-gallery-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-light);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

.resto-gallery-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream-light);
  margin: 0;
}

/* Hover effects for Gallery Card */
.resto-gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--olive);
  box-shadow: 0 15px 40px rgba(184, 146, 42, 0.15);
}

.resto-gallery-card:hover img {
  transform: scale(1.06);
}


/* ─── RESPONSIVE RULES FOR RESTAURANT ─── */
@media (max-width: 991px) {
  .resto-editorial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .resto-gallery-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 20px 16px 40px !important;
    margin: 0 -16px !important;
    gap: 24px !important;
    cursor: grab;
  }

  .resto-gallery-grid::-webkit-scrollbar {
    display: none !important;
  }

  .resto-gallery-grid .bq-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start !important;
  }

  .resto-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    padding: 30px 0;
  }

  .resto-row-left-info,
  .resto-row-right-info {
    text-align: center;
    padding: 0;
  }

  .resto-row-thumbnail {
    display: none;
  }

  .resto-hero-col {
    padding: 20px 0;
  }
}

@media (max-width: 576px) {
  .resto-gallery-grid {
    padding: 20px 16px 30px !important;
    gap: 16px !important;
  }
  .resto-gallery-grid .bq-card {
    flex: 0 0 260px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   5. USP / PROPERTY HIGHLIGHT
   ═══════════════════════════════════════════════════════ */
.usp {
  padding: var(--section-pad) 0 var(--section-pad-sm);
  background: var(--cream-light);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.usp-item {
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
  transition: all var(--t-normal) var(--ease-out);
  cursor: default;
}

.usp-item:first-child {
  border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.usp-item:hover {
  padding-left: 16px;
}

.usp-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 12px;
}

.usp-item-title .usp-icon {
  font-size: 1.2rem;
}

.usp-description {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 4px;
  max-width: 400px;
  line-height: 1.6;
}

.usp-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.usp-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.usp-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.usp-img-card:hover img {
  transform: scale(1.05);
}

.usp-img-card:nth-child(1) {
  grid-row: 1 / 3;
  min-height: 360px;
}

.usp-img-card:nth-child(2) {
  height: 200px;
}

.usp-img-card:nth-child(3) {
  height: 200px;
}

.usp-cursive-float {
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-cursive);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--terracotta);
  z-index: 5;
}

/* ═══════════════════════════════════════════════════════
   6. RESTAURANT — SPICE NATION
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   6. RESTAURANT — SPICE NATION (PREMIUM EDITORIAL LAYOUT)
   ═══════════════════════════════════════════════════════ */
.restaurant-editorial {
  padding: var(--section-pad) 0;
  background-color: var(--cream-light);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Beautiful grid layout for restaurant editorial */
.resto-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid rgba(92, 74, 56, 0.15);
  padding-top: clamp(40px, 6vw, 80px);
}

/* Horizontal rows block on the left */
.resto-rows-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

.resto-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.1fr;
  align-items: center;
  padding: clamp(28px, 4.5vw, 44px) 0;
  border-bottom: 1px solid rgba(92, 74, 56, 0.15);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.resto-row:first-child {
  border-top: 1px solid rgba(92, 74, 56, 0.15);
}

/* Info descriptive text blocks on left and right */
.resto-row-left-info {
  padding-right: 15px;
}

.resto-row-right-info {
  padding-left: 15px;
  text-align: left;
}

.resto-row-label {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 4px;
}

.resto-row-subtext {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.45;
  margin: 0;
}

/* Slanted high-end playfair typography for row titles */
.resto-row-center {
  text-align: center;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   7. BANQUET & EVENTS
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   7. BANQUET & EVENTS (LIGHT POSTCARD CAROUSEL)
   ═══════════════════════════════════════════════════════ */
.banquet-luxury {
  padding: var(--section-pad) 0;
  background-color: var(--gold-light-bg);
  color: var(--charcoal);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banquet-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/Logo and Fevicon/pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.50;
  z-index: -1;
  pointer-events: none;
}

.banquet-luxury .bq-cursive-tag {
  color: var(--terracotta);
}

.banquet-luxury .bq-title {
  color: var(--charcoal);
}

.banquet-luxury .bq-nav-btn {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.banquet-luxury .bq-nav-btn:hover {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
}

.banquet-luxury .btn-outline {
  color: var(--charcoal);
  border-color: rgba(26, 26, 26, 0.4);
}

.banquet-luxury .btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
}

/* Asymmetric luxury header layout matching reference */
.bq-luxury-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 80px);
  padding: 0 clamp(20px, 4vw, 48px);
}

.bq-header-left {
  flex: 0 0 220px;
}

.bq-cursive-tag {
  font-family: var(--font-cursive);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--olive);
  line-height: 1;
  display: block;
}

.bq-header-center {
  flex: 1;
  text-align: center;
}

.bq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.bq-header-right {
  flex: 0 0 220px;
  display: flex;
  justify-content: flex-end;
}

/* Circular Minimalist Navigation Buttons */
.banquet-nav-arrows {
  display: flex;
  gap: 12px;
}

.bq-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(42, 42, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

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

.bq-nav-btn svg {
  transition: transform 0.3s ease;
}

.bq-prev:hover svg {
  transform: translateX(-2px);
}

.bq-next:hover svg {
  transform: translateX(2px);
}


/* Postcard Slider / Carousel Track */
.bq-carousel-container {
  width: 100%;
  padding: 20px 0 60px 0;
  overflow-x: auto;
  cursor: grab;
  /* Hide standard scrollbars */
  scrollbar-width: none;
}

.bq-carousel-container::-webkit-scrollbar {
  display: none;
}

.bq-carousel-track {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  padding: 0 clamp(40px, 8vw, 120px);
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Postcard Card Styles */
.bq-card {
  flex-shrink: 0;
  width: clamp(280px, 24vw, 360px);
  background: var(--white);
  padding: 14px 14px 28px 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), z-index 0.5s step-end;
  position: relative;
  z-index: 1;
}

.bq-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

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

.bq-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  opacity: 0.8;
}

.bq-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  margin: 10px 0 0;
  line-height: 1.1;
}

/* Individual Color Borders matching the reference */
.bq-color-blue {
  border-bottom: 24px solid #4DBEE7;
}

.bq-color-green {
  border-bottom: 24px solid #8AE276;
}

.bq-color-beige {
  border-bottom: 24px solid #E9DDC9;
}

.bq-color-orange {
  border-bottom: 24px solid #F3A25A;
}

.bq-color-yellow {
  border-bottom: 24px solid #FDE667;
}

.bq-color-terracotta {
  border-bottom: 24px solid var(--terracotta-light);
}

/* Dynamic Rotational Tilts matching the reference */
.bq-tilt-left-deep {
  transform: rotate(-3deg);
}

.bq-tilt-right-shallow {
  transform: rotate(2deg) translateY(12px);
}

.bq-tilt-left-shallow {
  transform: rotate(-1.5deg) translateY(-8px);
}

.bq-tilt-right-deep {
  transform: rotate(3deg) translateY(10px);
}

/* Hover effects: Card levels out, raises, gets depth and moves to front */
.bq-card:hover {
  transform: rotate(0deg) scale(1.05) translateY(-5px) !important;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 15;
}

/* Card width overrides when placed in CSS Grids (Restaurant Gallery, Amenities) */
.resto-gallery-grid .bq-card,
.amenities-categories .bq-card {
  width: 100%;
  flex-shrink: 1;
}

/* 360° Virtual Tour Quick Trigger */
.bq-360-wrap-luxury {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════
   8. BAR & LOUNGE (LIGHT LUXURY LOUNGE)
   ═══════════════════════════════════════════════════════ */
.bar-lounge {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--gold-light-bg) 0%, var(--cream-light) 100%);
  color: var(--charcoal);
  border-top: 1px solid rgba(184, 146, 42, 0.15);
  border-bottom: 1px solid rgba(184, 146, 42, 0.15);
  position: relative;
}

.bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.bar-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 12px solid var(--white);
  transform: rotate(-2.5deg);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
  z-index: 2;
}

.bar-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
  display: block;
}

.bar-image::after {
  content: 'FINE SPIRITS';
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--terracotta);
  color: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--olive-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bar-image:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.bar-image:hover img {
  transform: scale(1.05);
}

.bar-grid .reveal-right {
  position: relative;
  padding-left: clamp(20px, 3vw, 60px);
}

/* Custom handwritten subtitle above */
.bar-grid .reveal-right::before {
  content: 'Golden Hour';
  position: absolute;
  top: -45px;
  left: clamp(20px, 3vw, 60px);
  font-family: var(--font-cursive);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--olive-light);
  transform: rotate(-5deg);
  z-index: 3;
  pointer-events: none;
}

.bar-lounge .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.bar-lounge .section-subtitle {
  color: var(--warm-gray) !important;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

.bar-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.bar-lounge .bar-feature-chip {
  background: var(--white-soft);
  border: 1.5px solid rgba(184, 146, 42, 0.25);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(184, 146, 42, 0.04);
  transition: all var(--t-normal) var(--ease-spring);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: default;
}

.bar-lounge .bar-feature-chip::before {
  content: '🍷';
  font-size: 0.95rem;
}

.bar-lounge .bar-feature-chip:nth-child(2)::before {
  content: '🍸';
}

.bar-lounge .bar-feature-chip:nth-child(3)::before {
  content: '🥃';
}

.bar-lounge .bar-feature-chip:nth-child(4)::before {
  content: '🍽️';
}

.bar-lounge .bar-feature-chip:hover {
  border-color: var(--terracotta);
  color: var(--cream-light);
  background: var(--terracotta);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(107, 31, 42, 0.2);
}

/* ═══════════════════════════════════════════════════════
   9. AMENITIES (WARM LIGHT & LUXURY SEALS)
   ═══════════════════════════════════════════════════════ */
.amenities {
  padding: var(--section-pad) 0;
  background-color: var(--cream);
  color: var(--charcoal);
}

.amenities .section-label {
  color: var(--terracotta);
}

.amenities .section-title {
  color: var(--charcoal);
}

.amenities .section-subtitle {
  color: var(--warm-gray);
}

.amenities-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.amenities-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.amenities-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Custom premium styling specifically for facility bq-cards */
.amenities-categories .bq-card {
  width: 100%;
  flex-shrink: 1;
  background: var(--white-soft) !important;
  padding: 24px !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid rgba(184, 146, 42, 0.2) !important;
  border-bottom: 6px solid var(--olive) !important;
  box-shadow: 0 10px 30px rgba(184, 146, 42, 0.05);
  transition: all var(--t-normal) var(--ease-spring) !important;
}

.amenities-categories .bq-tilt-left-deep {
  transform: rotate(-0.8deg);
}

.amenities-categories .bq-tilt-right-shallow {
  transform: rotate(0.6deg) translateY(4px);
}

.amenities-categories .bq-tilt-left-shallow {
  transform: rotate(-0.5deg) translateY(-2px);
}

.amenities-categories .bq-tilt-right-deep {
  transform: rotate(0.8deg) translateY(3px);
}

.amenities-categories .bq-card:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  border-color: var(--terracotta) !important;
  border-bottom: 6px solid var(--terracotta) !important;
  box-shadow: 0 20px 45px rgba(107, 31, 42, 0.12) !important;
  z-index: 5 !important;
}

.amenities-categories .bq-card-img-wrap {
  aspect-ratio: 16/10 !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid rgba(184, 146, 42, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.amenities-categories .bq-card:hover .bq-card-img-wrap img {
  transform: scale(1.05) !important;
}

.amenities-categories .bq-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--terracotta) !important;
  letter-spacing: 0.01em;
  margin-top: 16px !important;
}

.amenities-categories .bq-card-meta {
  font-size: 0.65rem !important;
  color: var(--warm-gray-light) !important;
  border-bottom: 1px solid rgba(92, 74, 56, 0.1);
  padding-bottom: 8px !important;
  margin-top: 12px !important;
}

.amenities-categories .amenity-list {
  margin-top: 18px !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px !important;
}

.amenities-categories .amenity-item {
  font-family: var(--font-body);
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: var(--charcoal) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.amenities-categories .amenity-item::before {
  content: '✦' !important;
  font-size: 0.75rem !important;
  color: var(--olive-light) !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin-right: 2px !important;
  border-radius: 0 !important;
  display: inline-block;
}

.amenities-categories .bq-card:hover .amenity-item {
  color: var(--warm-gray) !important;
}

.amenities-categories .amenity-item:hover {
  color: var(--terracotta) !important;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   10. TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.testimonials-big-quote {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(42, 42, 42, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform var(--t-slow) var(--ease-out);
}

.testimonial-card {
  flex: 0 0 min(100%, 500px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(42, 42, 42, 0.04);
}

.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.testimonial-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-platform {
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-stars {
  color: var(--gold-accent);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: all var(--t-normal) var(--ease-out);
}

.testimonial-nav-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  transition: all var(--t-normal) var(--ease-out);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--terracotta);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════
   11. NEARBY ATTRACTIONS — Beautiful Redesign
   ═══════════════════════════════════════════════════════ */

/* ── Section wrapper (WARM GOLD CONCIERGE) ─────────────── */
.attractions {
  padding: var(--section-pad) 0 0;
  background-color: var(--gold-light-bg);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.attractions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/Logo and Fevicon/pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.70;
  z-index: -1;
  pointer-events: none;
}

.attractions .section-label {
  color: var(--terracotta);
}

.attractions .section-title {
  color: var(--charcoal);
}

.attractions .section-subtitle {
  color: var(--warm-gray);
}

/* Decorative diagonal stripe behind the map */
.atx-bg-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 146, 42, 0.04) 0%, rgba(107, 31, 42, 0.04) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.attractions-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.attractions-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

/* ── Shell: Full-width sidebar + map ─────────────── */
.atx-shell {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: 700px;
  border-top: 1px solid rgba(107, 31, 42, 0.1);
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(42, 42, 42, 0.06);
}

/* ── Sidebar ─────────────────────────────────────── */
.atx-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(107, 31, 42, 0.1);
  background: var(--white);
  overflow: hidden;
}

/* ── Sidebar Header (hotel logo banner) ──────────── */
.atx-sidebar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.atx-sidebar-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.atx-sidebar-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.atx-sidebar-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.atx-sidebar-hotel-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.atx-sidebar-hotel-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.atx-sidebar-hotel-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ── Sidebar "Nearby Places" label ───────────────── */
.atx-sidebar-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  background: var(--cream-light);
  border-bottom: 1px solid rgba(42, 42, 42, 0.06);
  flex-shrink: 0;
}

/* ── Cards container ──────────────────────────────── */
.atx-cards {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 31, 42, 0.15) transparent;
  background: var(--cream-light);
}

.atx-cards::-webkit-scrollbar {
  width: 3px;
}

.atx-cards::-webkit-scrollbar-thumb {
  background: rgba(107, 31, 42, 0.18);
  border-radius: 4px;
}

/* ── Place Card ──────────────────────────────────── */
.atx-card {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid rgba(42, 42, 42, 0.05);
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(42, 42, 42, 0.05);
}

/* Animated left accent bar */
.atx-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.22s ease;
  border-radius: 0 2px 2px 0;
}

.atx-card:hover {
  border-color: rgba(107, 31, 42, 0.15);
  box-shadow: 0 4px 20px rgba(107, 31, 42, 0.08);
  transform: translateX(3px);
}

.atx-card:hover::before {
  background: rgba(107, 31, 42, 0.4);
}

.atx-card.active {
  border-color: var(--terracotta);
  background: linear-gradient(135deg, #FFF8F5 0%, #FEF4EE 100%);
  box-shadow: 0 4px 20px rgba(107, 31, 42, 0.14);
  transform: translateX(3px);
}

.atx-card.active::before {
  background: var(--terracotta);
}

/* Card number badge — navigation style */
.atx-card-num {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--warm-gray);
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  border: 1px solid rgba(42, 42, 42, 0.08);
}

.atx-card.active .atx-card-num {
  background: var(--terracotta);
  color: var(--white);
  border-color: transparent;
}

/* Card thumbnail */
.atx-card-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
  position: relative;
}

.atx-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  opacity: 0;
}

.atx-card-thumb img.loaded {
  opacity: 1;
}

.atx-card:hover .atx-card-thumb img {
  transform: scale(1.08);
}

/* Icon fallback */
.atx-card-thumb-icon {
  background: linear-gradient(135deg, rgba(107, 31, 42, 0.07) 0%, rgba(107, 31, 42, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.atx-card-thumb-icon svg {
  color: var(--terracotta);
  opacity: 0.7;
  width: 22px;
  height: 22px;
}

/* Logo fallback */
.atx-card-thumb-logo img {
  object-fit: contain;
  padding: 8px;
}

/* Card body */
.atx-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 22px;
}

.atx-card-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.atx-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: 0.75;
}

.atx-card-desc {
  font-size: 0.75rem;
  color: var(--warm-gray);
  line-height: 1.45;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.atx-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.atx-card-dist {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(107, 31, 42, 0.07);
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── Map container ───────────────────────────────── */
.atx-map-wrap {
  position: relative;
  background: #e8e4dc;
  overflow: hidden;
}

#atx-map {
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── Map: Hotel logo badge overlay ──────────────── */
.atx-map-logo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px 10px 10px;
  box-shadow: 0 4px 24px rgba(42, 42, 42, 0.18);
  border: 1px solid rgba(107, 31, 42, 0.08);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

.atx-map-logo-badge:hover {
  box-shadow: 0 6px 30px rgba(107, 31, 42, 0.18);
}

.atx-map-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--cream-light);
  padding: 3px;
  border: 1px solid rgba(42, 42, 42, 0.08);
  flex-shrink: 0;
}

.atx-map-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.atx-map-logo-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.atx-map-logo-sub {
  font-size: 0.62rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 3px;
}

.atx-map-logo-sub::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: atx-pulse 1.8s ease-in-out infinite;
}

@keyframes atx-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* ── Route info toast ────────────────────────────── */
.atx-route-info {
  position: absolute;
  bottom: 20px;
  right: 16px;
  z-index: 800;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(42, 42, 42, 0.15);
  border-left: 3px solid var(--terracotta);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
  max-width: 240px;
  line-height: 1.5;
}

.atx-route-info.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Leaflet: Hotel marker (logo pin) ────────────── */
.atx-hotel-marker-wrap {
  position: relative;
}

.atx-hotel-pin {
  width: 44px;
  height: 52px;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(107, 31, 42, 0.45));
}

.atx-hotel-pin-body {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--terracotta);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(107, 31, 42, 0.3);
}

.atx-hotel-pin-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transform: rotate(45deg);
  border-radius: 4px;
  padding: 2px;
}

/* ── Leaflet: Navigation-style numbered place markers */
.atx-nav-marker {
  background: var(--olive);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  border: 2.5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(42, 42, 42, 0.3);
  transition: all 0.25s var(--ease-spring);
  cursor: pointer;
}

.atx-nav-marker span {
  transform: rotate(45deg);
  display: block;
  line-height: 1;
}

.atx-nav-marker.active {
  background: var(--terracotta);
  transform: rotate(-45deg) scale(1.3);
  box-shadow: 0 4px 16px rgba(107, 31, 42, 0.5);
}

/* ── Leaflet popup overrides ─────────────────────── */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: 0 10px 40px rgba(42, 42, 42, 0.2) !important;
  border: none !important;
  font-family: var(--font-body) !important;
  overflow: hidden;
  padding: 0 !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: 230px !important;
}

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

.atx-popup-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.atx-popup-body {
  padding: 12px 14px;
}

.atx-popup-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
  line-height: 1.2;
}

.atx-popup-cat {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.atx-popup-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--warm-gray);
}

.atx-popup-dist {
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(107, 31, 42, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
}

.leaflet-popup-tip-container {
  display: none !important;
}

.leaflet-control-attribution {
  font-size: 0.58rem !important;
  opacity: 0.6;
}

/* ── Empty state ─────────────────────────────────── */
.atx-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}

.atx-empty svg {
  opacity: 0.25;
  color: var(--terracotta);
}

.atx-empty p {
  font-size: 0.82rem;
  color: var(--warm-gray-light);
}

/* ═══════════════════════════════════════════════════════
   12. FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.faq-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(42, 42, 42, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  gap: 16px;
  transition: color var(--t-fast) ease;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all var(--t-normal) var(--ease-out);
}

.faq-item.active .faq-toggle {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal) var(--ease-out), padding var(--t-normal) var(--ease-out);
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer-text {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  padding-right: 48px;
}

/* Show More Collapse Utilities & Buttons */
.faq-item.faq-hidden {
  display: none !important;
}

.faq-show-more-container {
  text-align: center;
  margin-top: 30px;
}

.faq-btn {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-spring);
  box-shadow: 0 4px 12px rgba(107, 31, 42, 0.04);
}

.faq-btn:hover {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(107, 31, 42, 0.16);
  transform: translateY(-2.5px);
}

.faq-btn:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   13. CONTACT & FOOTER (UNIFIED DARK)
   ═══════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0 var(--section-pad-sm);
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--gold-light-bg) 100%);
  color: var(--charcoal);
  border-top: 1px solid rgba(184, 146, 42, 0.25);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--terracotta) 20%, var(--olive-light) 50%, var(--terracotta) 80%, transparent);
  border-radius: 0 0 4px 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--gap-lg);
}

.contact-brand .nav-logo img {
  height: 55px;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 350px;
  font-weight: 400;
}

.contact-social {
  display: flex;
  gap: 14px;
}

.contact-social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 146, 42, 0.3);
  background: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  box-shadow: 0 4px 10px rgba(184, 146, 42, 0.08);
  transition: all var(--t-normal) var(--ease-spring);
}

.contact-social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream-light);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 25px rgba(107, 31, 42, 0.22);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
}

.contact-col-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--terracotta);
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.reveal:hover .contact-col-title::after {
  width: 60px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links>div {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 0.92rem !important;
  color: var(--charcoal) !important;
  padding: 10px 8px !important;
  border-bottom: 1px solid rgba(92, 74, 56, 0.1) !important;
  transition: all 0.3s var(--ease-out) !important;
  border-radius: var(--radius-sm);
}

.contact-links>div:last-child {
  border-bottom: none !important;
}

.contact-links>div:hover {
  background: rgba(184, 146, 42, 0.08);
  padding-left: 14px !important;
  transform: translateX(4px);
}

.contact-links>div span:last-child {
  color: var(--terracotta) !important;
  font-weight: 600 !important;
}

.contact-link {
  font-size: 0.88rem;
  color: var(--warm-gray);
  transition: all var(--t-fast) ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-link:hover {
  color: var(--terracotta);
  transform: translateX(4px);
}

.contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(3px);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(107, 31, 42, 0.06);
  border: 1px solid rgba(107, 31, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
  box-shadow: 0 4px 10px rgba(107, 31, 42, 0.04);
  transition: all var(--t-normal) var(--ease-spring);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream-light);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 15px rgba(107, 31, 42, 0.18);
}

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

.contact-info-text {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  padding-top: 2px;
}

.contact-info-text a {
  color: var(--charcoal);
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

/* Booking Partners */
.booking-partners {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 146, 42, 0.2);
}

.booking-partners-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.booking-partners-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-partner-chip {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white-soft);
  border: 1px solid rgba(184, 146, 42, 0.25);
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.03);
  transition: all var(--t-normal) var(--ease-spring);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.booking-partner-chip:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--terracotta);
  box-shadow: 0 8px 24px rgba(184, 146, 42, 0.15);
  background: var(--white);
}

.booking-partner-badge {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Bar */
.footer-bar {
  padding: 30px 0;
  background: var(--cream-dark);
  border-top: 1px solid rgba(184, 146, 42, 0.25);
  position: relative;
}

.footer-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 146, 42, 0.35), transparent);
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-copyright a {
  position: relative;
  display: inline-block;
}

.footer-copyright a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--terracotta-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-copyright a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 0.78rem;
  color: var(--warm-gray);
  transition: color var(--t-fast) ease;
}

.footer-link:hover {
  color: var(--cream-light);
}

/* ═══════════════════════════════════════════════════════
   360° PANORAMA VIEWER MODAL
   ═══════════════════════════════════════════════════════ */
.panorama-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-normal) var(--ease-out);
}

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

.panorama-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-light);
  font-size: 1.4rem;
  transition: all var(--t-normal) var(--ease-out);
}

.panorama-modal-close:hover {
  background: var(--terracotta);
  transform: rotate(90deg);
}

.panorama-modal-title {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10001;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream-light);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

#panorama-viewer {
  width: 90vw;
  height: 80vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.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;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {

  .about-grid,
  .usp-grid,
  .restaurant-grid,
  .bar-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .about-visual {
    height: 400px;
  }

  .usp-visual {
    order: -1;
  }

  .restaurant-gallery {
    height: 400px;
  }

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

  .banquet-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .banquet-mosaic-item:nth-child(1) {
    grid-row: auto;
    min-height: 250px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-text {
    display: none !important;
  }

  .top-bar-left {
    gap: 12px;
  }

  .top-bar-left a,
  .top-bar-left span {
    gap: 0;
  }

  .nav-left .nav-link,
  .nav-right .nav-link {
    display: none;
  }

  /* Completely remove the booking button on mobile */
  .nav-booking-btn {
    display: none !important;
  }

  /* Fix header sizing so it doesn't crop on mobile */
  .nav-inner {
    height: 64px;
  }

  .nav-brand-logo {
    height: 36px;
  }

  /* Sit below the top-bar (40px) when unscrolled */
  .navbar {
    padding: 0 16px;
    top: 40px;
  }

  /* Snap flush to the top when scrolled (since top-bar slides away) */
  .navbar.scrolled {
    top: 0;
    padding-top: 0;
  }

  /* Reduce hero height so marquee strip is visible in first view */
  .hero {
    height: 80vh;
    min-height: 500px;
    padding-bottom: 40px;
  }

  .hero-content {
    width: 95%;
    max-width: 100%;
  }

  .hero-title-line2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-title-line3 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-scroll {
    display: none;
  }

  .about-visual {
    height: 320px;
  }

  .about-img-card:nth-child(1) {
    width: 70%;
    height: 65%;
  }

  .about-img-card:nth-child(2) {
    width: 55%;
    height: 50%;
  }

  .about-img-card:nth-child(3) {
    width: 40%;
    height: 30%;
  }

  .rooms-carousel {
    padding: 10px 0 30px;
  }

  .room-polaroid {
    flex: 0 0 85vw;
  }

  .room-polaroid:nth-child(1),
  .room-polaroid:nth-child(2),
  .room-polaroid:nth-child(3) {
    transform: rotate(0deg);
  }

  .usp-item-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .restaurant-gallery {
    height: 300px;
  }

  .restaurant-gallery-img:nth-child(1) {
    width: 65%;
    height: 50%;
  }

  .restaurant-gallery-img:nth-child(2) {
    width: 55%;
    height: 45%;
  }

  .restaurant-gallery-img:nth-child(3) {
    width: 50%;
    height: 40%;
  }

  .restaurant-gallery-img:nth-child(4) {
    display: none;
  }

  .banquet-mosaic {
    grid-template-columns: 1fr;
  }

  .banquet-mosaic-item:nth-child(1) {
    min-height: 220px;
  }

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

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


  .atx-shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .atx-sidebar {
    height: 480px;
    border-right: none;
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  }

  .atx-map-wrap {
    height: 420px;
  }



  #panorama-viewer {
    width: 95vw;
    height: 60vh;
    border-radius: var(--radius-md);
  }

  .testimonial-card {
    flex: 0 0 90vw;
  }

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

/* Small Mobile */
@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .amenities-categories {
    grid-template-columns: 1fr;
  }

  .room-polaroid {
    flex: 0 0 90vw;
  }

  .about-visual {
    height: 260px;
  }
}

/* ═══════════════════════════════════════════════════════
   UTILITY & MISC
   ═══════════════════════════════════════════════════════ */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Smooth image loading */
img {
  transition: opacity 0.5s var(--ease-out);
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Selection color */
::selection {
  background: var(--terracotta);
  color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--warm-gray);
}

/* ─── WHATSAPP BOOKING FLOATING WIDGET ─── */
.wa-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}

/* Toggle Floating Button */
.whatsapp-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white-soft);
  border: 1.5px solid var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(184, 146, 42, 0.15);
  transition: all var(--t-normal) var(--ease-spring);
  cursor: pointer;
  z-index: 1001;
  position: relative;
  outline: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--terracotta);
  transition: fill var(--t-normal) var(--ease-spring), transform 0.4s var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 12px 30px rgba(107, 31, 42, 0.3);
}

.whatsapp-float:hover svg {
  fill: var(--cream-light);
  transform: scale(1.05) rotate(8deg);
}

.whatsapp-float.active {
  transform: rotate(135deg) scale(0.9);
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float.active svg {
  fill: var(--white);
}

/* Glow Pulse effect */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--olive-light);
  opacity: 0;
  animation: waPulse 2.5s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Chat Popup Booking Card */
.wa-popup-card {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 40px);
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 146, 42, 0.35);
  box-shadow: 0 20px 60px rgba(107, 31, 42, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s var(--ease-spring);
  z-index: 1000;
}

.wa-popup-card.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.wa-popup-header {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  border-bottom: 2px solid var(--olive);
}

.wa-popup-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.wa-popup-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light);
  background: var(--white);
  object-fit: contain;
}

.wa-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid var(--terracotta);
  box-shadow: 0 0 8px #25D366;
  animation: statusGlow 2s infinite alternate;
}

@keyframes statusGlow {
  0% {
    box-shadow: 0 0 2px #25D366;
  }

  100% {
    box-shadow: 0 0 8px #25D366;
  }
}

.wa-popup-header-info {
  flex: 1;
  color: var(--white);
}

.wa-popup-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1px;
  color: var(--cream-light);
  letter-spacing: 0.01em;
}

.wa-popup-location {
  font-size: 0.7rem;
  color: var(--sand);
  margin: 0 0 1px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.wa-popup-status-text {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a3e9a4;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--sand);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wa-popup-close:hover {
  color: var(--white);
  transform: scale(1.1);
}

/* Form Styling */
.wa-popup-form {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  background: var(--cream-light);
  z-index: 1;
}

.wa-popup-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Images/Logo and Fevicon/pattern.png');
  background-repeat: repeat;
  background-size: 160px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

.wa-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wa-form-group label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
}

.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 146, 42, 0.35);
  background: var(--white-soft);
  outline: none;
  transition: all 0.3s ease;
}

.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 31, 42, 0.08);
}

.wa-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B1F2A' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 32px !important;
  appearance: none;
  -webkit-appearance: none;
}

.wa-form-group textarea {
  height: 52px;
  resize: none;
}

.wa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wa-submit-btn {
  background: #25D366;
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  margin-top: 4px;
  outline: none;
}

.wa-submit-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35);
}

.wa-submit-btn svg {
  flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .wa-popup-card {
    bottom: 85px;
    right: 20px;
    width: calc(100vw - 40px);
  }

  .wa-widget-container {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-height: 620px) {
  .wa-popup-card {
    max-height: 85vh;
  }

  .wa-popup-form {
    max-height: 60vh;
    overflow-y: auto;
    padding: 14px 16px;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════
   BANQUET EVENT IMAGE LIGHTBOX
   ═══════════════════════════════════════════════════════ */
.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.event-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.event-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.9);
  backdrop-filter: blur(10px);
}

.event-lightbox-panel {
  position: relative;
  background: var(--charcoal);
  border: 2px solid var(--olive);
  border-radius: var(--radius-lg);
  width: min(800px, 92vw);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-spring);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}

.event-lightbox.open .event-lightbox-panel {
  transform: scale(1);
}

.event-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--t-fast) ease;
  cursor: pointer;
}

.event-lightbox-close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  transform: scale(1.1) rotate(90deg);
}

.event-lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.event-lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-lightbox-meta {
  padding: 20px 24px;
  background: linear-gradient(180deg, var(--charcoal-mid) 0%, var(--charcoal) 100%);
  border-top: 1px solid rgba(184, 146, 42, 0.2);
  text-align: center;
}

.event-lightbox-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 6px;
}

.event-lightbox-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-light);
  margin: 0;
}

@media (max-width: 576px) {
  .event-lightbox-panel {
    border-radius: var(--radius-md);
  }

  .event-lightbox-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .event-lightbox-meta {
    padding: 16px;
  }

  .event-lightbox-title {
    font-size: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════
   MOBILE & TABLET BOTTOM NAVIGATION BAR
   ═══════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  /* Default hidden on desktop */
}

@media (max-width: 991px) {

  /* Hide the default desktop WhatsApp floating toggle button in mobile & tablet views */
  #whatsapp-toggle.whatsapp-float {
    display: none !important;
  }

  /* Padding at the bottom of the body to prevent content being clipped under the navigation bar */
  body {
    padding-bottom: 76px !important;
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--white-soft);
    backdrop-filter: blur(15px);
    border-top: 1.5px solid rgba(184, 146, 42, 0.25);
    box-shadow: 0 -8px 30px rgba(107, 31, 42, 0.06);
    z-index: 998;
    padding: 0 clamp(16px, 4vw, 32px);
  }

  .mobile-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Navigation Item Style */
  .mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
    /* Elevate contrast to match dark icons in reference layout */
    text-decoration: none;
    height: 44px;
    border-radius: var(--radius-pill);
    padding: 0 10px;
    transition: all 0.4s var(--ease-spring);
    gap: 0;
  }

  .mobile-nav-item svg {
    stroke: var(--warm-gray);
    transition: stroke 0.4s var(--ease-spring), fill 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
  }

  .mobile-nav-label {
    font-family: var(--font-body);
    font-size: 0;
    font-weight: 700;
    color: var(--terracotta);
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s var(--ease-spring);
  }

  /* Active Capsule Style (Matches Pink profile capsule in reference image, themed to soft gold-maroon) */
  .mobile-nav-item.active {
    background: rgba(107, 31, 42, 0.07);
    padding: 0 16px;
    gap: 8px;
  }

  .mobile-nav-item.active svg {
    stroke: var(--terracotta);
    fill: rgba(107, 31, 42, 0.12);
    /* Subtle luxurious interior fill, matching reference image style */
    transform: scale(1.05);
  }

  .mobile-nav-item.active .mobile-nav-label {
    font-size: 0.82rem;
    opacity: 1;
    max-width: 80px;
  }

  /* Floating WhatsApp Button on the Far Right (corresponds to elevated white heart icon in reference layout) */
  .mobile-wa-trigger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    /* White background to match the reference layout's elevated white heart button */
    border: 1px solid rgba(184, 146, 42, 0.2);
    /* Exquisite gold trim frame */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(107, 31, 42, 0.1);
    /* Elevated floating brand shadow */
    cursor: pointer;
    transition: all 0.35s var(--ease-spring);
    position: relative;
    top: -12px;
    /* Floats half-way above the bar, matching layout */
    outline: none;
    z-index: 1002;
    padding: 0;
  }

  .mobile-wa-trigger svg {
    width: 24px;
    height: 24px;
    fill: #25D366;
    /* Vibrant green WhatsApp icon on the white background, matching reference layout icon styling */
    transition: transform 0.35s var(--ease-spring), fill 0.35s var(--ease-spring);
  }

  .mobile-wa-trigger:hover,
  .mobile-wa-trigger:active {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  }

  .mobile-wa-trigger.active {
    background: var(--terracotta);
    /* Royal maroon background when active */
    border-color: var(--terracotta);
    transform: scale(0.9) rotate(135deg);
    box-shadow: 0 4px 12px rgba(107, 31, 42, 0.2);
  }

  .mobile-wa-trigger.active svg {
    fill: var(--white);
    /* Icon turns white when active */
  }

  /* Secure layout for WhatsApp popup above bottom nav */
  .wa-popup-card {
    bottom: 85px !important;
    right: clamp(16px, 4vw, 32px) !important;
    width: calc(100vw - clamp(32px, 8vw, 64px)) !important;
  }

  /* Make amenities-categories a flex scroll carousel on mobile/tablet viewports */
  .amenities-categories {
    display: flex !important;
    gap: 20px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 15px 12px 30px !important;
    margin: 0 -12px !important;
    /* Bleed padding for full edge-to-edge mobile feel */
  }

  .amenities-categories::-webkit-scrollbar {
    display: none !important;
  }

  .amenities-categories .room-polaroid {
    flex: 0 0 85vw !important;
    /* Match rooms mobile card size exactly */
    scroll-snap-align: start !important;
    transform: rotate(0deg) !important;
    /* Flatten rotation tilts on mobile for absolute visual consistency */
  }
}

/* ═══════════════════════════════════════════════════════
   ROYAL PRELOADER
   ═══════════════════════════════════════════════════════ */
.royal-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1b070b 0%, #080304 100%);
  z-index: 10000; /* Higher than everything (navbar is 1000) */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s ease;
  will-change: opacity, visibility;
}

.preloader-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(184, 146, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle breathing & rotating light rays */
.preloader-light-rays {
  position: absolute;
  width: 150vmax;
  height: 150vmax;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(212, 168, 67, 0.03) 15deg,
    transparent 30deg,
    rgba(212, 168, 67, 0.02) 60deg,
    transparent 90deg,
    rgba(212, 168, 67, 0.03) 120deg,
    transparent 150deg,
    rgba(212, 168, 67, 0.02) 180deg,
    transparent 210deg,
    rgba(212, 168, 67, 0.03) 240deg,
    transparent 270deg,
    rgba(212, 168, 67, 0.02) 300deg,
    transparent 330deg,
    transparent 360deg
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: preloaderRaysRotate 60s linear infinite;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

@keyframes preloaderRaysRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Golden particles floating up */
.preloader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.preloader-particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle, rgba(212, 168, 67, 0.8) 0%, rgba(212, 168, 67, 0) 70%);
  border-radius: 50%;
  bottom: -20px;
  left: var(--left);
  opacity: 0;
  animation: preloaderFloatUp var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes preloaderFloatUp {
  0% {
    bottom: -10px;
    transform: translateX(0) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: var(--max-opacity);
  }
  80% {
    opacity: var(--max-opacity);
  }
  100% {
    bottom: 110%;
    transform: translateX(var(--drift)) scale(1.2);
    opacity: 0;
  }
}

/* Main Content Container */
.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo container & emergence animation */
.preloader-logo-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  animation: preloaderLogoEmerge 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.preloader-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(184, 146, 42, 0.25));
}

/* Glowing diagonal shimmer */
.preloader-logo-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(212, 168, 67, 0.45) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: preloaderShimmer 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 1.5s;
}

@keyframes preloaderLogoEmerge {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes preloaderShimmer {
  0% { left: -150%; }
  55% { left: 150%; }
  100% { left: 150%; }
}

/* Shimmering Divider */
.preloader-divider {
  width: 0px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.6) 50%, transparent);
  margin-bottom: 20px;
  animation: preloaderDividerExpand 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes preloaderDividerExpand {
  0% { width: 0; }
  100% { width: 160px; }
}

/* Premium Metallic Text Effect Title */
.preloader-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #FFEAB5 0%, #D4A843 50%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: preloaderTextFadeIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1s;
  text-shadow: 0 4px 12px rgba(13, 4, 6, 0.4);
}

/* Welcome Subtitle Cursive / Editorial style */
.preloader-subtitle {
  font-family: var(--font-cursive);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--sand);
  opacity: 0;
  transform: translateY(8px);
  animation: preloaderTextFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.4s;
  text-shadow: 0 2px 10px rgba(184, 146, 42, 0.2);
}

@keyframes preloaderTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade out classes applied by JS */
.royal-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

body.preloader-active {
  overflow: hidden !important;
}