/* ============================================================
   GLOBAL RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   BASE BODY
   ============================================================ */
body {
  font-family: 'Georgia', serif;
  background-color: #fefcf7;
  color: #0f2e24;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #f9dd90 !important;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

::selection {
  background-color: #f9dd90;
  color: #0f2e24;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.rooms-section {
  /* wraps the entire rooms / carousel area */
}

.attractions-section {
  /* wraps the attractions / restaurant toggle area */
}

.gallery-section {
  background-color: #faf8f2;
  color: #0f2e24;
  /* wraps the scroll-collage gallery + lightbox */
}


/* ============================================================
   HEADER SECTION
   ============================================================ */

/* --- Global Overlay --- */
.global-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
}

/* --- Mobile Drawer --- */
.mobile-drawer-container {
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mobile-drawer-container.pointer-none { pointer-events: none; }
.mobile-drawer-container.pointer-auto { pointer-events: auto; }

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,46,36,0.6);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}
.drawer-backdrop.opacity-0   { opacity: 0; }
.drawer-backdrop.opacity-100 { opacity: 1; }

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #fefcf7;
  box-shadow: -4px 0 20px rgba(15,46,36,0.2);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) { .drawer-panel { width: 320px; } }

.drawer-panel.translate-x-0    { transform: translateX(0); }
.drawer-panel.translate-x-full { transform: translateX(100%); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e8ecea;
  background: #f5f3ed;
}
.drawer-header span {
  font-weight: bold;
  color: #206c56;
  letter-spacing: 0.15em;
  font-size: 15px;
  font-family: 'Playfair Display', serif;
}

