/* ==========================================================================
   Mahak Palace — Hotel & Uttarakhand Travel
   ========================================================================== */

:root {
  --forest-dark: #353432;
  --forest: #696764;
  --forest-light: #a5a4a2;
  --forest-pale: #f3f2f1;
  --gold: #cb001f;
  --gold-light: #dd596d;
  --gold-dark: #8e0016;
  --sky: #e88c9a;
  --cream: #faf9f8;
  --paper: #ffffff;
  --ink: #262423;
  --muted: #726f6c;
  --border: #e7e4e2;
  --shadow: 0 20px 45px -20px rgba(53, 52, 50, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(53, 52, 50, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--forest-dark);
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-dark);
  display: inline-block;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-title { max-width: 640px; margin-bottom: 48px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.bg-forest { background: var(--forest-dark); }
.bg-pale { background: var(--forest-pale); }
.text-light, .text-light p, .text-light h1, .text-light h2, .text-light h3 { color: #fff; }
.text-light .muted { color: rgba(255,255,255,.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--paper);
  box-shadow: 0 2px 16px rgba(53, 52, 50, .1);
  transition: all .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.solid {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(53, 52, 50, .18);
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--forest-dark); font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 700; }
.logo img { height: 40px; width: auto; display: block; }
.site-header.solid .logo img { height: 32px; }

.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  color: var(--forest-dark);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; color: var(--forest-dark); font-weight: 600; font-size: .9rem; }
.header-phone i { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--forest-dark); font-size: 1.5rem;
}

@media (max-width: 992px) {
  .main-nav { position: fixed; top: 0; right: -100%; width: min(320px, 85%); height: 100vh; background: var(--paper); padding: 100px 32px 32px; transition: right .35s ease; box-shadow: -10px 0 30px rgba(0,0,0,.15); }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .header-phone { display: none; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; }
  .nav-overlay.open { display: block; }
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide img, .hero-slide video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,12,.6) 0%, rgba(20,17,17,.5) 45%, rgba(10,9,9,.92) 100%);
  z-index: 1;
}
.hero-slide-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
}
.hero-slide-content .eyebrow { color: var(--gold-light); }
.hero-slide-content h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.hero-slide-content p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.video-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4);
  padding: 6px 14px; border-radius: 100px; font-size: .78rem; margin-bottom: 18px;
  backdrop-filter: blur(4px); width: fit-content; transition: all .3s ease;
}
.video-badge i { color: var(--gold-light); }

.hero-brand {
  position: absolute; top: 130px; left: 50%; transform: translateX(-50%);
  z-index: 6; width: 128px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.4));
}
.hero-brand img { width: 100%; height: auto; display: block; border-radius: 10px; }
@media (max-width: 768px) { .hero-brand { top: 100px; width: 96px; } }

.hero-dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 10px;
}
.hero-dots button {
  width: 34px; height: 4px; border: none; background: rgba(255,255,255,.4); border-radius: 4px; padding: 0;
  transition: background .3s ease;
}
.hero-dots button.active { background: var(--gold); }

.hero-arrows { position: absolute; z-index: 5; bottom: 100px; right: 32px; display: flex; gap: 10px; }
.hero-arrows button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; backdrop-filter: blur(4px);
}
.hero-arrows button:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 5; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; opacity: .85;
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--gold); animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { to { top: 100%; } }

