/* =============================================
   INDER CASTLE — DARK LUXURY ROYAL DESIGN
   Cinematic | Premium | Royal Gold & Obsidian
============================================= */

/* --- Google Fonts Extra (Playfair Display) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --obsidian: #080808;
  --dark: #111111;
  --dark-2: #1A1812;
  --dark-3: #221E16;
  --white: #FFFFFF;
  --cream: #F5EFE4;
  --ivory: #FAF7F2;
  --text: #C8C0B0;
  --muted: #7A7268;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #A07830;
  --gold-pale: #2A2218;
  --gold-glow: rgba(201,168,76,0.25);
  --border: rgba(201,168,76,0.18);
  --border-light: rgba(255,255,255,0.06);
  --topbar-bg: #060606;

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-md: 0 16px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.75;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }

/* --- Utilities --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.full-width { width: 100%; justify-content: center; }

/* =============================================
   PRELOADER
============================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.preloader-logo {
  width: 120px;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.5;
  animation: logo-fade-pulse 2.5s ease-in-out infinite alternate;
}
@keyframes logo-fade-pulse {
  0% { transform: scale(0.9); filter: grayscale(100%) brightness(0.3); opacity: 0.5; }
  100% { transform: scale(1); filter: grayscale(0%) brightness(1) drop-shadow(0 0 24px rgba(201,168,76,0.4)); opacity: 1; }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.05);
  position: relative;
  letter-spacing: 2px;
}
.preloader-text::before {
  content: "Inder Castle";
  position: absolute;
  top: 0; left: 0;
  color: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  animation: text-fill 3s ease-in-out infinite;
  text-shadow: 0 0 16px rgba(201,168,76,0.6);
}
@keyframes text-fill {
  0% { width: 0%; }
  70% { width: 100%; }
  100% { width: 100%; }
}

/* ─── Ornamental Divider ─── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ornament-dot {
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Typography System --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.section-subtext {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* Gold rule after centered headings */
.text-center .ornament { justify-content: center; }

/* --- Decorative Gold Rule --- */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px auto 0;
  justify-content: center;
  width: 160px;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}
.gold-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  border-color: var(--gold);
  font-weight: 700;
  letter-spacing: 2.5px;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 20px var(--gold-glow);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.btn-link:hover { border-bottom-color: var(--gold); color: var(--gold-light); }

/* =============================================
   WHATSAPP POPUP & BUTTON
============================================= */
.wa-popup-wrapper {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1005;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media(min-width: 768px) { .wa-popup-wrapper { bottom: 42px; right: 36px; } }
@media(max-width: 991px) {
  /* Hide the floating button on mobile, but keep the popup accessible for bottom nav */
  .fab-whatsapp { display: none !important; }
}

.fab-whatsapp {
  border: none;
  cursor: pointer;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.5), 0 0 0 0 rgba(201,168,76,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: pulse-wa-fab 3s ease-in-out infinite;
  outline: none;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 36px rgba(201,168,76,0.65);
}
@keyframes pulse-wa-fab {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.2); }
  50% { box-shadow: 0 8px 32px rgba(201,168,76,0.6), 0 0 0 14px rgba(201,168,76,0); }
}

