/*
Theme Name: Monalisa Inn
Theme URI: https://www.monalisainn.in/
Author: Monalisa Inn
Author URI: https://www.monalisainn.in/
Description: Premium luxury hotel theme for Monalisa Inn, Islampur, West Bengal. Features complete booking engine, room management, Razorpay integration, and comprehensive admin dashboard.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://www.monalisainn.in/
Text Domain: monalisa-inn
Tags: hotel, booking, luxury, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-primary: #1a2d5a;
  --color-primary-light: #2a4080;
  --color-primary-dark: #0f1c3a;
  --color-gold: #c9a84c;
  --color-gold-light: #e2c97e;
  --color-gold-dark: #a07830;
  --color-white: #ffffff;
  --color-off-white: #f8f6f0;
  --color-cream: #f5f0e8;
  --color-gray-100: #f9f9f9;
  --color-gray-200: #eeeeee;
  --color-gray-300: #dddddd;
  --color-gray-400: #bbbbbb;
  --color-gray-500: #888888;
  --color-gray-600: #666666;
  --color-gray-700: #444444;
  --color-gray-800: #222222;
  --color-text: #2c2c2c;
  --color-text-light: #555555;
  --color-success: #2e7d32;
  --color-error: #c62828;
  --color-warning: #e65100;
  --color-info: #1565c0;

  --font-primary: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-secondary: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

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

  --container-max: 1280px;
  --container-wide: 1440px;
  --header-height: 80px;
  --header-height-scroll: 64px;
}

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

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

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   SKIP NAVIGATION (ACCESSIBILITY)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container, .container-wide { padding: 0 16px; }
}

/* ============================================================
   HEADER
   ============================================================ */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), height var(--transition-base);
  height: var(--header-height);
}

#masthead.scrolled {
  background: rgba(26, 45, 90, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  height: var(--header-height-scroll);
}

#masthead.header-solid {
  background: var(--color-primary);
}

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

/* Logo */
.site-branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition-base);
  filter: brightness(1);
}

#masthead.scrolled .site-logo img { height: 44px; }

.site-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.site-tagline {
  font-size: 0.65rem;
  color: var(--color-gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

/* Navigation */
#primary-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-navigation a {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

#primary-navigation a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

#primary-navigation a:hover,
#primary-navigation .current-menu-item > a {
  color: var(--color-gold-light);
}

#primary-navigation a:hover::after,
#primary-navigation .current-menu-item > a::after {
  transform: scaleX(1);
}

.nav-book-btn {
  background: var(--color-gold) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid var(--color-gold) !important;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-book-btn:hover {
  background: transparent !important;
  color: var(--color-gold) !important;
  transform: translateY(-1px);
}

.nav-book-btn::after { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--transition-fast);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover { border-color: var(--color-gold); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

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

@media (max-width: 1024px) {
  .menu-toggle { display: flex; }
  
  #primary-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }

  #primary-navigation.is-open { display: flex; }

  #primary-navigation a {
    font-size: 1.25rem;
    padding: 12px 32px;
  }
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 28, 58, 0.75) 0%,
    rgba(26, 45, 90, 0.55) 50%,
    rgba(15, 28, 58, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 780px;
  animation: heroFadeUp 1s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--color-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title span { color: var(--color-gold-light); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

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

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: none;
  padding: 0;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

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

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

.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-primary);
  margin-bottom: 16px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto;
  max-width: 200px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

.section-divider-icon {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   QUICK BOOKING BAR
   ============================================================ */
.quick-booking-bar {
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  margin: -56px 0 0;
  position: relative;
  z-index: 10;
}

.quick-booking-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.quick-booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

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

.booking-field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.booking-field input,
.booking-field select {
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-gray-100);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  height: 48px;
  font-family: var(--font-secondary);
}

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

@media (max-width: 1024px) {
  .quick-booking-fields {
    grid-template-columns: 1fr 1fr;
  }
  .quick-booking-fields .btn { width: 100%; }
}

@media (max-width: 640px) {
  .quick-booking-fields { grid-template-columns: 1fr; }
  .quick-booking-bar { padding: 24px 20px; margin: -32px 0 0; }
}

/* ============================================================
   ROOM CARDS
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.room-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.room-card:hover .room-card-media img { transform: scale(1.06); }

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.room-card-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.room-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.room-card-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--color-gray-600);
  background: var(--color-gray-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

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

.room-card-rate {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.room-card-rate span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-gray-500);
  font-family: var(--font-secondary);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 45, 90, 0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
}

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

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

/* ============================================================
   FEATURES / AMENITIES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-gray-200);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--color-gold-light);
  box-shadow: 0 4px 16px rgba(26, 45, 90, 0.2);
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  line-height: 1.5;
}

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

.testimonials-section .section-eyebrow { color: var(--color-gold); }
.testimonials-section .section-title { color: var(--color-white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.7); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  flex: 0 0 100%;
  padding: 48px 64px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.testimonial-quote {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 1;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--color-gold-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.testimonial-author-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .testimonial-card { padding: 32px 24px; }
  .testimonial-quote::before { display: none; }
}

/* ============================================================
   ABOUT / SPLIT SECTIONS
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-media {
  position: relative;
}

.split-media-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.split-media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 40%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  aspect-ratio: 1;
}

.split-media-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.split-stat {
  text-align: center;
  padding: 20px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}

.split-stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.split-stat-label {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .split-section.reverse { direction: ltr; }
  .split-media-accent { right: 16px; bottom: -16px; }
}

/* ============================================================
   RESTAURANT
   ============================================================ */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.restaurant-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
}

.restaurant-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.restaurant-img-wrap:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .restaurant-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.location-section { background: var(--color-cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.location-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 4px;
}

.location-item-value {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map-wrap { height: 280px; }
}

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

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item.open { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: color var(--transition-fast);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition-base), background var(--transition-fast);
  font-style: normal;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.booking-steps-header {
  background: var(--color-primary);
  padding: 32px 40px;
  display: flex;
  gap: 0;
  position: relative;
}

.booking-step-indicator {
  flex: 1;
  text-align: center;
  position: relative;
}

.booking-step-indicator::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 0;
  left: 50%;
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.booking-step-indicator:last-child::after { display: none; }

.booking-step-indicator.active .step-number { background: var(--color-gold); color: var(--color-primary-dark); }
.booking-step-indicator.completed .step-number { background: var(--color-success); color: white; }
.booking-step-indicator.completed::after { background: var(--color-gold); }

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: all var(--transition-base);
}

.step-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.booking-step-indicator.active .step-label { color: var(--color-gold-light); }
.booking-step-indicator.completed .step-label { color: rgba(255,255,255,0.8); }

.booking-body { padding: 48px 40px; }

.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.3s ease; }

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

