/* ═══════════════════════════════════════════════════
   JUNGLE JUNCTION — main.css
   Premium Eco-Luxury Resort · Mobile-First
═══════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --forest:   #1B3A2D;
  --leaf:     #2d6a4f;
  --moss:     #52b788;
  --gold:     #C8922A;
  --gold-dk:  #a8791f;
  --cream:    #F5F0E8;
  --mist:     #E8E2D6;
  --bark:     #5C3D1E;
  --white:    #ffffff;
  --text:     #1a1a1a;
  --text-lt:  #6B6456;
  --text-muted:#9a9187;
  --red:      #A32D2D;
  --river:    #1a6b8a;
  --olive:    #4a5c2a;
  --charcoal: #1a1a1a;
  --dark-bg:  #0f2419;

  /* Typography */
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Poppins', Arial, sans-serif;

  /* Spacing */
  --section-pad: 80px;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.16);
  --shadow-xl:  0 24px 80px rgba(0,0,0,.22);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Transitions */
  --trans: .25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100px; left: 20px; z-index: 9999;
  background: var(--gold); color: #fff; padding: 10px 20px;
  border-radius: 0 0 8px 8px; font-weight: 600; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ── LAYOUT ── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 48px 0; }
.section-pad-lg { padding: 120px 0; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-block; font-family: var(--ff-body); font-size: 11px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-head); font-size: clamp(28px, 4vw, 46px);
  color: var(--forest); line-height: 1.2; margin-bottom: 16px;
}
.section-title span, .section-title em { color: var(--gold); font-style: normal; }
.section-title.white { color: #fff; }
.section-title.white span { color: var(--gold); }
.section-sub { font-size: 15px; color: var(--text-lt); line-height: 1.75; max-width: 600px; margin-bottom: 48px; }

/* ── BUTTONS ── */
.btn-gold, .btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  font-weight: 600; font-size: 14px; padding: 13px 32px;
  border-radius: var(--radius-sm); letter-spacing: .04em;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  border: 2px solid var(--gold);
}
.btn-gold:hover, .btn-primary:hover {
  background: var(--gold-dk); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,.35);
}
.btn-forest {
  display: inline-block; background: var(--forest); color: #fff;
  font-weight: 600; font-size: 14px; padding: 13px 32px;
  border-radius: var(--radius-sm); letter-spacing: .04em;
  border: 2px solid var(--forest); transition: all var(--trans);
}
.btn-forest:hover { background: var(--leaf); border-color: var(--leaf); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--forest);
  font-weight: 600; font-size: 14px; padding: 11px 30px;
  border-radius: var(--radius-sm); border: 2px solid var(--forest);
  letter-spacing: .04em; transition: all var(--trans);
}
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-outline-white {
  display: inline-block; background: transparent; color: #fff;
  font-weight: 600; font-size: 14px; padding: 11px 30px;
  border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,.6);
  letter-spacing: .04em; transition: all var(--trans);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ── NAVIGATION ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--forest); color: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  transition: background var(--trans);
}
.site-header.scrolled { background: rgba(27,58,45,.97); backdrop-filter: blur(12px); }
.header-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-leaf { font-size: 1.6rem; line-height: 1; }
.logo-name { display: block; font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700; color: var(--gold); line-height: 1.1; }
.logo-tagline { display: block; font-size: .58rem; color: rgba(255,255,255,.5); letter-spacing: .15em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 3px;
  color: rgba(255,255,255,.82); font-size: .75rem; font-weight: 500;
  letter-spacing: .03em; padding: 6px 10px; border-radius: 4px;
  transition: all var(--trans); white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--gold); background: rgba(200,146,42,.12); }
.nav-caret { font-size: .6rem; opacity: .7; transition: transform var(--trans); }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-book-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: #fff;
  font-size: .75rem; font-weight: 700; padding: 8px 18px;
  border-radius: 4px; letter-spacing: .04em;
  transition: background var(--trans); white-space: nowrap;
  margin-left: 6px;
}
.nav-book-btn:hover { background: var(--gold-dk); }