.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}
.wa-popup.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-popup-header {
  background: #0f0f0f;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.wa-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-logo-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.wa-logo-wrap img { width: 24px; height: auto; }
.wa-online-dot {
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #0f0f0f;
}
.wa-header-info { display: flex; flex-direction: column; }
.wa-header-info h4 { font-size: 0.95rem; color: #fff; margin-bottom: 2px; font-weight: 500; font-family: var(--font-body); }
.wa-header-info p { font-size: 0.72rem; color: var(--gold); }

.wa-close-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
}
.wa-close-btn:hover { color: var(--gold); }

.wa-popup-body {
  padding: 16px;
  max-height: 480px;
  overflow-y: auto;
}
.wa-popup-body::-webkit-scrollbar { width: 4px; }
.wa-popup-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.wa-message-bubble {
  background: var(--gold-pale); /* subtle gold tint */
  border-radius: 12px 12px 12px 0;
  padding: 12px 16px;
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
  border: 1px solid var(--border);
}
.wa-message-bubble p { font-size: 0.88rem; color: #fff; line-height: 1.5; margin: 0; }
.wa-time { font-size: 0.65rem; color: var(--muted); display: block; text-align: right; margin-top: 4px; }

.wa-booking-form {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wa-input-group { display: flex; flex-direction: column; gap: 4px; }
.wa-input-group label { font-size: 0.72rem; color: var(--muted); padding-left: 2px; }
.wa-input-group input, .wa-input-group select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
}
.wa-input-group select option { background: var(--dark); color: #fff; }
.wa-input-group input:focus, .wa-input-group select:focus {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: 0 0 0 2px var(--gold-glow);
}
::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); cursor: pointer; }

.wa-submit-btn {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201,168,76, 0.3);
}
.wa-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 16px rgba(201,168,76, 0.45);
  transform: translateY(-2px);
}

.hidden { display: none !important; }
.res-check { accent-color: var(--gold); }

/* Custom Radio Buttons */
.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.custom-radio:hover {
  color: #fff;
}
.custom-radio input[type="radio"] {
  display: none;
}
.custom-radio span {
  display: flex;
  align-items: center;
}
.custom-radio span::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-right: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  background: var(--dark-3);
}
.custom-radio input[type="radio"]:checked + span {
  color: var(--gold);
}
.custom-radio input[type="radio"]:checked + span::before {
  border-color: var(--gold);
  background: radial-gradient(circle, var(--gold) 40%, var(--dark-3) 45%);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

@media(max-width: 576px) {
  /* In case wrapper is shown (e.g. tablet adjustments later), fallback bottom sheet style */
  .wa-popup {
    position: fixed;
    bottom: 0; left: 0; right: 0; width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    border: none;
    border-top: 1px solid var(--border);
  }
  .wa-popup.is-open { transform: translateY(0); }
  .wa-popup-wrapper { bottom: 0; right: 0; width: 100%; }
}

/* =============================================
   TOP BAR
============================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--topbar-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.topbar.topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-left span, .topbar-right a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}
.topbar-right a:hover { color: var(--gold-light); }
.topbar i { color: var(--gold); font-size: 0.7rem; }
@media(max-width: 600px) { .topbar-left { display: none; } }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition:
    top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.5s ease,
    box-shadow 0.5s ease,
    backdrop-filter 0.5s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(0,0,0,0.7);
}
.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 36px;
  flex-shrink: 0;
  position: relative;
}
.nav-logo::before,
.nav-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}
.nav-logo::before { left: 0; }
.nav-logo::after { right: 0; }

.nav-logo img {
  height: 88px;
  width: auto;
  transition: height 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 16px rgba(201,168,76,0.4));
}
.navbar.scrolled .nav-logo img {
  height: 54px;
  filter: drop-shadow(0 2px 10px rgba(201,168,76,0.25));
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-links-right { justify-content: flex-end; }

.nav-links-left a,
.nav-links-right a {
  padding: 28px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.nav-links-left a::after,
.nav-links-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px; right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.nav-links-left a:hover,
.nav-links-right a:hover { color: var(--gold-light); }
.nav-links-left a:hover::after,
.nav-links-right a:hover::after { transform: scaleX(1); }

/* Reservation CTA button in nav */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
  color: var(--obsidian) !important;
  padding: 12px 24px !important;
  margin: auto 0 auto 20px !important;
  letter-spacing: 2px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  border: 1px solid var(--gold) !important;
  height: 42px;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--gold) !important;
  box-shadow: 0 0 20px var(--gold-glow) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 1005;
  background: var(--gold);
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--obsidian);
  transition: var(--transition);
}
@media(max-width: 991px) {
  .mobile-menu-btn { display: flex; }
  .nav-links-left, .nav-links-right { display: none; }
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  gap: 4px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Particle overlay canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.06);
}
.hero-slides .slide.active {
  opacity: 1;
  animation: kenburns 10s ease forwards;
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.75) 100%),
    linear-gradient(135deg, rgba(8,6,2,0.6) 0%, transparent 70%);
  z-index: 2;
}