.drawer-close-btn {
  padding: 6px;
  color: #5a7a70;
  border-radius: 4px;
  transition: all 0.2s;
}
.drawer-close-btn:hover { color: #c9a84c; background: #e8ecea; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 8px 0;
}
.drawer-nav a {
  padding: 16px 24px;
  border-bottom: 1px solid #f5f7f6;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  font-family: 'Georgia', serif;
  color: #206c56 !important;
}
.drawer-nav a.active          { color: #c9a84c !important; background: #fffdf5; }
.drawer-nav a:not(.active)    { color: #3d5a50; }
.drawer-nav a:not(.active):hover { background: #f5f7f6; color: #206c56; }
.drawer-nav a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  margin-right: 12px;
}

/* --- Popup Modal --- */
.popup-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  background: rgba(15,46,36,0.5);
  backdrop-filter: blur(4px);
}
.popup-content {
  position: relative;
  background: #fefcf7;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(15,46,36,0.25);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.2s ease-out;
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95) translateY(-10%); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #7a9e8e;
  padding: 4px;
  transition: color 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
}
.popup-close:hover { color: #1a3c32; }

.popup-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(249,221,144,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.popup-icon-wrap svg { color: #c9a84c; width: 24px; height: 24px; }

.popup-title {
  font-size: 20px;
  font-weight: bold;
  color: #1a3c32;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.popup-text {
  color: #3d5a50;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
}
.popup-ok-btn {
  width: 100%;
  background: #c9a84c;
  color: #fefcf7;
  padding: 10px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Georgia', serif;
}
.popup-ok-btn:hover { background: #b8983e; }

/* --- Main Header --- */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
  font-family: 'Georgia', serif;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.main-header.scrolled      { background: #fefcf7; box-shadow: 0 4px 10px rgba(15,46,36,0.1); }
.main-header:not(.scrolled) { background: transparent; box-shadow: 0 4px 10px rgba(15,46,36,0.1); }

/* Header backgrounds */
.header-bg-desktop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: none;
  transition: opacity 0.3s;
}
@media (min-width: 1280px) { .header-bg-desktop { display: block; } }

.header-bg-desktop.opacity-0   { opacity: 0; }
.header-bg-desktop.opacity-100 { opacity: 1; }

.header-bg-top    { height: 95px; width: 100%; background: #206c56; position: relative; overflow: hidden; }
.header-bg-bottom { height: 45px; width: 100%; background: #1a5c48; }

.header-bg-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: #206c56;
  transition: opacity 0.3s;
}
@media (min-width: 1280px) { .header-bg-mobile { display: none; } }
.header-bg-mobile.opacity-0   { opacity: 0; }
.header-bg-mobile.opacity-100 { opacity: 1; }

/* Header inner */
.header-inner {
  position: relative;
  z-index: 10;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
  transition: all 0.3s;
}
.main-header.scrolled .header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.main-header:not(.scrolled) .header-inner {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 1280px) {
  .main-header:not(.scrolled) .header-inner {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
    height: 140px;
  }
}

/* Logo */
.logo-section {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.main-header.scrolled .logo-section    { width: 100px; justify-content: flex-start; }
.main-header:not(.scrolled) .logo-section { margin-bottom: 16px; justify-content: center; }
@media (min-width: 1280px) {
  /* ── FIX: Tightened from 160px → 145px to reclaim left-side space ── */
  .main-header:not(.scrolled) .logo-section { width: 145px; justify-content: flex-start; margin-bottom: 0; }
}

.logo-box {
  width: 140px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  z-index: 20;
  transition: all 0.3s;
}
.main-header.scrolled .logo-box     { transform: scale(0.5); transform-origin: left; background: transparent; }
.main-header:not(.scrolled) .logo-box {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(15,46,36,0.1);
}
@media (min-width: 1280px) {
  .main-header:not(.scrolled) .logo-box { position: absolute; top: 8px; left: 0; }
}

.logo-tm { width: 100%; display: flex; justify-content: flex-end; font-size: 7px; color: #5a7a70; font-weight: bold; letter-spacing: -0.02em; }
.logo-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; margin-top: -8px; }
.logo-circle-wrap { position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.logo-circle-1 { position: absolute; inset: 0; border-radius: 50%; border: 6px solid; border-color: #c9a84c #c9a84c #c9a84c transparent; transform: rotate(45deg); }
.logo-circle-2 { position: absolute; inset: 0; border-radius: 50%; border: 6px solid transparent; border-bottom-color: #f9dd90; transform: rotate(-15deg); }
.logo-q { color: #c9a84c; font-size: 48px; font-family: 'Playfair Display', serif; padding-right: 4px; padding-bottom: 4px; z-index: 10; text-shadow: 0px 1px 1px rgba(15,46,36,0.1); }
.logo-swoosh { position: absolute; bottom: -4px; right: -8px; width: 54px; height: 24px; }
.logo-text { text-align: center; margin-top: 12px; }
.logo-quality { color: #206c56; font-weight: bold; font-size: 22px; line-height: 1; letter-spacing: -0.02em; font-family: 'Playfair Display', serif; }
.logo-inn { color: #206c56; font-size: 9.5px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 3px; white-space: nowrap; font-family: 'Playfair Display', serif; }

/* Hamburger */
.hamburger-btn {
  z-index: 30;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
@media (min-width: 1280px) { .hamburger-btn { display: none; } }

.main-header.scrolled .hamburger-btn         { color: #1a3c32; background: #f5f3ed; margin-left: auto; }
.main-header.scrolled .hamburger-btn:hover   { background: #e8ecea; color: #c9a84c; }
.main-header:not(.scrolled) .hamburger-btn   { position: absolute; top: 16px; right: 16px; color: #fefcf7; background: rgba(15,46,36,0.2); }
.main-header:not(.scrolled) .hamburger-btn:hover { background: rgba(15,46,36,0.3); }

/* Right content */
.right-content { flex: 1; display: flex; flex-direction: column; transition: all 0.3s; }
.main-header.scrolled .right-content { display: none; }
@media (min-width: 1280px) {
  .main-header.scrolled .right-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    padding-right: 16px;
  }
}

/* Top bar */
.top-bar { display: flex; flex-direction: column; width: 100%; transition: all 0.3s; }
.main-header.scrolled .top-bar { display: none; }
@media (min-width: 1280px) {
  .main-header:not(.scrolled) .top-bar { flex-direction: row; align-items: center; justify-content: space-between; height: 95px; }
}

.hotel-info { display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fefcf7; gap: 6px; flex-shrink: 0; margin-bottom: 16px; }
@media (min-width: 1280px) { .hotel-info { align-items: flex-start; padding-right: 16px; margin-top: 8px; margin-bottom: 0; } }

.hotel-title { font-size: 20px; font-weight: normal; letter-spacing: 0.02em; text-align: center; font-family: 'Playfair Display', serif; }
@media (min-width: 640px)  { .hotel-title { font-size: 22px; } }
@media (min-width: 1024px) { .hotel-title { font-size: 26px; } }
@media (min-width: 1280px) { .hotel-title { font-size: 22px; text-align: left; } }

.hotel-phones { font-size: 13px; color: #e0e8e5; font-weight: normal; letter-spacing: 0.03em; text-align: center; font-family: 'Georgia', serif; }
@media (min-width: 640px)  { .hotel-phones { font-size: 14px; } }
@media (min-width: 1280px) { .hotel-phones { text-align: left; } }
.hotel-phones a:hover { color: #fefcf7; }

.phone-sep   { display: none; }
@media (min-width: 640px) { .phone-sep { display: inline; margin: 0 6px; } }
.phone-break { display: block; }
@media (min-width: 640px) { .phone-break { display: none; } }

/* Booking area */
.booking-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1280px) {
  .booking-area { align-items: flex-start; justify-content: center; padding-top: 8px; width: auto; flex-shrink: 0; }
}

.booking-label { color: #fefcf7; font-size: 13px; margin-bottom: 6px; font-weight: normal; letter-spacing: 0.03em; font-family: 'Georgia', serif; }
@media (min-width: 1280px) { .booking-label { padding-left: 2px; } }

.booking-form { display: flex; flex-direction: column; gap: 8px; width: 100%; }
@media (min-width: 640px)  { .booking-form { flex-direction: row; flex-wrap: wrap; justify-content: center; } }
/* ── FIX: gap reduced 6px → 4px to recover space for Book Now button ── */
@media (min-width: 1280px) { .booking-form { flex-wrap: nowrap; gap: 4px; justify-content: flex-start; width: auto; } }

/* Date input */
.date-input-wrap { position: relative; width: 100%; }
/* ── FIX: width reduced 130px → 116px so Book Now fits without overflow ── */
@media (min-width: 1280px) { .date-input-wrap { width: 116px; } }

.date-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid #f9dd90;
  height: 36px;
  padding: 0 8px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  position: relative;
}
.date-input:hover { background: rgba(15,46,36,0.1); }
.date-input span { color: #fefcf7; font-size: 12.5px; text-transform: uppercase; font-weight: normal; letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; pointer-events: none; user-select: none; font-family: 'Georgia', serif; }
.date-input svg  { color: #fefcf7; width: 16px; height: 16px; opacity: 0.9; flex-shrink: 0; margin-left: 8px; pointer-events: none; }
.date-input-border { position: absolute; inset: 0; border: 1px solid transparent; transition: border-color 0.2s; pointer-events: none; }
@media (min-width: 1280px) { .date-input-wrap:hover .date-input-border { border-color: rgba(254,252,247,0.2); } }

/* Calendar */
.calendar-ui {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  background: #fefcf7;
  color: #0f2e24;
  box-shadow: 0 10px 40px rgba(15,46,36,0.2);
  border-radius: 4px;
  padding: 12px;
  z-index: 60;
  border: 1px solid #e8ecea;
  cursor: default;
  animation: calendarSlide 0.2s ease-out;
}
@keyframes calendarSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calendar-header button { padding: 4px; border-radius: 4px; color: #5a7a70; transition: background 0.2s; }
.calendar-header button:hover { background: #f5f7f6; }
.calendar-header span { font-weight: bold; font-size: 14px; color: #1a3c32; letter-spacing: 0.03em; font-family: 'Playfair Display', serif; }
.calendar-days-header { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; font-size: 11px; font-weight: bold; color: #7a9e8e; margin-bottom: 8px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; font-size: 14px; color: #2a4d40; }
.calendar-day { display: flex; align-items: center; justify-content: center; height: 32px; width: 32px; margin: 0 auto; border-radius: 50%; cursor: pointer; transition: all 0.2s; font-family: 'Georgia', serif; }
.calendar-day:hover                 { background: #f9dd90; color: #0f2e24; }
.calendar-day.selected              { background: #c9a84c; color: #fefcf7; font-weight: bold; box-shadow: 0 2px 4px rgba(15,46,36,0.1); }
.calendar-day.selected:hover        { background: #c9a84c; }
.calendar-day.today                 { border: 1px solid #c9a84c; color: #c9a84c; font-weight: bold; }
.calendar-day.empty                 { cursor: default; }

/* Select inputs */
.select-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid #f9dd90;
  height: 36px;
  padding: 0 8px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.select-input-wrap:hover { background: rgba(15,46,36,0.1); }
/* ── FIX: width reduced 110px → 95px to help all items fit on one row ── */
@media (min-width: 1280px) { .select-input-wrap.w-110 { width: 95px; } }
.select-input-wrap span   { color: #fefcf7; font-size: 12.5px; text-transform: uppercase; font-weight: normal; letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; pointer-events: none; user-select: none; font-family: 'Georgia', serif; }
.select-input-wrap svg    { color: #fefcf7; width: 16px; height: 16px; opacity: 0.9; flex-shrink: 0; margin-left: 8px; pointer-events: none; }
.select-input-wrap select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 10; appearance: none; display: block; margin: 0; padding: 0; border: none; }

/* Book Now */
.book-now-btn {
  background: #c9a84c;
  color: #fefcf7;
  font-weight: bold;
  font-size: 15.5px;
  height: 36px;
  padding: 0 20px;
  transition: background 0.2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  font-family: 'Georgia', serif;
  border: none;
  cursor: pointer;
}
.book-now-btn:hover { background: #b8983e; }
@media (min-width: 640px)  { .book-now-btn { width: auto; } }
/* ── FIX: width reduced 125px → 108px, padding tightened to keep button fully visible ── */
@media (min-width: 1280px) { .book-now-btn { width: 108px; padding: 0 10px; font-size: 14px; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-section { 
  display: none; 
  align-items: center; 
  width: 100%; 
  transition: all 0.3s; 
}
@media (min-width: 1280px) { .nav-section { display: flex; } }

.nav-bar { 
  display: flex; 
  align-items: center; 
}

/* Base style for navigation links */
.nav-item {
  display: inline-block;
  padding: 0 14px;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: 'Georgia', serif;
}

/* === Styles for NON-SCROLLED header (Dark Background) === */
.main-header:not(.scrolled) .nav-item {
  color: white;
}
.main-header:not(.scrolled) .nav-item:hover {
  background: rgba(254, 252, 247, 0.1);
}
.main-header:not(.scrolled) .nav-item.active {
  color: #f9dd90;
  background: rgba(254, 252, 247, 0.1);
}

/* === Styles for SCROLLED header (Light Background) === */
.main-header.scrolled .nav-item {
  color: #206c56 !important;
}
.main-header.scrolled .nav-item:hover {
  background: #f5f3ed;
  color: white;
}
.main-header.scrolled .nav-item.active {
  color: #f9dd90 !important;
  background: #1a3c32;
}

/* ============================================================
   SCROLLED DESKTOP — Logo Centred + Nav Split Left / Right
   Only affects min-width: 1280px  |  Responsive untouched
   ============================================================ */
@media (min-width: 1280px) {

  /* 1. Make header-inner a relative flex container (logo will be absolute) */
  .main-header.scrolled .header-inner {
    position: relative;
    justify-content: flex-start;
  }

  /* 2. Pull logo out of flow and pin it to the exact horizontal centre */
  .main-header.scrolled .logo-section {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    justify-content: center;
  }

  /* 3. Change transform-origin to centre so scaled logo sits symmetrically */
  .main-header.scrolled .logo-box {
    transform: scale(0.5);
    transform-origin: center center;
    background: transparent;
  }

  /* 4. right-content stretches full width to carry both nav halves */
  .main-header.scrolled .right-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-right: 0;
  }

  /* 5. nav-section fills the full right-content width */
  .main-header.scrolled .nav-section {
    display: flex;
    width: 100%;
    align-items: center;
  }

  /* 6. nav-bar stretches full width */
  .main-header.scrolled .nav-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /*
   * 7. Split nav around the centred logo:
   *    items 1-4 sit on the LEFT naturally,
   *    item 5 gets margin-left:auto which pushes
   *    items 5-8 flush to the RIGHT.
   *    The absolutely-centred logo floats in the gap.
   */
  .main-header.scrolled .nav-item:nth-child(5) {
    margin-left: auto;
  }
}


.logo-img {
  max-width: 120px; /* Adjust the size as needed */
  height: auto;
  display: block;
}

/* ============================================================
   Slider SECTION - Premium Ancient Theme
   ============================================================ */

#slider-section {
    width: 100%;
    min-height: 100vh;
    background: #1a1a1a;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #1a1a1a;
}

.slider-container .slides { position: absolute; inset: 0; z-index: 1; }
.slider-container .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
.slider-container .slide.active { opacity: 1; transform: scale(1); }
.slider-container .overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); z-index: 3; }

.slider-container .content {
    position: relative; z-index: 3; display: flex;
    flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    height: 100%; padding: 2rem;
    animation: fadeInContent 1s ease-in-out;
}
@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-container .subtitle {
    font-family: 'Georgia', serif; /* Paragraph Font */
    font-size: 0.95rem;
    font-style: italic; /* Enhances premium, ancient theme vibes */
    color: #f9dd90; /* Gold */
    letter-spacing: 2px; 
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Subtle shading */
}

.slider-container .title {
    font-family: 'Playfair Display', serif; /* Title Font */
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7); /* Deep Premium Shadow */
}

.slider-container .separator {
    width: 150px; margin: 2rem 0; display: flex;
    align-items: center; justify-content: center;
}

/* Premium shading using RGB equivalent of the Gold colour #f9dd90 */
.slider-container .separator::before,
.slider-container .separator::after { content: ''; flex: 1; height: 1px; background: rgba(249, 221, 144, 0.5); }
.slider-container .diamond {
    width: 16px; height: 16px; border: 1px solid #f9dd90; /* Gold */
    transform: rotate(45deg); flex-shrink: 0; margin: 0 15px;
    box-shadow: 0 0 5px rgba(249, 221, 144, 0.3); /* Subtle gold glow shading */
}

.slider-container .cta-button {
    font-family: 'Georgia', serif; /* Paragraph Font */
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 7px;
    letter-spacing: 2px; 
    color: #f9dd90; 
    background: #206c56; /* Deep Rich Forest/Emerald Green */
    border: 1px solid rgba(249, 221, 144, 0.8); 
    padding: 0.8rem 2rem;
    text-transform: uppercase; 
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(32, 108, 86, 0.4); /* Premium Green shadow shading */
}
.slider-container .cta-button:hover { 
    background: #f9dd90; 
    color: #206c56; 
    box-shadow: 0 4px 20px rgba(249, 221, 144, 0.5); /* Illuminated glow on hover */
}
.slider-container .cta-button::after {
    content: ''; position: absolute; inset: 4px;
    border: 1px dotted rgba(249, 221, 144, 0.6); pointer-events: none;
    transition: all 0.3s ease;
}
.slider-container .cta-button:hover::after {
    border-color: rgba(32, 108, 86, 0.4); /* Switches dotted inner color when hovered */
}

.slider-container .navigation {
    position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
    display: flex; justify-content: space-between; z-index: 4; pointer-events: none;
}

.slider-container .nav-wrapper {
    width: 110px; height: 180px; display: flex; align-items: center;
    pointer-events: all; position: relative;
}
.slider-container .nav-wrapper::before {
    content: ''; position: absolute; top: 0; height: 100%;
    width: calc(100% - 35px); background-color: #f9dd90; /* Deep Premium Sand/Gold Backplate */
}
.slider-container .prev-wrapper { justify-content: flex-end; }
.slider-container .prev-wrapper::before {
    left: 0; clip-path: path('M50 0 H0 V180 H50 C 90 140, 90 120, 50 90 C 90 60, 90 40, 50 0 Z');
}
.slider-container .next-wrapper { justify-content: flex-start; }
.slider-container .next-wrapper::before {
    right: 0; clip-path: path('M25 0 H75 V180 H25 C -15 140, -15 120, 25 90 C -15 60, -15 40, 25 0 Z');
}

.slider-container .nav-btn {
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; 
    background-color: #1a1a1a; /* Elegant Dark inner to pop up the text */
    color: #f9dd90; /* Arrow symbol colour */
    position: relative; z-index: 2;
}
.slider-container .nav-btn::after {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    background: #206c56; /* The Green Premium Stroke */
    box-shadow: 0 4px 10px rgba(32, 108, 86, 0.5); /* Outer ambient green aura */
    z-index: -1;
}
.slider-container .nav-btn.prev { transform: translateX(50%); }
.slider-container .nav-btn.next { transform: translateX(-50%); }

.slider-container .nav-btn:hover { 
    background-color: #f9dd90; 
    color: #206c56; /* Highly striking Gold to Dark Emerald transition */
}


/* --- MODIFICATION AREA START --- */
.slider-container .preview-container {
    position: absolute; top: 50%; transform: translateY(-50%) scale(0.8); z-index: 1;
    width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
    border: 2px solid #f9dd90; /* Now Ancient gold */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Soft drop shading over slider content */
    opacity: 0; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
    pointer-events: none; 
}

.slider-container .nav-wrapper:hover .preview-container {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.slider-container .prev-wrapper .preview-container { right: -150px; }
.slider-container .next-wrapper .preview-container { left: -150px; }

.slider-container .preview-image { 
    width: 100%; height: 100%; background-size: cover; background-position: center; 
}
/* --- MODIFICATION AREA END --- */


.slider-container .pagination {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); margin-left: 10px;
    z-index: 4; 
    color: #1a1a1a; 
    width: 220px; height: 115px;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    padding-bottom: 1rem; 
    background-color: #f9dd90; /* Gold Back-plade Drop */
    clip-path: path('M0 45C0 45 44 45 110 30C176 45 220 45 220 45V115H0V45Z');
}
.slider-container .dots { display: flex; gap: 15px; align-items: center; }
.slider-container .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background-color: #206c56; /* Inactive dots matching Green Emerald motif */
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Tiny depth shadow */
}
.slider-container .dot.active {
    background-color: #1a1a1a; 
    border: 1px solid #206c56; /* Green outlined when active */
    transform: scale(1.5); 
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.slider-container .dot.active::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 4px; height: 4px;
    border-radius: 50%; background-color: #f9dd90; /* Illuminating ancient yellow inner point */
}

@media (max-width: 768px) {
    .slider-container .nav-wrapper { width: 55px; }
    .slider-container .nav-btn { width: 50px; height: 50px; }
    
    .slider-container .preview-container { display: none; }

    .slider-container .nav-wrapper::before {
        clip-path: none; width: calc(100% - 25px);
    }
    .slider-container .prev-wrapper::before { border-top-right-radius: 25px; border-bottom-right-radius: 25px; }
    .slider-container .next-wrapper::before { border-top-left-radius: 25px; border-bottom-left-radius: 25px; }
}


/* =============================================================
   ABOUT SECTION
   ============================================================= */
.content-section.centered-about {
    background-color: #fbfaf7;
}
.about-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.about-center-col {
    margin: 0 auto;
    text-align: center !important;
}

/* About Title */
.about-sec-subtitle {
    color: #5a6b65;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    display: block;
    font-style: normal;
    font-family: 'Georgia', serif;
}
.about-sec-heading {
    font-size: 3.2em;
    color: #206c56;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* Override section-title defaults for about */
.centered-about .section-title h4:before { display: none; }
.centered-about .section-title h4 {
    color: #5a6b65;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}
.centered-about .section-title h2 {
    font-size: 3.2em;
    color: #1e5e4d;
    font-family: 'Playfair Display', serif;
}

/* About Text */
.about-text-block {
    text-align: center;
    margin-bottom: 2rem;
}
.about-text-block p {
    color: #4a5e55;
    line-height: 1.9;
    font-size: 18px;
    margin: 0 auto 30px auto;
    text-align: center;
    max-width: 1400px;
    font-family: 'Georgia', serif;
}

/* Read More / Less Toggle */
.rm-container-unique {
    text-align: center;
    margin-top: 30px;
}
.rm-content-unique { display: none; }
.btn-wrapper {
    margin-top: 40px;
    text-align: center;
}
.rm-container-unique .rm-btn-unique,
.rm-container-unique .rl-btn-unique {
    display: inline-block;
    padding: 15px 40px;
    background: #206c56;
    color: #fefcf7;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(32,108,86,0.3);
    font-family: 'Georgia', serif;
}
.rm-container-unique .rm-btn-unique:hover,
.rm-container-unique .rl-btn-unique:hover {
    background: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201,168,76,0.4);
}

/* About Cards Grid */
.hotel-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px auto 0 auto;
    text-align: center;
    max-width: 100%;
}
.info-card {
    background: #fefcf7;
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid #e8ecea;
    box-shadow: 0px 10px 40px rgba(15,46,36,0.06);
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.info-card:hover {
    box-shadow: 0px 15px 50px rgba(32,108,86,0.15);
    top: -5px;
}
.info-card h3 {
    color: #206c56;
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
}
.info-card .card-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #c9a84c;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}
.info-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5e55;
    margin: 0;
    text-align: center;
    font-family: 'Georgia', serif;
}
@media (max-width: 991px) {
    .hotel-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */

.room-main-container {
  min-height: 80vh;
  background-color: #f5f3ed;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  /* MODIFIED: Top aur bottom padding mobile ke liye kam kar di hai */
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px)  { .room-main-container { padding-top: 64px; } }
@media (min-width: 1024px) { .room-main-container { padding-top: 80px; } }

.room-bg-text-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  margin-bottom: 6vw;
}
@media (min-width: 640px)  { .room-bg-text-container { margin-bottom: 7vw; } }
@media (min-width: 1024px) { .room-bg-text-container { margin-bottom: 6vw; } }

.room-bg-text-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-bg-text {
  color: #206c56;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.9;
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  font-size: 18vw;
  letter-spacing: 0.09em;
  line-height: 0.75;
  transform: scaleY(1.35);
}

.room-carousel-wrapper {
  position: relative;
  width: 95%;
  max-width: 1300px;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px)  { .room-carousel-wrapper { width: 90%; } }
@media (min-width: 768px)  { .room-carousel-wrapper { width: 85%; } }
@media (min-width: 1024px) { .room-carousel-wrapper { width: 80%; } }

.room-carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background-color: #d4e0da;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15,46,36,0.25);
}
@media (min-width: 640px)  { .room-carousel-container { aspect-ratio: 1/1; } }
@media (min-width: 1024px) { .room-carousel-container { aspect-ratio: 16/9; } }
@media (min-width: 1280px) { .room-carousel-container { aspect-ratio: 2.2/1; } }

.room-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transition: transform 0.8s ease-in-out;
}
.room-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.room-slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80%;
  background: linear-gradient(to top, rgba(15,46,36,0.9), rgba(15,46,36,0.4), transparent);
  pointer-events: none;
  z-index: 10;
}
@media (min-width: 640px) { .room-slide-overlay { height: 70%; } }

.room-slide-content {
  position: absolute;
  bottom: 20px; left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  padding-right: 16px;
}
@media (min-width: 640px)  { .room-slide-content { bottom: 24px; left: 24px; gap: 16px; } }
@media (min-width: 768px)  { .room-slide-content { bottom: 48px; left: 48px; gap: 24px; } }
@media (min-width: 1024px) { .room-slide-content { bottom: 64px; left: 64px; gap: 24px; } }

.room-slide-title {
  color: #fefcf7;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-shadow: 0 4px 8px rgba(15,46,36,0.5);
  line-height: 1.25;
  font-size: 30px;
}
@media (min-width: 640px)  { .room-slide-title { font-size: 36px; } }
@media (min-width: 768px)  { .room-slide-title { font-size: 48px; } }
@media (min-width: 1024px) { .room-slide-title { font-size: 72px; } }

.room-stats-container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
@media (min-width: 640px) { .room-stats-container { gap: 12px; } }
@media (min-width: 768px) { .room-stats-container { gap: 16px; } }

.room-stat-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(22,42,34,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 4px 12px 4px 4px;
  border: 1px solid rgba(249,221,144,0.1);
  box-shadow: 0 20px 25px -5px rgba(15,46,36,0.1), 0 10px 10px -5px rgba(15,46,36,0.04);
}
@media (min-width: 640px)  { .room-stat-badge { gap: 8px; padding: 6px 16px 6px 6px; } }
@media (min-width: 768px)  { .room-stat-badge { gap: 12px; padding-right: 16px; } }
@media (min-width: 1024px) { .room-stat-badge { gap: 12px; padding-right: 16px; } }

.room-stat-icon-wrapper {
  background-color: #fefcf7;
  border-radius: 50%;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) { .room-stat-icon-wrapper { width: 28px; height: 28px; } }
@media (min-width: 768px) { .room-stat-icon-wrapper { width: 32px; height: 32px; } }

.room-stat-icon {
  width: 14px; height: 14px;
  color: #0f2e24;
  stroke-width: 2.5;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 640px) { .room-stat-icon { width: 16px; height: 16px; } }

.room-stat-text {
  color: rgba(254,252,247,0.9);
  font-size: 10px;
  font-family: 'Georgia', serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding-right: 4px;
  white-space: nowrap;
}
@media (min-width: 640px)  { .room-stat-text { font-size: 12px; padding-right: 8px; } }
@media (min-width: 768px)  { .room-stat-text { font-size: 14px; } }
@media (min-width: 1024px) { .room-stat-text { font-size: 16px; } }

.room-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background-color: #fefcf7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(15,46,36,0.25);
  z-index: 20;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
@media (min-width: 640px) { .room-nav-button { width: 48px; height: 48px; } }
@media (min-width: 768px) { .room-nav-button { width: 64px; height: 64px; } }

.room-nav-button-prev { left: 0; transform: translateY(-50%) translateX(-50%); }
.room-nav-button-prev:hover { transform: translateY(-50%) translateX(-50%) scale(1.05); }
.room-nav-button-next { right: 0; transform: translateY(-50%) translateX(50%); }
.room-nav-button-next:hover { transform: translateY(-50%) translateX(50%) scale(1.05); }

.room-nav-icon { width: 16px; height: 16px; color: #0f2e24; stroke-width: 1.5; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 640px) { .room-nav-icon { width: 20px; height: 20px; } }
@media (min-width: 768px) { .room-nav-icon { width: 24px; height: 24px; } }

.room-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  z-index: 10;
  /* MODIFIED: Double padding hatane ke liye isko 0 kar diya hai */
  padding-bottom: 0;
}
@media (min-width: 640px) { .room-dots-container { gap: 12px; margin-top: 32px; } }
@media (min-width: 768px) { .room-dots-container { gap: 12px; margin-top: 48px; } }

.room-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(15,46,36,0.3);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.room-dot:hover { border-color: #0f2e24; }
.room-dot.active { background-color: #0f2e24; border-color: #0f2e24; transform: scale(1.1); }
@media (min-width: 640px) { .room-dot { width: 10px; height: 10px; } }
@media (min-width: 768px) { .room-dot { width: 12px; height: 12px; } }

/* Slide animation states */
.room-slide-enter-right { transform: translateX(100%); }
.room-slide-enter-left  { transform: translateX(-100%); }
.room-slide-center      { transform: translateX(0%); }
.room-slide-exit-right  { transform: translateX(100%); }
.room-slide-exit-left   { transform: translateX(-100%); }


/* =============================================================
       AMENITIES
       ============================================================= */
 
    .amenities-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0;
      position: relative;
      overflow: hidden;
    }
 
    .amenities-bg-parallax {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      z-index: 0;
      background-image: url('https://images.unsplash.com/photo-1542314831-c6a4d1409b57?auto=format&fit=crop&w=2070&q=80');
      background-size: cover;
      background-position: center center;
      background-attachment: fixed;
    }
 
    .amenities-bg-overlay {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      z-index: 1;
      background-color: rgba(15, 46, 36, 0.88);
    }
 
    .amenities-bg-letters {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      opacity: 0.03;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      pointer-events: none;
      overflow: hidden;
    }
 
    .amenities-bg-letters span {
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 900;
      font-size: 30rem;
      color: #c9a84c;
      mix-blend-mode: screen;
      line-height: 1;
    }
 
    .amenities-bg-letters span:first-child {
      letter-spacing: -0.05em;
      margin-left: -20%;
    }
 
    .amenities-bg-letters span:last-child {
      letter-spacing: 0.1em;
      margin-left: 10%;
    }
 
    .amenities-main-content {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1700px;
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 40px 16px;
    }
 
    .amenities-scroll-col {
      width: 100%;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 8px 0;
      -webkit-mask-image: -webkit-linear-gradient(left, transparent 0%, black 15%, black 85%, transparent 100%);
              mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    }
 
    .amenities-scroll-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
      -webkit-animation: amenities-scrollLeft 40s linear infinite;
              animation: amenities-scrollLeft 40s linear infinite;
    }
 
    .amenities-scroll-inner.amenities-reverse {
      -webkit-animation: amenities-scrollLeft 40s linear infinite reverse;
              animation: amenities-scrollLeft 40s linear infinite reverse;
    }
 
    .amenities-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      gap: 32px;
      padding-right: 32px;
      padding-bottom: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
 
    .amenities-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 12px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-transition: all 0.3s;
              transition: all 0.3s;
    }
 
    .amenities-icon {
      color: #c9a84c;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-filter: drop-shadow(0 1px 2px rgba(15,46,36,0.5));
              filter: drop-shadow(0 1px 2px rgba(15,46,36,0.5));
    }
 
    .amenities-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
    }
 
    .amenities-text {
      color: #fefcf7;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 18px;
      letter-spacing: 0.02em;
      font-weight: 500;
      white-space: nowrap;
      cursor: default;
      -webkit-filter: drop-shadow(0 1px 2px rgba(15,46,36,0.5));
              filter: drop-shadow(0 1px 2px rgba(15,46,36,0.5));
      opacity: 0.8;
      -webkit-transition: color 0.3s;
              transition: color 0.3s;
    }
 
    /* ── Center video column ── */
    .amenities-video-col {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      max-width: 896px;
      padding: 16px 8px;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      z-index: 20;
    }
 
    .amenities-video-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 12px;
      overflow: hidden;
      -webkit-box-shadow: 0 30px 80px rgba(15,46,36,0.8);
              box-shadow: 0 30px 80px rgba(15,46,36,0.8);
      outline: 1px solid rgba(201, 168, 76, 0.3);
      background-color: #0f2e24;
      border: 1px solid rgba(254, 252, 247, 0.1);
    }
 
    @supports not (aspect-ratio: 16 / 9) {
      .amenities-video-wrapper::before {
        content: "";
        display: block;
        padding-top: 56.25%;
      }
      .amenities-video-wrapper iframe,
      .amenities-video-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
      }
    }
 
    .amenities-video-overlay {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background-color: rgba(15, 46, 36, 0.1);
      -webkit-transition: background-color 0.7s;
              transition: background-color 0.7s;
      z-index: 10;
      pointer-events: none;
    }
 
    .amenities-video-wrapper:hover .amenities-video-overlay {
      background-color: rgba(15, 46, 36, 0);
    }
 
    /* ✅ FIXED: video tag hatao, iframe lagao */
    .amenities-video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      z-index: 0;
      display: block;
    }
 
    /* ── Animations ── */
    @-webkit-keyframes amenities-scrollUp {
      0%   { -webkit-transform: translateY(0);    transform: translateY(0); }
      100% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
    }
    @keyframes amenities-scrollUp {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }
 
    @-webkit-keyframes amenities-scrollLeft {
      0%   { -webkit-transform: translateX(0);    transform: translateX(0); }
      100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
    }
    @keyframes amenities-scrollLeft {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    /* ════════════════════════════════════════
       TABLET  (≥ 640px)
    ════════════════════════════════════════ */
    @media (min-width: 640px) {
      .amenities-video-wrapper {
        border-radius: 16px;
      }
      .amenities-video-col {
        padding: 16px;
      }
    }
 
    /* ════════════════════════════════════════
       DESKTOP  (≥ 1024px)
    ════════════════════════════════════════ */
    @media (min-width: 1024px) {
 
      .amenities-bg-letters span {
        font-size: 50rem;
      }
 
      .amenities-main-content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 32px 1.5fr 32px 1fr;
            grid-template-columns: 1fr 1.5fr 1fr;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        justify-items: center;
        gap: 32px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        min-height: 0;
        padding: 0 32px;
      }
 
      .amenities-scroll-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 700px;
        padding: 40px 16px;
        -webkit-mask-image: -webkit-linear-gradient(top, transparent 0%, black 20%, black 80%, transparent 100%);
                mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
      }
 
      .amenities-scroll-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: auto;
        -webkit-animation: amenities-scrollUp 40s linear infinite;
                animation: amenities-scrollUp 40s linear infinite;
      }
 
      .amenities-scroll-inner.amenities-reverse {
        -webkit-animation: amenities-scrollUp 40s linear infinite reverse;
                animation: amenities-scrollUp 40s linear infinite reverse;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
      }
 
      .amenities-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 48px;
        padding-right: 0;
        padding-bottom: 48px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
      }
 
      .amenities-list.amenities-reverse-list {
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
      }
 
      .amenities-item {
        gap: 24px;
      }
 
      .amenities-item.amenities-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        text-align: right;
      }
 
      .amenities-icon svg {
        width: 32px;
        height: 32px;
      }
 
      .amenities-text {
        font-size: 24px;
        font-weight: 600;
        opacity: 1;
      }
 
      .amenities-video-col {
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        padding: 32px;
      }
    }
 
    /* ════════════════════════════════════════
       2XL  (≥ 1536px)
    ════════════════════════════════════════ */
    @media (min-width: 1536px) {
      .amenities-scroll-col {
        height: 800px;
      }
    }


/* ============================================================
   ATTRACTIONS SECTION
   ============================================================ */

/* ============================================================
   ATTRACTIONS SECTION
   ============================================================ */

/* ── Floating cursor image (desktop lg only) ── */
#attraction-floating-img {
  position: fixed;
  z-index: 50;
  width: 300px;
  height: 400px;
  object-fit: cover;
  pointer-events: none;
  box-shadow: 0 25px 50px -12px rgba(15, 46, 36, 0.25);
  transform: translate(-50%, -50%) rotate(-30deg) scale(1);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: none;
  left: 0;
  top: 0;
}

@media (min-width: 1024px) {
  #attraction-floating-img {
    display: block;
  }
}

#attraction-floating-img.attraction-img-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-20deg) scale(0.8);
}

#attraction-floating-img.attraction-img-visible {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-30deg) scale(1);
}

/* ── Main container ── */
.attraction-main-wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

@media (min-width: 640px) {
  .attraction-main-wrap {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .attraction-main-wrap {
    padding: 0 2rem;
  }
}

/* ── Toggle switch ── */
.attraction-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .attraction-toggle-wrap {
    margin-bottom: 4rem;
  }
}

.attraction-toggle-pill {
  background: #f5f3ed;
  padding: 0.375rem;
  border-radius: 9999px;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  box-shadow: inset 0 2px 4px rgba(15, 46, 36, 0.06);
}

.attraction-toggle-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #5a7a70;
  font-family: 'Georgia', serif;
}

.attraction-toggle-btn:hover {
  color: #0f2e24;
  background: rgba(184, 201, 194, 0.5);
}

.attraction-toggle-btn.active {
  background: #fefcf7;
  box-shadow: 0 1px 3px rgba(15, 46, 36, 0.1), 0 1px 2px rgba(15, 46, 36, 0.06);
  color: #0f2e24;
  cursor: default;
}

.attraction-toggle-btn.active:hover {
  background: #fefcf7;
}

@media (min-width: 640px) {
  .attraction-toggle-btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
  }
}

/* ── List section ── */
.attraction-list-container {
  border-top: 1px solid #f5f3ed;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.attraction-list-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.attraction-list-wrapper.attraction-anim-out {
  opacity: 0;
  transform: translateY(-15px);
}

.attraction-list-wrapper.attraction-anim-in {
  opacity: 0;
  transform: translateY(15px);
}


/* ── Portfolio item row ── */
.attraction-portfolio-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #f5f3ed;
  transition: background-color 0.3s;
  cursor: pointer;
  margin: 0 -1rem;
}

.attraction-portfolio-item:hover {
  background-color: #e8ece8;
}

@media (min-width: 640px) {
  .attraction-portfolio-item {
    padding: 2.5rem 1.5rem;
    margin: 0 -1.5rem;
  }
}

@media (min-width: 768px) {
  .attraction-portfolio-item {
    padding: 3.5rem 3rem;
    margin: 0 -3rem;
  }
}

/* ── Item top row ── */
.attraction-item-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 768px) {
  .attraction-item-top {
    flex-direction: row;
    align-items: center;
  }
}

/* ── Item left (num + title) ── */
.attraction-item-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .attraction-item-left {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .attraction-item-left {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .attraction-item-left {
    gap: 4rem;
  }
}

.attraction-item-num {
  color: #7a9e8e;
  font-size: 0.875rem;
  font-weight: 500;
  width: 1.5rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
  font-family: 'Georgia', serif;
}

@media (min-width: 640px) {
  .attraction-item-num {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .attraction-item-num {
    padding-top: 0;
  }
}

.attraction-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  transition: transform 0.3s ease;
  word-break: break-word;
  padding-right: 0.5rem;
  line-height: 1.1;
  color: #0f2e24;
}

@media (min-width: 640px) {
  .attraction-item-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .attraction-item-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .attraction-portfolio-item:hover .attraction-item-title {
    transform: translateX(1rem);
  }
}

/* ── Item right (more details + plus) ── */
.attraction-item-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  align-self: flex-end;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .attraction-item-right {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .attraction-item-right {
    align-self: auto;
    margin-top: 0;
  }
  .attraction-portfolio-item:hover .attraction-item-right {
    transform: translateX(-0.75rem);
  }
}

.attraction-more-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a3c32;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Georgia', serif;
}

@media (min-width: 640px) {
  .attraction-more-text {
    font-size: 0.875rem;
  }
}

.attraction-plus-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid #b8c9c2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
  color: #0f2e24;
}

@media (min-width: 640px) {
  .attraction-plus-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.attraction-portfolio-item:hover .attraction-plus-btn {
  background: #0f2e24;
  border-color: #0f2e24;
  color: #fefcf7;
}

.attraction-plus-svg {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

@media (min-width: 640px) {
  .attraction-plus-svg {
    width: 1rem;
    height: 1rem;
  }
}

/* ── Expandable image panel (hidden on lg+) ── */
.attraction-expand-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

.attraction-expand-wrap.attraction-open {
  max-height: 35rem;
  opacity: 1;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .attraction-expand-wrap.attraction-open {
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .attraction-expand-wrap {
    display: none !important;
  }
}

.attraction-expand-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(15, 46, 36, 0.1);
  display: block;
}

@media (min-width: 768px) {
  .attraction-expand-img {
    height: 32rem;
  }
}

/* --- Scoped Header --- */
.anderson-experience .experience-header {
  text-align: center;
  margin-bottom: 2rem;
}
.anderson-experience .experience-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.4rem;
  color: #5a6b6c;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.anderson-experience .experience-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #206c56;
  margin: 0;
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: anderson-exp-gradientShift 8s ease infinite;
  text-shadow: 0 2px 20px rgba(184, 134, 11, 0.2);
}
.anderson-experience .title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: anderson-exp-titleReveal 0.6s ease forwards;
}
.anderson-experience .title-underline {
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #b8860b, #ffd700);
  margin: 2rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  animation: anderson-exp-expandWidth 1.2s cubic-bezier(0.19, 1, 0.22, 1) 1.4s forwards;
}

.anderson-experience .experience-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Keyframe animations for the header */
@keyframes anderson-exp-gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes anderson-exp-titleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anderson-exp-expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

/* This is needed for the animation delays on each word of the title */
.anderson-experience .title-word:nth-child(1) { animation-delay: 0.2s; }
.anderson-experience .title-word:nth-child(2) { animation-delay: 0.6s; }
.anderson-experience .title-word:nth-child(3) { animation-delay: 1s; }



/* ============================================================
   Hotel Policy
   ============================================================ */

.hotel-polices body {
  font-family: 'Georgia', serif;
  background-color: #f9f7f2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-x: auto; /* PC view mein agar width zyada ho jaye toh properly handle karega */
}

.hotel-polices .container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  /* Mobile-first: Stack vertically */
  flex-direction: column;
  align-items: center;
}

.hotel-polices .card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px; /* Good for mobile readability */
  background-color: #ffffff;
  border: 1px solid #e8e0cc;
  box-shadow: 0 4px 20px rgba(32, 108, 86, 0.08);
}

.hotel-polices .card-header {
  background-color: #206c56;
  color: #f9dd90;
  padding: 14px 16px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 3px solid #f9dd90;
}

.hotel-polices .image-wrapper {
  position: relative;
  width: 100%;
  background-color: #e8e0cc;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 80%;
}

.hotel-polices .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  z-index: 1;
}

