/* ==========================================================================
   RADHA COTTAGE HERITAGE RESORT - LUXURY STYLESHEET
   125-Year Colonial Forest Retreat, Matheran
   ========================================================================== */

:root {
  /* Colors */
  --c-forest-950: #0a160e;
  --c-forest-900: #112418;
  --c-forest-800: #1b3524;
  --c-forest-700: #274b34;
  --c-forest-600: #366547;
  --c-forest-100: #e8f0eb;
  --c-forest-50:  #f2f7f4;

  --c-gold-600:   #a8843c;
  --c-gold-500:   #c5a059;
  --c-gold-400:   #dfba73;
  --c-gold-300:   #edd298;
  --c-gold-100:   #faf3e4;

  --c-cream-50:   #fdfcf9;
  --c-cream-100:  #f8f4ec;
  --c-cream-200:  #eee7d9;
  --c-cream-300:  #ded4c1;

  --c-wood-900:   #25160e;
  --c-wood-800:   #3d2518;
  --c-wood-700:   #5a3724;

  --c-charcoal:   #1a1d1b;
  --c-text-muted: #5e6862;
  --c-text-light: #f5f5f3;
  
  --c-glass-dark: rgba(10, 22, 14, 0.85);
  --c-glass-light: rgba(255, 255, 255, 0.92);
  --c-glass-gold: rgba(197, 160, 89, 0.15);
  --c-border-gold: rgba(197, 160, 89, 0.35);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 22, 14, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 22, 14, 0.15);
  --shadow-glow: 0 0 35px rgba(197, 160, 89, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::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-sans);
  background-color: var(--c-cream-50);
  color: var(--c-charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 1000px;
}

.container-wide {
  max-width: 1440px;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--c-forest-950);
  line-height: 1.25;
  font-weight: 600;
}

.font-display { font-family: var(--font-display); }
.font-editorial { font-family: var(--font-editorial); }
.font-sans { font-family: var(--font-sans); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold-600);
  margin-bottom: 0.75rem;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-gold-500);
}

.eyebrow-light {
  color: var(--c-gold-300);
}
.eyebrow-light::before, .eyebrow-light::after {
  background: var(--c-gold-400);
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--c-gold-500); }
.text-light { color: var(--c-text-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--c-gold-400), var(--c-gold-600));
  color: #fff;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--c-gold-300), var(--c-gold-500));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.5);
  color: #fff;
}

.btn-forest {
  background: var(--c-forest-900);
  color: var(--c-cream-50);
  border: 1px solid var(--c-forest-700);
}

.btn-forest:hover {
  background: var(--c-forest-800);
  color: var(--c-gold-300);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--c-gold-500);
  border-color: var(--c-gold-500);
}

.btn-outline-gold:hover {
  background: var(--c-gold-500);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background: #fff;
  color: var(--c-forest-950);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.topbar {
  background: var(--c-forest-950);
  color: var(--c-cream-200);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item i {
  color: var(--c-gold-400);
}

.topbar-badge {
  background: rgba(197, 160, 89, 0.2);
  color: var(--c-gold-300);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--c-glass-dark);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.15rem 0;
  background: rgba(10, 22, 14, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-crest {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-400), var(--c-gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-forest-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream-100);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--c-gold-400);
  transition: width var(--transition-fast);
}

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

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

/* Elegant Dropdown for Secondary Links */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--c-forest-950);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--radius-sm);
  min-width: 190px;
  padding: 0.65rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  list-style: none;
  z-index: 1100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--c-cream-200);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.nav-dropdown-link:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--c-gold-300);
  padding-left: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--c-cream-100);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-call-btn i {
  color: var(--c-gold-400);
}

.nav-call-btn:hover {
  color: var(--c-gold-300);
  border-color: var(--c-gold-500);
  background: rgba(197, 160, 89, 0.15);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-forest-950);
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 7rem;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKenBurns 20s infinite alternate ease-in-out;
  filter: brightness(0.72) contrast(1.1);
}

@keyframes heroKenBurns {
  from { transform: scale(1.03) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 22, 14, 0.4) 0%, rgba(10, 22, 14, 0.85) 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid var(--c-border-gold);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-300);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  display: block;
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  font-size: 0.85em;
  color: var(--c-gold-300);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--c-cream-100);
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-highlight-item {
  text-align: center;
}

.hero-highlight-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-gold-400);
  display: block;
}

.hero-highlight-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-cream-200);
}

/* Quick Booking Bar */
.booking-bar-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -3.5rem;
  margin-bottom: 4rem;
}