/* Side ornamental borders on hero */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
  z-index: 4;
  pointer-events: none;
}
.hero::before { left: 40px; }
.hero::after { right: 40px; }
@media(max-width: 768px) { .hero::before, .hero::after { display: none; } }

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 120px 24px 0; /* push below fixed topbar+navbar */
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s 0.3s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeInUp 1s 0.6s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s 0.9s ease forwards;
}
.hero-subtitle:last-of-type { margin-bottom: 48px; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.2s ease forwards;
}

/* Ornamental divider inside hero */
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1s 0.45s ease forwards;
}
.hero-ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.7));
}
.hero-ornament-line.right {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.7));
}
.hero-ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-dots {
  position: absolute;
  bottom: 44px;
  right: 60px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); height: 36px; }
@media(max-width: 768px) { .hero-dots { right: 20px; } }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================================
   BOOKING BRIDGE
============================================= */
.booking-bridge {
  background: var(--obsidian);
  padding: 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bridge-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.bridge-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  flex: 1;
  min-width: 120px;
}
.bridge-stat i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.bridge-stat div { display: flex; flex-direction: column; }
.bridge-stat span { font-size: 1rem; font-weight: 600; letter-spacing: 0.5px; color: var(--white); }
.bridge-stat small { font-size: 0.68rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.bridge-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }
.bridge-book { flex-shrink: 0; padding: 15px 32px; font-size: 0.72rem; }
@media(max-width: 768px) {
  .bridge-divider { display: none; }
  .bridge-inner { justify-content: center; gap: 24px; }
  .bridge-stat { flex: 0 0 auto; width: calc(50% - 24px); }
}

/* =============================================
   SECTIONS BASE
============================================= */
.section { padding: 120px 0; }
.section-light { background: var(--dark-2); }
.section-dark { background: var(--dark); }

/* =============================================
   ABOUT SECTION
============================================= */
.about-section { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
@media(max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 56px; } }

.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  overflow: hidden;
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.about-img-main:hover::before { opacity: 0.7; }
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.88);
}
.about-img-main:hover img { transform: scale(1.04); filter: brightness(1); }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  overflow: hidden;
  border: 6px solid var(--dark);
  box-shadow: var(--shadow-md);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.about-ribbon {
  position: absolute;
  bottom: 0; left: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}
.about-ribbon span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  display: block;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.about-text .section-heading { color: var(--white); }
.about-text > p { color: var(--text); font-size: 0.95rem; line-height: 1.9; }

.about-checkmarks { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.about-checkmarks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.about-checkmarks li:last-child { border-bottom: none; }
.about-checkmarks i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* =============================================
   FEATURES GRID
============================================= */
.features-section { background: var(--dark-2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
@media(max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }

.feature-item {
  text-align: center;
  padding: 48px 28px;
  background: var(--dark-3);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-item:hover::before { transform: scaleX(1); }
.feature-item:hover { background: #1E1A12; transform: translateY(-4px); box-shadow: var(--shadow); }

.feature-icon {
  width: 68px; height: 68px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  position: relative;
}
.feature-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.feature-item:hover .feature-icon { background: var(--gold); border-color: var(--gold); }
.feature-item:hover .feature-icon::before { border-color: rgba(201,168,76,0.3); }
.feature-icon i { font-size: 1.4rem; color: var(--gold); transition: color 0.3s; }
.feature-item:hover .feature-icon i { color: var(--obsidian); }
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}
.feature-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* =============================================
   ROOMS
============================================= */
.rooms-section { background: var(--dark); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media(max-width: 992px) { .rooms-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 576px) { .rooms-grid { grid-template-columns: 1fr; } }

.room-card {
  background: var(--dark-3);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
}
.room-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-8px); border-color: var(--border); }

.room-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.85);
}
.room-card:hover .room-img-wrap img { transform: scale(1.06); filter: brightness(0.9); }

/* Dark gold overlay on image hover */
.room-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,2,0.7) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}