.hotel-polices .image-wrapper:hover img {
  transform: scale(1.05);
}

.hotel-polices .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 2;
}

.hotel-polices .image-wrapper:hover .overlay {
  opacity: 1;
}

.hotel-polices .overlay.active {
  opacity: 1;
}

.hotel-polices .overlay-inner {
  background-color: rgba(32, 108, 86, 0.88);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f9dd90;
  border: 2px solid rgba(249, 221, 144, 0.3);
}

.hotel-polices .hotel-inner {
  gap: 20px;
  padding: 16px;
}

.hotel-polices .hotel-info {
  font-family: 'Georgia', serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.375;
  color: #f9dd90;
}

.hotel-polices .hotel-info p {
  margin-bottom: 12px;
}

.hotel-polices .hotel-info p:last-child {
  margin-bottom: 0;
}

.hotel-polices .btn-red {
  background-color: #f9dd90;
  color: #206c56;
  border: 2px solid #f9dd90;
  padding: 10px 28px;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 150ms ease;
  margin-top: 8px;
  color: #206c56 !important;
}

.hotel-polices .btn-red:hover {
  background-color: transparent;
  color: #f9dd90 !important;
}

.hotel-polices .guest-inner {
  padding: 12px;
}

.hotel-polices .tripadvisor-box {
  background-color: #ffffff;
  border: 2px solid #206c56;
  text-align: left;
  padding: 16px;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 8px 25px rgba(32, 108, 86, 0.15);
}