.booking-step-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.booking-step-desc {
  color: var(--color-gray-500);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.booking-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-600);
}

.form-control {
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  font-family: var(--font-secondary);
  height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-control.error { border-color: var(--color-error); }
.form-error { color: var(--color-error); font-size: 0.8rem; margin-top: 4px; }

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

.room-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.room-option {
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.room-option:hover { border-color: var(--color-gold-light); }
.room-option.selected { border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15); }
.room-option.unavailable { opacity: 0.5; cursor: not-allowed; }

.room-option-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-option-body { padding: 16px; }
.room-option-name { font-family: var(--font-primary); font-size: 1.1rem; font-weight: 600; color: var(--color-primary-dark); margin-bottom: 4px; }
.room-option-price { color: var(--color-gold-dark); font-weight: 700; font-size: 0.9rem; }
.room-option-avail { font-size: 0.75rem; color: var(--color-gray-500); margin-top: 4px; }

.room-option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.room-option.selected .room-option-check { display: flex; }

/* Guest Details Step */
.guest-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Booking Summary */
.booking-summary {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.booking-summary-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-300);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-gray-200);
}

.summary-row:last-child { border-bottom: none; }
.summary-row.total {
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--color-gold);
  border-bottom: none;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-200);
}

/* Payment */
.razorpay-btn-wrap { text-align: center; padding: 24px 0; }
.razorpay-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-top: 16px;
}

/* Confirmation */
.booking-confirmation {
  text-align: center;
  padding: 48px 24px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-success), #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.3);
}

.confirmation-id {
  background: var(--color-cream);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--color-primary);
  display: inline-block;
  letter-spacing: 0.1em;
  margin: 16px 0;
}

@media (max-width: 768px) {
  .booking-body { padding: 32px 20px; }
  .booking-steps-header { padding: 24px 16px; }
  .step-label { display: none; }
  .booking-date-grid,
  .guest-form-grid { grid-template-columns: 1fr; }
  .booking-nav { flex-direction: column; gap: 12px; }
  .booking-nav .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
}

.footer-main {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 56px;
  width: auto;
  opacity: 0.9;
  filter: brightness(1.1);
}

.footer-tagline {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-gold-light);
  font-style: italic;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary-dark);
}

.footer-col-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--color-gold);
  border-radius: 2px;
}

.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-nav a:hover { color: var(--color-gold-light); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-icon {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

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

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

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

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 28, 58, 0.8), rgba(26, 45, 90, 0.65));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.page-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a { color: var(--color-gold-light); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   ALERTS & NOTICES
   ============================================================ */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.alert-success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid var(--color-success); }