/* Mega Menu */
.mega-panel {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #0f2419; border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius-md); min-width: 640px;
  box-shadow: var(--shadow-xl); display: none;
  z-index: 2000; overflow: hidden;
}
.mega-panel.mega-safari { min-width: 800px; }
.mega-panel.mega-rooms  { min-width: 720px; }
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel { display: block; }
.mega-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 0; }
.mega-col { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.06); }
.mega-col:last-child { border-right: none; }
.mega-col-wide { flex: 1.4; }
.mega-heading { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.mega-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px; border-radius: 6px; margin-bottom: 2px;
  color: rgba(255,255,255,.75); font-size: .8rem; transition: all var(--trans);
}
.mega-link:hover { background: rgba(200,146,42,.1); color: var(--gold); }
.ml-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.mega-link strong { display: block; color: rgba(255,255,255,.9); font-weight: 600; font-size: .8rem; }
.mega-link small { display: block; font-size: .7rem; color: rgba(255,255,255,.45); margin-top: 1px; }
.mega-feat-list { display: flex; flex-direction: column; gap: 6px; }
.mfl-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.7); }
.mega-cta-box { background: rgba(255,255,255,.04); border-radius: 8px; padding: 16px; }
.mega-cta-box p { font-size: .8rem; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.mega-cta-box strong { color: var(--gold); }
.mega-btn {
  display: block; width: 100%; background: var(--gold); color: #fff;
  font-size: .78rem; font-weight: 700; padding: 10px; border-radius: 4px;
  text-align: center; transition: background var(--trans); margin-bottom: 8px;
}
.mega-btn:hover { background: var(--gold-dk); }
.mega-btn-outline {
  display: block; width: 100%; background: transparent; color: rgba(255,255,255,.7);
  font-size: .78rem; font-weight: 600; padding: 9px;
  border-radius: 4px; text-align: center; border: 1px solid rgba(255,255,255,.2);
  transition: all var(--trans);
}
.mega-btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.mega-note { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: 8px; text-align: center; }
.safari-price-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.safari-price-grid div { background: rgba(255,255,255,.05); border-radius: 4px; padding: 6px; text-align: center; }
.safari-price-grid span { display: block; font-size: .65rem; color: rgba(255,255,255,.5); }
.safari-price-grid strong { display: block; font-size: .82rem; color: var(--gold); font-weight: 700; }

/* Simple dropdown (non-mega) */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #0f2419; border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius-sm); min-width: 180px; padding: 6px;
  box-shadow: var(--shadow-lg); display: none; z-index: 2000;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dd-lnk {
  display: block; padding: 9px 14px; border-radius: 4px;
  font-size: .8rem; color: rgba(255,255,255,.75); transition: all var(--trans);
}
.dd-lnk:hover { color: var(--gold); background: rgba(200,146,42,.1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-wa {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #25d366; color: #fff; transition: transform var(--trans);
}
.header-wa:hover { transform: scale(1.1); }
.header-call {
  background: var(--gold); color: #fff; padding: 7px 14px;
  border-radius: 4px; font-size: .72rem; font-weight: 600;
  white-space: nowrap; transition: background var(--trans);
}
.header-call:hover { background: var(--gold-dk); }
@media (max-width: 1024px) { .header-call { display: none; } }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all var(--trans); }
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; inset: 0 auto 0 0; width: min(360px, 90vw);
  background: var(--dark-bg); z-index: 2000; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 1999; display: none;
}
.drawer-overlay.is-visible { display: block; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.drawer-logo { font-family: var(--ff-head); font-size: 1.1rem; color: var(--gold); }
.drawer-close { color: rgba(255,255,255,.7); font-size: 1.2rem; padding: 4px 8px; }
.drawer-close:hover { color: #fff; }
.drawer-nav { flex: 1; padding: 12px 0; }
.drawer-link { display: block; padding: 13px 20px; font-size: .88rem; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.05); transition: all var(--trans); }
.drawer-link:hover { color: var(--gold); background: rgba(200,146,42,.08); }
.drawer-group-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 20px; font-size: .88rem; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.05); text-align: left; transition: all var(--trans); }
.drawer-group-toggle:hover { color: var(--gold); }
.drawer-sub { display: none; background: rgba(255,255,255,.03); }
.drawer-sub.is-open { display: block; }
.drawer-sub-link { display: block; padding: 10px 20px 10px 36px; font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--trans); border-bottom: 1px solid rgba(255,255,255,.03); }
.drawer-sub-link:hover { color: var(--gold); }
.drawer-footer { padding: 16px 20px 32px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.drawer-book-btn { display: block; background: var(--gold); color: #fff; padding: 13px; border-radius: 6px; text-align: center; font-weight: 700; font-size: .9rem; }
.drawer-wa-btn { display: block; background: #25d366; color: #fff; padding: 13px; border-radius: 6px; text-align: center; font-weight: 700; font-size: .9rem; }

/* ── FLOATING ACTIONS ── */
.float-wa {
  position: fixed; bottom: 84px; right: 20px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: pulse-wa 3s infinite;
}
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.7)} }
.back-to-top {
  position: fixed; bottom: 84px; right: 84px; z-index: 900;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--forest); color: #fff; font-size: 1rem; font-weight: 700;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all var(--trans);
}
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--forest); border-top: 1px solid rgba(255,255,255,.1);
  display: none; grid-template-columns: repeat(5,1fr);
}
@media (max-width: 768px) { .mobile-bottom-bar { display: grid; } }
.mbb-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 0; gap: 2px; font-size: .58rem; color: rgba(255,255,255,.7);
  font-weight: 500; transition: color var(--trans);
}
.mbb-item span { font-size: 1.2rem; }
.mbb-item:hover { color: var(--gold); }
.mbb-book { background: var(--gold); color: #fff; }
.mbb-book:hover { color: #fff; background: var(--gold-dk); }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--cream); border-bottom: 1px solid var(--mist);
  padding: 11px 0; font-size: 12px; color: var(--text-lt);
}
.breadcrumb-bar a { color: var(--forest); font-weight: 500; }
.breadcrumb-bar a:hover { color: var(--gold); }
.bc-sep { margin: 0 8px; opacity: .4; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; padding: 90px 0 72px; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.ph-eyebrow {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px; margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--ff-head); font-size: clamp(32px, 5vw, 60px);
  font-weight: 700; line-height: 1.12; margin-bottom: 18px;
}
.page-hero h1 span { color: var(--gold); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.8; max-width: 640px; margin-bottom: 28px; }
.ph-meta-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ph-meta {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,.9);
}
.ph-meta strong { color: var(--gold); }

