/* ==========================================================================
   Shiv Mahima Residency & Homestay - Design System & Stylesheet
   Theme: Midnight Sunset & Warm Amber Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Core Color Palette - Midnight Sunset & Warm Amber */
  --primary: #0f172a;          /* Deep Twilight Midnight Blue */
  --primary-light: #1e293b;    /* Rich Slate Blue */
  --primary-dark: #0a0f1d;     /* Midnight Navy */
  --accent-gold: #f59e0b;      /* Radiant Warm Amber Gold */
  --accent-gold-hover: #d97706;/* Deep Amber Hover */
  --accent-gold-light: #fef3c7;/* Soft Warm Amber Tint */
  --accent-amber-text: #92400e;/* Crisp Rich Amber Text for Badges */
  --accent-teal: #0284c7;     /* Sky Cyan Accent */
  --dark-bg: #0a0f1d;          /* Dark Section Background */
  --card-bg: #ffffff;          /* Clean Card Background */
  --card-bg-subtle: #f8fafc;   /* Subtle Light Slate Background */
  
  /* Text Colors for High Contrast & Legibility */
  --text-main: #0f172a;        /* Deep Crisp Navy Slate for Primary Body/Titles */
  --text-muted: #475569;       /* Medium Slate for Subtitles & Paragraphs */
  --text-light: #f1f5f9;       /* Off-White for Dark Surfaces */
  --text-white: #ffffff;       /* Pure White */
  
  /* Borders & Dividers */
  --border-color: #e2e8f0;
  --border-focus: #3b82f6;
  
  /* Glassmorphism & Shadows */
  --glass-bg: rgba(15, 23, 42, 0.88);
  --glass-card: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.14);
  --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.35);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing & Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Alternative Themes (Royal Emerald & Dark Obsidian)
   ========================================================================== */

[data-theme="emerald"] {
  --primary: #0a261d;
  --primary-light: #134e3a;
  --primary-dark: #05140f;
  --accent-gold: #d4af37;
  --accent-gold-hover: #b59226;
  --accent-gold-light: #fef8e7;
  --accent-amber-text: #856404;
  --card-bg-subtle: #f4f8f6;
  --text-main: #0c1a15;
  --text-muted: #4a5d55;
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);
}

[data-theme="obsidian"] {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-dark: #030712;
  --accent-gold: #fbbf24;
  --accent-gold-hover: #f59e0b;
  --accent-gold-light: rgba(251, 191, 36, 0.15);
  --accent-amber-text: #fbbf24;
  --card-bg: #1e293b;
  --card-bg-subtle: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.7);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--card-bg-subtle);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="obsidian"] .section-alt {
  background-color: #111827;
}

/* Typography Helpers */
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--accent-gold-light);
  color: var(--accent-amber-text);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.35);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.12);
}

.section-title {
  font-size: 2.6rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, var(--accent-gold) 100%);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.28);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

/* Site Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--accent-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: scale(1.08);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  background: linear-gradient(rgba(10, 15, 29, 0.72), rgba(15, 23, 42, 0.86)),
              url('assets/exterior-day.jpg') center/cover no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--card-bg-subtle), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.highlight-text h4 {
  color: #ffffff;
  font-size: 1rem;
}

.highlight-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

/* Quick Features Grid */
.quick-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.4);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

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

/* Photo Section / Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 29, 0.92) 0%, rgba(10, 15, 29, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-tag {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--accent-gold-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 29, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  text-align: center;
}

.lightbox-img-wrapper img {
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close { top: -60px; right: 0; }
.lightbox-nav.prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: -60px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.lightbox-info {
  margin-top: 1.2rem;
}

/* Rooms & Accommodations Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.2rem;
}

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

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.4);
}

.room-image-wrap {
  position: relative;
  height: 310px;
  overflow: hidden;
}

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

.room-image-wrap img.img-focus-bed,
.gallery-item img.img-focus-bed {
  object-position: center center;
}

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

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(15, 23, 42, 0.85);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.room-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, #fbbf24, var(--accent-gold));
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
}

.room-price-tag small {
  font-size: 0.75rem;
  font-weight: 500;
}

.room-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

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

.room-amenities-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.room-amenities-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  background: var(--card-bg-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;

}

.room-amenities-list li i {
  color: var(--accent-gold-hover);
}

.room-card-footer {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}

.room-card-footer .btn {
  flex: 1;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.amenity-card {
  background: var(--card-bg);
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.3);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.amenity-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.amenity-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Location & Contact Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card-box {
  background: var(--card-bg);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-gold-light);
  color: var(--accent-amber-text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.landmark-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.landmark-pill {
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  background: var(--card-bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.landmark-pill i {
  color: var(--accent-gold);
}

.map-container {
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

.map-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.25rem;
  background: var(--accent-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  margin-top: 1rem;
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}

.map-notice i {
  color: var(--accent-amber-text);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-notice code {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-main);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
}

/* Guest Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--card-bg);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  color: var(--text-main);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviewer-info h5 {
  font-size: 1rem;
  color: var(--text-main);
}

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

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

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--accent-gold-hover);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Site Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sticky Mobile Contact Bar */
.sticky-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 15, 29, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1rem;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 0.8rem;
}

.sticky-contact-bar .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

/* Responsive Media Queries - Mobile Optimization */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .location-grid { grid-template-columns: 1fr; }
  .map-container { min-height: 350px; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 29, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    gap: 1.2rem;
    align-items: flex-start;
  }

  .nav-menu.active .nav-link {
    font-size: 1.1rem;
    padding: 0.4rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero-section { min-height: 85vh; padding: 6.5rem 0 3rem; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; }
  .hero-description { font-size: 1.05rem; margin-bottom: 1.8rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .quick-features-grid { margin-top: 1rem; grid-template-columns: 1fr; gap: 1.2rem; }
  .rooms-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .room-image-wrap { height: 220px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .gallery-item { height: 190px; }
  .gallery-overlay { padding: 0.8rem; }
  .gallery-overlay h3 { font-size: 1rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  
  .sticky-contact-bar { display: flex; }
  body { padding-bottom: 75px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  
  .lightbox-content { width: 95%; }
  .lightbox-nav.prev { left: 5px; width: 40px; height: 40px; }
  .lightbox-nav.next { right: 5px; width: 40px; height: 40px; }
  .lightbox-close { top: -50px; right: 5px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .brand-name { font-size: 1.15rem; }
  .brand-tagline { font-size: 0.65rem; }
  .brand-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .hero-title { font-size: 1.85rem; }
  .hero-badge { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .section-title { font-size: 1.85rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  
  .hero-highlights { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .gallery-item { height: 155px; border-radius: var(--radius-sm); }
  .gallery-overlay { padding: 0.6rem; }
  .gallery-overlay h3 { font-size: 0.85rem; margin-bottom: 0.1rem; }
  .gallery-overlay p { display: none; }
  .gallery-tag { font-size: 0.6rem; padding: 0.12rem 0.45rem; margin-bottom: 0.2rem; }
  .room-image-wrap { height: 200px; }
  
  .contact-card-box { padding: 1.4rem 1.1rem; }
  .room-body { padding: 1.4rem; }
  
  .sticky-contact-bar .btn {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
}