.alert-error { background: #ffebee; color: #b71c1c; border-left: 4px solid var(--color-error); }
.alert-warning { background: #fff3e0; color: #bf360c; border-left: 4px solid var(--color-warning); }
.alert-info { background: #e3f2fd; color: #0d47a1; border-left: 4px solid var(--color-info); }

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  z-index: 900;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-500); }
.bg-cream { background: var(--color-cream); }
.bg-primary { background: var(--color-primary); }
.bg-off-white { background: var(--color-off-white); }
.mt-auto { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ADMIN NOTICE HIDE (FRONT-END)
   ============================================================ */
.admin-bar #masthead { top: 32px; }

@media (max-width: 782px) {
  .admin-bar #masthead { top: 46px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  #masthead, #colophon, .float-whatsapp, .back-to-top { display: none !important; }
  body { padding-top: 0; }
  .booking-confirmation { box-shadow: none; }
}

/* ============================================================
   ROOM PAGE SLIDER
   ============================================================ */
.room-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  max-height: 560px;
}

.room-slider-track {
  display: flex;
  height: 100%;
  transition: transform var(--transition-smooth);
}

.room-slider-slide {
  flex: 0 0 100%;
  height: 100%;
}

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

.room-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 45, 90, 0.7);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 5;
}

.room-slider-btn:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-primary-dark); }
.room-slider-btn.prev { left: 16px; }
.room-slider-btn.next { right: 16px; }

.room-slider-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.room-slider-thumb {
  flex: 0 0 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.room-slider-thumb.active { border-color: var(--color-gold); }

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

/* ============================================================
   ROOM DETAIL PAGE
   ============================================================ */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.room-booking-sidebar {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.room-price-display {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: 24px;
}

.room-price-big {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.room-price-per { font-size: 0.8rem; color: var(--color-gray-500); }

@media (max-width: 900px) {
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-booking-sidebar { position: static; }
}

/* ============================================================
   AVAILABILITY CALENDAR
   ============================================================ */
.avail-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.avail-available { background: #e8f5e9; color: #2e7d32; }
.avail-limited { background: #fff3e0; color: #e65100; }
.avail-booked { background: #ffebee; color: #c62828; }

/* ============================================================
   RESPONSIVE TABLES
   ============================================================ */
.table-responsive { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-gray-200);
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--color-gray-100); }

/* ============================================================
   BOOKING LOOKUP
   ============================================================ */
.booking-lookup-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.booking-lookup-form .form-control { text-align: center; font-size: 1.1rem; }

.booking-result-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  max-width: 600px;
  margin: 32px auto 0;
}

.booking-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-gold);
}

.booking-status-badge {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.status-pending { background: #fff3e0; color: #e65100; }
.status-cancelled { background: #ffebee; color: #c62828; }
.status-checked_in { background: #e3f2fd; color: #0d47a1; }
.status-checked_out { background: #f3e5f5; color: #6a1b9a; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--color-primary); }
.policy-content h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 8px; color: var(--color-text-light); }
.policy-content p { color: var(--color-text-light); }

/* ============================================================
   HEADER REDESIGN — v2
   Hamburger LEFT | Logo CENTER | Book Now RIGHT
============================================================ */

/* Reset old header styles */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

#masthead.scrolled {
  background: rgba(15, 28, 58, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  height: var(--header-height-scroll);
}

#masthead.header-solid {
  background: var(--color-primary-dark);
}

/* Three-column header inner */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  max-width: var(--container-wide);
  margin: 0 auto;
}

/* ── LEFT: Hamburger ── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  justify-self: start;
  flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(201,168,76,0.15);
  border-color: var(--color-gold);
  outline: none;
}

.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
}

.menu-toggle .bar:nth-child(2) { width: 14px; }

.menu-toggle:hover .bar:nth-child(2) { width: 20px; }

/* ── CENTER: Logo ── */
.site-branding {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-logo img {
  height: 64px;
  width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  object-fit: contain;
}

#masthead.scrolled .site-logo img { height: 48px; }

/* ── RIGHT: Desktop nav + Book Now ── */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* Desktop navigation — hidden on mobile */
#primary-navigation { display: flex; align-items: center; }

.desktop-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-nav-list li a.nav-link {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}

.desktop-nav-list li a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav-list li a.nav-link:hover,
.desktop-nav-list li.current-menu-item > a.nav-link {
  color: var(--color-gold-light);
  background: rgba(255,255,255,0.05);
}

.desktop-nav-list li a.nav-link:hover::after,
.desktop-nav-list li.current-menu-item > a.nav-link::after {
  transform: scaleX(1);
}

/* Book Now button — header */
.header-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 8px;
  border: 2px solid var(--color-gold);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.header-book-btn:hover {
  background: transparent;
  color: var(--color-gold) !important;
  transform: translateY(-1px);
}

/* Hide desktop nav on ≤1024px, show only Book Now */
@media (max-width: 1024px) {
  #primary-navigation { display: none; }
  .header-book-btn { font-size: 0.75rem; padding: 8px 16px; margin-left: 4px; }
  .site-logo img { height: 56px; }
  #masthead.scrolled .site-logo img { height: 44px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 14px; }
  .site-logo img { height: 52px; }
  .header-book-btn { padding: 7px 13px; font-size: 0.72rem; }
}

/* ============================================================
   MOBILE DRAWER — Full-screen slide-in
============================================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.is-open {
  display: block;
  opacity: 1;
}

#mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-primary-dark);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 32px rgba(0,0,0,0.4);
}

#mobile-drawer.is-open {
  transform: translateX(0);
}

/* Drawer header */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 20px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  flex-shrink: 0;
}

.mobile-drawer-logo {
  border-radius: 8px;
  flex-shrink: 0;
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.mobile-drawer-name {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-drawer-name span {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-drawer-name small {
  font-size: 0.65rem;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Close button — clear X icon */
.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.mobile-close:hover,
.mobile-close:focus-visible {
  background: rgba(201,168,76,0.25);
  border-color: var(--color-gold);
  color: var(--color-gold);
  outline: none;
}

/* Drawer body — nav links */
.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  overscroll-behavior: contain;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active a {
  background: rgba(201,168,76,0.12);
  color: var(--color-gold-light);
  padding-left: 32px;
}

.mobile-nav-list li a .nav-arrow {
  font-size: 1.2rem;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}

.mobile-nav-list li a:hover .nav-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Drawer footer */
.mobile-drawer-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(201,168,76,0.2);
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}

.mobile-book-btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.875rem;
  padding: 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}

.mobile-phone-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--color-white) !important;
}

/* ============================================================
   FIX 3: HERO BADGE — remove AI-looking badge, redesign
============================================================ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-badge-sep {
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ============================================================
   FIX 5: BACK-TO-TOP → LEFT SIDE, WHATSAPP stays RIGHT
============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;    /* ← moved to LEFT */
  right: auto;   /* ← cancel old right */
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  z-index: 900;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s;
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

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

/* ============================================================
   FIX 6: RESTAURANT SECTION — bigger photos
============================================================ */
.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.restaurant-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;   /* was 3/2 — taller now */
  box-shadow: var(--shadow-lg);
}

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

.restaurant-img-wrap:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .restaurant-grid { grid-template-columns: 1fr; gap: 16px; }
  .restaurant-img-wrap { aspect-ratio: 16/9; }
}

/* ============================================================
   FIX 7: ROOM CARDS — full redesign, correct image display
============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}

.room-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-gray-200);
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-media img {
  transform: scale(1.07);
}

/* Image placeholder when no image */
.room-card-media .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: rgba(255,255,255,0.5);
  font-size: 3rem;
}

