/* ============================================================
   OTel Sitesi v3 - Luxury Hotel & Resort
   Primary Colors: Gold (#c9a84c) | Dark Navy (#0c0c1d)
   Typography: Playfair Display (headings) | Inter (body)
   ============================================================ */

/* ==========================================================
   1. CSS VARIABLES
   ========================================================== */
:root {
  /* --- Primary Palette --- */
  --color-gold: #c9a84c;
  --color-gold-light: #dfc677;
  --color-gold-dark: #a88a3a;
  --color-gold-glow: rgba(201, 168, 76, 0.35);
  --color-navy: #0c0c1d;
  --color-navy-light: #161632;
  --color-navy-lighter: #1e1e42;
  --color-navy-dark: #07071a;

  /* --- Neutral Palette --- */
  --color-white: #ffffff;
  --color-off-white: #f8f7f4;
  --color-cream: #faf8f0;
  --color-gray-50: #fafafa;
  --color-gray-100: #f4f4f5;
  --color-gray-200: #e4e4e7;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-black: #000000;

  /* --- Semantic Colors --- */
  --color-success: #22c55e;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;

  /* --- Typography --- */
  --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.25rem;     /* 20px */
  --fs-xl: 1.5rem;      /* 24px */
  --fs-2xl: 2rem;       /* 32px */
  --fs-3xl: 2.5rem;     /* 40px */
  --fs-4xl: 3rem;       /* 48px */
  --fs-5xl: 3.75rem;    /* 60px */
  --fs-6xl: 4.5rem;     /* 72px */

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
  --ls-wide: 0.08em;
  --ls-wider: 0.15em;
  --ls-widest: 0.25em;

  /* --- 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: 7rem;

  /* --- Borders --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --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 24px rgba(201, 168, 76, 0.3);
  --shadow-gold-lg: 0 8px 40px rgba(201, 168, 76, 0.35);
  --shadow-navy: 0 8px 32px rgba(12, 12, 29, 0.4);

  /* --- Glassmorphism --- */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-light: rgba(255, 255, 255, 0.12);
  --glass-bg-heavy: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 20px;
  --glass-blur-heavy: 30px;

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-smooth: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* --- Z-Index Scale --- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 1000;
  --z-overlay: 5000;
  --z-modal: 6000;
  --z-preloader: 9999;
  --z-tooltip: 7000;

  /* --- Container --- */
  --container-max: 1320px;
  --container-wide: 1440px;
}


/* ==========================================================
   2. BASE / RESET
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-gray-700);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

::-webkit-scrollbar-track {
  background: var(--color-navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-navy-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-dark) var(--color-navy-dark);
}

/* Selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

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

/* --- Headings --- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

h1, .h1 {
  font-size: var(--fs-5xl);
  letter-spacing: var(--ls-wide);
}

h2, .h2 {
  font-size: var(--fs-4xl);
  letter-spacing: var(--ls-wide);
}

h3, .h3 {
  font-size: var(--fs-2xl);
}

h4, .h4 {
  font-size: var(--fs-xl);
}

h5, .h5 {
  font-size: var(--fs-lg);
}

h6, .h6 {
  font-size: var(--fs-md);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-gray-600);
}

/* Links — only style custom links, not Bootstrap nav/pagination/alert links */
.footer-links a,
.footer-contact a,
.footer-bottom-link,
.social-link,
.room-card-title a,
.blog-card-title a,
.blog-card-meta a,
.section-dark a,
.hero-content a,
.navbar-luxury a:not(.btn),
.gallery-overlay a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition-base), background-color var(--transition-base);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-link:hover,
.social-link:hover,
.room-card-title a:hover,
.blog-card-title a:hover,
.section-dark a:hover,
.hero-content a:hover {
  color: var(--color-gold);
}

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

/* Only reset custom navigation lists — NOT Bootstrap dropdowns/accordions */
.nav-menu,
.footer-links,
.footer-contact,
.social-links,
.gallery-filters,
.navbar-nav,
.testimonial-nav,
.working-hours,
.lang-switcher-list,
.faq-list,
.blog-meta,
.room-amenities {
  list-style: none;
}

/* Only reset custom non-Bootstrap buttons */
.btn-gold,
.btn-cta,
.btn-reservation,
.btn-dark-toggle,
.hamburger-luxury,
.gallery-filter-btn,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.hero-nav,
.hero-dot,
.testimonial-nav button,
.navbar-toggle,
.back-to-top,
.whatsapp-btn,
.lang-switcher-btn,
.nav-right-mobile button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Utility text helpers */
.text-gold { color: var(--color-gold) !important; }
.text-navy { color: var(--color-navy) !important; }
.text-gold-gradient {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container — do NOT override Bootstrap's .container (it breaks responsive breakpoints) */
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}


/* ==========================================================
   3. PRELOADER
   ========================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-preloader);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--color-gold);
  border-right-color: var(--color-gold-light);
  border-radius: 50%;
  animation: preloaderSpin 1.2s linear infinite;
}

.preloader-ring:nth-child(2) {
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: var(--color-gold);
  border-left-color: var(--color-gold-dark);
  animation: preloaderSpin 1.8s linear infinite reverse;
}

.preloader-logo {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-logo svg,
.preloader-logo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

@keyframes preloaderSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}


/* ==========================================================
   4. NAVBAR (scoped to .navbar-luxury to avoid Bootstrap conflicts)
   ========================================================== */
/* NOTE: .navbar-luxury styles are defined in header.php inline <style>.
   Only additional/responsive styles are here. */

/* --- Logo (scoped to navbar-luxury brand) --- */
.navbar-brand-luxury {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 10;
}

.navbar-brand-luxury img {
  height: 42px;
  width: auto;
  transition: transform var(--transition-base);
}

