/* =========================================================
   PALAK HOSPITALITY — REFINED LUXURY WEBSITE
   Brand palette inspired by the supplied navy & gold logo
   ========================================================= */

:root {
  --primary: #0a2947;
  --primary-dark: #06192d;
  --primary-deep: #03101f;
  --primary-soft: #173f62;
  --accent-gold: #d8b56a;
  --accent-gold-dark: #ad8240;
  --accent-gold-pale: #f1dfb4;
  --bg-white: #ffffff;
  --bg-cream: #f8f4ec;
  --bg-sand: #eee5d6;
  --text: #17202b;
  --text-light: #68727d;
  --border-light: rgba(10, 41, 71, 0.12);
  --border-gold: rgba(216, 181, 106, 0.42);
  --shadow-sm: 0 10px 30px rgba(3, 16, 31, 0.08);
  --shadow-md: 0 20px 60px rgba(3, 16, 31, 0.13);
  --shadow-lg: 0 30px 90px rgba(3, 16, 31, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 90px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg-white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--primary-deep);
  background: var(--accent-gold-pale);
}

:focus-visible {
  outline: 3px solid rgba(216, 181, 106, 0.7);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section,
.page-section,
.booking-page {
  position: relative;
  padding: 104px 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #fbfaf7 0%, var(--bg-cream) 100%);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2,
.about-content h2,
.page-header h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.section-header h2,
.about-content h2 {
  margin: 10px 0 16px;
  color: var(--primary-dark);
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.02rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.75;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn,
.btn-request-call {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn-request-call:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, #e9cc8b 0%, var(--accent-gold) 50%, #b98b43 100%);
  box-shadow: 0 12px 30px rgba(173, 130, 64, 0.24);
  color: var(--primary-deep);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(173, 130, 64, 0.34);
  filter: brightness(1.04);
}

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

.btn-dark:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(6, 25, 45, 0.22);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.55);
  background: rgba(5, 21, 38, 0.25);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(6, 25, 45, 0.72);
}

/* ---------------------------------------------------------
   Header / Navigation
   --------------------------------------------------------- */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 181, 106, 0.18);
  background: linear-gradient(180deg, rgba(3, 16, 31, 0.96), rgba(6, 25, 45, 0.90));
  box-shadow: 0 5px 30px rgba(0,0,0,0.12);
  color: #fff;
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(18px);
}

.home-page .header:not(.scrolled) {
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(2,13,26,0.82), rgba(2,13,26,0.25));
  box-shadow: none;
}

.header.scrolled {
  height: 78px;
  background: rgba(3, 16, 31, 0.97);
  box-shadow: 0 10px 38px rgba(1, 10, 20, 0.23);
}

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

.logo.brand-lockup {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.logo-emblem {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  border: 1px solid rgba(216,181,106,0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.02), 0 8px 22px rgba(0,0,0,0.18);
}

.logo-emblem img {
  position: absolute;
  top: -10px;
  left: -29px;
  width: 122px;
  max-width: none;
}

.logo-copy {
  display: grid;
  line-height: 1;
}

.logo-copy strong {
  color: var(--accent-gold-pale);
  font-family: var(--font-serif);
  font-size: 1.48rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.logo-copy small {
  margin-top: 4px;
  color: rgba(255,255,255,0.9);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.logo-copy em {
  margin-top: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-desktop a {
  position: relative;
  padding: 11px 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-desktop a::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 1px;
  background: var(--accent-gold);
  content: "";
  transition: right 0.25s ease, left 0.25s ease;
}

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

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--accent-gold-pale);
}

.btn-request-call {
  min-height: 42px;
  border-color: rgba(216,181,106,0.52);
  padding: 0.65rem 1rem;
  background: rgba(216,181,106,0.09);
  color: var(--accent-gold-pale);
}

.btn-request-call:hover {
  background: rgba(216,181,106,0.18);
}

.header-actions .btn-primary {
  min-height: 42px;
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(216,181,106,0.35);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.mobile-menu-btn span {
  width: 19px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: -100%;
  width: min(88vw, 390px);
  height: calc(100vh - var(--header-height));
  padding: 44px 34px;
  background: linear-gradient(145deg, #05172a, #0a2947);
  box-shadow: -20px 0 50px rgba(0,0,0,0.26);
  transition: right 0.35s cubic-bezier(.2,.7,.2,1);
}

.mobile-nav.active { right: 0; }

.mobile-nav a {
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding: 17px 2px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-nav a:hover { color: var(--accent-gold-pale); padding-left: 8px; }

.overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  visibility: hidden;
  background: rgba(2, 10, 20, 0.62);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: min(92vh, 920px);
  place-items: center;
  overflow: hidden;
  background: var(--primary-deep);
  color: #fff;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,12,23,0.88) 0%, rgba(2,12,23,0.55) 42%, rgba(2,12,23,0.18) 75%, rgba(2,12,23,0.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.10) 55%, rgba(2,12,23,0.56) 100%);
  content: "";
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, visibility 1.2s ease, transform 8s linear;
}

.hero-slide.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1.11);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--container));
  padding-top: 74px;
}