.room-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15,28,58,0.85);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.3);
}

.room-card-price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.875rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.room-card-content {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.room-card-desc {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  color: var(--color-gray-600);
  background: var(--color-gray-100);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-200);
  white-space: nowrap;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-gray-200);
  margin-top: auto;
}

.room-card-rate {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.room-card-rate span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-gray-400);
  font-family: var(--font-secondary);
}

/* ============================================================
   FIX 4: ROOM OPTION IMAGES IN BOOKING FORM
============================================================ */
.room-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.room-option {
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  background: var(--color-white);
}

.room-option:hover { border-color: var(--color-gold-light); transform: translateY(-2px); }
.room-option.selected {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.room-option.unavailable { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.room-option-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-gray-200);
  flex-shrink: 0;
}

.room-option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.room-option:hover .room-option-img img { transform: scale(1.04); }

.room-option-img .no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.room-option-body { padding: 14px; }
.room-option-name {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 3px;
}
.room-option-price { color: var(--color-gold-dark); font-weight: 700; font-size: 0.9rem; }
.room-option-avail { font-size: 0.72rem; margin-top: 4px; }

.room-option-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.room-option.selected .room-option-check { display: flex; }

/* ============================================================
   RESTAURANT PAGE — full-height layout fix
============================================================ */
.restaurant-split-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.restaurant-split-media .restaurant-img-wrap:first-child {
  aspect-ratio: 16/9;
}

.restaurant-split-media .restaurant-img-wrap:nth-child(2) {
  aspect-ratio: 16/7;
}

/* ============================================================
   MENU PDF BUTTON
============================================================ */
.menu-pdf-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 48px 0 0;
  box-shadow: var(--shadow-lg);
}

.menu-pdf-text h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 6px;
}

.menu-pdf-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.menu-pdf-btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

.menu-pdf-btn svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .menu-pdf-banner { padding: 28px 24px; flex-direction: column; text-align: center; }
  .menu-pdf-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HERO BADGE — replace the two-span version
============================================================ */
.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-location-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

/* ============================================================
   GENERAL RESPONSIVE FIXES
============================================================ */
@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-card-media { aspect-ratio: 16/9; }

  .menu-pdf-banner { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .rooms-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   v3 FIXES — All issues from screenshots
============================================================ */

/* ── FIX 4: Hide desktop nav completely, hamburger only. Bigger logo ── */
#primary-navigation,
.desktop-nav-list { display: none !important; }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

/* Logo bigger — 80px default, stays visible */
.site-logo img {
  height: 80px !important;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
  object-fit: contain;
}

#masthead.scrolled .site-logo img { height: 62px !important; }
#masthead.header-solid .site-logo img { height: 76px !important; }

@media (max-width: 768px) {
  .site-logo img { height: 64px !important; }
  #masthead.scrolled .site-logo img { height: 52px !important; }
}

@media (max-width: 480px) {
  .site-logo img { height: 58px !important; }
  .header-inner { padding: 0 14px; }
}

/* Book Now button stays on right */
.header-book-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--color-gold);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.header-book-btn:hover {
  background: transparent;
  color: var(--color-gold) !important;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .header-book-btn { font-size: 0.75rem; padding: 8px 16px; }
}

