/* ============================================================
   HOTEL KAILASHA INN & RESTAURANT
   Premium Luxury Design System
   ============================================================ */

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

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* --- Brand Colors --- */
  --gold:           #C9A96E;
  --gold-light:     #D4BC8B;
  --gold-dark:      #A88B52;
  --gold-muted:     rgba(201, 169, 110, 0.15);
  --gold-shimmer:   linear-gradient(135deg, #C9A96E 0%, #E8D5A8 40%, #C9A96E 60%, #A88B52 100%);

  --ivory:          #F7F5EE;
  --ivory-warm:     #F0EDE4;
  --ivory-dark:     #E8E4DA;

  --charcoal:       #1F1F1F;
  --charcoal-light: #2A2A2A;
  --charcoal-soft:  #333333;
  --charcoal-muted: #4A4A4A;

  --forest:         #2E4B3A;
  --forest-light:   #3A6048;
  --forest-dark:    #1E3528;

  /* --- Neutral Palette --- */
  --white:          #FFFFFF;
  --black:          #000000;
  --gray-100:       #F5F5F5;
  --gray-200:       #E5E5E5;
  --gray-300:       #D4D4D4;
  --gray-400:       #A3A3A3;
  --gray-500:       #737373;
  --gray-600:       #525252;
  --gray-700:       #404040;
  --gray-800:       #262626;

  /* --- Semantic Colors --- */
  --success:        #4CAF50;
  --error:          #E53935;
  --warning:        #FF9800;
  --info:           #2196F3;

  /* --- Typography --- */
  --font-heading:   'Cinzel', serif;
  --font-accent:    'Cormorant Garamond', 'Georgia', serif;
  --font-body:      'Inter', 'Helvetica Neue', sans-serif;

  --fs-display:     clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1:          clamp(2rem, 4vw, 3.5rem);
  --fs-h2:          clamp(1.75rem, 3vw, 2.75rem);
  --fs-h3:          clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4:          clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body-lg:     1.125rem;
  --fs-body:        1rem;
  --fs-body-sm:     0.875rem;
  --fs-caption:     0.8125rem;
  --fs-overline:    0.75rem;

  --lh-heading:     1.2;
  --lh-body:        1.7;
  --lh-tight:       1.4;

  --ls-wide:        0.15em;
  --ls-wider:       0.25em;
  --ls-widest:      0.35em;

  /* --- Spacing --- */
  --space-xs:       0.25rem;
  --space-sm:       0.5rem;
  --space-md:       1rem;
  --space-lg:       1.5rem;
  --space-xl:       2rem;
  --space-2xl:      3rem;
  --space-3xl:      4rem;
  --space-4xl:      6rem;
  --space-5xl:      8rem;
  --space-section:  clamp(4rem, 8vw, 8rem);

  /* --- Layout --- */
  --container-max:  1280px;
  --container-wide: 1440px;
  --container-narrow: 900px;
  --gutter:         clamp(1rem, 3vw, 2rem);

  /* --- Borders & Radius --- */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      20px;
  --radius-full:    9999px;
  --border-thin:    1px solid rgba(201, 169, 110, 0.2);
  --border-gold:    1px solid var(--gold);

  /* --- Shadows --- */
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:      0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg:      0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl:      0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-gold:    0 4px 20px rgba(201, 169, 110, 0.25);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);

  /* --- Glassmorphism --- */
  --glass-bg:       rgba(31, 31, 31, 0.65);
  --glass-bg-light: rgba(247, 245, 238, 0.85);
  --glass-blur:     20px;
  --glass-border:   1px solid rgba(201, 169, 110, 0.3);

  /* --- Transitions --- */
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  --duration-fast:  200ms;
  --duration-base:  350ms;
  --duration-slow:  500ms;
  --duration-slower: 700ms;

  /* --- Z-index --- */
  --z-base:         1;
  --z-dropdown:     100;
  --z-sticky:       200;
  --z-overlay:      300;
  --z-modal:        400;
  --z-toast:        500;
  --z-max:          999;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--charcoal);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