.navbar-brand-luxury:hover img {
  transform: scale(1.03);
}

.navbar-brand-luxury .logo-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: var(--ls-wide);
}

.navbar-brand-luxury .logo-title span {
  color: var(--color-gold);
}

/* --- Custom Nav Menu (for non-Bootstrap custom menus) --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

/* --- Nav Links (non-Bootstrap nav links) --- */
.nav-menu .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.nav-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--color-gold);
}

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

/* --- Dropdown --- */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-md));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(12, 12, 29, 0.95);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu .dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-xl);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
}

.dropdown-menu .dropdown-item:hover {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
  padding-left: calc(var(--space-xl) + var(--space-xs));
}

/* --- Navbar CTA Button --- */
.navbar-cta .btn-gold {
  padding: 0.6rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* --- Language Switcher --- */
.lang-switcher {
  position: relative;
  z-index: 10;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: color var(--transition-base);
  background: none;
  border: none;
  padding: var(--space-xs) 0;
}

.lang-switcher-btn:hover {
  color: var(--color-gold);
}

.lang-switcher-btn i {
  font-size: var(--fs-xs);
  transition: transform var(--transition-fast);
}

.lang-switcher.open .lang-switcher-btn i {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + var(--space-sm));
  right: 0;
  min-width: 140px;
  background: rgba(12, 12, 29, 0.95);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
}

/* --- Dark Mode Toggle --- */
.dark-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-md);
  transition: all var(--transition-base);
  background: none;
  border: none;
  cursor: pointer;
}

.dark-mode-toggle:hover {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
}

.dark-mode-toggle .icon-sun,
[data-bs-theme="dark"] .dark-mode-toggle .icon-moon {
  display: none;
}

[data-bs-theme="dark"] .dark-mode-toggle .icon-sun {
  display: inline-block;
}

/* --- Mobile Toggle (Animated X) --- */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  gap: 6px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-gold);
}

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

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-gold);
}


/* ==========================================================
   5. HERO / SLIDER
   ========================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 29, 0.65) 0%,
    rgba(12, 12, 29, 0.4) 40%,
    rgba(12, 12, 29, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: var(--color-white);
  padding-top: var(--space-4xl);
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-xl);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  transform: translateY(-50%);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-title span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-description {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

/* --- Hero Search Bar --- */
.hero-search-bar {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  backdrop-filter: blur(var(--glass-blur-heavy));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

.search-form {
  display: flex;
  gap: var(--space-md);
  align-items: flex-end;
}

.search-field {
  flex: 1;
  position: relative;
}

.search-field label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-xs);
}

.search-field input,
.search-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

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

.search-field input:focus,
.search-field select:focus {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.search-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.search-field select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.search-submit .btn-gold {
  width: 100%;
  padding: 0.85rem 2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* --- Slider Dots --- */
.hero-dots {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-dot:hover {
  border-color: var(--color-gold);
}

.hero-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold-glow);
  transform: scale(1.15);
}

/* Slider Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-nav:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.hero-nav-prev {
  left: var(--space-xl);
}

.hero-nav-next {
  right: var(--space-xl);
}


/* ==========================================================
   6. SECTION STYLES
   ========================================================== */
.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.section-lg {
  padding: calc(var(--space-section) + var(--space-2xl)) 0;
}

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

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

.section-navy-gradient {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-4xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title .text-gold {
  color: var(--color-gold);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  margin: var(--space-lg) auto 0;
  border-radius: var(--radius-full);
}

.section-dark .section-title {
  color: var(--color-white);
}

.section-description {
  font-size: var(--fs-md);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

.section-dark .section-description {
  color: var(--color-gray-400);
}

/* --- Gold divider line --- */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

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

.gold-divider i {
  color: var(--color-gold);
  font-size: var(--fs-sm);
}


/* ==========================================================
   7. ROOM CARDS
   ========================================================== */
.room-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-gray-100);
}

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

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

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

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

/* Room Type Badge */
.room-type-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-full);
}

/* Room Price Tag (glassmorphism) */
.room-price-tag {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  padding: 0.5rem 1rem;
  background: rgba(12, 12, 29, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.room-price-tag .price-from {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.room-price-tag .price-amount {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1.2;
}

.room-price-tag .price-per {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* --- Room Content --- */
.room-card-body {
  padding: var(--space-xl);
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-base);
}

.room-card:hover .room-card-title {
  color: var(--color-gold-dark);
}

.room-card-title a {
  color: inherit;
}

.room-card-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Amenities Chips */
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.75rem;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--color-gray-600);
  transition: all var(--transition-base);
}

.amenity-chip i {
  color: var(--color-gold);
  font-size: 0.7rem;
}

.room-card:hover .amenity-chip {
  border-color: var(--color-gold-glow);
}

/* Room Card Footer */
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-gray-100);
}

.room-card-footer .room-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.room-card-footer .room-rating i {
  color: var(--color-gold);
  font-size: var(--fs-sm);
}

.room-card-footer .room-rating span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}


/* ==========================================================
   8. SERVICE CARDS
   ========================================================== */
.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  border-radius: 0 0 var(--radius-full) var(--radius-full);
  transition: width var(--transition-smooth);
}

.service-card:hover::before {
  width: 100%;
}

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

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  color: var(--color-gold);
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-base);
}

.service-card:hover .service-card-title {
  color: var(--color-gold-dark);
}

.service-card-description {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}


/* ==========================================================
   9. TESTIMONIAL CARDS
   ========================================================== */
.testimonial-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Quote icon */
.testimonial-card .quote-icon {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.15);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-card .quote-icon::before {
  content: '\201C';
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--color-gray-700);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

/* Star Rating */
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-lg);
}

.testimonial-rating i {
  color: var(--color-gold);
  font-size: var(--fs-sm);
}