/* ── FIX 5: Remove dot from hero location tag ── */
.hero-location-dot { display: none !important; }

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

/* ── FIX 1: Booking steps bar — completely rewritten ── */
.booking-steps-header {
  background: var(--color-primary);
  padding: 28px 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow: visible;
}

.booking-step-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Connector line between steps — sits between circles, not through them */
.booking-step-indicator::before {
  content: '';
  position: absolute;
  top: 18px; /* half of step-number height (36px) */
  left: calc(50% + 18px); /* starts after the circle */
  right: calc(-50% + 18px); /* ends before next circle */
  height: 2px;
  background: rgba(255,255,255,0.18);
  z-index: 0;
}

.booking-step-indicator:last-child::before { display: none; }
.booking-step-indicator::after { display: none; } /* remove old pseudo */

.booking-step-indicator.completed::before { background: var(--color-gold); }
.booking-step-indicator.active::before { background: rgba(255,255,255,0.18); }

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.booking-step-indicator.active .step-number {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
}

.booking-step-indicator.completed .step-number {
  background: #2e7d32;
  border-color: #2e7d32;
  color: white;
}

.step-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 7px;
  text-align: center;
  white-space: nowrap;
}

.booking-step-indicator.active .step-label { color: var(--color-gold-light); font-weight: 600; }
.booking-step-indicator.completed .step-label { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .booking-steps-header { padding: 20px 12px 16px; }
  .step-label { display: none; }
  .step-number { width: 30px; height: 30px; font-size: 0.78rem; }
  .booking-step-indicator::before { top: 15px; }
}

/* ── FIX 1b: Room images in booking form — bigger and clearer ── */
.room-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.room-option {
  border: 2px solid var(--color-gray-200);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.room-option:hover:not(.unavailable) {
  border-color: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.room-option.selected {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.22);
}

.room-option-img {
  width: 100%;
  aspect-ratio: 4 / 3;   /* taller — shows more of the room */
  overflow: hidden;
  background: linear-gradient(135deg, #e0e4eb, #c8cdd8);
  flex-shrink: 0;
  position: relative;
}

.room-option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

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

/* Alt text as styled placeholder when src is just text */
.room-option-img img[src=""] ,
.room-option-img img:not([src]) {
  display: none;
}

.room-option-img .no-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
  gap: 6px;
}

.room-option-img .no-img span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── FIX 2: Gallery lightbox — full responsive modal ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox.is-open {
  display: flex;
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: lbImgIn 0.3s ease;
  display: block;
}

@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10001;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(201,168,76,0.3);
  border-color: var(--color-gold);
  color: var(--color-gold);
  outline: none;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10001;
  line-height: 1;
}

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

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary-dark);
  outline: none;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  z-index: 10001;
  background: rgba(0,0,0,0.4);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

@media (max-width: 600px) {
  .lightbox-prev { left: 6px; width: 40px; height: 40px; }
  .lightbox-next { right: 6px; width: 40px; height: 40px; }
  .lightbox-img { max-height: 75vh; border-radius: 4px; }
}

/* ── FIX 3: Restaurant 'Savour' section — much bigger photos ── */
/* Override the split-section media for restaurant */
.restaurant-hero-images {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
}

.restaurant-hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-xl);
}

.restaurant-hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.restaurant-hero-img-main:hover img { transform: scale(1.04); }

.restaurant-hero-img-secondary {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-lg);
}

.restaurant-hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.restaurant-hero-img-secondary:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .restaurant-hero-img-main { aspect-ratio: 4/3; }
  .restaurant-hero-img-secondary { aspect-ratio: 16/9; }
}

/* ── FIX 6: Rooms page — show as proper cards, not plain text ── */
/* The rooms page was rendering raw CPT archive — force template */
.rooms-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 0;
}

/* Room card image MUST show — override any height:0 */
.room-card .room-card-media {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16/10 !important;
  height: auto !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #1a2d5a, #2a4080) !important;
  position: relative !important;
}

.room-card .room-card-media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Featured room card responsive */
@media (max-width: 860px) {
  .featured-room-card {
    grid-template-columns: 1fr !important;
  }
  .featured-room-card > div:first-child {
    min-height: 260px !important;
  }
  .featured-room-card > div:last-child {
    padding: 24px 22px !important;
  }
}


/* ============================================================
   v1.1 PATCH — Logo, header, room footer alignment,
   social icons, payment row, floating social stack.
   These rules are intentionally last so they win the cascade.
============================================================ */

/* ── Logo: bigger + transparent (no white card behind it) ─── */
.site-logo,
.footer-logo,
.mobile-drawer-header { background: transparent; }