.booking-bar {
  background: var(--c-glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

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

.booking-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-forest-800);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.booking-label i {
  color: var(--c-gold-600);
}

.booking-input, .booking-select {
  border: 1px solid var(--c-cream-300);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  background: #fff;
  color: var(--c-charcoal);
  outline: none;
  transition: border-color var(--transition-fast);
}

.booking-input:focus, .booking-select:focus {
  border-color: var(--c-gold-500);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* ==========================================================================
   HERITAGE & ABOUT STORY
   ========================================================================== */

.section-padding {
  padding: 6rem 0;
}

.bg-cream {
  background-color: var(--c-cream-100);
}

.bg-forest {
  background-color: var(--c-forest-900);
  color: #fff;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.heritage-images {
  position: relative;
}

.heritage-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.heritage-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.heritage-img-main:hover img {
  transform: scale(1.03);
}

.heritage-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--c-forest-950);
  border: 2px solid var(--c-gold-500);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 180px;
}

.heritage-badge-year {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--c-gold-400);
  line-height: 1;
}

.heritage-badge-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-cream-200);
  margin-top: 0.35rem;
}

.heritage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.heritage-feat-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-gold-500);
  box-shadow: var(--shadow-sm);
}

.heritage-feat-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.heritage-feat-card p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   ROOMS & SUITES SECTION - MULTI-IMAGE CAROUSEL
   ========================================================================== */

.rooms-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3.5rem;
}

.filter-btn {
  background: #fff;
  border: 1px solid var(--c-cream-300);
  color: var(--c-forest-900);
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--c-forest-900);
  border-color: var(--c-forest-900);
  color: var(--c-gold-300);
  box-shadow: var(--shadow-sm);
}

.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Luxury Room Card */
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-cream-200);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.room-card.reverse {
  grid-template-columns: 1fr 1.2fr;
}
.room-card.reverse .room-slider-wrapper {
  order: 2;
}
.room-card.reverse .room-content {
  order: 1;
}

/* Room Multi-Image Slider */
.room-slider-wrapper {
  position: relative;
  background: var(--c-forest-950);
  min-height: 420px;
  overflow: hidden;
}

.room-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.room-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

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

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10, 22, 14, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--c-gold-500);
  color: #fff;
  border-color: var(--c-gold-500);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

/* Image Index Badge */
.slider-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: rgba(10, 22, 14, 0.75);
  backdrop-filter: blur(8px);
  color: var(--c-cream-100);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.slider-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: linear-gradient(135deg, var(--c-gold-500), var(--c-gold-600));
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* MMT-style All Photos Pill Button */
.mmt-photos-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 12;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-forest-950);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.mmt-photos-pill:hover {
  background: var(--c-gold-500);
  color: #fff;
  border-color: var(--c-gold-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Slider Thumbnail Dots */
.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  background: rgba(10, 22, 14, 0.6);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
}

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

.slider-dot.active {
  background: var(--c-gold-400);
  width: 20px;
  border-radius: 4px;
}

/* Room Content */
.room-content {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-meta-tags {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.room-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.room-meta-item i {
  color: var(--c-gold-600);
}

.room-title {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  color: var(--c-forest-950);
}

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

/* Room Amenities Pills */
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.amenity-tag {
  background: var(--c-forest-50);
  border: 1px solid var(--c-forest-100);
  color: var(--c-forest-800);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Room Pricing & Action */
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-cream-200);
  padding-top: 1.5rem;
  margin-top: auto;
  gap: 1rem;
}

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

.price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-forest-900);
}

.price-amount span {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--c-text-muted);
}

.room-actions {
  display: flex;
  gap: 0.5rem;
}

/* ==========================================================================
   EXPERIENCES & AMENITIES
   ========================================================================== */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.amenity-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
  border: 1px solid var(--c-cream-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

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

.amenity-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--c-forest-50);
  color: var(--c-gold-600);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-fast);
}

.amenity-card:hover .amenity-icon-wrapper {
  background: var(--c-forest-900);
  color: var(--c-gold-300);
  transform: scale(1.1);
}

.amenity-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.amenity-card p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   DINING & FOREST RESTAURANT
   ========================================================================== */

.dining-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dining-content {
  color: #fff;
}

.dining-content .section-heading {
  color: #fff;
}

.dining-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dining-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dining-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.2);
  color: var(--c-gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dining-item-text h4 {
  color: var(--c-cream-100);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.dining-item-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.dining-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dining-gallery img {
  border-radius: var(--radius-md);
  height: 220px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth);
}

.dining-gallery img:hover {
  transform: scale(1.04);
}

/* ==========================================================================
   GALLERY SHOWCASE (LIGHTBOX READY)
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

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

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 532.5px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 22, 14, 0.85) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: opacity var(--transition-smooth);
}

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

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

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.gallery-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--c-gold-300);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   TESTIMONIALS / REVIEWS
   ========================================================================== */

.reviews-slider-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-cream-200);
  text-align: center;
}

.review-stars {
  color: #e6a100;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.review-quote {
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-forest-950);
  margin-bottom: 2rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-info {
  text-align: left;
}

