/* ==========================================================================
   LUXORA HOTEL & RESORT - LUXURY STYLESHEET
   Aesthetic: Light Luxury, Sophisticated, Spacious, Modern Hospitality
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --primary: #B45309;             /* Warm Amber Bronze */
  --primary-hover: #92400E;       /* Deep Bronze */
  --primary-light: #FDE68A;       /* Gentle Amber Tint */
  --secondary: #D97706;           /* Honey Amber */
  --accent: #F59E0B;              /* Radiant Gold Accent */
  --accent-soft: rgba(245, 158, 11, 0.12);
  --gold-gradient: linear-gradient(135deg, #B45309 0%, #D97706 50%, #F59E0B 100%);
  --gold-glow: 0 10px 25px -5px rgba(180, 83, 9, 0.25);

  /* Light Theme Surfaces & Backgrounds */
  --bg-white: #FFFFFF;
  --bg-soft: #FAFAF9;             /* Stone 50 */
  --bg-card: #FFFFFF;
  --bg-surface: #F5F5F4;          /* Stone 100 */
  --bg-subtle: #EDE9E3;
  --overlay-light: rgba(255, 255, 255, 0.88);
  --overlay-dark: rgba(28, 25, 23, 0.45);
  --overlay-hero: linear-gradient(180deg, rgba(28, 25, 23, 0.55) 0%, rgba(28, 25, 23, 0.35) 45%, rgba(28, 25, 23, 0.7) 100%);

  /* Typography Colors */
  --text-main: #1C1917;           /* Stone 900 */
  --text-body: #44403C;           /* Stone 700 */
  --text-muted: #78716C;          /* Stone 500 */
  --text-light: #A8A29E;          /* Stone 400 */
  --text-white: #FFFFFF;

  /* Borders & Dividers */
  --border: #E7E5E4;              /* Stone 200 */
  --border-light: #F0EEEB;
  --border-gold: rgba(180, 83, 9, 0.25);

  /* Typography Families */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 14px -2px rgba(0, 0, 0, 0.07), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(0, 0, 0, 0.09), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 48px -12px rgba(0, 0, 0, 0.12);
  --shadow-float: 0 20px 40px rgba(180, 83, 9, 0.15);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layout Widths */
  --container-max: 1320px;
  --header-height: 84px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--accent);
}

.section-label.no-after::after {
  display: none;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.text-left {
  text-align: left;
}

.section-header.text-left .section-subtitle {
  margin-left: 0;
}

.text-gold {
  color: var(--primary) !important;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-soft {
  background-color: var(--bg-soft);
}

.section-surface {
  background-color: var(--bg-surface);
}

.section-white {
  background-color: var(--bg-white);
}

.section-border-top {
  border-top: 1px solid var(--border);
}

.section-border-bottom {
  border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   5. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.28);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180, 83, 9, 0.38);
  color: var(--text-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(180, 83, 9, 0.04);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary);
  border: 1px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-hover);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.btn-sm {
  padding: 9px 20px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-link {
  padding: 0;
  border-radius: 0;
  color: var(--primary);
  font-weight: 600;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link:hover {
  color: var(--primary-hover);
  gap: 12px;
}

.btn-link svg {
  transition: transform var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 74px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo .brand-name {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.site-header.scrolled .brand-logo .brand-name {
  color: var(--text-main);
}

.brand-logo .brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
  transition: color var(--transition-fast);
}

.site-header.scrolled .brand-logo .brand-sub {
  color: var(--primary);
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.site-header.scrolled .nav-link {
  color: var(--text-body);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-fast);
}

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

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.site-header.scrolled .header-phone {
  color: var(--text-main);
}

.header-phone svg {
  color: var(--accent);
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  z-index: 1002;
}

.site-header.scrolled .menu-toggle {
  background: var(--bg-surface);
  border-color: var(--border);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 2.5px 0;
  transition: all var(--transition-smooth);
}

.site-header.scrolled .menu-toggle span {
  background-color: var(--text-main);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--text-main);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--text-main);
}

/* Off-canvas Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-drawer-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mobile-drawer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mobile-drawer-phone {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 80px;
  background-color: #1C1917;
  overflow: hidden;
}

.hero-slider-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, transform 6s cubic-bezier(0.1, 1, 0.1, 1);
  transform: scale(1.06);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 40px 0 60px;
}

.hero-content {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
  color: var(--text-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FEF3C7;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.12;
  margin-bottom: 22px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  color: #FCD34D;
  font-weight: 400;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 36px auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Hero Slider Controls */
.hero-slider-nav {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-dot.active {
  height: 28px;
  background: var(--accent);
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   8. EMBEDDED BOOKING WIDGET (HERO & STANDALONE)
   -------------------------------------------------------------------------- */
.booking-widget-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1140px;
  margin: 40px auto 0 auto;
}

.booking-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: flex-end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.booking-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-label svg {
  color: var(--primary);
}

.booking-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-soft);
  padding: 11px 14px;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.booking-input-wrap:focus-within {
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

.booking-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
}

.booking-select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

.booking-submit-btn {
  height: 48px;
  padding: 0 32px;
}

/* --------------------------------------------------------------------------
   9. INTRODUCTION SECTION
   -------------------------------------------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-content {
  padding-right: 20px;
}

.intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.intro-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.intro-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.intro-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Intro Image Composition */
.intro-image-container {
  position: relative;
}

.intro-main-image {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--bg-white);
}