/* The logo art has ~12% top padding (the crown), so the visual mass is
   smaller than the bounding box. Bumping height to 96px gives a confident
   presence without overflowing a 100px header. */
.site-logo img {
  height: 96px;
  width: auto;
  max-width: 100%;
  background: transparent;
  /* drop the heavy drop-shadow so the white logo reads cleanly */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
  object-fit: contain;
  display: block;
}

/* Reserve enough room in the header so the logo can't clip */
#masthead .header-inner { min-height: 104px; }
#masthead.scrolled .header-inner { min-height: 72px; }
#masthead.scrolled .site-logo img { height: 64px; }

@media (max-width: 1024px) {
  .site-logo img        { height: 78px; }
  #masthead .header-inner { min-height: 86px; }
  #masthead.scrolled .site-logo img { height: 58px; }
  #masthead.scrolled .header-inner { min-height: 64px; }
}
@media (max-width: 480px) {
  .site-logo img        { height: 64px; }
  #masthead .header-inner { min-height: 72px; }
  #masthead.scrolled .site-logo img { height: 52px; }
  #masthead.scrolled .header-inner { min-height: 60px; }
}

.footer-logo img {
  height: 104px;
  width: auto;
  background: transparent;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  margin-bottom: 12px;
  display: block;
}

.mobile-drawer-logo {
  height: 64px !important;
  width: auto !important;
  background: transparent;
}

/* ── Header: hamburger hidden on desktop, visible on tablet/mobile ── */
/* v1.2: explicit grid with 3 visible items at each breakpoint.
   Source order in header.php: menu-toggle, site-branding, #primary-navigation, .header-actions.
   With one of those four hidden per breakpoint, the remaining 3 auto-flow
   into the 3-column grid in correct order. */

.header-inner {
  display: grid !important;
  align-items: center;
  column-gap: 20px;
}
.header-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }

/* Desktop ≥ 1025px: hide hamburger → grid becomes brand | nav | actions */
@media (min-width: 1025px) {
  .menu-toggle { display: none !important; }
  .header-inner {
    grid-template-columns: auto 1fr auto !important;
  }
  .site-branding { justify-self: start; }

  /* Nav: force-visible, centered horizontally in its (middle) cell */
  #primary-navigation {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: static !important;
    background: transparent !important;
    inset: auto !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
    z-index: auto !important;
    flex-direction: row !important;
  }
  #primary-navigation .desktop-nav-list {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
  }
  #primary-navigation .desktop-nav-list li { list-style: none; margin: 0; }
  #primary-navigation .desktop-nav-list a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  #primary-navigation .desktop-nav-list a:hover,
  #primary-navigation .desktop-nav-list a[aria-current="page"] {
    color: var(--color-gold-light);
    background: rgba(255,255,255,0.05);
  }
}

/* Mobile / tablet ≤ 1024px: hide nav → grid becomes toggle | brand | actions */
@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto !important;
  }
  .menu-toggle { display: flex !important; }
  .site-branding {
    justify-self: center;
    text-align: center;
  }
  .site-branding .site-logo {
    display: inline-flex;
    justify-content: center;
  }
  #primary-navigation { display: none !important; }
}

/* When the page background is light (non-home), the header has .header-solid;
   the nav links need a darker color so they read against the dark blue header. */
.header-solid #primary-navigation .desktop-nav-list a { color: rgba(255,255,255,0.92); }
.header-solid #primary-navigation .desktop-nav-list a:hover,
.header-solid #primary-navigation .desktop-nav-list a[aria-current="page"] {
  color: var(--color-gold-light);
}

/* ── Rooms grid: fix overlapping Book button ─────────────── */
/* The original card footer tried to fit ₹price + Details + Book on one row,
   which overflowed at the 4-up desktop breakpoint and clipped the Book pill.
   Stack rate above buttons so they always fit, and let the button row
   space-evenly across the card width. */
