/* =========================================================
   HOTEL MOON LIGHT PALACE — BARKOT
   Luxury Himalayan · Midnight + Gold + Cream
   App-like mobile experience
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --c-midnight: #0F1A2E;
  --c-midnight-2: #1A2740;
  --c-midnight-3: #243353;
  --c-gold: #D4A857;
  --c-gold-deep: #B8893E;
  --c-gold-soft: #E8C988;
  --c-saffron: #E89858;
  --c-cream: #FAF6EE;
  --c-cream-2: #F4ECDC;
  --c-ivory: #FFFCF5;
  --c-ink: #1B1B1F;
  --c-muted: #5A5A66;
  --c-line: #E5DFD0;
  --c-line-2: #D9CFB6;
  --c-white: #ffffff;
  --c-success: #2EAE5C;
  --c-wa: #25D366;

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-hindi: "Tiro Devanagari Hindi", "Cormorant Garamond", serif;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(15, 26, 46, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 26, 46, 0.10);
  --shadow-lg: 0 24px 64px rgba(15, 26, 46, 0.14);
  --shadow-gold: 0 14px 40px rgba(212, 168, 87, 0.30);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --topbar-h: 38px;
  --mobile-bar-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; color: var(--c-gold-deep); }
input, select, textarea, button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--c-midnight);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  user-select: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
  color: var(--c-midnight);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover, .btn--primary:active { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(212,168,87,0.42); }
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(250,246,238,0.45);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: var(--c-cream); color: var(--c-midnight); border-color: var(--c-cream); }
.btn--gold { background: var(--c-gold); color: var(--c-midnight); }
.btn--gold:hover { background: var(--c-gold-soft); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { width: 100%; }

/* Section heads */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  vertical-align: middle;
  margin-right: 10px;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--c-muted); max-width: 640px; margin: 0 auto; }
.section-head { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.section-head--light .eyebrow { color: var(--c-gold); }
.section-head--light .section-title { color: var(--c-cream); }
.section-head--light .section-sub { color: rgba(250,246,238,0.75); }
.text-center { text-align: center; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--c-midnight);
  color: var(--c-cream);
  font-size: 13px;
  height: var(--topbar-h);
  border-bottom: 1px solid rgba(212,168,87,0.18);
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 24px;
  gap: 16px;
}
.top-bar__shloka {
  font-family: var(--f-hindi);
  color: var(--c-gold);
  letter-spacing: 0.03em;
  font-size: 14px;
}
.top-bar__contact { display: flex; gap: 18px; }
.top-bar__link { transition: color .2s; opacity: .9; }
.top-bar__link:hover { color: var(--c-gold); opacity: 1; }
@media (max-width: 640px) {
  .top-bar { display: none; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,252,245,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
  height: var(--nav-h);
  transition: box-shadow .3s, background .3s;
}
.navbar.is-scrolled { box-shadow: var(--shadow-md); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--c-midnight); }
.brand__icon { color: var(--c-gold); display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-midnight);
}
.brand__tagline {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold-deep);
  margin-top: 2px;
}
.brand--footer { color: var(--c-cream); }
.brand--footer .brand__name { color: var(--c-cream); }