.hero-content > * {
  max-width: 780px;
}

.hero-content .section-label {
  color: var(--accent-gold-pale) !important;
}

.hero-content h1 {
  margin: 19px 0 22px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3.35rem, 7vw, 6.35rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.hero-content p {
  max-width: 700px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-slider-dots {
  position: absolute;
  z-index: 5;
  right: max(30px, calc((100vw - var(--container))/2));
  bottom: 68px;
  display: flex;
  gap: 10px;
}

.slider-dot {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.slider-dot.active {
  width: 62px;
  background: var(--accent-gold);
}

.scroll-indicator {
  position: absolute;
  z-index: 4;
  bottom: 50px;
  left: max(30px, calc((100vw - var(--container))/2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-indicator svg { animation: floatArrow 1.8s ease-in-out infinite; }
@keyframes floatArrow { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(5px); } }

/* Booking widget */
.booking-widget {
  position: relative;
  z-index: 20;
  margin-top: -38px;
}

.booking-widget-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) auto;
  align-items: end;
  gap: 18px;
  border: 1px solid rgba(216,181,106,0.24);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-lg);
}

.booking-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  height: 49px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--bg-cream);
  color: var(--text);
}

.trust-strip {
  padding: 34px 0 4px;
  background: #fff;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 34px;
}

.trust-strip-inner span {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 0 30px;
  text-align: center;
}

.trust-strip-inner span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 34px;
  background: var(--border-gold);
  content: "";
  transform: translateY(-50%);
}

.trust-strip strong {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.trust-strip small {
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------
   About layouts
   --------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
}

.about-images {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.about-img-main,
.about-img-small {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-img-main {
  grid-row: 1 / span 2;
}

.about-img-main::after,
.about-img-small::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.about-images img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

.about-images > div:hover img {
  transform: scale(1.04);
}

.about-content > p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-content > p:first-of-type {
  color: #46515d;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.about-stats > div {
  border-top: 1px solid var(--border-gold);
  padding: 18px 8px 0;
  text-align: center;
}

.stat-number {
  color: var(--accent-gold-dark) !important;
  font-family: var(--font-serif);
  font-size: 2rem !important;
  font-weight: 600;
}

.stat-label {
  margin-top: 5px;
  color: var(--text-light);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------
   Rooms / cards
   --------------------------------------------------------- */
.rooms-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(216,181,106,0.10), transparent 30%),
    linear-gradient(180deg, var(--bg-cream), #fff);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 32px rgba(6,25,45,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.room-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.room-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-sand);
}

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

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

.room-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(3,16,31,0.82);
  color: var(--accent-gold-pale);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.room-info {
  padding: 25px 25px 27px;
}

.room-info h3 {
  margin-bottom: 9px;
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.08;
}

.room-info > p {
  color: var(--text-light) !important;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 18px 0;
  padding: 13px 0;
}

.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
  font-size: 0.72rem;
}

.room-meta svg { color: var(--accent-gold-dark); }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 19px;
}

.room-features span {
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--bg-cream);
  color: #5e6872;
  font-size: 0.67rem;
}

.room-price {
  margin: 4px 0 15px;
}

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

.room-price .period {
  color: var(--text-light);
  font-size: 0.76rem;
}