/* ---------- Quick Enquiry Strip ---------- */
.quick-enquiry {
  position: relative; z-index: 20;
  margin-top: -70px;
}
.quick-enquiry .box {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.quick-enquiry .field label { display: block; font-size: .78rem; font-weight: 600; color: var(--forest); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 992px) {
  .quick-enquiry .box { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .quick-enquiry .box { grid-template-columns: 1fr; padding: 24px; }
}

/* ---------- Forms ---------- */
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fdfcf9;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest-light); box-shadow: 0 0 0 4px rgba(165,164,162,.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(203,0,31,.12); }
.field-error { display: block; color: var(--gold); font-size: .78rem; margin-top: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e6f4ea; color: #1a6b3c; border: 1px solid #b6dfc3; }
.form-status.err { background: #fbe9e7; color: #b13b2c; border: 1px solid #f1c1ba; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Feature / Why-choose cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--forest-pale); color: var(--forest);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: .92rem; }
.feature-icon:has(.fa-spa) { background: rgba(232,140,154,.16); color: var(--sky); }

/* ---------- Package / Category cards ---------- */
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 300px;
  box-shadow: var(--shadow-sm);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(53,52,50,0) 30%, rgba(53,52,50,.92) 100%); }
.category-card .cat-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2; color: #fff; }
.category-card .cat-body span { color: var(--gold-light); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.category-card .cat-body h3 { color: #fff; margin: 6px 0 0; font-size: 1.3rem; }

.pkg-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-media { position: relative; height: 210px; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .5px; }
.pkg-duration { position: absolute; bottom: 14px; right: 14px; background: rgba(53,52,50,.85); color: #fff; font-size: .78rem; padding: 5px 12px; border-radius: 100px; display: flex; align-items: center; gap: 6px; }
.pkg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pkg-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pkg-highlights span { font-size: .74rem; background: var(--forest-pale); color: var(--forest); padding: 4px 10px; border-radius: 100px; }
.pkg-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--border); }
.pkg-price { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--forest-dark); font-weight: 700; }
.pkg-price small { display: block; font-family: 'Manrope',sans-serif; font-size: .7rem; color: var(--muted); font-weight: 400; text-transform: uppercase; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-tabs button {
  padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--border);
  background: #fff; font-weight: 600; font-size: .85rem; color: var(--forest-dark);
  transition: all .2s ease;
}
.filter-tabs button.active, .filter-tabs button:hover { background: var(--forest); border-color: var(--forest); color: #fff; }

/* ---------- Destination cards ---------- */
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 340px; box-shadow: var(--shadow-sm); cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(53,52,50,0) 40%, rgba(53,52,50,.95) 100%); }
.dest-card .dest-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; color: #fff; }
.dest-card .dest-body h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.dest-card .dest-body p { color: rgba(255,255,255,.8); font-size: .82rem; margin: 0; }
.dest-card .dest-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(255,255,255,.9); color: var(--forest-dark); font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 992px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } }

/* ---------- Stats / counters ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--gold-light); font-weight: 700; }
.stat-item .label { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.8); }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 460px; object-fit: cover; }
.split-media .float-card {
  position: absolute; bottom: -28px; right: -28px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 26px; display: flex; align-items: center; gap: 14px; max-width: 240px;
}
@media (max-width: 560px) { .split-media .float-card { position: static; margin-top: 20px; } }
.split-media .float-card i { font-size: 1.8rem; color: var(--gold); }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--ink); }
.check-list i { color: var(--forest-light); margin-top: 3px; }

/* ---------- Testimonials ---------- */
.testi-track { display: flex; transition: transform .5s ease; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 32px; min-width: 100%;
  border: 1px solid var(--border);
}
.testi-card .stars { color: var(--gold-dark); margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { font-style: italic; font-size: 1.05rem; color: var(--ink); }
.testi-person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.testi-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-person strong { display: block; color: var(--forest-dark); }
.testi-person span { font-size: .8rem; color: var(--muted); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--border); padding: 0; }
.testi-dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }

.testi-prev, .testi-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--forest-dark); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  z-index: 5; transition: all .2s ease;
}
.testi-prev:hover, .testi-next:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.testi-prev { left: -56px; }
.testi-next { right: -56px; }
@media (max-width: 860px) {
  .testi-prev { left: 6px; }
  .testi-next { right: 6px; }
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; color: var(--forest-dark); gap: 20px; }
.faq-q i { transition: transform .3s ease; color: var(--gold-dark); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-top: 14px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-grid { columns: 4 260px; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .zoom { position: absolute; inset: 0; background: rgba(53,52,50,.45); opacity: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; transition: opacity .3s ease; }
.gallery-item:hover .zoom { opacity: 1; }
@media (max-width: 900px) { .gallery-grid { columns: 2 200px; } }

.lightbox { position: fixed; inset: 0; background: rgba(16,26,22,.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.video-feature { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.video-feature video { width: 100%; display: block; max-height: 560px; object-fit: cover; }
.video-feature .play-overlay { position: absolute; inset: 0; background: rgba(53,52,50,.35); display: flex; align-items: center; justify-content: center; transition: opacity .3s ease; }
.video-feature .play-overlay button { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; color: var(--forest-dark); font-size: 1.6rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.video-feature.playing .play-overlay { opacity: 0; pointer-events: none; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: var(--radius); overflow: hidden; padding: 70px 50px; text-align: center;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  color: #fff;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: .18;
  background: url('../images/hero-mountains.jpg') center/cover;
  mix-blend-mode: overlay;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; }
.cta-banner .eyebrow { color: var(--gold-light); }
.cta-banner .eyebrow::before { background: var(--gold-light); }
.cta-banner .btn-primary { margin-top: 10px; }

/* ---------- Modal (destination details) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(16,26,22,.7); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 760px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; }
.modal-box .modal-img { height: 300px; }
.modal-box .modal-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.modal-box .modal-content { padding: 30px 34px 36px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; font-size: 1.1rem; z-index: 3; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; color: rgba(255,255,255,1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; }
.site-footer .logo { margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul li a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; transition: all .2s ease; }
.social-row a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact i { color: var(--gold-light); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.8); }

/* ---------- Floating WhatsApp + Back to top ---------- */
.floating-actions { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.25); border: none;
  transition: transform .2s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab-whatsapp { background: #25D366; }
.fab-top { background: var(--forest); opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; height: 55vh; min-height: 380px; display: flex; align-items: center; color: #fff; overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,13,.62), rgba(8,13,11,.9)); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0; }

/* ---------- Section Dividers (organic mountain silhouette) ---------- */
.divider { display: block; width: 100%; line-height: 0; }
.divider svg { width: 100%; height: 70px; display: block; }
.divider-cream-to-pale svg path { fill: var(--forest-pale); }
.divider-pale-to-cream svg path { fill: var(--cream); }
.divider-forest-to-cream svg path { fill: var(--cream); }
.divider-cream-to-forest svg path { fill: var(--forest-dark); }
.divider-up { transform: scaleY(-1); }

/* ---------- Booking Widget (hero) ---------- */
.booking-widget {
  position: relative; z-index: 20; margin-top: -66px;
}
.booking-widget .box {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.booking-widget .field label { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: var(--forest); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 992px) { .booking-widget .box { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .booking-widget .box { grid-template-columns: 1fr; padding: 22px; } }

/* ---------- Room cards ---------- */
.room-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-media { height: 230px; overflow: hidden; position: relative; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-media img { transform: scale(1.07); }
.room-media .room-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--forest-dark); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; }
.room-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0; }
.room-amenities span { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.room-amenities i { color: var(--forest-light); }
.room-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--border); }
.room-price { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--forest-dark); font-weight: 700; }
.room-price small { display: block; font-family: 'Manrope',sans-serif; font-size: .7rem; color: var(--muted); font-weight: 400; text-transform: uppercase; }

/* ---------- Parallax nature showcase ---------- */
.parallax-nature {
  position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; text-align: center;
  background-attachment: fixed; background-position: center; background-size: cover;
  color: #fff; overflow: hidden;
}
@media (max-width: 900px) { .parallax-nature { background-attachment: scroll; } }
.parallax-nature::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,48,40,.5), rgba(16,26,22,.78)); }
.parallax-nature .pn-content { position: relative; z-index: 2; max-width: 720px; padding: 60px 24px; }
.parallax-nature .pn-content h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.parallax-nature .pn-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.pn-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.8rem) !important; color: #fff !important; }

/* ---------- Nature strip (icon accent row) ---------- */
.nature-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; margin-top: 40px; }
.nature-strip .ns-item { display: flex; align-items: center; gap: 10px; color: var(--forest-dark); font-weight: 600; font-size: .92rem; }
.nature-strip .ns-item i { color: var(--gold-dark); font-size: 1.1rem; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-in { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-in { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-in { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-in { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(.94); }
[data-aos="zoom-in"].aos-in { transform: scale(1); }