.nav { display: flex; gap: 28px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-midnight);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--c-gold-deep); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.navbar__cta { display: inline-flex; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  transition: background .2s;
}
.hamburger:active { background: var(--c-cream-2); }
.hamburger span {
  width: 22px; height: 2px;
  background: var(--c-midnight);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  .brand__name { font-size: 1.2rem; }
  .brand__tagline { font-size: 9.5px; }
  .nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h)); /* dynamic viewport height for mobile */
    flex-direction: column;
    gap: 0;
    background: var(--c-ivory);
    padding: 24px;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Hidden via opacity + visibility — NO transform/off-screen positioning
       to avoid horizontal-overflow bugs on some Android browsers */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .25s var(--ease), transform .3s var(--ease), visibility 0s linear 0s;
  }
  .nav__link {
    padding: 18px 4px;
    border-bottom: 1px solid var(--c-line);
    font-size: 17px;
    font-weight: 500;
  }
  .nav__link:last-child { border-bottom: 0; }
  .navbar__cta { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  color: var(--c-cream);
  overflow: hidden;
}
.hero--page { min-height: 56vh; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212,168,87,0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15,26,46,0.50) 0%, rgba(15,26,46,0.82) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 100px 24px 100px;
  max-width: 920px;
}
.hero--page .hero__content { padding: 80px 24px 70px; text-align: center; max-width: 800px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--f-hindi);
  color: var(--c-gold);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  padding: 6px 18px;
  border: 1px solid rgba(212,168,87,0.4);
  border-radius: 100px;
  background: rgba(15,26,46,0.35);
  backdrop-filter: blur(8px);
  animation: fadeUp .8s var(--ease) both;
}
.hero__title {
  color: var(--c-cream);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  animation: fadeUp .8s var(--ease) .15s both;
}
.hero--page .hero__title { font-size: clamp(2rem, 5vw, 3.5rem); }
.hero__title em {
  font-style: italic;
  color: var(--c-gold);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0.7;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(250,246,238,0.88);
  max-width: 660px;
  margin: 0 0 32px;
  animation: fadeUp .8s var(--ease) .3s both;
}
.hero--page .hero__subtitle { margin-left: auto; margin-right: auto; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeUp .8s var(--ease) .45s both;
}
.hero--page .hero__badges { justify-content: center; }
.badge {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(212,168,87,0.32);
  backdrop-filter: blur(8px);
}
.badge strong { color: var(--c-gold); margin-right: 4px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp .8s var(--ease) .6s both;
}
.hero--page .hero__cta { justify-content: center; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 46px;
  border: 1.5px solid rgba(250,246,238,0.5);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--c-gold);
  border-radius: 4px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.85);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--c-gold); }
.breadcrumb a:hover { color: var(--c-gold-soft); }