.intro-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.intro-main-image:hover img {
  transform: scale(1.04);
}

.intro-badge-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg-white);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow);
}

.intro-badge-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
}

.intro-badge-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   10. ROOMS & SUITES SECTION
   -------------------------------------------------------------------------- */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
}

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

.room-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(180, 83, 9, 0.35);
}

.room-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #E7E5E4;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-price-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.room-price-badge strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.room-rating span {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.room-title {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.room-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-body);
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-meta-item svg {
  color: var(--primary);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   11. DEDICATED ROOM BOOKING ENGINE SECTION
   -------------------------------------------------------------------------- */
.booking-engine-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.booking-engine-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.engine-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.engine-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.step-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.booking-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.room-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  gap: 14px;
  align-items: center;
}

.room-select-card:hover {
  border-color: var(--secondary);
  background: var(--bg-soft);
}

.room-select-card.selected {
  border-color: var(--primary);
  background: rgba(180, 83, 9, 0.04);
}

.room-select-img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.room-select-info h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.room-select-info p {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

/* Booking Live Summary Box */
.booking-summary-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.summary-title {
  font-size: 1.45rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.summary-row strong {
  color: var(--text-main);
}

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

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  padding-top: 14px;
  border-top: 2px dashed var(--border);
  margin-bottom: 24px;
}

.summary-total .total-amount {
  font-size: 1.65rem;
  color: var(--primary);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   12. RESORT SECTION
   -------------------------------------------------------------------------- */
.resort-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.resort-image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.resort-image-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-md);
}

.resort-image-item.tall {
  grid-row: span 2;
  height: 498px;
}

.resort-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.resort-image-item:hover img {
  transform: scale(1.06);
}

.resort-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 40px;
}

.resort-feature-box {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.resort-feature-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.resort-feature-box h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.resort-feature-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. FACILITIES SECTION
   -------------------------------------------------------------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--bg-white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.facility-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition-fast);
}

.facility-card:hover .facility-icon {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.facility-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.facility-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. DINING SECTION
   -------------------------------------------------------------------------- */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dining-images-combo {
  position: relative;
}

.dining-img-primary {
  width: 88%;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.dining-img-secondary {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--bg-white);
}

.dining-img-primary img,
.dining-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dining-images-combo:hover img {
  transform: scale(1.05);
}

.dining-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 36px;
}

.dining-highlight-item {
  display: flex;
  gap: 16px;
}

.dining-highlight-bullet {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dining-highlight-text h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.dining-highlight-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. SWIMMING POOL & WELLNESS SECTION
   -------------------------------------------------------------------------- */
.wellness-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.wellness-image-wrapper {
  position: relative;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.wellness-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.wellness-tag-pill {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.wellness-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.wellness-pill {
  padding: 8px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   16. EXPERIENCES SECTION
   -------------------------------------------------------------------------- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.experience-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180, 83, 9, 0.3);
}

.experience-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.experience-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experience-category {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.experience-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.experience-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   17. EVENTS & CELEBRATIONS SECTION
   -------------------------------------------------------------------------- */
.events-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  margin-bottom: 40px;
}

.event-main-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-xl);
}