.display-heading {
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-body-lg);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-body);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .overline {
  margin-bottom: var(--space-md);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-lg);
}

.section-header .gold-line {
  width: 260px;
  height: 15px;
  background: url('../images/title-divider.svg') no-repeat center;
  background-size: contain;
  margin: 12px auto var(--space-lg);
  border: none;
}

.section-header .section-subtitle {
  margin-top: var(--space-md);
}

/* ============================================================
   4. LAYOUT & CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

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

section {
  padding: var(--space-section) 0;
  position: relative;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--ivory);
}

.section-forest {
  background-color: var(--forest);
  color: var(--ivory);
}

.section-forest h2,
.section-forest h3,
.section-forest h4 {
  color: var(--ivory);
}

.section-ivory {
  background-color: var(--ivory-warm);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left var(--duration-slow) var(--ease-smooth);
}

.btn:hover::before {
  left: 100%;
}

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

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

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

.btn-ghost:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

.btn-dark:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--fs-caption);
}

.btn-lg {
  padding: 18px 42px;
  font-size: var(--fs-body);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   6. SVG ICON SYSTEM
   ============================================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm svg {
  width: 18px;
  height: 18px;
}

.icon-lg svg {
  width: 32px;
  height: 32px;
}

.icon-xl svg {
  width: 48px;
  height: 48px;
}

.icon-gold { color: var(--gold); }
.icon-white { color: var(--white); }
.icon-charcoal { color: var(--charcoal); }
.icon-forest { color: var(--forest); }

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border-radius: var(--radius-lg);
  color: var(--gold);
  margin-bottom: var(--space-lg);
  transition: all var(--duration-base) var(--ease-smooth);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}

/* ============================================================
   7. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  padding: 20px 0;
  transition: all var(--duration-base) var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: var(--z-overlay);
}

.header-logo .logo-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.header-logo .logo-icon svg {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .hotel-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-text .hotel-tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* --- Main Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* --- Header Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-size: var(--fs-body-sm);
  font-weight: 500;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.header-book-btn {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-smooth);
}

.header-book-btn:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: var(--z-overlay);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  transition: all var(--duration-base) var(--ease-smooth);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(31, 31, 31, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: var(--z-overlay);
  transition: right var(--duration-slow) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-3xl);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-smooth);
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active a:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.active a:nth-child(8) { transition-delay: 0.45s; }

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

.mobile-nav-contact {
  margin-top: var(--space-xl);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-smooth) 0.5s;
}

.mobile-nav.active .mobile-nav-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-contact a {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 15s linear;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 31, 31, 0.4) 0%,
    rgba(31, 31, 31, 0.3) 40%,
    rgba(31, 31, 31, 0.6) 70%,
    rgba(31, 31, 31, 0.85) 100%
  );
  z-index: 1;
}

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

.hero-overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.hero-overline::before,
.hero-overline::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-body);
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   9. BOOKING WIDGET
   ============================================================ */
.booking-widget {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.booking-widget-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: flex-end;
  gap: var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.booking-field label {
  font-size: var(--fs-overline);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.booking-field label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.booking-field input,
.booking-field select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: var(--fs-body-sm);
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.booking-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A96E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.booking-field select option {
  background: var(--charcoal);
  color: var(--white);
}

.booking-submit {
  flex-shrink: 0;
}

.booking-submit .btn {
  padding: 14px 36px;
  height: 100%;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-slower) var(--ease-smooth);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .overline {
  margin-bottom: var(--space-md);
  display: block;
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content .gold-line {
  width: 260px;
  height: 15px;
  background: url('../images/title-divider.svg') no-repeat left center;
  background-size: contain;
  margin: 12px 0 var(--space-xl) 0;
  border: none;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

.about-content p.accent-text {
  font-size: var(--fs-body-lg);
  color: var(--forest);
}

/* --- Stats Row --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: var(--border-thin);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--fs-caption);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* ============================================================
   11. ROOMS SECTION
   ============================================================ */
.rooms-section {
  background: var(--ivory-warm);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-base) var(--ease-smooth);
}

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

.room-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-smooth);
}

.room-card:hover .room-card-image img {
  transform: scale(1.08);
}

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  font-size: var(--fs-overline);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.room-card-body {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.room-card-desc {
  font-size: var(--fs-body-sm);
  color: var(--gray-500);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-thin);
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-caption);
  color: var(--gray-600);
}