/* ---------- Booking Form ---------- */
.booking { position: relative; margin-top: -70px; z-index: 5; padding-bottom: 80px; }
.booking__card {
  background: var(--c-ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.booking__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-saffron) 50%, var(--c-gold) 100%);
}
.booking__head { text-align: center; margin-bottom: 26px; }
.booking__title { font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 6px; }
.booking__sub { color: var(--c-muted); font-size: 14px; margin: 0; }
.booking__form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-midnight);
  margin-bottom: 8px;
}
.field input, .field select {
  padding: 13px 14px;
  font-size: 14.5px;
  color: var(--c-ink);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,168,87,0.15);
}
.booking__quick {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--c-line);
  font-size: 14px;
  color: var(--c-muted);
}
.quick-link {
  font-weight: 600;
  color: var(--c-midnight);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--c-cream-2);
  transition: background .2s, transform .2s;
}
.quick-link:hover { background: var(--c-gold-soft); transform: translateY(-1px); }
.quick-link--wa { background: rgba(37,211,102,0.12); color: #128C3E; }
.quick-link--wa:hover { background: rgba(37,211,102,0.22); }

@media (max-width: 980px) {
  .booking__form { grid-template-columns: repeat(2, 1fr); }
  .booking__form .field--cta { grid-column: span 2; }
}
@media (max-width: 540px) {
  .booking { margin-top: -40px; }
  .booking__card { padding: 22px 16px; border-radius: var(--radius); }
  .booking__form { grid-template-columns: 1fr; gap: 12px; }
  .booking__form .field--cta { grid-column: 1; }
}

/* ---------- About ---------- */
.about { padding: 110px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__media::before {
  content: "";
  position: absolute;
  top: -22px; left: -22px;
  width: 120px; height: 120px;
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__media::after {
  content: "";
  position: absolute;
  bottom: -22px; right: -22px;
  width: 160px; height: 160px;
  border: 2px solid var(--c-saffron);
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
}
.about__badge {
  position: absolute;
  bottom: 26px; left: 26px;
  background: var(--c-midnight);
  color: var(--c-cream);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.about__badge-num { font-family: var(--f-display); font-size: 2.4rem; color: var(--c-gold); line-height: 1; }
.about__badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.about__text .lead { font-size: 1.1rem; color: var(--c-ink); margin-bottom: 16px; }
.about__list { margin: 22px 0 28px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--c-ink);
}
.about__list li > span {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-gold);
  color: var(--c-midnight);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .about { padding: 60px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media::before, .about__media::after { display: none; }
}

/* ---------- Rooms ---------- */
.rooms { padding: 110px 0; background: var(--c-ivory); position: relative; }
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.room {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room--featured { border: 2px solid var(--c-gold); box-shadow: var(--shadow-md); }
.room__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--c-gold);
  color: var(--c-midnight);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.room__media { aspect-ratio: 4/3; overflow: hidden; }
.room__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.room:hover .room__media img { transform: scale(1.06); }
.room__body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.room__title { font-size: 1.5rem; margin-bottom: 8px; }
.room__desc { color: var(--c-muted); font-size: 14.5px; margin: 0 0 16px; flex: 1; }
.room__features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.room__features li {
  font-size: 12.5px;
  color: var(--c-midnight);
  background: var(--c-cream-2);
  padding: 5px 10px;
  border-radius: 6px;
}
.room__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.room__price { display: flex; flex-direction: column; line-height: 1; }
.room__price .from { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.room__price strong { font-family: var(--f-display); font-size: 1.7rem; color: var(--c-gold-deep); margin: 4px 0 2px; }
.room__price .per { font-size: 11.5px; color: var(--c-muted); }

/* Detailed room (rooms.html) */
.room-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 40px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  margin-bottom: 32px;
  align-items: center;
}
.room-detail--reverse { grid-template-columns: 1fr 1.2fr; }
.room-detail--reverse .room-detail__media { order: 2; }
.room-detail__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.room-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.room-detail__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.room-detail__price { color: var(--c-gold-deep); font-family: var(--f-display); font-size: 1.4rem; margin-bottom: 14px; }
.room-detail__price strong { font-size: 1.8rem; }
.room-detail__desc { color: var(--c-muted); margin-bottom: 18px; }
.room-detail__amen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-bottom: 22px; }
.room-detail__amen li { font-size: 14px; padding: 4px 0; }
.room-detail__cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .room-detail, .room-detail--reverse { grid-template-columns: 1fr; padding: 22px; gap: 22px; }
  .room-detail--reverse .room-detail__media { order: 0; }
}

/* ---------- Amenities ---------- */
.amenities { padding: 110px 0; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.amenity {
  text-align: center;
  padding: 32px 22px;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.amenity:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
}
.amenity__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--c-cream-2) 0%, var(--c-cream) 100%);
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 16px;
  border: 1px solid var(--c-line);
}
.amenity h3 { font-size: 1.15rem; margin-bottom: 6px; }
.amenity p { font-size: 14px; color: var(--c-muted); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--c-midnight) 0%, var(--c-midnight-2) 100%);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,87,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonial-slider { position: relative; max-width: 880px; margin: 0 auto; }
.testimonial-track { overflow: hidden; position: relative; border-radius: var(--radius); }
.testimonial {
  min-width: 100%;
  padding: 44px 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,87,0.28);
  border-radius: var(--radius);
  text-align: center;
  display: none;
}
.testimonial.is-active { display: block; animation: slideIn .5s var(--ease); }
@keyframes slideIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.testimonial__stars { color: var(--c-gold); font-size: 18px; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial__text {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--c-cream);
  margin: 0 0 24px;
  position: relative;
}
/* Quote marks via unicode escape — fixes the previous CSS parsing issue */
.testimonial__text::before,
.testimonial__text::after {
  font-size: 3rem;
  color: var(--c-gold);
  opacity: 0.4;
  font-family: var(--f-display);
  vertical-align: -0.4em;
  line-height: 0;
}
.testimonial__text::before { content: "\201C"; margin-right: 4px; }
.testimonial__text::after  { content: "\201D"; margin-left: 4px; }

.testimonial__author strong { display: block; color: var(--c-gold); font-size: 1rem; }
.testimonial__author span { font-size: 12.5px; color: rgba(250,246,238,0.7); letter-spacing: 0.05em; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-midnight);
  font-size: 26px;
  font-weight: 600;
  display: flex;
  align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.slider-btn:hover { background: var(--c-gold-soft); transform: translateY(-50%) scale(1.06); }
.slider-btn--prev { left: -24px; }
.slider-btn--next { right: -24px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(212,168,87,0.35);
  transition: all .25s;
}
.slider-dots button.is-active { background: var(--c-gold); width: 28px; border-radius: 100px; }

@media (max-width: 640px) {
  .testimonial { padding: 32px 24px; }
  .slider-btn--prev { left: 6px; }
  .slider-btn--next { right: 6px; }
  .slider-btn { width: 40px; height: 40px; font-size: 22px; }
}