/* ---------------------------------------------------------
   Amenities / services
   --------------------------------------------------------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity-card {
  position: relative;
  min-height: 210px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 6px 25px rgba(6,25,45,0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.amenity-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: linear-gradient(145deg, #fffaf0, #f1dfb4);
  color: var(--primary);
}

.amenity-card h4 {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.amenity-card p {
  color: var(--text-light);
  font-size: 0.86rem;
}

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonials-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(4,20,36,0.94), rgba(4,20,36,0.94)),
    url('../images/mountain-view.jpg') center / cover;
  color: #fff;
}

.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.66); }

.testimonials-slider {
  position: relative;
  max-width: 890px;
  min-height: 325px;
  margin: 0 auto;
}

.testimonial {
  position: absolute;
  inset: 0;
  visibility: hidden;
  border: 1px solid rgba(216,181,106,0.22);
  border-radius: var(--radius-lg);
  padding: 48px clamp(30px, 7vw, 70px);
  background: rgba(255,255,255,0.055);
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.testimonial.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-rating {
  margin-bottom: 20px;
  color: var(--accent-gold);
  font-size: 1.15rem;
  letter-spacing: 0.26em;
}

.testimonial-text {
  color: rgba(255,255,255,0.90);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  color: var(--accent-gold-pale);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.testimonial-name { font-weight: 700; }
.testimonial-location { color: rgba(255,255,255,0.55); font-size: 0.75rem; }

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-nav button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216,181,106,0.35);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.testimonial-nav button:hover { border-color: var(--accent-gold); background: rgba(216,181,106,0.12); }

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-auto-rows: 255px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-sand);
  cursor: zoom-in;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 45%, rgba(3,16,31,0.78));
  color: #fff;
  opacity: 0.92;
}

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.lightbox {
  position: fixed;
  z-index: 2500;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 70px;
  place-items: center;
  background: rgba(1,8,15,0.93);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active { visibility: visible; opacity: 1; }

.lightbox img {
  max-width: min(1300px, 100%);
  max-height: calc(100vh - 100px);
  border: 1px solid rgba(216,181,106,0.35);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

/* ---------------------------------------------------------
   Interior page banner
   --------------------------------------------------------- */
.page-header {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 20px 80px;
  background:
    linear-gradient(90deg, rgba(2,12,23,0.90), rgba(2,12,23,0.46)),
    url('../images/triund-trek.jpg') center 48% / cover;
  color: #fff;
  text-align: center;
}

.page-header::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2,12,23,0.42));
  content: "";
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.page-header-line {
  display: block;
  width: 54px;
  height: 1px;
  margin: 19px auto;
  background: var(--accent-gold);
}

.page-header h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  text-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.page-header p {
  color: rgba(255,255,255,0.74);
  font-size: 1.02rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumb a:hover { color: var(--accent-gold-pale); }

/* ---------------------------------------------------------
   Forms / booking / contact
   --------------------------------------------------------- */
.booking-page {
  background:
    radial-gradient(circle at 100% 0, rgba(216,181,106,0.12), transparent 28%),
    var(--bg-cream);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.72fr);
  align-items: start;
  gap: 32px;
}

.booking-form-container,
.booking-summary,
.contact-form {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.booking-summary {
  position: sticky;
  top: 105px;
}

.booking-form-container h3,
.booking-summary h3,
.contact-form h3,
.contact-info h3 {
  color: var(--primary-dark);
  font-family: var(--font-serif) !important;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.15;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input,
.form-group select {
  height: 50px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(216,181,106,0.15);
  background: #fff;
}

.room-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border-light);
  border-radius: 13px;
  margin-bottom: 11px;
  padding: 16px 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.room-option:hover { transform: translateX(3px); }

.room-option.selected {
  border-color: var(--accent-gold);
  background: linear-gradient(90deg, rgba(241,223,180,0.34), rgba(255,255,255,1));
}

.room-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold-dark);
}