.room-amenity svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-caption);
  color: var(--gray-500);
}

.room-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.room-card-footer {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
}

.room-price {
  display: flex;
  flex-direction: column;
}

.room-price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.room-price-label {
  font-size: var(--fs-caption);
  color: var(--gray-500);
}

/* ============================================================
   12. RESTAURANT SECTION
   ============================================================ */
.restaurant-section {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

.restaurant-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.restaurant-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.restaurant-content {
  position: relative;
  z-index: 1;
}

.restaurant-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.restaurant-header .overline {
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.restaurant-header h2 {
  color: var(--ivory);
  margin-bottom: var(--space-lg);
}

.restaurant-header .gold-line {
  width: 260px;
  height: 15px;
  background: url('../images/title-divider.svg') no-repeat center;
  background-size: contain;
  margin: 12px auto var(--space-lg);
  border: none;
}

.restaurant-header .section-subtitle {
  color: rgba(247, 245, 238, 0.7);
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.cuisine-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-smooth);
}

.cuisine-card:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.cuisine-card .feature-icon {
  margin: 0 auto var(--space-lg);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.cuisine-card h4 {
  font-family: var(--font-heading);
  color: var(--ivory);
  margin-bottom: var(--space-sm);
}

.cuisine-card p {
  font-size: var(--fs-body-sm);
  color: rgba(247, 245, 238, 0.6);
  line-height: var(--lh-body);
}

.restaurant-cta {
  text-align: center;
}

/* ============================================================
   13. EXPLORE / ATTRACTIONS SECTION
   ============================================================ */
.explore-section {
  background: var(--ivory);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.attraction-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  group: true;
}

.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-smooth);
}

.attraction-card:hover img {
  transform: scale(1.1);
}

.attraction-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(31, 31, 31, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: all var(--duration-base) var(--ease-smooth);
}

.attraction-card:hover .attraction-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(31, 31, 31, 0.2) 0%,
    rgba(31, 31, 31, 0.9) 100%
  );
}

.attraction-card-distance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--fs-overline);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.attraction-card-distance svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.attraction-card h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.attraction-card p {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-tight);
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--duration-base) var(--ease-smooth);
}

.attraction-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   14. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--ivory-warm);
  overflow: hidden;
}

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

.testimonial-track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-xl);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold-muted);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
  color: rgba(201, 169, 110, 0.15);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  stroke: none;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-author-location {
  font-size: var(--fs-body-sm);
  color: var(--gray-500);
}

/* --- Slider Controls --- */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--duration-base) var(--ease-smooth);
  cursor: pointer;
  background: transparent;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

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

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 8px 24px;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
  background: transparent;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-base) var(--ease-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(31, 31, 31, 0.4);
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration-base) var(--ease-smooth);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: color var(--duration-fast) var(--ease-smooth);
}

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

.lightbox-close svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lightbox-nav:hover {
  background: var(--gold);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   16. BOOKING ENQUIRY FORM
   ============================================================ */
.enquiry-section {
  background: var(--ivory-warm);
  position: relative;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.enquiry-info {
  padding-right: var(--space-2xl);
}

.enquiry-info .overline {
  margin-bottom: var(--space-md);
  display: block;
}

.enquiry-info h2 {
  margin-bottom: var(--space-lg);
}

.enquiry-info .gold-line {
  width: 260px;
  height: 15px;
  background: url('../images/title-divider.svg') no-repeat left center;
  background-size: contain;
  margin: 12px 0 var(--space-xl) 0;
  border: none;
}

.enquiry-info p {
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-body);
}

.enquiry-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.enquiry-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.enquiry-feature .feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.enquiry-feature .feature-icon svg {
  width: 22px;
  height: 22px;
}

.enquiry-feature-text h4 {
  font-size: var(--fs-body);
  margin-bottom: var(--space-xs);
}

.enquiry-feature-text p {
  font-size: var(--fs-body-sm);
  margin-bottom: 0;
}

/* --- Form Styles --- */
.enquiry-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-group label svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A96E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group .error-message {
  font-size: var(--fs-overline);
  color: var(--error);
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--error);
}