.review-author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-forest-900);
}

.review-author-stay {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}

/* Ratings Badge Card */
.ratings-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.rating-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-forest-50);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-forest-100);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-forest-900);
}

.rating-source {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}

/* ==========================================================================
   MATHERAN LOCATION & HOW TO REACH GUIDE
   ========================================================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.distance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.distance-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-cream-200);
}

.dist-city {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-forest-900);
}

.dist-value {
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-gold-600);
  margin: 0.25rem 0;
}

.dist-detail {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 2px solid var(--c-cream-300);
}

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

/* ==========================================================================
   FAQ SECTION (ACCORDION WITH SCHEMA)
   ========================================================================== */

.faq-wrapper {
  max-width: 860px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--c-cream-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--c-forest-950);
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-600);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--c-forest-900);
  color: var(--c-gold-300);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.5rem;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
}

/* ==========================================================================
   CTA STRIP / DIRECT BOOKING PERKS
   ========================================================================== */

.perks-strip {
  background: linear-gradient(135deg, var(--c-forest-950), var(--c-forest-900));
  border-top: 1px solid var(--c-border-gold);
  border-bottom: 1px solid var(--c-border-gold);
  color: #fff;
  padding: 2.5rem 0;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.perk-item i {
  font-size: 1.75rem;
  color: var(--c-gold-400);
  margin-bottom: 0.5rem;
}

.perk-item h4 {
  color: var(--c-cream-50);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.perk-item p {
  color: var(--c-cream-200);
  font-size: 0.8125rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--c-forest-950);
  color: var(--c-cream-200);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  font-size: 0.9375rem;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-gold-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--c-gold-500);
  margin-top: 0.5rem;
}

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

.footer-link {
  color: var(--c-cream-200);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--c-gold-400);
  padding-left: 4px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item i {
  color: var(--c-gold-400);
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream-100);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--c-gold-500);
  color: #fff;
  transform: translateY(-2px);
}

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

/* ==========================================================================
   MODAL & FLOATING WIDGETS
   ========================================================================== */

/* WhatsApp & Quick Call Floating Buttons */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.float-whatsapp {
  background: #25d366;
}

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

.float-call {
  background: var(--c-forest-900);
  border: 2px solid var(--c-gold-400);
}

.float-call:hover {
  transform: scale(1.1);
  background: var(--c-forest-800);
}

/* Booking Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  padding: 1.5rem;
}

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

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--c-cream-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-forest-900);
  font-size: 1.25rem;
}

.modal-close:hover {
  background: var(--c-forest-900);
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

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

.lightbox-modal img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--c-forest-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-cream-300);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--c-gold-500);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1199px) {
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .booking-bar {
    grid-template-columns: repeat(2, 1fr) auto;
  }
  .room-card, .room-card.reverse {
    grid-template-columns: 1fr;
  }
  .room-card.reverse .room-slider-wrapper, .room-card.reverse .room-content {
    order: unset;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
  .nav-call-btn {
    display: none !important;
  }
  .brand-logo img.site-logo-img {
    height: 42px !important;
    max-height: 44px !important;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-actions .btn-sm {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: var(--c-gold-300);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1600;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--c-forest-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right var(--transition-smooth);
    z-index: 1500;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.5rem;
  }
  .heritage-grid, .dining-wrapper, .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .booking-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .room-slider-wrapper {
    min-height: 280px;
  }
  .room-slides {
    min-height: 280px;
  }
  .room-content {
    padding: 1.75rem 1.25rem;
  }
  .room-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 2rem 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   ANDROID & MULTI-SCREEN USABILITY OPTIMIZATIONS
   ========================================================================== */

/* Universal Responsive Images & Media Protection */
img, video, picture, svg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Touch Target Accessibility Rules (Material & iOS Standards) */
button, .btn, a.btn, input, select, textarea, .nav-link, .float-btn, .social-link {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Android & Small Screen Breakpoints (<576px) */
@media (max-width: 576px) {
  html, body {
    overflow-x: hidden;
  }

  .site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-logo img.site-logo-img {
    height: 46px;
    max-height: 48px;
  }

  .nav-call-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .room-card {
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }

  .room-slider-wrapper, .room-slides {
    min-height: 240px;
    max-height: 280px;
  }

  .modal-box {
    width: 94%;
    max-height: 90vh;
    padding: 1.5rem 1.25rem;
    overflow-y: auto;
    border-radius: 16px;
  }

  .floating-actions {
    bottom: 1.25rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  }
}

/* Ultra-Compact Android Screens (<380px, e.g. Galaxy A series / small devices) */
@media (max-width: 380px) {
  .nav-actions .btn-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }

  .nav-call-btn {
    display: none; /* Keep header clean on ultra-small screens; call float button handles calls */
  }
}