/* Hero background variants */
.ph-bg-safari  { background: linear-gradient(135deg,rgba(27,58,45,.92),rgba(27,58,45,.75) 60%,rgba(200,146,42,.3)),url('/img/safari-jeep-corbett.png') center/cover no-repeat; }
.ph-bg-bijrani { background: linear-gradient(135deg,rgba(27,58,45,.9),rgba(45,106,79,.75) 60%,rgba(200,146,42,.3)),url('/img/bijrani/bijrani-hero.jpg') center/cover no-repeat; }
.ph-bg-dhikala { background: linear-gradient(135deg,rgba(15,36,26,.95),rgba(27,58,45,.8) 60%,rgba(200,146,42,.25)),url('/img/dhikala/dhikala-hero.jpg') center/cover no-repeat; }
.ph-bg-jhirna  { background: linear-gradient(135deg,rgba(13,26,46,.92),rgba(26,58,46,.8) 60%,rgba(92,61,30,.3)),url('/img/jhirna/jhirna-hero.jpg') center/cover no-repeat; }
.ph-bg-garjiya { background: linear-gradient(135deg,rgba(46,26,10,.92),rgba(27,58,45,.8) 60%,rgba(200,146,42,.3)),url('/img/garjiya/garjiya-hero.jpg') center/cover no-repeat; }
.ph-bg-dhela   { background: linear-gradient(135deg,rgba(27,58,45,.9),rgba(74,92,42,.75) 60%,rgba(200,146,42,.3)),url('/img/dhela/dhela-hero.jpg') center/cover no-repeat; }
.ph-bg-durga-devi { background: linear-gradient(135deg,rgba(26,13,46,.9),rgba(27,58,45,.8)),url('/img/durga-devi/durga-devi-hero.jpg') center/cover no-repeat; }
.ph-bg-sitabani { background: linear-gradient(135deg,rgba(27,58,45,.9),rgba(45,106,79,.8)),url('/img/sitabani/sitabani-hero.jpg') center/cover no-repeat; }
.ph-bg-phato   { background: linear-gradient(135deg,rgba(26,42,70,.9),rgba(27,58,45,.8)),url('/img/phato/phato-hero.jpg') center/cover no-repeat; }
.ph-bg-index   { background: linear-gradient(135deg,rgba(15,36,26,.88),rgba(27,58,45,.75) 50%,rgba(200,146,42,.2)),url('/img/about/about-jungle-junction.png') center/cover no-repeat; }