.room-option-details h4 {
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.room-option-details p {
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1.45;
}

.room-option-price {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border-light);
  padding: 13px 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.summary-row span:last-child {
  color: var(--primary-dark);
  font-weight: 700;
  text-align: right;
}

.summary-row.total {
  border-bottom: 0;
  margin-top: 7px;
  padding-top: 18px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.summary-row.total span:last-child {
  color: var(--accent-gold-dark);
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(35px, 6vw, 80px);
}

.contact-info {
  padding-top: 12px;
}

.contact-info > p {
  color: var(--text-light) !important;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
  padding: 19px 0;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--accent-gold-dark);
}

.contact-item h4 {
  margin-bottom: 3px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a { color: var(--text-light); font-size: 0.86rem; }
.contact-item a:hover { color: var(--accent-gold-dark); }

.map-container {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: 35px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

/* ---------------------------------------------------------
   Modal
   --------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 20px;
  place-items: center;
  background: rgba(1,9,17,0.76);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-box {
  position: relative;
  width: min(100%, 560px);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-header {
  padding: 30px 34px 22px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}

.modal-header p { color: rgba(255,255,255,0.62); font-size: 0.82rem; }
.modal-body { padding: 29px 34px 32px; }

.modal-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--accent-gold-dark);
  font-size: 0.78rem;
  text-align: center;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer {
  position: relative;
  padding: 78px 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(216,181,106,0.10), transparent 30%),
    linear-gradient(135deg, var(--primary-deep), #071f36);
  color: rgba(255,255,255,0.70);
}

.footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  content: "";
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.8fr 1.15fr;
  gap: 44px;
}

.footer-logo-wrap {
  width: 205px;
  height: 118px;
  overflow: hidden;
  margin-bottom: 18px;
}

.footer-logo {
  width: 205px;
  margin-top: -14px;
}

.footer-brand > p {
  max-width: 390px;
  color: rgba(255,255,255,0.60);
  font-size: 0.84rem;
}

.footer-column h4 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 11px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.footer-column h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 1px;
  background: var(--accent-gold);
  content: "";
}

.footer-column > a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
}

.footer-column > a:hover { color: var(--accent-gold-pale); transform: translateX(4px); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
}

.footer-contact svg {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--accent-gold);
}

.footer-contact a:hover { color: var(--accent-gold-pale); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 23px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(216,181,106,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
}

.social-links a:hover {
  border-color: var(--accent-gold);
  background: rgba(216,181,106,0.11);
  color: var(--accent-gold-pale);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin-top: 52px;
  padding-top: 22px;
  color: rgba(255,255,255,0.43);
  font-size: 0.69rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0,0,0,0.24);
  color: #fff;
}

.whatsapp-float:hover { transform: translateY(-5px) scale(1.03); }

/* ---------------------------------------------------------
   Reveal animation
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .header-actions .btn-request-call { display: none; }
  .nav-desktop { gap: 20px; }
  .rooms-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .amenities-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.35fr 0.7fr 0.75fr 1.1fr; gap: 30px; }
}

@media (max-width: 980px) {
  :root { --header-height: 80px; }
  .nav-desktop,
  .header-actions .header-phone,
  .header-actions .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }
  .logo-emblem { width: 57px; height: 57px; flex-basis: 57px; }
  .logo-emblem img { width: 109px; left: -26px; top: -9px; }
  .hero { min-height: 760px; height: 88vh; }
  .hero-content { padding-top: 45px; }
  .booking-widget-inner { grid-template-columns: repeat(2, 1fr); }
  .booking-widget-inner .btn { width: 100%; }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 22px; }
  .trust-strip-inner span:not(:last-child)::after { top: auto; right: 20%; bottom: -11px; left: 20%; width: auto; height: 1px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 510px; }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section, .page-section, .booking-page { padding: 78px 0; }
  .section-header { margin-bottom: 34px; }
  .header-inner { gap: 12px; }
  .logo-copy em { display: none; }
  .logo-copy strong { font-size: 1.25rem; }
  .hero { min-height: 730px; height: 90svh; }
  .hero::after { background: linear-gradient(180deg, rgba(2,12,23,0.60), rgba(2,12,23,0.65)); }
  .hero-content { text-align: center; }
  .hero-content > * { margin-inline: auto; }
  .hero-content h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .hero-buttons { justify-content: center; }
  .hero-slider-dots { right: 50%; bottom: 44px; transform: translateX(50%); }
  .scroll-indicator { display: none; }
  .booking-widget { margin-top: 0; padding: 20px 0; background: var(--bg-cream); }
  .booking-widget-inner { grid-template-columns: 1fr; border-radius: 16px; padding: 22px; box-shadow: var(--shadow-sm); }
  .trust-strip { padding-top: 20px; }
  .about-images { min-height: 430px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.5fr 0.75fr; }
  .about-img-main { grid-column: 1 / span 2; grid-row: auto; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: 0; }
  .gallery-grid { grid-auto-rows: 220px; grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .testimonials-slider { min-height: 410px; }
  .testimonial { padding: 36px 24px; }
  .page-header { min-height: 450px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { gap: 40px; }
  .lightbox { padding: 65px 14px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .logo-emblem { width: 52px; height: 52px; flex-basis: 52px; }
  .logo-emblem img { width: 101px; left: -24px; top: -8px; }
  .logo-copy strong { font-size: 1.08rem; letter-spacing: 0.18em; }
  .logo-copy small { font-size: 0.48rem; }
  .mobile-menu-btn { width: 42px; height: 42px; }
  .hero-content .section-label::before, .hero-content .section-label::after { width: 14px; }
  .hero-content h1 { font-size: 2.85rem; }
  .hero-content p { font-size: 0.92rem; }
  .hero-buttons { display: grid; }
  .hero-buttons .btn { width: 100%; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats > div { display: flex; align-items: center; justify-content: space-between; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .page-header h1 { font-size: 3rem; }
  .room-option { grid-template-columns: auto 1fr; }
  .room-option-price { grid-column: 2; }
  .booking-form-container, .booking-summary, .contact-form { padding: 24px 18px; }
  .modal-header, .modal-body { padding-right: 22px; padding-left: 22px; }
}


/* =========================================================
   July 2026 visual and enquiry refinements
   ========================================================= */

/* The generic even-section rule is more specific than a single class.
   Use both classes so the testimonial background always remains dark. */
.section.testimonials-section {
  background:
    linear-gradient(rgba(3, 18, 33, 0.93), rgba(3, 18, 33, 0.95)),
    url('../images/mountain-view.jpg') center / cover no-repeat;
  color: #fff;
}

.section.testimonials-section .section-label {
  color: var(--accent-gold-pale) !important;
}

.section.testimonials-section .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.section.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.section.testimonials-section .testimonial {
  border-color: rgba(216, 181, 106, 0.42);
  background: rgba(4, 20, 36, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.section.testimonials-section .testimonial-text,
.section.testimonials-section .testimonial-name {
  color: #fff;
}

.section.testimonials-section .testimonial-location {
  color: rgba(255, 255, 255, 0.72);
}

.section.testimonials-section .testimonial-nav button {
  border-color: rgba(216, 181, 106, 0.55);
  background: rgba(4, 20, 36, 0.62);
  color: #fff;
}

/* Dedicated destination layout prevents room-card responsive rules from
   creating uneven rows and keeps all attraction images aligned. */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 26px;
  margin-top: 2rem;
}

.destination-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(216, 181, 106, 0.22);
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  box-shadow: 0 10px 34px rgba(6, 25, 45, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(6, 25, 45, 0.15);
}

.destination-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-sand);
}

.destination-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.045);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(3, 25, 31, 0.90) 0%, rgba(3, 25, 31, 0.20) 64%, transparent 100%);
}