.hotel-polices .tripadvisor-box img {
  height: 24px;
  margin-bottom: 12px;
  display: block;
}

.hotel-polices .tripadvisor-box a {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.375;
  display: block;
  margin-bottom: 16px;
}

.hotel-polices .tripadvisor-box a:hover {
  text-decoration: none;
  color: #1a5544;
}

.hotel-polices .btn-green {
  background-color: #206c56;
  color: #f9dd90;
  border: 2px solid #206c56;
  padding: 10px 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0;
  transition: all 150ms ease;
  display: block;
}

.hotel-polices .btn-green:hover {
  background-color: transparent;
  color: #206c56;
}

.hotel-polices .things-inner {
  gap: 24px;
  padding: 16px;
}

.hotel-polices .things-text {
  font-family: 'Georgia', serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.625;
  color: #f9dd90; /* Original Color Retained */
}

/* ============================================================
   Tablet Styles (768px and up)
   ============================================================ */
@media (min-width: 768px) {
  .hotel-polices body {
    padding: 32px;
  }
  
  .hotel-polices .container {
    /* Tablet: Row layout with wrapping */
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 980px;
  }

  .hotel-polices .card {
    width: calc(50% - 12px);
    max-width: none;
  }

  .hotel-polices .tripadvisor-box {
    padding: 20px;
  }

  .hotel-polices .tripadvisor-box a {
    font-size: 14px;
  }

  .hotel-polices .things-inner {
    padding: 24px;
  }

  .hotel-polices .things-text {
    font-size: 16px;
  }
}