.event-main-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 25, 23, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #FFFFFF;
}

.event-showcase-overlay h3 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 8px;
}

.event-showcase-overlay p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  max-width: 520px;
}

.event-types-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.event-type-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.event-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.event-type-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.event-type-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.event-type-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   18. EXCLUSIVE SPECIAL OFFERS SECTION
   -------------------------------------------------------------------------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.offer-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.offer-card:hover .offer-img-wrap img {
  transform: scale(1.08);
}

.offer-discount-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.offer-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-validity {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   19. WHY CHOOSE US & ANIMATED COUNTERS
   -------------------------------------------------------------------------- */
.stats-banner {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.pillar-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pillar-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   20. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonial-carousel-container {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

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

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  opacity: 0.4;
  margin: 0 auto 20px auto;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 28px;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 16px;
}

.testimonial-author-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-author-stay {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Testimonial Nav */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  width: 24px;
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   21. GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #E7E5E4;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

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

.gallery-zoom-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.gallery-caption-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.2;
}

.gallery-caption-cat {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FCD34D;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 30px;
}

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

.lightbox-content-box {
  position: relative;
  max-width: 1080px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrap {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-image-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 16px;
  color: #FFFFFF;
  text-align: center;
}

.lightbox-caption h4 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.lightbox-caption p {
  color: #A8A29E;
  font-size: 0.86rem;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2005;
}

.lightbox-close-btn:hover {
  background: var(--primary);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2005;
}

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

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

/* --------------------------------------------------------------------------
   22. LOCATION & MAP SECTION
   -------------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.location-details-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

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

.location-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-info-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-info-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.transit-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
}

.transit-badge {
  text-align: center;
}

.transit-badge strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 800;
}

.transit-badge span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.map-embed-container {
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   23. CONTACT FORM & ENQUIRY
   -------------------------------------------------------------------------- */
.contact-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-channel-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

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

/* --------------------------------------------------------------------------
   24. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .brand-logo .brand-name {
  color: var(--text-main);
}

.footer-brand .brand-logo .brand-sub {
  color: var(--primary);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 18px 0 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-newsletter-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-white);
  font-size: 0.88rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   25. MODALS (ROOM DETAILS, RESERVATIONS, TABLE, EVENT)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 24px;
}

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

.modal-dialog {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.modal-header {
  padding: 28px 32px 18px;
  border-bottom: 1px solid var(--border);
}

.modal-body {
  padding: 28px 32px;
}

.modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: var(--bg-soft);
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   26. TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast-notification {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bg-white);
  color: var(--text-main);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   27. MOBILE STICKY CTA BAR
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--border);
  z-index: 990;
  justify-content: space-between;
  align-items: center;
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.mobile-sticky-info strong {
  font-size: 1.1rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   28. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* Large Desktop (1440px) */
@media (max-width: 1440px) {
  .container {
    max-width: 1240px;
  }
}

/* Standard Desktop / Laptop (1280px) */
@media (max-width: 1280px) {
  .container {
    max-width: 1140px;
  }
  .nav-menu {
    gap: 20px;
  }
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .nav-menu, .header-phone {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .booking-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-submit-btn {
    grid-column: span 2;
    height: 52px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intro-content {
    padding-right: 0;
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-engine-grid {
    grid-template-columns: 1fr;
  }
  .resort-split {
    grid-template-columns: 1fr;
  }
  .dining-grid {
    grid-template-columns: 1fr;
  }
  .dining-images-combo {
    order: -1;
  }
  .wellness-split {
    grid-template-columns: 1fr;
  }
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-feature-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .booking-card {
    padding: 20px;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .booking-submit-btn {
    grid-column: span 1;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .resort-image-gallery {
    grid-template-columns: 1fr;
  }
  .resort-image-item.tall {
    grid-row: auto;
    height: 260px;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide, .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }
  .contact-wrapper {
    padding: 32px 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
}

/* Mobile Small (480px, 414px, 390px, 375px, 320px) */
@media (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section {
    padding: 60px 0;
  }
  .brand-logo .brand-name {
    font-size: 1.65rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .intro-badge-card {
    position: static;
    margin-top: 18px;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .booking-engine-box {
    padding: 24px 18px;
  }
  .booking-options-grid {
    grid-template-columns: 1fr;
  }
}