.destination-overlay h4 {
  margin: 0 0 0.25rem;
  color: #fff !important;
  font-family: var(--font-serif);
  font-size: 1.25rem !important;
  line-height: 1.2;
}

.destination-overlay p {
  min-height: 2.7em;
  margin: 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.875rem !important;
  line-height: 1.45;
}

/* Show the complete square logo instead of cropping the PALAK wordmark. */
.footer-logo-wrap {
  width: 190px;
  height: 190px;
  overflow: visible;
  margin-bottom: 18px;
}

.footer-logo {
  display: block;
  width: 190px;
  height: 190px;
  margin: 0;
  object-fit: contain;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.9rem;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
}

.form-status.is-success {
  color: #236b45;
  font-weight: 600;
}

.form-status.is-error {
  color: #a33a31;
  font-weight: 600;
}

.btn.is-submitting {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .destination-image {
    aspect-ratio: 16 / 8.5;
  }
}

@media (max-width: 480px) {
  .destination-image {
    aspect-ratio: 4 / 3;
  }

  .footer-logo-wrap,
  .footer-logo {
    width: 165px;
    height: 165px;
  }
}


/* =========================================================
   July 2026 hero centering + destination image update
   ========================================================= */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
}

.hero-content > * {
  margin-inline: auto;
}

.hero-content p {
  margin-inline: auto;
}

.hero-buttons {
  justify-content: center;
}

.scroll-indicator {
  left: 50%;
  transform: translateX(-50%);
}

.destinations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 45px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   July 2026 layout correction pass
   ========================================================= */