.testimonial-rating i.empty {
  color: var(--color-gray-300);
}

/* Author info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info .author-name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: 2px;
}

.testimonial-author-info .author-title {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-200);
  color: var(--color-gray-500);
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.testimonial-nav button:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.05);
}


/* ==========================================================
   10. GALLERY
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-md);
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

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

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 29, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-overlay .zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.9);
  color: var(--color-navy);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay .zoom-icon {
  transform: scale(1);
}

.gallery-overlay .gallery-caption {
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-top: var(--space-sm);
  text-align: center;
}

/* Category Filter Buttons */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-gray-600);
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}


/* ==========================================================
   11. BLOG CARDS
   ========================================================== */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-smooth);
}

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

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

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

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

/* Category Badge */
.blog-category-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 0.3rem 0.85rem;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-full);
}

/* Blog Body */
.blog-card-body {
  padding: var(--space-xl);
}

/* Blog Meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--color-gray-400);
}

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

.blog-meta i {
  color: var(--color-gold);
  font-size: 0.65rem;
}

/* Blog Title */
.blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
  transition: color var(--transition-base);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: inherit;
}

.blog-card:hover .blog-card-title,
.blog-card:hover .blog-card-title a {
  color: var(--color-gold-dark);
}

/* Blog Excerpt */
.blog-card-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More Arrow */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold-dark);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.blog-read-more i {
  transition: transform var(--transition-base);
}

.blog-card:hover .blog-read-more i {
  transform: translateX(6px);
}

.blog-read-more:hover {
  color: var(--color-gold);
}


/* ==========================================================
   12. OFFER CARDS
   ========================================================== */
.offer-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-smooth);
}

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

.offer-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Discount Badge (Circle) */
.offer-discount-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.offer-discount-badge .discount-value {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--color-navy);
  line-height: 1;
}

.offer-discount-badge .discount-label {
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

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

.offer-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

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

/* Countdown */
.offer-countdown {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.countdown-item {
  text-align: center;
  min-width: 56px;
  padding: var(--space-sm);
  background: var(--color-navy);
  border-radius: var(--radius-md);
}

.countdown-item .countdown-number {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1.2;
}

.countdown-item .countdown-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* Promo Code (dashed border) */
.offer-promo-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.04);
  margin-bottom: var(--space-lg);
}

.offer-promo-code .promo-text {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.offer-promo-code .promo-label {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.offer-promo-code .promo-value {
  font-family: 'Courier New', monospace;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-gold-dark);
  letter-spacing: 0.15em;
}

.offer-promo-code .copy-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.35rem 0.85rem;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.offer-promo-code .copy-btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.offer-promo-code .copy-btn.copied {
  background: var(--color-success);
  color: var(--color-white);
}


/* ==========================================================
   13. FAQ ACCORDION
   ========================================================== */
.faq-accordion .accordion-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg) !important;
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.faq-accordion .accordion-item.active {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.12);
}

.faq-accordion .accordion-header {
  border: none;
  background: transparent;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
  gap: var(--space-md);
}

.faq-accordion .accordion-button:hover {
  color: var(--color-gold-dark);
}

.faq-accordion .accordion-item.active .accordion-button {
  color: var(--color-gold-dark);
}

.faq-accordion .accordion-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-accordion .accordion-item.active .accordion-button-icon {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: rotate(45deg);
}

.faq-accordion .accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-accordion .accordion-item.active .accordion-collapse {
  max-height: 500px;
}

.faq-accordion .accordion-body {
  padding: 0 var(--space-xl) var(--space-lg);
  padding-left: calc(var(--space-xl) + 44px);
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}


/* ==========================================================
   14. CONTACT FORM
   ========================================================== */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  letter-spacing: var(--ls-wide);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: var(--fs-base);
  color: var(--color-gray-800);
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  font-family: var(--font-body);
}

.form-control::placeholder {
  color: var(--color-gray-400);
}

.form-control:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.form-control:hover:not(:focus) {
  border-color: var(--color-gray-300);
}

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

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  margin-bottom: var(--space-md);
  transition: all var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-glow);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  color: var(--color-gold);
  font-size: var(--fs-xl);
  flex-shrink: 0;
}