.room-book-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(60px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}
.room-card:hover .room-book-tag { transform: translateY(0); }

.room-info { padding: 28px 24px; }
.room-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  flex-wrap: wrap;
}
.room-meta span { display: flex; align-items: center; gap: 6px; }
.room-meta i { color: var(--gold); font-size: 0.65rem; }
.room-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 400;
}
.room-info h3 a:hover { color: var(--gold); }
.room-info p { font-size: 0.88rem; color: var(--muted); margin-bottom: 22px; line-height: 1.8; }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.room-features-mini { display: flex; gap: 14px; }
.room-features-mini i { font-size: 0.85rem; color: var(--muted); transition: color 0.3s; }
.room-card:hover .room-features-mini i { color: var(--gold); }

/* =============================================
   PARALLAX SECTION
============================================= */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 160px 20px;
  text-align: center;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,6,2,0.5) 0%, rgba(8,6,2,0.82) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
}
.parallax-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.parallax-ornament-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.7));
}
.parallax-ornament-line.right {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.7));
}
.parallax-ornament-gem {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.parallax-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  line-height: 1.9;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.parallax-content .eyebrow { color: var(--gold-light); margin-bottom: 20px; }

/* =============================================
   DINING PHOTOS
============================================= */
.dining-section { background: var(--dark-2); }

.dining-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
}
.dining-main {
  grid-row: 1 / 3;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.dining-sub {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.82);
}
.dining-gallery:hover .dining-main,
.dining-gallery:hover .dining-sub { transform: scale(1.03); filter: brightness(0.95); }

.dining-section .about-text > p { color: var(--text); }
.dining-section .about-text ul li { color: var(--text); }
.dining-section .about-text ul li strong { color: var(--white); }

/* =============================================
   EVENTS GRID
============================================= */
.events-section { background: var(--dark); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media(max-width: 992px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 576px) { .events-grid { grid-template-columns: 1fr; } }

.event-card {
  background: var(--dark-3);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.event-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
  border-color: var(--border);
}

.event-img { overflow: hidden; aspect-ratio: 3/2; position: relative; }
.event-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,2,0.6) 0%, transparent 60%);
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.82);
}
.event-card:hover .event-img img { transform: scale(1.07); filter: brightness(0.9); }

.event-body { padding: 28px 24px; }
.event-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 400;
}
.event-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 22px; line-height: 1.8; }

/* =============================================
   AMENITIES
============================================= */
.amenities-section { background: var(--dark-2); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 60px;
}
@media(max-width: 992px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 576px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }

.amenity-item {
  background: var(--dark-3);
  padding: 44px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  cursor: default;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.amenity-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.amenity-item:hover::before { opacity: 1; }
.amenity-item i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.amenity-item:hover i { color: var(--obsidian); }
.amenity-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.amenity-item:hover span { color: var(--obsidian); }

/* =============================================
   GALLERY
============================================= */
.gallery-section { background: var(--dark); }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 44px;
  border-bottom: 1px solid var(--border-light);
}
.filter-btn {
  background: transparent;
  border: none;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  transition: opacity 0.3s ease;
}
@media(max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 576px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Gallery Slider Mode */
.gallery-grid.slider-mode {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  gap: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gallery-grid.slider-mode::-webkit-scrollbar { height: 6px; }
.gallery-grid.slider-mode::-webkit-scrollbar-track { background: var(--obsidian); border-radius: 3px; }
.gallery-grid.slider-mode::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.gallery-grid.slider-mode .gallery-item {
  flex: 0 0 85%;
  max-width: 600px;
  scroll-snap-align: center;
  aspect-ratio: auto;
  height: 450px;
}
@media(max-width: 768px) {
  .gallery-grid.slider-mode .gallery-item {
    height: 350px;
    flex: 0 0 90%;
  }
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  position: relative;
  background: var(--dark-3);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8) saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1);
}
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; inset: 0;
  background: rgba(8,6,2,0.55);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(0,0,0,0.9);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { opacity: 1; background: var(--gold); border-color: var(--gold); color: var(--obsidian); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 18px 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--obsidian); }