/* ---------- Attractions ---------- */
.attractions { padding: 110px 0; background: var(--c-cream); }
.attractions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.attraction {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.attraction:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.attraction__img { aspect-ratio: 16/10; overflow: hidden; }
.attraction__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.attraction:hover .attraction__img img { transform: scale(1.05); }
.attraction__body { padding: 22px 22px 26px; }
.attraction__body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.attraction__dist {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin: 0 0 10px;
}
.attraction__body p:last-child { font-size: 14.5px; color: var(--c-muted); margin: 0; }

/* ---------- Gallery ---------- */
.gallery { padding: 110px 0; background: var(--c-ivory); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
  display: block;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,26,46,0.5) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item--lg, .gallery__item--tall { grid-column: auto; grid-row: auto; }
}
@media (max-width: 540px) {
  .gallery__grid { grid-auto-rows: 140px; gap: 10px; }
}

/* ---------- Reviews ---------- */
.reviews { padding: 110px 0; }
.reviews__summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  background: var(--c-ivory);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  margin-bottom: 50px;
}
.reviews__score { text-align: center; padding: 0 20px; border-right: 1px solid var(--c-line); }
.reviews__score strong {
  display: block;
  font-family: var(--f-display);
  font-size: 4.5rem;
  color: var(--c-gold-deep);
  line-height: 1;
}
.reviews__stars { font-size: 1.4rem; color: var(--c-gold); letter-spacing: 4px; margin: 8px 0; }
.reviews__score span { font-size: 13px; color: var(--c-muted); }
.reviews__bars { display: flex; flex-direction: column; gap: 10px; }
.bar { display: grid; grid-template-columns: 28px 1fr 40px; align-items: center; gap: 10px; font-size: 13px; color: var(--c-muted); }
.bar__track { background: var(--c-cream-2); height: 8px; border-radius: 100px; overflow: hidden; }
.bar__fill { height: 100%; background: linear-gradient(90deg, var(--c-gold-deep), var(--c-gold)); border-radius: 100px; }
.bar span:last-child { text-align: right; font-weight: 600; color: var(--c-midnight); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .3s, transform .3s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-saffron));
  color: var(--c-midnight);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.review-card header strong { display: block; font-size: 14.5px; }
.review-card header span { font-size: 12px; color: var(--c-muted); }
.review-card .testimonial__stars { font-size: 14px; margin: 8px 0 12px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: var(--c-ink); margin: 0 0 12px; line-height: 1.6; }
.review-card small { font-size: 12px; color: var(--c-muted); }

@media (max-width: 760px) {
  .reviews__summary { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .reviews__score { border-right: 0; border-bottom: 1px solid var(--c-line); padding-bottom: 22px; }
}

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--c-ivory); }
.faq__wrap { max-width: 820px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: var(--c-gold); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-midnight);
  position: relative;
  padding-right: 60px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--c-cream-2);
  color: var(--c-gold-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  font-weight: 600;
  transition: transform .25s, background .25s, color .25s;
}
.faq-item[open] summary::after {
  content: "\2212";
  background: var(--c-gold);
  color: var(--c-midnight);
}
.faq-item p { margin: 0; padding: 0 26px 22px; color: var(--c-muted); font-size: 14.5px; line-height: 1.7; }
.faq-item p a { color: var(--c-gold-deep); font-weight: 600; }