/* ============================================================
   PC / Desktop Styles (1024px and up)
   ============================================================ */
@media (min-width: 1024px) {
  .hotel-polices .container {
      max-width: 1500px; /* <--- PC View ke liye max-width set to 1500px */
      flex-wrap: nowrap; /* <--- PC view pe No Wrap */
      justify-content: center;
  }
  
  .hotel-polices .card {
    width: calc(33.333% - 16px);
    flex-shrink: 0;
  }

  .hotel-polices .hotel-overlay,
  .hotel-polices .guest-overlay {
    padding: 32px;
  }

  .hotel-polices .things-overlay {
    padding: 24px;
  }
}

/* ============================================================
   PHOTO GALLERY SECTION — FIXED CSS
   ============================================================ */

#scrollContainer { position: relative; height: 200vh; }

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* FIX 1: Padding top = approximate sticky header height */
  padding-top: 70px;
  box-sizing: border-box;
}

/* Scroll Indicator */
#scrollIndicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 60;
  color: #fefcf7;
  mix-blend-mode: difference;
  pointer-events: none;
}
#scrollIndicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; font-family: 'Georgia', serif; }
.chevron-anim { animation: bounceDown 1.5s ease-in-out infinite; display: flex; align-items: center; justify-content: center; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Grid */
#gridContainer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 1fr 1.2fr 1fr;
  gap: 12px;
  width: 95vw;
  max-width: 1440px;
  /* FIX 2: Height thoda kam karo taaki top row clip na ho */
  height: calc(75dvh - 70px);
}
@media (min-width: 768px) {
  .sticky-wrapper {
    padding-top: 80px;
  }
  #gridContainer {
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr 1.5fr 1fr;
    gap: 20px;
    width: 92vw;
    height: calc(88dvh - 80px);
  }
}