.destinations-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.destinations-grid-three .destination-image {
  aspect-ratio: 16 / 10;
}

.destinations-grid-three .destination-overlay {
  padding: 1.6rem;
}

.testimonials-slider {
  min-height: 500px;
}

.testimonial {
  min-height: 100%;
  padding-bottom: 86px;
}

.testimonial-text {
  max-width: 760px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.testimonial-author {
  row-gap: 8px;
}

.footer-grid {
  align-items: start;
}

.footer-brand {
  margin-top: -18px;
}

.footer-logo {
  object-position: center top;
}

@media (max-width: 1200px) {
  .destinations-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .destinations-grid-three {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    min-height: 560px;
  }

  .footer-brand {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .testimonials-slider {
    min-height: 620px;
  }
}


/* =========================================================
   July 2026 services alignment refinement
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-image {
  overflow: hidden;
}

.service-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-info h3,
.service-info p {
  margin-left: auto;
  margin-right: auto;
}

.service-info .btn {
  margin-top: auto;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* =========================================================
   Multi-property brand architecture — Palak Hospitality
   ========================================================= */

/* Brand-level header lockup */
.brand-home .logo-copy em,
.hotels-directory-page .logo-copy em {
  color: rgba(255,255,255,0.68);
}

/* Property navigation sits beneath the global Palak Hospitality header. */
.property-context {
  position: fixed;
  z-index: 920;
  top: var(--header-height);
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(216,181,106,0.20);
  background: rgba(4, 20, 36, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
}

.header.scrolled + .mobile-nav + .overlay + .property-context,
.header.scrolled ~ .property-context {
  top: 78px;
}

.property-context-inner {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.property-name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
  color: #fff;
}

.property-name strong {
  color: var(--accent-gold-pale);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.property-name span {
  color: rgba(255,255,255,0.55);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.property-context nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.property-context nav a {
  position: relative;
  padding: 17px 0 14px;
  color: rgba(255,255,255,0.70);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-context nav a::after {
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: 50%;
  height: 1px;
  background: var(--accent-gold);
  content: "";
  transition: left 0.25s ease, right 0.25s ease;
}

.property-context nav a:hover,
.property-context nav a.active {
  color: #fff;
}

.property-context nav a:hover::after,
.property-context nav a.active::after {
  right: 0;
  left: 0;
}

.property-page .page-header {
  padding-top: calc(var(--header-height) + 120px);
}

.property-page .hero {
  min-height: calc(100vh + 50px);
  padding-top: 50px;
}

/* Brand homepage */
.brand-hero {
  min-height: 92vh;
}

.brand-hero .hero-slide img {
  object-position: center 45%;
}

.brand-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(13,44,70,0.06), rgba(1,10,20,0.44) 56%, rgba(1,10,20,0.76)),
    linear-gradient(180deg, rgba(2,13,26,0.18), rgba(2,13,26,0.72));
}

.brand-hero-content {
  max-width: 1000px;
  text-align: center;
}

.brand-hero-content > * {
  margin-inline: auto;
}

.brand-hero-content h1 {
  max-width: 950px;
  font-size: clamp(3.3rem, 7.6vw, 7rem);
  line-height: 0.92;
}

.brand-hero-content p {
  max-width: 780px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.brand-hero-content .hero-buttons {
  justify-content: center;
}

.brand-booking .booking-widget-inner {
  grid-template-columns: 1.35fr repeat(3, minmax(125px, 0.8fr)) auto;
}

.brand-collection {
  background: linear-gradient(180deg, #fff, var(--bg-cream));
}

.flagship-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border: 1px solid rgba(216,181,106,0.30);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.flagship-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.flagship-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(3,18,33,0.78);
  color: var(--accent-gold-pale);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.flagship-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 80px);
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flagship-content h3 {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.flagship-content > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
}

.property-highlights {
  display: grid;
  gap: 0;
  margin: 28px 0 34px;
  border-top: 1px solid var(--border-light);
}

.property-highlights span {
  border-bottom: 1px solid var(--border-light);
  padding: 13px 0;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.flagship-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--accent-gold-dark);
}

.growth-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 34px;
  background: rgba(255,255,255,0.76);
}

.growth-number {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1;
}

.growth-note h3 {
  margin-bottom: 5px;
  font-size: 1.45rem;
}

.growth-note p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.btn-outline-dark {
  border: 1px solid var(--primary-dark);
  background: transparent;
  color: var(--primary-dark);
}

.btn-outline-dark:hover {
  background: var(--primary-dark);
  color: #fff;
}

.brand-values {
  background: #fff;
}

.brand-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.brand-value-card {
  min-height: 330px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 38px 34px;
  background: var(--bg-cream);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.brand-value-card > span {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 2.3rem;
}

.brand-value-card h3 {
  margin: 60px 0 14px;
  color: var(--primary-dark);
  font-size: 1.6rem;
}

.brand-value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.brand-feature-band {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
  overflow: hidden;
}

.brand-feature-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,14,27,0.92), rgba(2,14,27,0.45) 58%, rgba(2,14,27,0.18));
}

.brand-feature-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
}