.form-group.has-error .error-message {
  display: block;
}

.form-submit {
  margin-top: var(--space-lg);
}

.form-submit .btn {
  width: 100%;
}

/* --- Form Success --- */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.form-success .success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2;
}

.form-success h3 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.form-success p {
  color: var(--gray-500);
}

/* ============================================================
   17. CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
}

.contact-info-block .overline {
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.contact-info-block h2 {
  color: var(--ivory);
  margin-bottom: var(--space-lg);
}

.contact-info-block .gold-line {
  width: 260px;
  height: 15px;
  background: url('../images/title-divider.svg') no-repeat left center;
  background-size: contain;
  margin: 12px 0 var(--space-xl) 0;
  border: none;
}

.contact-info-block p {
  color: rgba(247, 245, 238, 0.7);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-body);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-item-content h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-xs);
}

.contact-item-content p,
.contact-item-content a {
  color: rgba(247, 245, 238, 0.8);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

.contact-item-content a:hover {
  color: var(--gold);
}

/* --- Map --- */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(50%) contrast(1.1);
  transition: filter var(--duration-base) var(--ease-smooth);
}

.contact-map:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* ============================================================
   18. FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--ivory);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  gap: var(--space-md);
  width: 100%;
  text-align: left;
  background: transparent;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--charcoal);
}

.faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--duration-base) var(--ease-smooth);
}

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

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-smooth);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--gray-600);
  line-height: var(--lh-body);
  font-size: var(--fs-body-sm);
}

/* ============================================================
   19. BLOG SECTION
   ============================================================ */
.blog-section {
  background: var(--ivory-warm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-base) var(--ease-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  font-size: var(--fs-overline);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-full);
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--fs-caption);
  color: var(--gray-500);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.blog-card h4 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.blog-card:hover h4 {
  color: var(--gold);
}

.blog-card p {
  font-size: var(--fs-body-sm);
  color: var(--gray-500);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-about .footer-logo svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.footer-about .footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
}

.footer-about p {
  font-size: var(--fs-body-sm);
  color: rgba(247, 245, 238, 0.6);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  transition: all var(--duration-base) var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul li a {
  font-size: var(--fs-body-sm);
  color: rgba(247, 245, 238, 0.6);
  transition: all var(--duration-fast) var(--ease-smooth);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-smooth);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-col ul li a:hover::before {
  width: 12px;
}

/* --- Footer Contact --- */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: var(--fs-body-sm);
  color: rgba(247, 245, 238, 0.6);
  line-height: 1.6;
}

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

/* --- Footer Bottom --- */
.footer-bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-caption);
  color: rgba(247, 245, 238, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  color: rgba(247, 245, 238, 0.4);
  transition: color var(--duration-fast) var(--ease-smooth);
}

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

/* ============================================================
   21. FLOATING ELEMENTS
   ============================================================ */

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--duration-base) var(--ease-smooth);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: var(--z-sticky);
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-smooth);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* --- Mobile Sticky Booking --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  padding: 12px var(--gutter);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.mobile-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  flex: 1;
}

.mobile-sticky-call svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.mobile-sticky-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  flex: 1;
}

.mobile-sticky-book svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   22. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-charcoal { color: var(--charcoal); }
.text-forest { color: var(--forest); }
.text-muted { color: var(--gray-500); }

.bg-gold { background-color: var(--gold); }
.bg-ivory { background-color: var(--ivory); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-forest { background-color: var(--forest); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