/* ---------- CTA Strip ---------- */
.cta-strip {
  padding: 60px 0;
  background:
    linear-gradient(135deg, rgba(15,26,46,0.92), rgba(15,26,46,0.92)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=70") center / cover;
  color: var(--c-cream);
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--c-cream); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 6px; }
.cta-strip p { margin: 0; opacity: 0.85; }
.cta-strip__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { padding: 110px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}
.contact__info p { color: var(--c-muted); margin-bottom: 26px; }
.contact__list { margin-bottom: 28px; }
.contact__list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: flex-start;
}
.contact__list li:last-child { border-bottom: 0; }
.contact__list li > span {
  width: 38px; height: 38px;
  background: var(--c-cream-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.contact__list strong { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-gold-deep); margin-bottom: 2px; }
.contact__list p { margin: 0; color: var(--c-ink); font-size: 15px; }
.contact__list p a { color: var(--c-ink); }
.contact__list p a:hover { color: var(--c-gold-deep); }
.contact__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__cta .btn--ghost { color: var(--c-midnight); border-color: var(--c-midnight); }
.contact__cta .btn--ghost:hover { background: var(--c-midnight); color: var(--c-cream); }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__map, .contact__map iframe { min-height: 360px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--c-midnight); color: var(--c-cream); padding-top: 70px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 { color: var(--c-gold); font-size: 1.1rem; margin-bottom: 18px; }
.footer__about { font-size: 14px; opacity: 0.78; margin: 18px 0 16px; max-width: 360px; }
.footer__shloka { font-family: var(--f-hindi); color: var(--c-gold); margin: 0; font-size: 1.05rem; }
.footer__links li { padding: 6px 0; }
.footer__links a, .footer__links li {
  font-size: 14px;
  opacity: 0.8;
  transition: color .2s, opacity .2s;
  color: var(--c-cream);
}
.footer__links a:hover { color: var(--c-gold); opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(212,168,87,0.18);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  opacity: 0.7;
}
.footer__bottom p { margin: 0; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 480px) {
  .footer { padding-top: 50px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
}

/* ---------- Mobile App Bottom Bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 252, 245, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-line);
  z-index: 90;
  height: var(--mobile-bar-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.10);
}
.mobile-bar__inner {
  display: flex;
  height: var(--mobile-bar-h);
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--c-midnight);
  border-radius: 12px;
  transition: background .15s, transform .15s;
  position: relative;
}
.mobile-bar__btn:active { background: var(--c-cream-2); transform: scale(0.95); }
.mobile-bar__btn.is-active { color: var(--c-gold-deep); }
.mobile-bar__btn.is-active::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--c-gold);
  border-radius: 0 0 4px 4px;
}
.mobile-bar__btn .ico {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 19px;
}
.mobile-bar__btn--cta {
  flex: 1.2;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: var(--c-midnight);
  margin: 8px 4px;
  box-shadow: var(--shadow-gold);
}
.mobile-bar__btn--cta:active { background: linear-gradient(135deg, var(--c-gold-soft), var(--c-gold)); }
.mobile-bar__btn--wa { color: #128C3E; }

@media (max-width: 880px) {
  .mobile-bar { display: block; }
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0)); }
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: var(--c-wa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  z-index: 80;
  transition: transform .25s var(--ease);
  animation: pulse 2s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}
@media (max-width: 880px) { .float-wa { display: none; } }

/* ---------- Popup Modal ---------- */
.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup.is-open { display: flex; animation: popupFade .3s var(--ease); }
@keyframes popupFade { from { opacity: 0; } to { opacity: 1; } }
.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,26,46,0.65);
  backdrop-filter: blur(4px);
}
.popup__card {
  position: relative;
  background: var(--c-ivory);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--c-gold);
  animation: popupRise .35s var(--ease);
}
@keyframes popupRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-cream-2);
  color: var(--c-midnight);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.popup__close:hover { background: var(--c-gold); transform: rotate(90deg); }
.popup__card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.popup__card > p { color: var(--c-muted); font-size: 14.5px; margin-bottom: 20px; }
.popup__form { display: flex; flex-direction: column; gap: 12px; }
.popup__form input {
  padding: 13px 14px;
  font-size: 14.5px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-white);
}
.popup__form input:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(212,168,87,0.15); }
.popup__small { text-align: center; font-size: 11.5px; color: var(--c-muted); margin: 12px 0 0; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page Section Helpers ---------- */
.section-block { padding: 80px 0; }
.section-block--alt { background: var(--c-ivory); }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--c-ink); margin-bottom: 18px; line-height: 1.8; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 28px; font-size: 1.3rem; }

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

/* Print */
@media print {
  .navbar, .mobile-bar, .float-wa, .booking, .cta-strip, .top-bar { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- iOS-specific tweaks for app feel ---------- */
input, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  background-clip: padding-box;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4);
  cursor: pointer;
}

/* Smooth scrollbar (desktop) */
@media (min-width: 880px) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--c-cream); }
  ::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 10px; border: 2px solid var(--c-cream); }
  ::-webkit-scrollbar-thumb:hover { background: var(--c-gold-deep); }
}