.brand-feature-content h2 {
  max-width: 650px;
  margin: 15px 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.brand-feature-content p {
  margin-bottom: 28px;
  color: rgba(255,255,255,0.80);
}

.brand-feature-content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.brand-cta {
  background: var(--bg-cream);
}

.brand-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, var(--primary-deep), #0a3153);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.brand-cta-card h2 {
  margin: 10px 0;
  color: #fff;
}

.brand-cta-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.brand-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hotels directory */
.hotels-page-header {
  background:
    linear-gradient(90deg, rgba(2,12,23,0.90), rgba(2,12,23,0.44)),
    url('../images/mountain-view.jpg') center / cover;
}

.collection-toolbar {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.collection-toolbar h2 {
  margin-top: 10px;
}

.collection-toolbar > p {
  color: var(--text-light);
}

.hotel-directory-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hotel-directory-image {
  position: relative;
  min-height: 540px;
}

.hotel-directory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-directory-image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,0.90);
  color: #236b45;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-directory-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.hotel-directory-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.hotel-directory-top h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.property-index {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 3rem;
}

.hotel-directory-content > p {
  margin: 22px 0;
  color: var(--text-light);
  line-height: 1.85;
}

.hotel-directory-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hotel-directory-meta span {
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--bg-cream);
  color: var(--primary-dark);
  font-size: 0.72rem;
}

.hotel-directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.future-collection {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 34px;
  background: var(--bg-cream);
}

.future-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--accent-gold-dark);
  font-size: 2rem;
}

.future-collection h3 {
  margin: 4px 0 8px;
}

.future-collection p {
  margin: 0;
  color: var(--text-light);
}

@media (max-width: 1100px) {
  .brand-booking .booking-widget-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-booking .booking-widget-inner .btn {
    width: 100%;
  }

  .flagship-showcase,
  .hotel-directory-card {
    grid-template-columns: 1fr;
  }

  .flagship-image,
  .hotel-directory-image {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .property-context {
    top: 78px;
  }

  .property-context-inner {
    overflow-x: auto;
  }

  .property-name span {
    display: none;
  }

  .property-context nav {
    min-width: max-content;
  }

  .property-page .page-header {
    padding-top: 200px;
  }

  .brand-value-grid {
    grid-template-columns: 1fr;
  }

  .growth-note,
  .brand-cta-card,
  .collection-toolbar {
    grid-template-columns: 1fr;
  }

  .growth-note .btn,
  .brand-cta-actions {
    justify-self: start;
  }

  .brand-value-card {
    min-height: 250px;
  }

  .brand-value-card h3 {
    margin-top: 32px;
  }
}

@media (max-width: 700px) {
  .property-context-inner {
    display: block;
    padding-top: 7px;
  }

  .property-name {
    display: none;
  }

  .property-context nav {
    justify-content: space-between;
    gap: 20px;
  }

  .property-context nav a {
    padding-top: 12px;
  }

  .brand-hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .brand-booking .booking-widget-inner {
    grid-template-columns: 1fr;
  }

  .flagship-image,
  .hotel-directory-image {
    min-height: 350px;
  }

  .flagship-content,
  .hotel-directory-content {
    padding: 34px 26px;
  }

  .brand-feature-band {
    min-height: 570px;
  }

  .brand-feature-overlay {
    background: rgba(2,14,27,0.72);
  }

  .brand-cta-actions {
    display: grid;
  }

  .future-collection {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .property-context { top: var(--header-height); }
  .header.scrolled ~ .property-context { top: 78px; }
}