/* ── IMAGE COMPONENTS ── */
.img-frame { border-radius: var(--radius-md); overflow: hidden; position: relative; background: var(--forest); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.img-frame:hover img { transform: scale(1.04); }
.img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 16px; background: linear-gradient(transparent,rgba(0,0,0,.65)); color: #fff; font-size: 12px; font-weight: 500; }
.img-tall   { height: 360px; }
.img-med    { height: 230px; }
.img-short  { height: 180px; }
.img-xs     { height: 140px; }
.img-hero-wide { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.img-grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-grid-3    { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.img-grid-4    { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 900px) { .img-hero-wide { grid-template-columns: 1fr; } .img-grid-3,.img-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .img-grid-2,.img-grid-3,.img-grid-4 { grid-template-columns: 1fr; } }

/* ── TWO COLUMN GRIDS ── */
.two-col       { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-rev   { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 860px) { .two-col,.two-col-equal,.two-col-rev { grid-template-columns: 1fr; gap: 32px; } }

/* ── PROSE CONTENT ── */
.prose p { color: var(--text-lt); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.prose h3 { font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: var(--forest); margin: 32px 0 10px; }
.prose h4 { font-family: var(--ff-head); font-size: 18px; font-weight: 700; color: var(--forest); margin: 24px 0 8px; }
.prose ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.prose ul li { color: var(--text-lt); font-size: 15px; line-height: 1.75; margin-bottom: 6px; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }
.card-title { font-family: var(--ff-head); font-size: 18px; color: var(--forest); margin-bottom: 8px; font-weight: 700; }
.card-text { font-size: 14px; color: var(--text-lt); line-height: 1.7; }

/* Zone cards */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.zone-card {
  background: var(--white); border-radius: var(--radius-md); padding: 24px;
  border-left: 3px solid var(--gold); box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none; display: block; color: inherit;
}
.zone-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.zone-icon { font-size: 2rem; margin-bottom: 10px; }
.zone-name { font-family: var(--ff-head); font-size: 19px; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.zone-badge-pill { display: inline-block; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: .06em; margin-bottom: 8px; }
.zone-season { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.zone-desc { font-size: 13px; color: var(--text-lt); line-height: 1.65; margin-bottom: 12px; }
.zone-link { font-size: 12px; color: var(--forest); font-weight: 700; }

/* Wildlife cards */
.wildlife-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }
.wildlife-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 18px;
  border-left: 3px solid var(--gold); box-shadow: var(--shadow-sm); transition: all var(--trans);
}
.wildlife-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wc-animal { font-size: 1.8rem; margin-bottom: 8px; }
.wc-name { font-family: var(--ff-head); font-size: 14px; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.wc-chance { font-size: 11px; color: var(--text-lt); margin-bottom: 8px; }
.wc-bar { height: 4px; background: var(--mist); border-radius: 2px; }
.wc-fill { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--moss), var(--gold)); }
/* Wildlife with real photo */
.wildlife-card img { width: 100%; height: 100px; object-fit: cover; border-radius: 6px; margin-bottom: 8px; }

/* Info / Tips boxes */
.info-box {
  background: var(--cream); border-radius: var(--radius-sm); padding: 22px;
  border-left: 3px solid var(--gold); font-size: 13px; color: var(--text-lt); line-height: 1.8;
}
.info-box strong { color: var(--forest); }
.info-box-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); margin-bottom: 10px; }
.tips-box { background: var(--cream); border-radius: var(--radius-sm); padding: 24px; border-left: 3px solid var(--gold); }
.tips-box h4 { font-family: var(--ff-head); font-size: 16px; font-weight: 700; color: var(--forest); margin-bottom: 14px; }
.tips-list li { font-size: 13px; color: var(--text-lt); padding: 7px 0; display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--mist); line-height: 1.65; }
.tips-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.highlight-box { background: var(--cream); border-radius: var(--radius-sm); padding: 24px; border-left: 3px solid var(--gold); margin: 24px 0; }
.highlight-box h3 { font-family: var(--ff-head); font-size: 18px; color: var(--forest); margin-bottom: 8px; }
.highlight-box p { font-size: 14px; color: var(--text-lt); line-height: 1.75; }

/* Activity cards */
.act-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; }
.act-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 24px 20px; text-align: center; transition: all var(--trans);
}
.act-card:hover { background: rgba(255,255,255,.13); border-color: var(--gold); }
.act-icon { font-size: 2.2rem; margin-bottom: 12px; }
.act-name { font-family: var(--ff-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.act-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.55; margin-bottom: 12px; }
.act-price-lbl { font-family: var(--ff-head); font-size: 20px; color: var(--gold); font-weight: 700; }
.act-price-lbl span { font-family: var(--ff-body); font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; }

/* Feature/highlight cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.feature-card {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px;
  background: var(--white); border-radius: var(--radius-sm); border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.fc-icon { font-size: 1.5rem; flex-shrink: 0; }
.fc-title { font-size: 13px; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
.fc-desc { font-size: 12px; color: var(--text-lt); line-height: 1.5; margin: 0; }

/* Checklist */
.checklist li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--moss); font-weight: 700; flex-shrink: 0; }
.checklist-light li { border-bottom-color: var(--mist); color: var(--text-lt); }
.checklist-light li::before { color: var(--moss); }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 13px; box-shadow: var(--shadow-sm); border-radius: var(--radius-sm); overflow: hidden; }
.pricing-table thead tr { background: var(--forest); color: #fff; }
.pricing-table th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.pricing-table td { padding: 12px 18px; border-bottom: 1px solid var(--mist); color: var(--text-lt); }
.pricing-table td strong { color: var(--text); }
.pricing-table tbody tr:nth-child(even) { background: var(--cream); }
.pricing-table tbody tr:hover { background: #fff8ec; }
.pricing-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 12px 16px; font-size: 13px; color: var(--text-lt); margin-top: 16px; border-radius: 0 4px 4px 0; }

/* USP Strip */
.usp-strip { background: var(--forest); }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.usp-item { padding: 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.usp-item:last-child { border-right: none; }
.usp-icon { font-size: 1.8rem; margin-bottom: 8px; }
.usp-item h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.usp-item p { font-size: 12px; color: rgba(255,255,255,.55); }
@media (max-width: 768px) { .usp-grid { grid-template-columns: 1fr 1fr; } .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); } }

/* Room cards */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.room-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--trans), box-shadow var(--trans); }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.room-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.room-body { padding: 24px; }
.room-type { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.room-name { font-family: var(--ff-head); font-size: 22px; color: var(--forest); margin-bottom: 10px; }
.room-desc { font-size: 13px; color: var(--text-lt); line-height: 1.7; margin-bottom: 16px; }
.room-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.room-chip { background: var(--cream); border-radius: 20px; font-size: 11px; padding: 4px 10px; color: var(--forest); font-weight: 600; }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--mist); }
.room-price { font-family: var(--ff-head); font-size: 24px; font-weight: 700; color: var(--red); }
.room-price small { font-family: var(--ff-body); font-size: 12px; color: var(--text-lt); font-weight: 400; }

/* Package cards */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.pkg-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--trans), box-shadow var(--trans); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pkg-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.pkg-body { padding: 22px; }
.pkg-badge { display: inline-block; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.pkg-name { font-family: var(--ff-head); font-size: 20px; color: var(--forest); margin-bottom: 8px; }
.pkg-includes { margin-bottom: 16px; }
.pkg-includes li { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-lt); padding: 5px 0; border-bottom: 1px solid var(--mist); }
.pkg-includes li::before { content: '✓'; color: var(--moss); font-weight: 700; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--mist); }
.pkg-price { font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: var(--red); }
.pkg-price small { font-family: var(--ff-body); font-size: 12px; color: var(--text-lt); font-weight: 400; }