.contact-info-content h5 {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.contact-info-content p {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-bottom: 0;
  line-height: var(--lh-relaxed);
}

.contact-info-content a {
  color: var(--color-gray-500);
  transition: color var(--transition-base);
}

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


/* ==========================================================
   15. NEWSLETTER SECTION
   ========================================================== */
.newsletter-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-navy) 100%);
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.newsletter-description {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

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

.newsletter-form input:focus {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.newsletter-form .btn-gold {
  padding: 0.9rem 2rem;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.newsletter-note {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-note i {
  margin-right: 4px;
}


/* ==========================================================
   16. FOOTER
   ========================================================== */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: var(--space-5xl);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-4xl);
}

/* Footer Brand */
.footer-brand {
  margin-bottom: var(--space-lg);
}

.footer-brand img {
  height: 42px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.2);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

/* Social Links */
.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-base);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Footer Columns */
.footer-column h5 {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: var(--space-xs);
}

/* Working Hours Table */
.working-hours {
  font-size: var(--fs-sm);
}

.working-hours table {
  width: 100%;
}

.working-hours tr td {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.working-hours tr td:first-child {
  color: rgba(255, 255, 255, 0.5);
  font-weight: var(--fw-regular);
}

.working-hours tr td:last-child {
  color: var(--color-gold);
  text-align: right;
  font-weight: var(--fw-semibold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

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

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

.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-base);
}

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

/* Payment icons */
.footer-payments {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.footer-payments img {
  height: 24px;
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.footer-payments img:hover {
  opacity: 0.8;
}


/* ==========================================================
   17. BACK TO TOP BUTTON
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  border: none;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-lg);
}

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


/* ==========================================================
   18. WHATSAPP BUTTON
   ========================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

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

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-out infinite 0.5s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-white);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}


/* ==========================================================
   19. COOKIE CONSENT
   ========================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-overlay);
  padding: var(--space-md) 0;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  background: rgba(12, 12, 29, 0.92);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cookie-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-relaxed);
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-actions .btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
}

.cookie-actions .btn-outline-gold {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-actions .btn-outline-gold:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}


/* ==========================================================
   20. LIGHTBOX
   ========================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.lightbox-image-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.lightbox.active .lightbox-image-wrapper img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: var(--fs-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2;
}

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

.lightbox-prev {
  left: var(--space-xl);
}

.lightbox-next {
  right: var(--space-xl);
}

.lightbox-caption {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  text-align: center;
  white-space: nowrap;
}

.lightbox-counter {
  position: absolute;
  top: var(--space-xl);
  left: var(--space-xl);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}


/* ==========================================================
   21. RESERVATION FORM
   ========================================================== */
.reservation-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}

.reservation-form-wrapper .form-control {
  padding: 0.9rem 1.15rem;
}

/* Room Select */
.room-select-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-bottom: var(--space-sm);
}

.room-select-card:hover {
  border-color: var(--color-gold-glow);
}

.room-select-card.selected {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.04);
}

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

.room-select-card .room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-select-card .room-info {
  flex: 1;
}

.room-select-card .room-info h6 {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: 2px;
}

.room-select-card .room-info span {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
}

.room-select-card .room-select-price {
  text-align: right;
}

.room-select-card .room-select-price .price {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.room-select-card .room-select-price .per {
  font-size: var(--fs-xs);
  color: var(--color-gray-400);
}

/* Price Display */
.reservation-price-display {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.reservation-price-display .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
}

.reservation-price-display .price-row:last-child {
  border-bottom: none;
}

.reservation-price-display .price-row.total {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  padding-top: var(--space-md);
  margin-top: var(--space-xs);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: none;
}

/* Promo Code Section in Reservation */
.reservation-promo {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.reservation-promo input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--color-gray-50);
  border: 2px dashed var(--color-gray-300);
  border-radius: var(--radius-md);
  font-family: 'Courier New', monospace;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  color: var(--color-gray-700);
  transition: all var(--transition-base);
}

.reservation-promo input:focus {
  border-color: var(--color-gold);
  border-style: solid;
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.reservation-promo .btn {
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}


/* ==========================================================
   22. COUNTER ANIMATION
   ========================================================== */
.counter-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

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

.counter-item {
  text-align: center;
  position: relative;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.08);
}

.counter-item:last-child::after {
  display: none;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-black);
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.counter-number .counter-suffix {
  font-size: 0.6em;
  color: var(--color-gold-light);
}

.counter-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.counter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.08);
  color: var(--color-gold);
  font-size: var(--fs-xl);
}


/* ==========================================================
   23. BUTTONS
   ========================================================== */

/* --- Gold Gradient Button --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--color-navy);
}

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

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

/* --- Outline Gold Button --- */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

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

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

/* --- White Button --- */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

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

/* --- Outline White Button --- */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

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

/* --- Button Sizes --- */
.btn-xs {
  padding: 0.35rem 0.85rem;
  font-size: var(--fs-xs);
  border-radius: var(--radius-sm);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-base);
}

.btn-xl {
  padding: 1.15rem 3rem;
  font-size: var(--fs-md);
}

/* --- Icon Button --- */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon.btn-gold {
  box-shadow: var(--shadow-gold);
}

/* Disabled state */
.btn-gold:disabled,
.btn-outline-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}


/* ==========================================================
   24. DARK MODE
   ========================================================== */