.room-card-footer {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.room-card-footer > div:last-child {
  display: flex !important;
  gap: 8px !important;
  width: 100%;
}
.room-card-footer > div:last-child .btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  padding: 10px 12px;
  white-space: nowrap;
}
.room-card-footer .room-card-rate {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
@media (min-width: 1100px) {
  .room-card-footer {
    flex-direction: row;
    align-items: center;
  }
  .room-card-footer > div:last-child {
    width: auto;
  }
  .room-card-footer > div:last-child .btn {
    flex: 0 0 auto;
  }
}

/* ── Featured room card (Executive): also fix narrow-screen button row ── */
@media (max-width: 520px) {
  .featured-room-card > div:last-child > div:last-child {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .featured-room-card .btn { width: 100%; justify-content: center; }
}

/* ── Footer social icons: proper SVG pills (replaces letter glyphs) ── */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.footer-social-link:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ── Footer payment-methods strip ────────────────────────── */
.footer-payments-wrap {
  background: rgba(0,0,0,0.12);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-payments-label {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-payment-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-payment-icons li {
  width: 52px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-payment-icons svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
}
@media (max-width: 520px) {
  .footer-payments { flex-direction: column; gap: 10px; }
  .footer-payment-icons li { width: 46px; height: 28px; }
}

/* ── v1.3: Floating social stack — unified design ──────────── */
/* All 5 buttons (FB, IG, X, YT, WA) share identical geometry so the
   stack reads as a single cohesive widget rather than a chunky WhatsApp
   button with smaller friends. */
.float-social-stack {
  position: fixed;
  right: 18px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}
.float-social,
.float-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  /* Override older .float-whatsapp positioning so the WhatsApp button
     joins the stack rather than floating below it */
  bottom: auto;
  right: auto;
}
.float-social svg,
.float-whatsapp svg {
  width: 22px;
  height: 22px;
  display: block;
}
.float-social:hover,
.float-whatsapp:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 3px 6px rgba(0,0,0,0.15);
  color: #fff !important;
}
.float-social-fb { background: #1877F2; }
.float-social-ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-social-x  { background: #000000; }
.float-social-yt { background: #FF0000; }
.float-whatsapp  { background: #25D366; }

/* Override the original standalone WhatsApp position — it now sits
   inside (or beside) the stack at the bottom */
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4), 0 2px 4px rgba(0,0,0,0.12);
}

/* Placeholder state (Customizer URL not set yet) */
.float-social.is-placeholder { opacity: 0.55; cursor: default; }
.float-social.is-placeholder:hover { transform: none; box-shadow: 0 4px 12px rgba(0,0,0,0.18); }

/* Mobile: tighter spacing & slightly smaller buttons */
@media (max-width: 600px) {
  .float-social-stack { right: 14px; bottom: 84px; gap: 10px; }
  .float-social,
  .float-whatsapp {
    width: 42px !important;
    height: 42px !important;
  }
  .float-social svg,
  .float-whatsapp svg { width: 20px; height: 20px; }
  .float-whatsapp { right: 14px; bottom: 26px; }
}

/* Print: hide the whole floating widget */
@media print {
  .float-social-stack, .float-whatsapp { display: none !important; }
}

/* ── Underlined email link on contact page ─────────────────── */
.contact-email-link { text-decoration: underline; text-underline-offset: 3px; }
.contact-email-link:hover { color: var(--color-gold-dark); }

/* ── Booking quick-bar: visible validation hint ────────────── */
.quick-booking-fields input,
.quick-booking-fields select { transition: box-shadow 0.2s; }


/* ── v1.2: override header-height var for the taller logo ─────── */
:root {
  --header-height: 104px;
  --header-height-scroll: 72px;
}
@media (max-width: 1024px) {
  :root {
    --header-height: 86px;
    --header-height-scroll: 64px;
  }
}
@media (max-width: 480px) {
  :root {
    --header-height: 72px;
    --header-height-scroll: 60px;
  }
}


/* ── v1.2: Gallery overlay was eating the click event ───────── */
/* The hover overlay sits on top of the image with inset:0 and was
   capturing clicks before they could reach the .gallery-item handler.
   pointer-events:none lets clicks pass through to the parent. */
.gallery-overlay { pointer-events: none; }
.gallery-item    { user-select: none; -webkit-tap-highlight-color: transparent; }


/* ── v1.2: placeholder social icons (Customizer URL not yet set) ── */
.footer-social-link.is-placeholder { opacity: 0.45; cursor: default; }
.footer-social-link.is-placeholder:hover { transform: none; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); }
/* float-social placeholder rule is consolidated in v1.3 block above */


/* ── v1.2: Restaurant section — proper photo slider ─────────── */
.restaurant-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  background: var(--color-gray-100);
  /* Bigger photo presence: keep a comfortable cinematic ratio */
  aspect-ratio: 4 / 3;
  min-height: 380px;
}
@media (min-width: 1100px) {
  .restaurant-slider {
    aspect-ratio: 5 / 4;
    min-height: 460px;
  }
}
@media (max-width: 768px) {
  .restaurant-slider {
    aspect-ratio: 16 / 11;
    min-height: 300px;
  }
}

.restaurant-slider-track {
  position: absolute;
  inset: 0;
}

.restaurant-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease;
  transform: scale(1.02);
}
.restaurant-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.55s ease, transform 5s ease;
}
.restaurant-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 28, 58, 0.55);
  color: #fff;
  font-size: 1.6rem;
  font-family: serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, transform 0.15s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.restaurant-slider-arrow:hover,
.restaurant-slider-arrow:focus-visible {
  background: rgba(15, 28, 58, 0.85);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}
.restaurant-slider-prev { left: 14px; }
.restaurant-slider-next { right: 14px; }
.restaurant-slider-prev::before { content: '‹'; padding-bottom: 4px; }
.restaurant-slider-next::before { content: '›'; padding-bottom: 4px; }

.restaurant-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.restaurant-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.15s, width 0.2s;
}
.restaurant-slider-dot.is-active {
  background: var(--color-gold-light);
  width: 22px;
  border-radius: 5px;
}
.restaurant-slider-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.7);
}