/* Season cards */
.seasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.season-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.season-header { padding: 28px 24px 20px; text-align: center; }
.season-peak    { background: linear-gradient(135deg, #1a3d1a, #2d6a2d); color: #fff; }
.season-summer  { background: linear-gradient(135deg, var(--bark), var(--gold)); color: #fff; }
.season-monsoon { background: linear-gradient(135deg, #1a2d4a, #2a5a8a); color: #fff; }
.season-autumn  { background: linear-gradient(135deg, #3a2010, #8a4510); color: #fff; }
.season-icon { font-size: 2.5rem; margin-bottom: 10px; }
.season-name { font-family: var(--ff-head); font-size: 22px; font-weight: 700; }
.season-months { font-size: 12px; opacity: .8; margin-top: 4px; }
.season-body { padding: 22px 24px; background: var(--white); }
.season-temp { display: flex; gap: 10px; margin-bottom: 14px; }
.temp-chip { background: var(--cream); padding: 4px 10px; border-radius: 3px; font-size: 12px; color: var(--forest); font-weight: 700; }
.season-desc { font-size: 13px; color: var(--text-lt); line-height: 1.7; margin-bottom: 12px; }
.s-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.s-tag { background: var(--cream); border-radius: 3px; font-size: 11px; padding: 3px 8px; color: var(--forest); font-weight: 600; }

/* Reach/How to get there */
.reach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 20px; }
.reach-card { background: var(--cream); border-radius: var(--radius-sm); padding: 22px; border-left: 3px solid var(--gold); transition: box-shadow var(--trans); }
.reach-card:hover { box-shadow: var(--shadow-md); }
.reach-icon { font-size: 2rem; margin-bottom: 10px; }
.reach-mode { font-family: var(--ff-head); font-size: 17px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.reach-desc { font-size: 13px; color: var(--text-lt); line-height: 1.7; }

/* Booking Form */
.booking-section { background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%); padding: var(--section-pad) 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; gap: 32px; } }
.booking-info h2 { font-family: var(--ff-head); font-size: clamp(26px,3.5vw,40px); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.booking-info h2 span { color: var(--gold); }
.booking-info p { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.booking-contacts { display: flex; flex-direction: column; gap: 14px; }
.booking-contact { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 14px; }
.booking-contact .icon { font-size: 1.2rem; width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-contact a { color: var(--gold); font-weight: 600; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-xl); }
.form-card h3 { font-family: var(--ff-head); font-size: 22px; color: var(--forest); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--forest); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm); font-size: 13px; font-family: var(--ff-body);
  color: var(--text); background: var(--cream); transition: border-color var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--forest); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-error { background: #fff0f0; border: 1px solid var(--red); color: var(--red); font-size: 13px; padding: 10px 14px; border-radius: 4px; margin-bottom: 14px; }
.form-success { background: #e8f5e9; border: 1px solid var(--moss); color: #1b5e20; font-size: 13px; padding: 14px; border-radius: 4px; text-align: center; margin-bottom: 14px; }
.form-note { font-size: 11px; color: var(--text-lt); text-align: center; margin-top: 10px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 13px; color: var(--text-lt); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--text); }
.testi-loc { font-size: 11px; color: var(--text-lt); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; position: relative; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(27,58,45,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--trans); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { color: #fff; font-size: 1.5rem; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--trans), box-shadow var(--trans); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-body { padding: 22px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-title { font-family: var(--ff-head); font-size: 18px; color: var(--forest); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--text-lt); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text-muted); }

/* CTA Band */
.cta-band { background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 100%); padding: 64px 0; text-align: center; }
.cta-band h2 { font-family: var(--ff-head); font-size: clamp(26px,4vw,44px); color: #fff; margin-bottom: 12px; }
.cta-band h2 span { color: var(--gold); }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Related zone links */
.related-zones { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px; }
.related-zone-link { display: block; padding: 16px 18px; background: var(--cream); border-radius: var(--radius-sm); border-left: 3px solid var(--gold); font-size: 14px; font-weight: 600; color: var(--forest); transition: all var(--trans); }
.related-zone-link:hover { background: var(--forest); color: var(--gold); transform: translateX(4px); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; padding: 18px 22px; text-align: left; font-size: 14px; font-weight: 600; color: var(--forest); display: flex; justify-content: space-between; align-items: center; transition: background var(--trans); }
.faq-q:hover { background: var(--cream); }
.faq-q.is-open { background: var(--forest); color: #fff; }
.faq-toggle { font-size: 1rem; flex-shrink: 0; transition: transform var(--trans); }
.faq-q.is-open .faq-toggle { transform: rotate(45deg); }
.faq-a { display: none; padding: 16px 22px; font-size: 13px; color: var(--text-lt); line-height: 1.75; border-top: 1px solid var(--mist); }
.faq-a.is-open { display: block; }

/* ── FOOTER ── */
.footer-cta-band { background: var(--gold); padding: 40px 0; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-cta-title { font-family: var(--ff-head); font-size: clamp(20px,3vw,30px); color: #fff; margin-bottom: 4px; }
.footer-cta-sub { font-size: 14px; color: rgba(255,255,255,.85); }
.footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer { background: var(--dark-bg); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-tagline-gold { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-about { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.7); transition: all var(--trans); }
.footer-social a:hover { background: var(--gold); color: #fff; transform: scale(1.1); }
.footer-address { font-style: normal; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.85; }
.footer-address a { color: var(--gold); font-weight: 600; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--trans); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); }
.footer-newsletter-text { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 4px; border: none; font-size: 13px; background: rgba(255,255,255,.1); color: #fff; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form button { background: var(--gold); color: #fff; padding: 10px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; transition: background var(--trans); }
.footer-newsletter-form button:hover { background: var(--gold-dk); }
.footer-map { margin-top: 14px; border-radius: var(--radius-sm); overflow: hidden; height: 160px; }
.footer-map iframe { width: 100%; height: 100%; border: none; display: block; }
.footer-col-wide { grid-column: span 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.4); transition: color var(--trans); }
.footer-legal a:hover { color: var(--gold); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.text-white { color: #fff; }
.text-muted { color: var(--text-lt); }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); }
.bg-dark { background: var(--dark-bg); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-14 { margin-top: 56px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Body padding for sticky mobile bar */
@media (max-width: 768px) { body { padding-bottom: 64px; } }

/* ── PRINT ── */
@media print {
  .site-header, .mobile-bottom-bar, .float-wa, .back-to-top, .footer-cta-band { display: none; }
  body { font-size: 12pt; }
}

/* =============================================
   EXTENDED PAGE COMPONENTS — v2
   ============================================= */

/* Page Hero — tight hero for inner pages */
.page-hero { padding: 80px 0; text-align: left; }
.page-hero .container { max-width: 800px; }
.ph-eyebrow { display: inline-block; background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; backdrop-filter: blur(6px); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; margin: 0 0 18px; }
.page-hero h1 span { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.7; max-width: 680px; margin: 0 0 28px; }
.ph-meta-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.ph-meta { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 14px; }
.ph-meta strong { color: var(--gold); }
.ph-bg-bijrani { background: linear-gradient(135deg,rgba(27,58,45,.88),rgba(82,130,50,.6)); }

/* Two-column content grid */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media(max-width:768px) { .two-col-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Zone stat box */
.zone-stat-box { background: var(--cream); border-radius: 20px; padding: 32px; }
.zone-stat-box h4 { color: var(--forest); font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-item { text-align: center; }
.stat-val { font-size: 2rem; font-weight: 700; color: var(--forest); font-family: 'Playfair Display', serif; }
.stat-lbl { font-size: 12px; color: var(--olive); text-transform: uppercase; letter-spacing: .06em; }
.info-card { background: #fff; border-radius: 12px; padding: 16px 20px; }
.info-card h5 { color: var(--forest); font-size: .9rem; margin-bottom: 8px; }
.info-card p, .info-card ul { font-size: 14px; color: var(--olive); margin: 0; }

/* Wildlife grid */
.wildlife-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.wildlife-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.wc-icon { font-size: 2rem; margin-bottom: 12px; }
.wildlife-card h4 { color: var(--forest); font-size: 1.05rem; margin-bottom: 8px; }
.wildlife-card p { font-size: 14px; color: var(--olive); line-height: 1.6; margin: 0; }

/* Timing and fee tables */
.timing-table, .fee-table { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.timing-row, .fee-row { display: flex; justify-content: space-between; padding: 10px 14px; border-radius: 8px; background: var(--cream); font-size: 14px; }
.timing-label { color: var(--olive); }
.timing-val { color: var(--forest); font-weight: 600; }
.fee-row span:first-child { color: var(--olive); }
.fee-row span:last-child { color: var(--forest); font-weight: 600; }
.fee-note { background: rgba(200,146,42,.1); }
.fee-note span { color: var(--olive) !important; font-size: 12px !important; font-style: italic; }

/* Tips list */
.tips-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.tips-list li { padding: 12px 14px 12px 36px; background: var(--cream); border-radius: 10px; font-size: 14px; color: var(--olive); position: relative; line-height: 1.5; }
.tips-list li::before { content: '✓'; position: absolute; left: 12px; color: var(--forest); font-weight: 700; }

/* How to reach grid */
.reach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.reach-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.reach-icon { font-size: 2rem; margin-bottom: 12px; }
.reach-card h4 { color: var(--forest); font-size: 1rem; margin-bottom: 8px; }
.reach-card p { font-size: 14px; color: var(--olive); margin: 0; line-height: 1.6; }

/* Zone link cards grid */
.zone-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.zone-link-card { background: var(--cream); border-radius: 16px; overflow: hidden; text-decoration: none; transition: transform .25s, box-shadow .25s; display: block; }
.zone-link-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.zlc-inner { padding: 24px; }
.zlc-inner h4 { color: var(--forest); font-size: 1rem; margin-bottom: 8px; }
.zlc-inner p { font-size: 13px; color: var(--olive); margin-bottom: 16px; line-height: 1.5; }
.zlc-arrow { color: var(--gold); font-weight: 600; font-size: 13px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--forest), var(--moss)); padding: 80px 0; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.btn-primary-lg { display: inline-block; background: var(--gold); color: var(--charcoal); padding: 15px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline-lg { display: inline-block; border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 13px 30px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: background .2s, border-color .2s; }
.btn-outline-lg:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Room listings */
.room-listing { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--cream); }
.room-listing:last-child { border-bottom: none; }
@media(max-width:900px) { .room-listing { grid-template-columns: 1fr; } }
.room-listing-img { position: relative; }
.room-listing-img img { width: 100%; height: 260px; object-fit: cover; border-radius: 16px; }
.room-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--charcoal); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.room-listing-content h3 { color: var(--forest); font-size: 1.6rem; margin-bottom: 6px; }
.room-tagline { color: var(--olive); font-style: italic; margin-bottom: 14px; display: block; }
.room-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.rm-meta { background: var(--cream); padding: 12px; border-radius: 10px; font-size: 13px; }
.rm-meta strong { display: block; color: var(--olive); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.rm-meta span { color: var(--forest); font-weight: 600; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-tags span { background: rgba(44,93,68,.08); color: var(--forest); font-size: 13px; padding: 4px 12px; border-radius: 20px; }
.btn-sm-primary { display: inline-block; background: var(--forest); color: #fff; padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .2s; }
.btn-sm-primary:hover { background: var(--moss); }

/* Amenity grid */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.amenity-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.am-icon { font-size: 2rem; margin-bottom: 12px; }
.amenity-card h4 { color: var(--forest); font-size: 1rem; margin-bottom: 8px; }
.amenity-card p { font-size: 14px; color: var(--olive); margin: 0; }

/* Package full card */
.package-card-full { background: #fff; border-radius: 20px; padding: 32px; margin-bottom: 28px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.pkg-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.pkg-header h3 { color: var(--forest); font-size: 1.4rem; margin-bottom: 6px; }
.pkg-header > div:first-child p { color: var(--olive); font-size: 14px; max-width: 480px; margin: 0; }
.pkg-badge { display: inline-block; background: var(--gold); color: var(--charcoal); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-bottom: 8px; text-transform: uppercase; }
.pkg-price-box { text-align: center; min-width: 160px; }
.pkg-price { font-size: 1.8rem; font-weight: 700; color: var(--forest); font-family: 'Playfair Display', serif; }
.pkg-price span { font-size: 14px; color: var(--olive); font-family: 'Poppins', sans-serif; font-weight: 400; }
.pkg-note { font-size: 12px; color: var(--olive); margin: 4px 0 16px; }
.pkg-includes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.pi-item { font-size: 13px; color: var(--charcoal); padding: 6px 0; }

/* Group package cards */
.group-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 0; }
.gpkg-card { background: #fff; border-radius: 16px; padding: 24px; text-decoration: none; transition: transform .2s, box-shadow .2s; display: block; text-align: left; box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.gpkg-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }
.gpkg-card h4 { color: var(--forest); margin-bottom: 8px; font-size: .95rem; }
.gpkg-card p { color: var(--olive); font-size: 13px; margin: 0; }

/* Experience grid */
.experience-grid { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; }
.exp-card { display: grid; grid-template-columns: 360px 1fr; gap: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); background: #fff; }
@media(max-width:900px) { .exp-card { grid-template-columns: 1fr; } }
.exp-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.exp-body { padding: 32px; }
.exp-icon { font-size: 2.2rem; margin-bottom: 12px; }
.exp-body h3 { color: var(--forest); font-size: 1.3rem; margin-bottom: 10px; }
.exp-body p { color: var(--olive); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.exp-detail-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; font-size: 13px; color: var(--charcoal); }
.exp-free-tag { background: rgba(44,93,68,.12); color: var(--forest); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; display: inline-block; }

/* Add-on grid */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.addon-card { background: #fff; border-radius: 14px; padding: 20px; }
.addon-card h5 { color: var(--forest); font-size: .95rem; margin-bottom: 8px; }
.addon-card p { font-size: 13px; color: var(--olive); margin: 0; }

/* Service grid */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.sc-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h4 { color: var(--forest); font-size: 1rem; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--olive); margin: 0; line-height: 1.6; }

/* Pricing tiers */
.pricing-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.pricing-tier { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.pricing-tier.featured { background: var(--forest); color: #fff; transform: scale(1.02); }
.pricing-tier h4 { color: var(--forest); font-size: 1.1rem; margin-bottom: 8px; }
.pricing-tier.featured h4 { color: var(--gold); }
.pt-size { font-size: 13px; color: var(--olive); margin-bottom: 16px; }
.pricing-tier.featured .pt-size { color: rgba(255,255,255,.7); }
.pt-price { font-size: 1.8rem; font-weight: 700; color: var(--forest); font-family: 'Playfair Display', serif; margin-bottom: 12px; }
.pricing-tier.featured .pt-price { color: #fff; }
.pt-price span { font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 400; color: var(--olive); }
.pricing-tier.featured .pt-price span { color: rgba(255,255,255,.7); }
.pricing-tier p { font-size: 13px; color: var(--olive); }
.pricing-tier.featured p { color: rgba(255,255,255,.8); }

/* Check items */
.check-item { font-size: 14px; color: var(--charcoal); padding: 6px 0; }

/* Package tier cards (school) */
.pkg-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.pkg-tier-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.pkg-tier-card.featured { background: var(--forest); }
.pkg-tier-card h4 { color: var(--forest); font-size: 1.1rem; margin-bottom: 6px; }
.pkg-tier-card.featured h4 { color: var(--gold); }
.pkg-tier-tag { font-size: 12px; color: var(--olive); margin-bottom: 16px; }
.pkg-tier-card.featured .pkg-tier-tag { color: rgba(255,255,255,.7); }
.pkg-tier-card p { font-size: 13px; color: var(--olive); margin-bottom: 16px; }
.pkg-tier-card.featured p { color: rgba(255,255,255,.8); }
.pkg-tier-price { font-size: 1.6rem; font-weight: 700; color: var(--forest); font-family: 'Playfair Display', serif; }
.pkg-tier-card.featured .pkg-tier-price { color: #fff; }

/* Safety grid */
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.safety-card { background: var(--cream); border-radius: 16px; padding: 24px; }
.safety-card h5 { color: var(--forest); font-size: 1rem; margin-bottom: 8px; }
.safety-card p { font-size: 14px; color: var(--olive); margin: 0; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.value-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.vc-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { color: var(--forest); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--olive); margin: 0; }

/* Season blocks (best-time.php) */
.season-block { border-radius: 20px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.season-header { padding: 24px 32px; }
.season-winter { background: linear-gradient(90deg, #1a4a3a, #2d6a4f); }
.season-summer { background: linear-gradient(90deg, #7a4a10, #c8921a); }
.season-monsoon { background: linear-gradient(90deg, #1a3a5a, #2d6a8a); }
.season-title { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.season-title h3 { color: #fff; font-size: 1.2rem; margin: 0; }
.season-tag { background: rgba(255,255,255,.2); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 12px; white-space: nowrap; }
.season-tag.best { background: var(--gold); color: var(--charcoal); }
.season-tag.good { background: rgba(255,255,255,.35); }
.season-meta-row { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,.8); }
.season-body { background: #fff; padding: 32px; }
.season-body h4 { color: var(--forest); font-size: 1.05rem; margin-bottom: 12px; }
.season-body p { font-size: 14px; color: var(--olive); line-height: 1.7; }
.season-tip-box { background: rgba(200,146,42,.08); border: 1px solid rgba(200,146,42,.25); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.season-tip-box h5 { color: var(--charcoal); font-size: .9rem; margin-bottom: 8px; }
.season-tip-box p { font-size: 13px; color: var(--olive); margin: 0; }
.wildlife-peak-list { background: var(--cream); border-radius: 14px; padding: 20px; }
.wildlife-peak-list h5 { color: var(--forest); font-size: .9rem; margin-bottom: 12px; }
.wpl-item { font-size: 14px; color: var(--charcoal); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.wpl-item:last-child { border-bottom: none; }

/* Zone calendar table */
.zone-calendar-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.zone-calendar-table th { background: var(--forest); color: #fff; padding: 10px 8px; text-align: center; font-weight: 600; }
.zone-calendar-table td { padding: 10px 8px; text-align: center; border: 1px solid rgba(0,0,0,.06); }
.zone-calendar-table td:first-child { text-align: left; font-weight: 600; color: var(--forest); }
.zone-calendar-table a { color: var(--forest); text-decoration: none; }
.zone-calendar-table a:hover { text-decoration: underline; }
.z-open { background: rgba(44,93,68,.12); color: var(--forest); font-weight: 600; font-size: 11px; }
.z-closed { background: rgba(200,0,0,.08); color: #a00; font-size: 11px; }
.z-partial { background: rgba(200,146,42,.15); color: #7a4a00; font-size: 11px; }

/* How to reach — large cards */
.reach-grid-lg { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 40px; }
.reach-card-lg { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.reach-icon-lg { font-size: 2.5rem; margin-bottom: 12px; }
.reach-card-lg h3 { color: var(--forest); font-size: 1.15rem; margin-bottom: 4px; }
.reach-distance { color: var(--gold); font-weight: 600; font-size: 13px; margin-bottom: 14px; display: block; }
.reach-card-lg p { font-size: 14px; color: var(--olive); line-height: 1.6; margin-bottom: 16px; }
.route-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.rs-step { display: flex; gap: 12px; font-size: 13px; color: var(--charcoal); align-items: flex-start; line-height: 1.5; }
.rs-num { background: var(--forest); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.reach-tip { background: rgba(200,146,42,.1); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--olive); }

/* Address box */
.address-box-jj { background: var(--cream); border-radius: 16px; padding: 28px; }
.address-box-jj h4 { color: var(--forest); margin-bottom: 12px; }
.address-box-jj a { color: var(--forest); }
.map-embed-wrap { border-radius: 16px; overflow: hidden; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .25s; }
.blog-card:hover { transform: translateY(-4px); }
.bc-img { position: relative; }
.bc-cat { position: absolute; top: 12px; left: 12px; background: var(--forest); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; }
.bc-body { padding: 24px; }
.bc-meta { display: flex; gap: 12px; font-size: 12px; color: var(--olive); margin-bottom: 10px; }
.bc-title { font-size: 1rem; line-height: 1.4; margin-bottom: 12px; }
.bc-title a { color: var(--forest); text-decoration: none; }
.bc-title a:hover { color: var(--gold); }
.bc-excerpt { font-size: 13px; color: var(--olive); line-height: 1.6; margin-bottom: 16px; }
.bc-read-more { color: var(--gold); font-weight: 600; font-size: 13px; text-decoration: none; }

/* Gallery masonry */
.gallery-masonry { columns: 3; column-gap: 16px; }
@media(max-width:768px) { .gallery-masonry { columns: 2; } }
@media(max-width:480px) { .gallery-masonry { columns: 1; } }
.gallery-item { break-inside: avoid; margin-bottom: 16px; }

/* FAQ accordion */
.faq-item { border: 1px solid rgba(44,93,68,.15); border-radius: 12px; overflow: hidden; margin-bottom: 8px; }
.faq-q { width: 100%; background: none; border: none; padding: 18px 20px; text-align: left; font-size: 15px; color: var(--forest); font-family: 'Poppins', sans-serif; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { background: var(--cream); }
.faq-toggle { font-size: 20px; font-weight: 300; flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 20px 18px; font-size: 14px; color: var(--olive); line-height: 1.7; margin: 0; }

/* Legal content */
.legal-content h2 { color: var(--forest); font-size: 1.15rem; margin: 32px 0 12px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--olive); line-height: 1.8; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--forest); }
.policy-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.policy-table th { background: var(--forest); color: #fff; padding: 12px 16px; text-align: left; font-size: 13px; }
.policy-table td { padding: 12px 16px; border-bottom: 1px solid var(--cream); font-size: 14px; }

/* Reach into existing eyebrow */
.text-gold { color: var(--gold); }