.grid-cell    { position: relative; width: 100%; height: 100%; }
.main-cell    { z-index: 50; }

#mainWrapper {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 25px 50px -12px rgba(15,46,36,0.4);
  overflow: hidden;
  cursor: pointer;
}
#mainWrapper img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; user-select: none; transition: transform 0.7s ease; }
#mainWrapper:hover img { transform: scale(1.05); }

.satellite-cell {
  z-index: 10;
  box-shadow: 0 20px 25px -5px rgba(15,46,36,0.1), 0 8px 10px -6px rgba(15,46,36,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transform-origin: center center;
  will-change: transform, opacity;
}
.satellite-cell img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; user-select: none; transition: transform 0.7s ease; }
.satellite-cell:hover img { transform: scale(1.05); }

/* Gallery Credits */
.gallery-credits {
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #faf8f2;
}
.gallery-credits h2 { font-size: 1.875rem; font-weight: 500; letter-spacing: -0.025em; color: #1a3c32; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
@media (min-width: 768px) { .gallery-credits h2 { font-size: 3rem; } }
.gallery-credits p  { color: #5a6b65; max-width: 28rem; text-align: center; font-family: 'Georgia', serif; }

/* ============================================================
   LIGHTBOX — FIX 3: z-index header se upar karo (9999+)
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  /* FIX 3: z-index itna badha do ki sticky header ke upar aaye */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15,46,36,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.visible        { opacity: 1; pointer-events: all; }
#lightbox.lightbox-hidden { display: none; }

.lb-close {
  position: absolute;
  /* FIX 4: top thoda neeche karo taaki header ke neeche aaye */
  top: 1.5rem;
  right: 1rem;
  color: rgba(254,252,247,0.8);
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  /* FIX 5: close button ka z-index lightbox se bhi upar */
  z-index: 100010;
  line-height: 0;
  transition: color 0.2s ease, background 0.2s ease;
}
@media (min-width: 768px) {
  .lb-close {
    top: 2rem;
    right: 2rem;
  }
}
.lb-close:hover { color: #fefcf7; background: rgba(249,221,144,0.2); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(254,252,247,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 9999px;
  z-index: 100010;
  line-height: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }
@media (min-width: 768px) { .lb-prev { left: 2.5rem; } .lb-next { right: 2.5rem; } }
.lb-prev:hover, .lb-next:hover { color: #fefcf7; background-color: rgba(249,221,144,0.1); }

#lbContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  padding: 0 3rem;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
@media (min-width: 768px) { #lbContent { padding: 0 6rem; } }
#lightbox.visible #lbContent { transform: scale(1) translateY(0); opacity: 1; }

#lbImg {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(15,46,36,0.5);
  -webkit-user-drag: none;
  user-select: none;
  transition: opacity 0.2s ease;
}
#lbTitle {
  color: #fefcf7;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  transition: opacity 0.2s ease;
  font-family: 'Playfair Display', serif;
}
@media (min-width: 768px) { #lbTitle { font-size: 1.5rem; } }


/* ══════════════════════════════════════════
   Footer MARQUEE BANNER
══════════════════════════════════════════ */
.footer-marquee {
  background: #081f15;
  border-top: 1px solid rgba(249,221,144,0.25);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 70px;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #f9dd90;
}
.marquee-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(249,221,144,0.45);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(249,221,144,0.75);
}
.marquee-icon svg {
  width: 20px;
  height: 20px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
/* ══════════════════════════════════════════
   MAIN FOOTER BODY
══════════════════════════════════════════ */
.site-footer { background: #0b2d1e; }
 
.footer-body {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 640px)  { .footer-body { padding: 0 44px; } }
@media (min-width: 1280px) { .footer-body { padding: 0 60px; } }
 
.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(249,221,144,0.2);
}
@media (min-width: 900px) {
  .footer-main-grid {
    grid-template-columns: 1.1fr 1px 0.72fr 1px 0.72fr 1px 0.95fr;
  }
}
 
.col-divider {
  display: none;
  background: rgba(249,221,144,0.18);
  width: 1px;
}
@media (min-width: 900px) { .col-divider { display: block; } }
 
.fc { padding: 44px 0 40px; }
@media (min-width: 900px)  { .fc { padding: 52px 36px 48px; } }
@media (min-width: 1280px) { .fc { padding: 60px 44px 56px; } }
@media (min-width: 900px)  { .fc:first-child { padding-left: 0; } }
@media (min-width: 900px)  { .fc:last-child  { padding-right: 0; } }
 
.fc-heading {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: #f9dd90;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
 
/* ── COL 1 Brand ── */
.brand-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.c-icon { width: 34px; height: 36px; position: relative; flex-shrink: 0; }
.c-left  { position: absolute; left:0; top:0; width:19px; height:100%; background: #f9dd90; border-radius: 17px 0 0 17px; }
.c-inner { position: absolute; left:9px; top:6px; width:20px; height:24px; background: #0b2d1e; border-radius: 15px 0 0 15px; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: #f9dd90;
  line-height: 1.1;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.27em;
  color: #f9dd90;
  font-weight: 600;
  margin-top: 4px;
  display: block;
  font-family: Georgia, serif;
  opacity: 0.9;
}
.brand-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(254,253,246,0.9);
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.avail-label {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: #f9dd90;
  margin-bottom: 6px;
  opacity: 0.95;
}
.avail-time {
  font-size: 13px;
  color: rgba(254,253,246,0.8);
  font-family: Georgia, serif;
  margin-bottom: 24px;
}
.social-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(254,253,246,0.95);
  margin-bottom: 14px;
  font-family: Georgia, serif;
}
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(249,221,144,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(249,221,144,0.85);
  background: rgba(32,108,86,0.35);
}
.soc-btn:hover {
  background: rgba(249,221,144,0.15);
  border-color: rgba(249,221,144,0.7);
  color: #f9dd90;
  transform: translateY(-2px);
}
.soc-btn svg { display: block; }
 
/* ── COL 2 & 3 Links ── */
.nav-list { list-style: none; display: flex; flex-direction: column; gap: 16px; padding: 0; margin: 0; }
.nav-list a {
  text-decoration: none;
  font-size: 15px;
  color: rgba(254,253,246,0.85);
  font-family: Georgia, serif;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
}
.nav-list a:hover { 
  color: #f9dd90; 
  transform: translateX(4px);
}
 
/* ── COL 4 Contact ── */
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; padding: 0; margin: 0; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: rgba(249,221,144,0.85);
}
.contact-text {
  font-size: 14px;
  color: rgba(254,253,246,0.85);
  font-family: Georgia, serif;
  line-height: 1.65;
}
.contact-text a { color: rgba(254,253,246,0.85); text-decoration: none; transition: color 0.2s; }
.contact-text a:hover { color: #f9dd90; }
.contact-text small { font-size: 12px; color: rgba(249,221,144,0.75); }
 
/* ══════════════════════════════════════════
   BOTTOM BAR (CYBERWEB DESIGN EMBEDDED)
══════════════════════════════════════════ */
.bottom-bar {
  background: #06150d;
  border-top: 1px solid rgba(249,221,144,0.2);
  padding: 30px 28px;
}
@media (min-width: 640px)  { .bottom-bar { padding: 30px 44px; } }
@media (min-width: 1280px) { .bottom-bar { padding: 32px 60px; } }
 
.owner-disclaimer {
  max-width: 900px;
  margin: 0 auto 28px auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  font-family: Georgia, serif;
  color: white;
  letter-spacing: 0.02em;
}

.bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.bottom-copy {
  font-size: 13px;
  color: rgba(249,221,144,0.75);
  font-family: Georgia, serif;
  line-height: 1.6;
  margin: 0;
}
.bottom-copy a {
  color: rgba(249,221,144,0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.bottom-copy a:hover {
  color: #f9dd90;
  text-decoration: underline;
}

.bottom-center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-logo-icon {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.bottom-links { 
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 14px; 
  flex-wrap: wrap;
}
.bottom-links a {
  font-size: 13px;
  color: rgba(249,221,144,0.85);
  font-family: Georgia, serif;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.bottom-links a:hover { color: #f9dd90; text-decoration: underline; }
.bottom-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(249,221,144,0.6); }

@media (min-width: 900px) {
  .bottom-inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
    gap: 30px;
  }
  .bottom-links { 
    justify-content: flex-end; 
  }
}
 
@media (max-width: 899px) {
  .fc { border-top: 1px solid rgba(249,221,144,0.12); }
  .fc:first-child { border-top: none; }
}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #316d5a; /* Dark blue from color palette */
    color: #FFD700; /* Yellow from color palette */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: #316d5a; /* Light blue on hover */
    transform: translateY(-5px); /* Lift effect on hover */
}

.back-to-top i {
    color: #FFD700; /* Yellow icon */
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
}