/* =============================================
   LOCATION — PREMIUM REDESIGN
============================================= */
.location-section { background: var(--dark-2); }
.location-section > .container { padding-bottom: 0; }

/* Side padding so the map wrapper never bleeds to viewport edge */
.location-section {
  padding-left: 5%;
  padding-right: 5%;
}

/* ── Outer split wrapper: 70/30 ── */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media(max-width: 1024px) { .location-wrapper { grid-template-columns: 1fr; } }

/* ── Map side ── */
.location-map-wrap {
  position: relative;
  min-height: 520px;
  background: #0f0f0f;
}
@media(max-width: 1024px) { .location-map-wrap { min-height: 400px; } }

.location-map-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #0f0f0f;
  border: none;
}
.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
}
@media(max-width: 1024px) { .location-map-frame iframe { min-height: 400px; } }

/* ── Logo glass overlay on map ── */
.map-logo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(8, 8, 6, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map-logo-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 20px rgba(201,168,76,0.1);
}
.map-logo-overlay img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3));
}
.map-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 10px;
  width: 100%;
}
.map-logo-text strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.map-logo-text span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* Get Directions button */
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 4px;
  width: 100%;
  justify-content: center;
  transition: var(--transition);
  border: none;
}
.map-directions-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--obsidian);
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}
.map-directions-btn i { font-size: 0.72rem; }

/* ── Info panel side ── */
.location-panel {
  background: var(--dark-3);
  border-left: 1px solid var(--border);
  overflow-y: auto;
  max-height: 520px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--dark);
}
.location-panel::-webkit-scrollbar { width: 4px; }
.location-panel::-webkit-scrollbar-track { background: var(--dark); }
.location-panel::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
.location-panel::-webkit-scrollbar-thumb:hover { background: var(--gold); }
@media(max-width: 1024px) {
  .location-panel { border-left: none; border-top: 1px solid var(--border); max-height: none; }
}

.location-panel-inner {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
@media(max-width: 576px) { .location-panel-inner { padding: 32px 24px; } }

.location-panel-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 4px;
}
.location-panel-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

/* ── New distance list ── */
.dist-list-new {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
}

.dist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 8px;
  cursor: default;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0 -14px;
}
.dist-item:hover {
  background: rgba(201,168,76,0.06);
  transform: translateX(4px);
}

.dist-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.dist-item:hover .dist-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.dist-icon i {
  font-size: 0.85rem;
  color: var(--gold);
  transition: color 0.3s;
}
.dist-item:hover .dist-icon i { color: var(--obsidian); }

.dist-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.dist-name {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 400;
}
.dist-km {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 400;
}