[data-bs-theme="dark"] body {
  background-color: var(--color-navy-dark);
  color: var(--color-gray-300);
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6 {
  color: var(--color-white);
}

[data-bs-theme="dark"] p {
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .section-gray {
  background-color: var(--color-navy-light);
}

[data-bs-theme="dark"] .section-dark {
  background-color: var(--color-navy-dark);
}

[data-bs-theme="dark"] .room-card,
[data-bs-theme="dark"] .service-card,
[data-bs-theme="dark"] .testimonial-card,
[data-bs-theme="dark"] .blog-card,
[data-bs-theme="dark"] .offer-card {
  background: var(--color-navy-light);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .room-card:hover,
[data-bs-theme="dark"] .service-card:hover,
[data-bs-theme="dark"] .testimonial-card:hover,
[data-bs-theme="dark"] .blog-card:hover,
[data-bs-theme="dark"] .offer-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .room-card-title,
[data-bs-theme="dark"] .service-card-title,
[data-bs-theme="dark"] .blog-card-title,
[data-bs-theme="dark"] .offer-card-title {
  color: var(--color-white);
}

[data-bs-theme="dark"] .room-card-excerpt,
[data-bs-theme="dark"] .service-card-description,
[data-bs-theme="dark"] .blog-card-excerpt,
[data-bs-theme="dark"] .blog-meta,
[data-bs-theme="dark"] .blog-meta span,
[data-bs-theme="dark"] .offer-card-description {
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .room-amenities .amenity-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .room-card-footer {
  border-top-color: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .room-card-footer .room-rating span {
  color: var(--color-white);
}

[data-bs-theme="dark"] .testimonial-text {
  color: var(--color-gray-300);
}

[data-bs-theme="dark"] .testimonial-card .quote-icon {
  color: rgba(201, 168, 76, 0.1);
}

[data-bs-theme="dark"] .contact-form-wrapper,
[data-bs-theme="dark"] .reservation-form-wrapper {
  background: var(--color-navy-light);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .form-control {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

[data-bs-theme="dark"] .form-control::placeholder {
  color: var(--color-gray-500);
}

[data-bs-theme="dark"] .form-control:focus {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

[data-bs-theme="dark"] .form-group label {
  color: var(--color-white);
}

[data-bs-theme="dark"] .contact-info-card {
  background: var(--color-navy-light);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .contact-info-content h5 {
  color: var(--color-white);
}

[data-bs-theme="dark"] .contact-info-content p,
[data-bs-theme="dark"] .contact-info-content a {
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .faq-accordion .accordion-item {
  background: var(--color-navy-light);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .faq-accordion .accordion-button {
  color: var(--color-white);
}

[data-bs-theme="dark"] .faq-accordion .accordion-body {
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .gallery-filter-btn {
  background: var(--color-navy-light);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .gallery-filter-btn:hover,
[data-bs-theme="dark"] .gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  border-color: var(--color-gold);
}

[data-bs-theme="dark"] .section-title {
  color: var(--color-white);
}

[data-bs-theme="dark"] .section-description {
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .reservation-price-display {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
}

[data-bs-theme="dark"] .room-select-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .room-select-card .room-info h6 {
  color: var(--color-white);
}

[data-bs-theme="dark"] .room-select-card .room-info span {
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .reservation-promo input {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

[data-bs-theme="dark"] .testimonial-nav button {
  background: var(--color-navy-light);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-gray-400);
}

[data-bs-theme="dark"] .testimonial-author-info .author-name {
  color: var(--color-white);
}

[data-bs-theme="dark"] .offer-promo-code {
  background: rgba(201, 168, 76, 0.06);
}


/* ==========================================================
   25. ANIMATIONS
   ========================================================== */

/* Float animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Pulse */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
}

/* Shimmer */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Fade In Down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide In Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Rotate */
@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Bounce Subtle */
@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Utility classes for animations */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.15) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease forwards;
}

/* Scroll reveal initial states */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stagger delay utilities */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


/* ==========================================================
   26. RESPONSIVE
   ========================================================== */

/* --- Extra Large (≤ 1200px) --- */
@media (max-width: 1200px) {
  :root {
    --fs-6xl: 3.75rem;
    --fs-5xl: 3rem;
    --fs-4xl: 2.5rem;
    --space-section: 5rem;
  }

  /* Do NOT override .container padding — Bootstrap handles this */

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

  .counter-item::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 1;
  }
}

/* --- Large (≤ 992px) --- */
@media (max-width: 992px) {
  :root {
    --fs-6xl: 3rem;
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.875rem;
    --space-section: 4rem;
  }

  /* Navbar mobile — use .navbar-luxury for Bootstrap navbar compatibility */
  .hamburger-luxury {
    display: flex;
  }

  .navbar-luxury .navbar-collapse {
    background-color: var(--color-navy);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-md) 0 var(--space-xl);
    margin-top: 4px;
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Legacy .nav-menu for non-Bootstrap custom menus */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(12, 12, 29, 0.98);
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    backdrop-filter: blur(var(--glass-blur-heavy));
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem var(--space-2xl) var(--space-2xl);
    gap: 0;
    transition: right var(--transition-smooth);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-md) 0;
    font-size: var(--fs-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu .nav-link::after {
    bottom: 0;
    left: 0;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    border-radius: 0;
  }

  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown .dropdown-menu.show {
    display: block;
  }

  .navbar-cta {
    width: 100%;
    margin-top: var(--space-lg);
  }

  .navbar-cta .btn-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .lang-switcher {
    margin-top: var(--space-md);
  }

  .dark-mode-toggle {
    margin-top: var(--space-sm);
  }

  /* Mobile menu overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-navbar) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

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

  /* Hero */
  .hero-content {
    padding-top: var(--space-3xl);
  }

  .hero-search-bar {
    margin-top: var(--space-2xl);
  }

  .search-form {
    flex-wrap: wrap;
  }

  .search-field {
    flex: 1 1 calc(50% - var(--space-md));
    min-width: 140px;
  }

  .search-submit {
    flex: 1 1 100%;
  }

  .hero-dots {
    bottom: var(--space-xl);
  }

  .hero-nav {
    display: none;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-main .footer-brand {
    grid-column: 1 / -1;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    height: 250px;
  }

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

/* --- Medium (≤ 768px) --- */
@media (max-width: 768px) {
  :root {
    --fs-6xl: 2.5rem;
    --fs-5xl: 2.25rem;
    --fs-4xl: 1.875rem;
    --fs-3xl: 1.5rem;
    --space-section: 3.5rem;
  }

  /* Do NOT override .container — Bootstrap handles responsive containers */

  /* Hero */
  .hero-section {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: var(--space-2xl);
  }

  .hero-subtitle {
    font-size: var(--fs-xs);
  }

  .hero-description {
    font-size: var(--fs-base);
  }

  .hero-search-bar {
    padding: var(--space-md);
  }

  .search-field {
    flex: 1 1 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  /* Counter */
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .counter-number {
    font-size: var(--fs-4xl);
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn-gold {
    width: 100%;
    justify-content: center;
  }

  /* Cookie consent */
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  /* Blog */
  .blog-card-image {
    height: 180px;
  }

  /* Offer */
  .offer-countdown {
    flex-wrap: wrap;
  }

  .countdown-item {
    flex: 1;
    min-width: 56px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }

  /* WhatsApp */
  .whatsapp-btn {
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Lightbox */
  .lightbox-prev {
    left: var(--space-md);
  }

  .lightbox-next {
    right: var(--space-md);
  }

  .lightbox-close {
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  /* Section title */
  .section-title::after {
    margin-top: var(--space-md);
  }

  /* Reservation form */
  .reservation-form-wrapper {
    padding: var(--space-xl);
  }
}

/* --- Small (≤ 576px) --- */
@media (max-width: 576px) {
  :root {
    --fs-6xl: 2rem;
    --fs-5xl: 1.875rem;
    --fs-4xl: 1.5rem;
    --fs-3xl: 1.25rem;
    --fs-2xl: 1.125rem;
    --space-section: 3rem;
  }

  h1, .h1 { font-size: var(--fs-5xl); }
  h2, .h2 { font-size: var(--fs-4xl); }
  h3, .h3 { font-size: var(--fs-2xl); }

  /* Navbar */
  .navbar-brand .brand-text {
    font-size: var(--fs-lg);
  }

  .navbar-brand img {
    height: 36px;
  }

  .nav-menu {
    width: 100%;
  }

  /* Hero */
  .hero-subtitle {
    margin-bottom: var(--space-md);
  }

  .hero-dots {
    gap: var(--space-xs);
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  /* Room cards */
  .room-card-image {
    height: 220px;
  }

  .room-amenities {
    gap: var(--space-xs);
  }

  .amenity-chip {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
  }

  .gallery-filters {
    gap: var(--space-xs);
  }

  .gallery-filter-btn {
    padding: 0.35rem 0.85rem;
    font-size: var(--fs-xs);
  }

  /* Counter */
  .counter-number {
    font-size: var(--fs-3xl);
  }

  .counter-label {
    font-size: var(--fs-xs);
  }

  /* Buttons */
  .btn-gold,
  .btn-outline-gold,
  .btn-white,
  .btn-outline-white {
    padding: 0.75rem 1.5rem;
    font-size: var(--fs-xs);
  }

  .btn-lg {
    padding: 0.85rem 2rem;
  }

  /* Contact */
  .contact-form-wrapper {
    padding: var(--space-lg);
  }

  /* Reservation */
  .reservation-form-wrapper {
    padding: var(--space-lg);
  }

  .room-select-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .room-select-card .room-select-price {
    text-align: center;
  }

  /* Testimonial */
  .testimonial-card {
    padding: var(--space-xl);
  }

  .testimonial-text {
    font-size: var(--fs-base);
  }

  /* Offer */
  .offer-card-image {
    height: 160px;
  }

  .offer-discount-badge {
    width: 56px;
    height: 56px;
  }

  .offer-discount-badge .discount-value {
    font-size: var(--fs-lg);
  }

  /* Section header */
  .section-header {
    margin-bottom: var(--space-2xl);
  }

  /* Back to top */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: var(--fs-base);
  }

  /* WhatsApp */
  .whatsapp-btn {
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  /* Lightbox */
  .lightbox-counter {
    top: var(--space-md);
    left: var(--space-md);
  }

  .lightbox-caption {
    bottom: var(--space-lg);
    font-size: var(--fs-xs);
    white-space: normal;
    max-width: 80%;
  }

  /* Offer promo code */
  .offer-promo-code {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .offer-promo-code .promo-text {
    flex-direction: column;
  }

  .offer-promo-code .copy-btn {
    align-self: center;
  }
}

/* --- Ultra Small (≤ 375px) --- */
@media (max-width: 375px) {
  :root {
    --fs-6xl: 1.75rem;
    --fs-5xl: 1.625rem;
    --space-section: 2.5rem;
  }

  .hero-content {
    padding-top: var(--space-xl);
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-white {
    padding: 0.7rem 1.25rem;
  }
}


/* ==========================================================
   29. NEWSLETTER SECTION
   ========================================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before { content:''; position:absolute; top:-50%; left:-20%; width:500px; height:500px; border-radius:50%; background:rgba(201,168,76,0.05); pointer-events:none; }
.newsletter-section::after { content:''; position:absolute; bottom:-30%; right:-10%; width:400px; height:400px; border-radius:50%; background:rgba(201,168,76,0.04); pointer-events:none; }
.newsletter-form .form-control { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); color:var(--color-white); border-radius:var(--radius-lg); padding:0.85rem 1.25rem; font-size:var(--fs-sm); transition:all var(--transition-base); }
.newsletter-form .form-control::placeholder { color:rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { border-color:var(--color-gold); background:rgba(201,168,76,0.06); box-shadow:0 0 0 3px rgba(201,168,76,0.15); }
.newsletter-form .btn-gold { border-radius:var(--radius-lg); padding:0.85rem 2rem; font-weight:var(--fw-semibold); white-space:nowrap; }

/* ==========================================================
   30. MAIN FOOTER
   ========================================================== */
.main-footer { background:var(--color-navy-dark); color:rgba(255,255,255,0.7); padding:var(--space-4xl) 0 0; }
.main-footer h5, .main-footer .footer-title { font-family:var(--font-heading); font-size:var(--fs-md); font-weight:var(--fw-bold); color:var(--color-white); margin-bottom:var(--space-xl); position:relative; padding-bottom:var(--space-md); }
.main-footer .footer-title::after { content:''; position:absolute; bottom:0; left:0; width:30px; height:2px; background:var(--color-gold); border-radius:var(--radius-full); }
.footer-brand { display:flex; align-items:center; gap:var(--space-md); margin-bottom:var(--space-lg); }
.footer-logo { height:40px; width:auto; border-radius:var(--radius-md); }
.footer-desc { font-size:var(--fs-sm); color:rgba(255,255,255,0.5); line-height:var(--lh-relaxed); margin-bottom:var(--space-lg); }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:var(--space-sm); }
.footer-links a { color:rgba(255,255,255,0.55); font-size:var(--fs-sm); transition:all var(--transition-base); display:inline-flex; align-items:center; gap:var(--space-xs); }
.footer-links a:hover { color:var(--color-gold); padding-left:4px; }
.footer-contact { list-style:none; padding:0; margin:0; }
.footer-contact li { display:flex; align-items:flex-start; gap:var(--space-md); margin-bottom:var(--space-md); font-size:var(--fs-sm); color:rgba(255,255,255,0.6); }
.footer-contact li i { color:var(--color-gold); font-size:var(--fs-base); margin-top:2px; flex-shrink:0; width:18px; text-align:center; }
.footer-contact a { color:rgba(255,255,255,0.6); transition:color var(--transition-base); }
.footer-contact a:hover { color:var(--color-gold); }
.social-links { display:flex; gap:var(--space-sm); margin-top:var(--space-lg); }
.social-link { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:var(--radius-full); background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); color:rgba(255,255,255,0.6); font-size:var(--fs-sm); transition:all var(--transition-base); }
.social-link:hover { background:var(--color-gold); border-color:var(--color-gold); color:var(--color-navy); transform:translateY(-3px); box-shadow:var(--shadow-gold); }
.working-hours { background:rgba(255,255,255,0.04); border-radius:var(--radius-lg); padding:var(--space-lg); border:1px solid rgba(255,255,255,0.06); }
.hours-row { display:flex; justify-content:space-between; padding:var(--space-sm) 0; font-size:var(--fs-sm); color:rgba(255,255,255,0.5); border-bottom:1px solid rgba(255,255,255,0.04); }
.hours-row:last-child { border-bottom:none; }
.hours-row.highlight { color:var(--color-gold); font-weight:var(--fw-semibold); }
.footer-badges { display:flex; gap:var(--space-md); margin-top:var(--space-md); }
.badge-img { height:36px; width:auto; opacity:0.6; transition:opacity var(--transition-base); }
.badge-img:hover { opacity:1; }
.footer-bottom { background:rgba(0,0,0,0.3); padding:var(--space-lg) 0; margin-top:var(--space-3xl); }
.footer-bottom p { font-size:var(--fs-sm); color:rgba(255,255,255,0.4); margin:0; }
.footer-bottom-link { color:rgba(255,255,255,0.4); font-size:var(--fs-sm); margin-left:var(--space-lg); transition:color var(--transition-base); }
.footer-bottom-link:hover { color:var(--color-gold); }

/* ==========================================================
   31. BACK TO TOP BUTTON
   ========================================================== */
.back-to-top { position:fixed; bottom:30px; right:30px; width:48px; height:48px; border-radius:var(--radius-full); background:linear-gradient(135deg, var(--color-gold), var(--color-gold-light)); color:var(--color-navy); font-size:var(--fs-md); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-gold); z-index:var(--z-sticky); opacity:0; visibility:hidden; transform:translateY(20px); transition:all var(--transition-smooth); cursor:pointer; border:none; }
.back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover { transform:translateY(-4px); box-shadow:var(--shadow-gold-lg); }

/* ==========================================================
   32. WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-btn { position:fixed; bottom:30px; left:30px; width:58px; height:58px; border-radius:var(--radius-full); background:#25d366; color:#fff; font-size:1.6rem; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,0.4); z-index:var(--z-sticky); transition:all var(--transition-smooth); text-decoration:none; animation:whatsappPulse 2s ease-in-out infinite; }
.whatsapp-btn:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,0.5); color:#fff; }
.whatsapp-tooltip { position:absolute; left:calc(100% + 12px); top:50%; transform:translateY(-50%); background:var(--color-navy); color:#fff; font-size:var(--fs-sm); padding:var(--space-xs) var(--space-md); border-radius:var(--radius-md); white-space:nowrap; opacity:0; visibility:hidden; transition:all var(--transition-base); pointer-events:none; }
.whatsapp-btn:hover .whatsapp-tooltip { opacity:1; visibility:visible; }
@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);} }

/* ==========================================================
   33. COOKIE CONSENT
   ========================================================== */
.cookie-consent { position:fixed; bottom:0; left:0; right:0; background:var(--color-navy); border-top:1px solid var(--glass-border); padding:var(--space-lg) 0; z-index:var(--z-overlay); animation:slideUp 0.5s ease; }
@keyframes slideUp { from{transform:translateY(100%);opacity:0;} to{transform:translateY(0);opacity:1;} }
.cookie-consent p { font-size:var(--fs-sm); color:rgba(255,255,255,0.7); margin:0; }

/* ==========================================================
   34. NOTIFICATION ANIMATIONS
   ========================================================== */
.frontend-notification { animation:slideInRight 0.4s ease; }
@keyframes slideInRight { from{transform:translateX(100%);opacity:0;} to{transform:translateX(0);opacity:1;} }

/* ==========================================================
   35. LIVECHAT WIDGET
   ========================================================== */
.livechat-container { position:fixed; bottom:100px; right:30px; width:360px; max-height:480px; background:var(--color-white); border-radius:var(--radius-xl); box-shadow:var(--shadow-xl); z-index:var(--z-overlay); overflow:hidden; display:none; flex-direction:column; animation:livechatOpen 0.3s ease; }
.livechat-container.open { display:flex; }
@keyframes livechatOpen { from{transform:scale(0.9) translateY(20px);opacity:0;} to{transform:scale(1) translateY(0);opacity:1;} }
.livechat-trigger { position:fixed; bottom:100px; right:30px; width:56px; height:56px; border-radius:var(--radius-full); background:linear-gradient(135deg, var(--color-gold), var(--color-gold-light)); color:var(--color-navy); font-size:1.3rem; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-gold); z-index:var(--z-sticky); cursor:pointer; border:none; transition:all var(--transition-smooth); }
.livechat-trigger:hover { transform:scale(1.1); box-shadow:var(--shadow-gold-lg); }
.livechat-trigger.hidden { display:none; }
@media(max-width:480px){ .livechat-container{bottom:0;right:0;left:0;width:100%;max-height:70vh;border-radius:var(--radius-xl) var(--radius-xl) 0 0;} }

/* ==========================================================
   36. DARK MODE ENHANCEMENTS
   ========================================================== */
[data-bs-theme="dark"] body { background-color:#0a0a18; color:#d0d0d0; }
[data-bs-theme="dark"] .main-footer { background:#050510; }
[data-bs-theme="dark"] .footer-bottom { background:rgba(0,0,0,0.4); }
[data-bs-theme="dark"] .room-card, [data-bs-theme="dark"] .service-card, [data-bs-theme="dark"] .testimonial-card, [data-bs-theme="dark"] .blog-card, [data-bs-theme="dark"] .offer-card { background:#141428; border-color:rgba(255,255,255,0.06); }
[data-bs-theme="dark"] .section-gray { background-color:#0e0e20; }
[data-bs-theme="dark"] .section-title { color:#fff; }
[data-bs-theme="dark"] h1,[data-bs-theme="dark"] h2,[data-bs-theme="dark"] h3,[data-bs-theme="dark"] h4,[data-bs-theme="dark"] h5,[data-bs-theme="dark"] h6 { color:#fff; }
[data-bs-theme="dark"] p { color:rgba(255,255,255,0.6); }
[data-bs-theme="dark"] .room-card-title,[data-bs-theme="dark"] .blog-card-title,[data-bs-theme="dark"] .offer-card-title { color:#fff; }
[data-bs-theme="dark"] .blog-card-excerpt,[data-bs-theme="dark"] .room-card-excerpt { color:rgba(255,255,255,0.5); }

/* ==========================================================
   37. FAQ SECTION
   ========================================================== */
.faq-accordion .accordion-item { background:var(--color-white); border:1px solid var(--color-gray-100); border-radius:var(--radius-lg)!important; margin-bottom:var(--space-md); overflow:hidden; transition:all var(--transition-base); }
.faq-accordion .accordion-item:hover { border-color:var(--color-gold-glow); box-shadow:var(--shadow-sm); }
.faq-accordion .accordion-button { font-family:var(--font-body); font-size:var(--fs-base); font-weight:var(--fw-semibold); color:var(--color-navy); padding:var(--space-lg) var(--space-xl); background:transparent; box-shadow:none; }
.faq-accordion .accordion-button:not(.collapsed) { color:var(--color-gold-dark); background:rgba(201,168,76,0.04); }
.faq-accordion .accordion-button::after { background-image:none; content:'\f078'; font-family:'Font Awesome 6 Free'; font-weight:900; font-size:var(--fs-xs); width:28px; height:28px; border-radius:var(--radius-full); background:var(--color-gray-50); display:flex; align-items:center; justify-content:center; transition:all var(--transition-base); }
.faq-accordion .accordion-button:not(.collapsed)::after { background:var(--color-gold); color:var(--color-navy); }
.faq-accordion .accordion-body { padding:0 var(--space-xl) var(--space-xl); color:var(--color-gray-600); line-height:var(--lh-relaxed); font-size:var(--fs-sm); }

/* ==========================================================
   38. CTA SECTION
   ========================================================== */
.cta-section { position:relative; padding:var(--space-4xl) 0; background:var(--color-navy); overflow:hidden; }
.btn-cta { display:inline-flex; align-items:center; gap:var(--space-sm); padding:1rem 2.5rem; background:linear-gradient(135deg, var(--color-gold), var(--color-gold-light)); color:var(--color-navy); font-weight:var(--fw-bold); font-size:var(--fs-sm); text-transform:uppercase; letter-spacing:var(--ls-wider); border-radius:var(--radius-full); text-decoration:none; transition:all var(--transition-smooth); box-shadow:var(--shadow-gold); }
.btn-cta:hover { transform:translateY(-3px); box-shadow:var(--shadow-gold-lg); color:var(--color-navy); }

/* ==========================================================
   39. CAROUSEL DOTS (for JS-generated testimonial carousel)
   ========================================================== */
/* JS in main.js uses .carousel-track/.carousel-slide/.carousel-dot etc.
   These match the class names the JS creates dynamically. */
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 var(--space-md);
  flex-shrink: 0;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  color: var(--color-navy);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.carousel-prev:hover,
.carousel-next:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.carousel-prev { left: -24px; }
.carousel-next { right: -24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gray-300);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.carousel-dot:hover {
  border-color: var(--color-gold);
}

.carousel-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold-glow);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: var(--fs-base);
  }
}

/* ==========================================================
   40. LIGHTBOX IMAGE CLASS (used by main.js)
   ========================================================== */
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  margin: 0 auto;
}

/* ==========================================================
   41. PASSWORD STRENGTH INDICATOR
   ========================================================== */
.password-strength-container {
  margin-top: var(--space-sm);
}

.strength-fill {
  height: 4px;
  border-radius: var(--radius-full);
  transition: width 0.3s ease, background-color 0.3s ease;
  width: 0%;
}

.strength-fill.weak   { background-color: var(--color-error); }
.strength-fill.fair   { background-color: var(--color-warning); }
.strength-fill.good   { background-color: #3b82f6; }
.strength-fill.strong { background-color: var(--color-success); }

.strength-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  margin-top: 4px;
}

.strength-text.weak   { color: var(--color-error); }
.strength-text.fair   { color: var(--color-warning); }
.strength-text.good   { color: #3b82f6; }
.strength-text.strong { color: var(--color-success); }

/* ==========================================================
   PRINT STYLES
   ========================================================== */
@media print {
  .navbar,.preloader,.back-to-top,.whatsapp-btn,.cookie-consent,.lightbox,.hero-overlay,.hero-dots,.hero-nav,.livechat-trigger,.livechat-container { display:none !important; }
  body { font-size:12pt; color:#000; background:#fff; }
  a { color:#000; text-decoration:underline; }
  .section { padding:2rem 0; }
}