/* ── v1.3: Booking date inputs — full clickable area on mobile ── */
/* iOS Safari only opens the native picker when the small icon/text is
   tapped; the rest of the field looks empty and unresponsive. Force the
   input to fill the wrapper and use a tall tap target everywhere. */
.booking-form-wrap input[type="date"],
.booking-form-wrap input[type="datetime-local"],
.quick-booking-fields input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-primary);
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230f1c3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  /* leave space for our custom calendar icon so text doesn't overlap it */
  padding-right: 44px;
}

/* iOS: hide the native calendar-picker icon (otherwise it sits at the
   right and only that tiny area is clickable) — our pseudo-icon above
   replaces it visually, and we trigger showPicker() via JS for the rest. */
.booking-form-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.quick-booking-fields input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  opacity: 0;
}

.booking-form-wrap input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  font-size: 1rem;
}

/* When empty, give the placeholder a softer color so users see "the field needs a date" */
.booking-form-wrap input[type="date"]:invalid {
  color: var(--color-gray-400);
}

.booking-form-wrap input[type="date"]:focus,
.quick-booking-fields input[type="date"]:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

/* Mobile-specific: bigger date field for thumb-friendly tap targets */
@media (max-width: 768px) {
  .booking-form-wrap input[type="date"] {
    min-height: 56px;
    padding: 14px 48px 14px 18px;
    font-size: 1.05rem;
  }
  .booking-date-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* Mobile: don't let floating social stack sit on top of step-1 inputs */
@media (max-width: 768px) {
  .booking-form-wrap { position: relative; z-index: 2; }
}


/* ── v1.3: Lightbox safety — must be a true-viewport overlay ── */
/* Higher z-index than any header / sticky / WhatsApp button so it
   sits on top of everything regardless of section context. */
.lightbox {
  z-index: 99999 !important;
}
.lightbox.is-open {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  inset: 0 !important;
  position: fixed !important;
}
.lightbox-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lightbox-img {
  /* Make sure the image is fully opaque when shown — earlier code starts
     it at opacity:0 for the fade-in transition; guarantee a solid endpoint
     in case the transition is interrupted. */
  opacity: 1;
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  width: auto;
  height: auto;
  margin: 0 auto;
}
/* Buttons inside the relocated lightbox — make sure they stay clickable */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  z-index: 2;
  pointer-events: auto;
}


/* ============================================================
   v1.4 — QR / UPI PAYMENT SECTION (Step 4 of booking flow)
============================================================ */
.qr-payment-section {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.qr-payment-header {
  text-align: center;
  margin-bottom: 24px;
}
.qr-payment-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin: 0 0 6px;
}
.qr-payment-sub {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.qr-payment-amount {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin: 0 auto 28px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(15,28,58,0.18);
}
.qr-amount-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}
.qr-amount-value {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: -0.01em;
}

.qr-payment-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
  align-items: start;
}
@media (max-width: 768px) {
  .qr-payment-section { padding: 22px 18px; }
  .qr-payment-body { grid-template-columns: 1fr; gap: 24px; }
  .qr-amount-value { font-size: 1.8rem; }
}

.qr-payment-image-wrap {
  text-align: center;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 2px dashed var(--color-gray-200);
}
.qr-payment-image {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 12px;
  border-radius: var(--radius-sm);
  background: #fff;
}
.qr-payment-image-caption {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.qr-payment-image-caption strong {
  color: var(--color-primary-dark);
}

.qr-payment-details { padding: 4px 0; }

.qr-detail-row {
  padding: 14px 16px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.qr-detail-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.qr-detail-value-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-detail-value {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-200);
  flex: 1;
  min-width: 0;
  word-break: break-all;
}
.qr-copy-btn {
  font-size: 0.78rem;
  background: var(--color-primary-dark);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, transform 0.1s;
}
.qr-copy-btn:hover { background: var(--color-primary); }
.qr-copy-btn:active { transform: scale(0.96); }
.qr-copy-btn:disabled { opacity: 0.6; cursor: default; }

.qr-payment-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.85;
}
.qr-payment-steps li { padding: 2px 0; }
.qr-payment-steps strong { color: var(--color-primary-dark); }

.qr-payment-form {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-200);
}
.qr-payment-form .form-group { margin-bottom: 16px; }
.qr-payment-form .form-control {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.form-help-text {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 6px 0 0;
}
.qr-payment-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.86rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.qr-payment-note a { color: var(--color-gold-dark); font-weight: 600; }

/* Step 5 "awaiting" state — gold icon instead of green check */
.confirmation-icon.is-awaiting {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  animation: none;
}

/* Admin badges for new payment statuses */
.ml-badge-payment-awaiting_confirmation {
  background: #fff7e6;
  color: #b86d00;
  border: 1px solid #f0b67f;
}
.ml-badge-payment-rejected {
  background: #ffe6e6;
  color: #a02525;
  border: 1px solid #e89a9a;
}