/* ── Divider ── */
.location-divider {
  margin: 24px 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ── New attractions list ── */
.attract-list-new {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.attract-list-new li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: default;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0 -14px;
}
.attract-list-new li:hover {
  background: rgba(201,168,76,0.06);
  transform: translateX(4px);
}
.attract-list-new > li > i {
  font-size: 0.95rem;
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(201,168,76,0.3));
}
.attract-list-new > li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.attract-list-new strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}
.attract-list-new span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section { background: var(--dark); }

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
  padding-bottom: 4px;
  margin-top: 56px;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
  border-color: var(--border);
}
.testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.4));
}
.testi-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
}
.testi-author strong { font-size: 0.82rem; font-weight: 600; color: var(--white); letter-spacing: 1px; }
.testi-author span { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

.testi-nav { display: flex; gap: 10px; margin-top: 40px; justify-content: center; }
.testi-nav button {
  width: 48px; height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* =============================================
   POLICIES & FAQ SECTION
============================================= */
.policies-faq-section { background: var(--dark-2); }

.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
@media(max-width: 992px) { .pf-grid { grid-template-columns: 1fr; gap: 64px; } }

.policy-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.policy-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.policy-row i { color: var(--gold); font-size: 0.9rem; margin-top: 4px; width: 20px; text-align: center; flex-shrink: 0; }
.policy-row div { display: flex; flex-direction: column; gap: 4px; }
.policy-row strong { font-size: 0.88rem; color: var(--white); font-weight: 600; }
.policy-row span { font-size: 0.84rem; color: var(--muted); }

.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q i { color: var(--gold); transition: transform 0.35s; flex-shrink: 0; }
.faq-item.active .faq-q { color: var(--gold-light); }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.45s ease; }
.faq-item.active .faq-a { max-height: 200px; padding-bottom: 22px; }
.faq-a p { font-size: 0.88rem; color: var(--muted); line-height: 1.85; }

/* =============================================
   CONTACT
============================================= */
.contact-section { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 90px;
  margin-top: 8px;
}
@media(max-width: 992px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }

.contact-info { display: flex; flex-direction: column; gap: 36px; }
.cinfo-item { display: flex; gap: 20px; align-items: flex-start; }
.cinfo-item i { color: var(--gold); font-size: 1rem; margin-top: 4px; flex-shrink: 0; }
.cinfo-item h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.cinfo-item p, .cinfo-item a { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.cinfo-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media(max-width: 576px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border-light);
  background: var(--dark-3);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--dark-2);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group textarea { resize: vertical; }

/* =============================================
   FOOTER
============================================= */
.footer-top {
  background: var(--obsidian);
  padding: 90px 0 60px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-top::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
}
@media(max-width: 992px) { .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 44px; } }
@media(max-width: 576px) { .footer-top-inner { grid-template-columns: 1fr; } }

.footer-logo {
  height: 72px; width: auto;
  margin-bottom: 24px;
  filter: brightness(0.9) drop-shadow(0 0 12px rgba(201,168,76,0.2));
}
.footer-col > p { font-size: 0.86rem; color: rgba(255,255,255,0.3); line-height: 1.9; }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-2);
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian);
  transform: translateY(-3px);
  border-color: transparent;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-col > p i { color: var(--gold); margin-right: 10px; }

.footer-bottom { background: #030303; padding: 22px 0; }
@media(max-width: 991px) {
  .footer-bottom { padding-bottom: 90px; } /* Keep copyright visible above mobile bottom nav */
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
}
.designer-credit {
  color: var(--gold);
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.18); letter-spacing: 1px; }

/* =============================================
   MOBILE BOTTOM NAV
============================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 990;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
@media(max-width: 991px) { .mobile-bottom-nav { display: flex; justify-content: space-around; } }

.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  transition: color 0.3s;
}
.mbn-item i { font-size: 1.1rem; }
.mbn-item.active, .mbn-item:hover { color: var(--gold); }
.mbn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--obsidian) !important;
  border-radius: 4px;
  padding: 8px 18px;
  font-weight: 700;
}

/* =============================================
   SCROLL REVEAL
============================================= */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* =============================================
   SECTION TRANSITIONS — gold top border
============================================= */
.section { padding: 120px 0; }

/* =============================================
   CUSTOM SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* =============================================
   SELECTION COLOR
============================================= */
::selection { background: var(--gold); color: var(--obsidian); }
