/* ═══════════════════════════════════════════════════════════════════
   GILGIT-BALTISTAN TOURISM — MASTER STYLESHEET
   Version: 2.0 | Design: Premium Mountain Travel
═══════════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,900&family=Bebas+Neue&display=swap');

/* ── CSS DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* === DARK THEME (Default) === */
  --bg:         #07090e;
  --bg2:        #0d1118;
  --bg3:        #131820;
  --bg4:        #1a2030;
  --surface:    rgba(255,255,255,0.04);
  --surface2:   rgba(255,255,255,0.08);
  --surface3:   rgba(255,255,255,0.13);
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.15);
  --text:       #f0ece2;
  --text2:      #9a948a;
  --text3:      #605c56;
  --gold:       #c8a44a;
  --gold2:      #e6c46e;
  --gold3:      #f5dfa0;
  --teal:       #3eccc4;
  --teal2:      #7ee8e2;
  --sky:        #60aaff;
  --rose:       #e87878;
  --green:      #5ecb8a;
  --amber:      #f0a830;
  --card-bg:    rgba(13,17,24,0.9);
  --nav-bg:     rgba(7,9,14,0.92);
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.35);
  --shadow-md:  0 12px 48px rgba(0,0,0,0.5);
  --shadow-lg:  0 32px 80px rgba(0,0,0,0.65);
  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --f-serif:    'Playfair Display', Georgia, serif;
  --f-elegant:  'Cormorant Garamond', serif;
  --f-body:     'DM Sans', sans-serif;
  --f-display:  'Bebas Neue', sans-serif;
}

[data-theme="light"] {
  --bg:         #f0e8d8;
  --bg2:        #e6ddc8;
  --bg3:        #dbd0b8;
  --bg4:        #cec3a8;
  --surface:    rgba(0,0,0,0.04);
  --surface2:   rgba(0,0,0,0.08);
  --surface3:   rgba(0,0,0,0.13);
  --border:     rgba(0,0,0,0.1);
  --border2:    rgba(0,0,0,0.18);
  --text:       #1a1510;
  --text2:      #58503e;
  --text3:      #8a7e6a;
  --gold:       #9a6a10;
  --gold2:      #b88220;
  --gold3:      #d4a030;
  --teal:       #1a9d98;
  --teal2:      #2cbdb5;
  --sky:        #1a7acc;
  --rose:       #c84040;
  --green:      #2a9a58;
  --amber:      #c07800;
  --card-bg:    rgba(255,248,236,0.95);
  --nav-bg:     rgba(240,232,216,0.95);
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.1);
  --shadow-md:  0 12px 48px rgba(0,0,0,0.15);
  --shadow-lg:  0 32px 80px rgba(0,0,0,0.2);
}

/* ── RESET & BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background .4s, color .4s;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--f-body); }
input, textarea, select { font-family: var(--f-body); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--teal)); border-radius: 3px; }
::selection { background: rgba(200,164,74,.3); color: var(--text); }

/* ── CUSTOM CURSOR ───────────────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid rgba(200,164,74,.6); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all .15s ease;
}
.cursor.big { width: 22px; height: 22px; background: var(--teal); }
.cursor-ring.big { width: 52px; height: 52px; border-color: var(--teal); }

/* ── LOADER ──────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 999999;
  background: #07090e;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity .7s, visibility .7s;
}
#loader.out { opacity: 0; visibility: hidden; }
.loader-icon { font-size: 3.5rem; animation: loaderPop 1.4s ease-in-out infinite; }
@keyframes loaderPop {
  0%,100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(5deg); }
}
.loader-title { font-family: var(--f-elegant); font-size: 1.5rem; color: rgba(240,236,226,.5); letter-spacing:.2em; text-transform: uppercase; }
.loader-progress { width: 180px; height: 2px; background: rgba(255,255,255,.1); border-radius: 1px; overflow: hidden; }
.loader-bar { height: 100%; width: 0; border-radius: 1px; background: linear-gradient(90deg, var(--gold), var(--teal)); animation: loaderFill 2.2s ease forwards; }
@keyframes loaderFill { to { width: 100%; } }
.loader-percent { font-size: .75rem; color: var(--gold); letter-spacing: .1em; font-weight: 600; }

/* ── TOP TICKER ──────────────────────────────────────────────────── */
.top-ticker {
  background: linear-gradient(90deg,#0a0d00,rgba(200,164,74,.9),#001a18,rgba(62,204,196,.8),#0a0d00);
  background-size: 400% 100%; animation: tickerShift 12s linear infinite;
  padding: 8px 0; overflow: hidden; position: relative;
}
@keyframes tickerShift { 0% {background-position:0%} 100% {background-position:400%} }
.ticker-inner {
  display: flex; align-items: center;
  white-space: nowrap; animation: tickerScroll 40s linear infinite;
  gap: 60px;
}
@keyframes tickerScroll { 0% {transform:translateX(100vw)} 100% {transform:translateX(-100%)} }
.ticker-item { font-size: .72rem; color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .05em; display: flex; align-items: center; gap: 8px; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.5); }
.ticker-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: .9rem; z-index: 1; }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  height: 72px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .3s;
}
nav.scrolled { height: 62px; box-shadow: 0 6px 28px rgba(0,0,0,.3); }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-emblem {
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: 0 4px 16px rgba(200,164,74,.3);
  flex-shrink: 0;
}
.nav-brand-text .name { font-family: var(--f-elegant); font-size: 1.4rem; font-weight: 700; color: var(--text); line-height: 1; }
.nav-brand-text .name span { color: var(--gold); }
.nav-brand-text .tagline { font-size: .62rem; color: var(--text3); letter-spacing: .15em; text-transform: uppercase; margin-top: 1px; }

/* Desktop nav links */
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 14px; border-radius: 9px;
  color: var(--text2); font-size: .82rem; font-weight: 500;
  transition: all .2s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--text); background: var(--surface2); }
.nav-links > li > a .chev { font-size: .6rem; opacity: .5; transition: transform .2s; }
.nav-links > li:hover > a .chev { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg); backdrop-filter: blur(28px);
  border: 1px solid var(--border2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); min-width: 560px;
  display: none; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 20px; z-index: 100;
}
.nav-links > li:hover .mega-menu { display: grid; }
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-sm);
  transition: background .2s; cursor: pointer;
}
.mega-item:hover { background: var(--surface2); }
.mega-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.mega-label { font-size: .85rem; font-weight: 600; color: var(--text); }
.mega-sub { font-size: .7rem; color: var(--text3); margin-top: 2px; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: .85rem;
}
.nav-icon-btn:hover { background: var(--surface2); color: var(--text); }

/* Theme toggle */
.theme-toggle {
  width: 52px; height: 28px; border-radius: 14px;
  background: var(--surface2); border: 1px solid var(--border2);
  cursor: pointer; position: relative; transition: all .3s; flex-shrink: 0;
}
.theme-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 2px 8px rgba(200,164,74,.4);
}
[data-theme="light"] .theme-toggle::after { transform: translateX(24px); }
.toggle-faces {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: space-between;
  padding: 0 6px; pointer-events: none; font-size: 10px;
}

.btn-plan {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #150f00 !important; font-weight: 700; font-size: .8rem;
  padding: 9px 20px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(200,164,74,.25);
  transition: all .3s; letter-spacing: .02em;
}
.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,74,.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--bg); overflow-y: auto;
  flex-direction: column; padding: 90px 6% 48px;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-family: var(--f-elegant); font-size: 2rem; font-weight: 700;
  color: var(--text); transition: color .2s;
}
.mob-link:hover { color: var(--gold); }
.mob-link i { font-size: 1rem; color: var(--text3); }
.mob-bottom { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.mob-bottom a { font-size: .85rem; color: var(--text3); }

/* Search Overlay */
.search-ov {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(4,6,12,.97); backdrop-filter: blur(20px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 18vh;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.search-ov.open { opacity: 1; visibility: visible; }
.search-inner { width: 100%; max-width: 720px; padding: 0 24px; }
.search-row {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 2px solid var(--border2); padding-bottom: 14px;
}
.search-row i { color: var(--gold); font-size: 1.4rem; }
.search-field {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--f-elegant); font-size: 2.4rem; font-weight: 300;
  color: #fff; caret-color: var(--gold);
}
.search-field::placeholder { color: rgba(255,255,255,.2); }
.search-x { background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.3rem; cursor: pointer; transition: color .2s; }
.search-x:hover { color: #fff; }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.s-tag {
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--text2); font-size: .78rem; font-weight: 500;
  padding: 8px 16px; border-radius: 100px; cursor: pointer; transition: all .2s;
}
.s-tag:hover { background: var(--gold); color: #150f00; border-color: var(--gold); font-weight: 700; }
.search-results { margin-top: 28px; display: none; }
.search-results.show { display: block; }

/* ── COMMON SECTION STYLES ───────────────────────────────────────── */
section { padding: 110px 5%; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px;
}
.sec-tag::before, .sec-tag::after { content: '—'; opacity: .4; }

.sec-title {
  font-family: var(--f-serif); font-size: clamp(2.2rem,4.5vw,3.6rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.025em;
  color: var(--text); margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-title .tl { color: var(--teal); }

.sec-desc { font-size: 1rem; color: var(--text2); line-height: 1.78; max-width: 560px; }
.sec-hdr { margin-bottom: 60px; }
.sec-hdr.ctr { text-align: center; }
.sec-hdr.ctr .sec-desc { margin: 0 auto; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-r.in { opacity: 1; transform: translateX(0); }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #150f00; font-weight: 700; font-size: .9rem;
  padding: 14px 30px; border-radius: 13px; border: none; cursor: pointer;
  transition: all .3s; box-shadow: 0 6px 20px rgba(200,164,74,.25);
  letter-spacing: .02em;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(200,164,74,.4); }
.btn-glass {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px); color: #fff; font-weight: 600; font-size: .9rem;
  padding: 14px 30px; border-radius: 13px; cursor: pointer; transition: all .3s;
}
.btn-glass:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--border2);
  color: var(--text2); font-size: .82rem; font-weight: 600;
  padding: 10px 22px; border-radius: 10px; cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,164,74,.06); }
.btn-sm {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #150f00; font-weight: 700; font-size: .76rem;
  padding: 9px 18px; border-radius: 9px; border: none; cursor: pointer;
  transition: all .25s; white-space: nowrap;
}
.btn-sm:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(200,164,74,.35); }

/* ── IMAGE PLACEHOLDER SYSTEM ────────────────────────────────────── */
.img-box,
.img-slot {
  position: relative; overflow: hidden;
  background: var(--bg3);
  width: 100%;
}
.img-box img,
.img-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .35s;
  display: block;
  position: relative;
  z-index: 1;
}
/* Card hover zoom */
.img-box:hover img,
.img-slot:hover img { transform: scale(1.07); }

.img-box.has-img .ph,
.img-slot.has-img .ph { opacity: 0; visibility: hidden; pointer-events: none; }

.ph {
  position: absolute; inset: 0;
  z-index: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 16px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 2px dashed var(--border2);
  transition: border-color .3s, background .3s, opacity .35s, visibility .35s;
  cursor: default;
}
/* Placeholder establishes height until a real image loads */
.img-box:not(.has-img):not(:has(> img)),
.img-slot:not(.has-img):not(:has(> img)) { min-height: var(--slot-min, 180px); }
.img-box:not(.has-img):not(:has(> img)) .ph,
.img-slot:not(.has-img):not(:has(> img)) .ph {
  position: relative; inset: auto;
  min-height: inherit; width: 100%;
}
.ph:hover { border-color: var(--gold); background: var(--bg4); }
.ph-icon { font-size: 2.2rem; opacity: .55; line-height: 1; }
.ph-path {
  font-family: monospace; font-size: .72rem;
  color: var(--gold); font-weight: 700; letter-spacing: .03em;
  background: rgba(200,164,74,.1); border: 1px solid rgba(200,164,74,.25);
  padding: 5px 10px; border-radius: 6px; word-break: break-all;
}
.ph-hint { font-size: .68rem; color: var(--text3); line-height: 1.5; max-width: min(240px, 90%); }
.ph-size {
  font-size: .65rem; color: var(--text3);
  background: var(--surface3); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px; font-weight: 600;
}

/* ── HERO ────────────────────────────────────────────────────────── */
#home {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

/* Hero background — your image goes here */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  /* ════════════════════════════════════════
     📸 ADD YOUR HERO IMAGE:
     1. Put hero-bg.jpg in images/hero/
     2. Uncomment the line below:
     background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
     ════════════════════════════════════════ */
}
.hero-ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.hero-ph-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 30% 50%, rgba(62,204,196,.09) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 70% 60%, rgba(200,164,74,.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(96,170,255,.06) 0%, transparent 50%),
    linear-gradient(160deg, #0a1320 0%, #05100c 40%, #160a05 100%);
}
.hero-ph-label {
  position: relative; z-index: 1;
  font-family: monospace; font-size: .82rem;
  color: rgba(200,164,74,.7); letter-spacing: .05em;
  background: rgba(200,164,74,.1); border: 1px solid rgba(200,164,74,.25);
  padding: 8px 16px; border-radius: 8px;
}
.hero-ph-instruction {
  position: relative; z-index: 1;
  font-size: .72rem; color: rgba(255,255,255,.3);
  text-align: center; max-width: 300px; line-height: 1.6;
}

/* Mountain SVG silhouette */
.hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%; z-index: 1;
  animation: mtnRise 2s ease both 2.4s;
}
@keyframes mtnRise { from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Star field */
.hero-stars {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 22% 6%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 38% 15%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 52% 4%, rgba(255,255,255,.6), transparent),
    radial-gradient(2px 2px at 65% 10%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 78% 18%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 88% 5%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 14% 35%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 44% 28%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 72% 32%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 92% 22%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 30% 42%, rgba(255,255,255,.4), transparent);
  animation: starTwinkle 4s ease-in-out infinite alternate;
}
@keyframes starTwinkle { 0% { opacity: .7; } 100% { opacity: 1; } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(7,9,14,.15) 0%, transparent 28%,
    transparent 50%, rgba(7,9,14,.75) 82%,
    var(--bg) 100%);
}

/* Aurora effect */
.hero-aurora {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.aurora-band {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .12; animation: auroraFloat 12s ease-in-out infinite alternate;
}
.aurora-band:nth-child(1) { width: 70%; height: 40%; background: var(--teal); top: 10%; left: -10%; animation-delay: 0s; }
.aurora-band:nth-child(2) { width: 60%; height: 35%; background: var(--gold); top: 20%; right: -10%; animation-delay: -4s; }
.aurora-band:nth-child(3) { width: 50%; height: 30%; background: var(--sky); top: 5%; left: 25%; animation-delay: -8s; }
@keyframes auroraFloat {
  0% { transform: translateY(0) scaleX(1); }
  100% { transform: translateY(20px) scaleX(1.1); }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 5; text-align: center;
  padding: 0 20px; max-width: 1000px;
  animation: hcFade .8s ease both .3s;
}
@keyframes hcFade { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,164,74,.1); border: 1px solid rgba(200,164,74,.28);
  backdrop-filter: blur(12px); color: var(--gold2);
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 24px;
  animation: hcFade .8s ease both .5s;
}
.e-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.6); } }

.hero-h1 {
  font-family: var(--f-serif); font-size: clamp(3rem,9vw,7.8rem);
  font-weight: 900; line-height: .98; letter-spacing: -.03em; color: #fff;
  margin-bottom: 10px; animation: hcFade .8s ease both .65s;
}
.hero-h1 .grad {
  display: block; font-style: italic;
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold2) 35%, var(--teal) 70%, var(--teal2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-family: var(--f-display); font-size: clamp(1.4rem,3.5vw,2.8rem);
  letter-spacing: .25em; color: rgba(255,255,255,.22);
  margin-bottom: 22px; animation: hcFade .8s ease both .8s;
}
.hero-p {
  font-size: clamp(.95rem,2vw,1.15rem); color: rgba(240,232,220,.6);
  line-height: 1.8; max-width: 600px; margin: 0 auto 36px;
  animation: hcFade .8s ease both .95s;
}
.hero-badges {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px; animation: hcFade .8s ease both 1.05s;
}
.h-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); color: rgba(255,255,255,.72);
  font-size: .75rem; font-weight: 500; padding: 8px 16px; border-radius: 100px;
}
.h-badge i { color: var(--gold); font-size: .8rem; }
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: hcFade .8s ease both 1.15s;
}
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: none; color: rgba(255,255,255,.6);
  font-family: var(--f-body); font-size: .85rem; cursor: pointer; transition: color .2s;
}
.btn-play:hover { color: #fff; }
.play-ring {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: all .3s;
}
.btn-play:hover .play-ring { background: var(--gold); border-color: var(--gold); color: #150f00; }

/* Hero side stats */
.hero-side-stats {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  z-index: 5; display: flex; flex-direction: column; gap: 16px;
}
.h-stat-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(14px); border-radius: 14px;
  padding: 14px 18px; text-align: right;
}
.h-stat-val { font-family: var(--f-elegant); font-size: 1.7rem; font-weight: 700; color: var(--gold2); line-height: 1; }
.h-stat-lbl { font-size: .62rem; color: rgba(255,255,255,.38); letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.3); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-stem { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); opacity: .5; } 50% { transform: translateX(-50%) translateY(9px); opacity: 1; } }

/* ── QUICK STRIP ─────────────────────────────────────────────────── */
.quick-strip {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.quick-strip::-webkit-scrollbar { display: none; }
.qs-inner { display: flex; min-width: max-content; }
.qs-item {
  display: flex; align-items: center; gap: 13px;
  padding: 20px 34px; border-right: 1px solid var(--border);
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.qs-item:hover { background: var(--surface2); }
.qs-icon { font-size: 1.4rem; }
.qs-label { font-size: .78rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.qs-sub { font-size: .65rem; color: var(--text3); margin-top: 1px; white-space: nowrap; }

/* ── ABOUT SECTION ───────────────────────────────────────────────── */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--text2); font-size: 1rem; line-height: 1.82; margin-bottom: 20px; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px;
  transition: all .3s;
}
.about-col:hover { background: var(--surface2); border-color: rgba(200,164,74,.22); transform: translateY(-2px); }
.ac-icon { font-size: 1.5rem; margin-bottom: 9px; }
.ac-title { font-size: .84rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.ac-text { font-size: .76rem; color: var(--text2); line-height: 1.6; }

.about-visual { position: relative; }
.about-main-ph {
  border-radius: var(--r-lg); overflow: hidden;
  /* 📸 images/hero/about-main.jpg */
}
.about-visual .img-slot,
.about-main-ph .img-box { border-radius: var(--r-lg); --slot-min: clamp(260px, 42vw, 440px); }
.about-visual .img-slot .ph,
.about-main-ph .img-box .ph { border-radius: var(--r-lg); min-height: var(--slot-min); }

.float-card-1 {
  position: absolute; bottom: -28px; right: -24px; z-index: 2;
  background: var(--card-bg); backdrop-filter: blur(20px);
  border: 1px solid var(--border2); border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--shadow-md);
}
.float-card-2 {
  position: absolute; top: -20px; left: -20px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: var(--r); padding: 16px 20px;
  box-shadow: 0 8px 28px rgba(200,164,74,.35);
}
.fc1-num { font-family: var(--f-elegant); font-size: 1.9rem; font-weight: 700; color: var(--text); line-height: 1; }
.fc1-lbl { font-size: .65rem; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.fc2-num { font-family: var(--f-elegant); font-size: 1.6rem; font-weight: 700; color: #150f00; line-height: 1; }
.fc2-lbl { font-size: .62rem; color: rgba(21,15,0,.65); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* ── STATS BANNER ────────────────────────────────────────────────── */
.stats-band {
  background: var(--bg2); padding: 60px 5%;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-inner { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; text-align: center; }
.stat-box { padding: 16px; }
.stat-num {
  font-family: var(--f-display); font-size: 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-lbl { font-size: .68rem; color: var(--text3); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }

/* ── DESTINATIONS ────────────────────────────────────────────────── */
#destinations { background: var(--bg2); }
.dest-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 48px;
}
.dest-tab {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); font-size: .78rem; font-weight: 600;
  padding: 10px 20px; border-radius: 100px; cursor: pointer; transition: all .2s;
}
.dest-tab.act, .dest-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #150f00; border-color: transparent; font-weight: 700;
}

/* Featured hero card */
.dest-hero {
  border-radius: var(--r-xl); overflow: hidden;
  position: relative; min-height: 520px;
  cursor: pointer; margin-bottom: 20px;
  transition: transform .4s var(--ease);
}
.dest-hero:hover { transform: scale(1.005); }
.dest-hero > .img-box,
.dest-hero > .img-slot {
  position: absolute; inset: 0; z-index: 0;
  min-height: 100%; border-radius: var(--r-xl);
  --slot-min: clamp(280px, 52vw, 520px);
}
.dest-hero .img-box .ph,
.dest-hero .img-slot .ph { min-height: 100%; border-radius: var(--r-xl); }
.dh-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,6,14,.95) 0%, rgba(4,6,14,.45) 45%, transparent 100%);
  border-radius: var(--r-xl);
}
.dh-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 44px; border-radius: 0 0 var(--r-xl) var(--r-xl);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: flex-end;
}
.dh-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,164,74,.18); border: 1px solid rgba(200,164,74,.3);
  color: var(--gold2); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 12px;
}
.dh-name { font-family: var(--f-serif); font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.dh-desc { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.72; max-width: 500px; }
.dh-meta { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.dh-meta-item { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: rgba(255,255,255,.44); }
.dh-meta-item i { color: var(--teal); }
.dh-aside { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.rating-box {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); border-radius: 14px;
  padding: 14px 18px; text-align: center;
}
.rating-num { font-family: var(--f-elegant); font-size: 2rem; font-weight: 700; color: var(--gold2); line-height: 1; }
.rating-stars { font-size: .72rem; color: var(--gold); letter-spacing: 2px; margin-top: 3px; }
.rating-count { font-size: .62rem; color: rgba(255,255,255,.35); margin-top: 2px; }

/* Destination grid */
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.d-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; min-height: 280px;
  transition: transform .4s var(--ease);
}
.d-card:hover { transform: translateY(-8px); }
.d-card > .img-box,
.d-card > .img-slot {
  position: absolute; inset: 0; z-index: 0;
  min-height: 100%; border-radius: var(--r-lg);
  --slot-min: clamp(200px, 34vw, 280px);
}
.d-card .img-box .ph,
.d-card .img-slot .ph { min-height: 100%; border-radius: var(--r-lg); }
.d-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,6,14,.9) 0%, transparent 60%);
  border-radius: var(--r-lg);
}
.d-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.d-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(62,204,196,.14); border: 1px solid rgba(62,204,196,.24);
  color: var(--teal2); font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; margin-bottom: 7px;
}
.d-name { font-family: var(--f-serif); font-size: 1.45rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 5px; }
.d-alt { font-size: .72rem; color: rgba(255,255,255,.4); margin-bottom: 9px; }
.d-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.d-meta-i { display: flex; align-items: center; gap: 4px; font-size: .68rem; color: rgba(255,255,255,.4); }
.d-meta-i i { color: var(--gold); font-size: .62rem; }

/* Detail cards section */
#dest-detail { background: var(--bg3); padding: 80px 5%; }
.detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.det-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .4s; backdrop-filter: blur(10px);
}
.det-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(200,164,74,.18); }
.det-img { position: relative; min-height: 220px; }
.det-img .img-box,
.det-img .img-slot { min-height: 220px; --slot-min: clamp(180px, 28vw, 220px); }
.det-img .img-box .ph,
.det-img .img-slot .ph { min-height: var(--slot-min); }
.det-body { padding: 22px; }
.det-loc { font-size: .68rem; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; display: flex; align-items: center; gap: 5px; }
.det-loc i { color: var(--gold); }
.det-name { font-family: var(--f-elegant); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.det-desc { font-size: .78rem; color: var(--text2); line-height: 1.72; margin-bottom: 14px; }
.det-facts { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.df-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); }
.df-row:last-child { border-bottom: none; }
.df-lbl { font-size: .7rem; color: var(--text3); }
.df-val { font-size: .76rem; font-weight: 600; color: var(--text); }
.det-activities { display: flex; gap: 5px; flex-wrap: wrap; }
.act-tag { font-size: .65rem; color: var(--teal); background: rgba(62,204,196,.08); border: 1px solid rgba(62,204,196,.18); padding: 3px 9px; border-radius: 100px; }

/* ── CULTURE ─────────────────────────────────────────────────────── */
#culture { background: var(--bg); }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.c-tabs { display: flex; gap: 3px; background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 3px; margin-bottom: 28px; width: fit-content; }
.c-tab {
  padding: 9px 18px; border-radius: 8px; border: none; cursor: pointer;
  font-family: var(--f-body); font-size: .76rem; font-weight: 600;
  color: var(--text2); background: transparent; transition: all .2s; white-space: nowrap;
}
.c-tab.act { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #150f00; }
.c-panel { display: none; }
.c-panel.act { display: block; }
.c-intro { font-size: .95rem; color: var(--text2); line-height: 1.8; margin-bottom: 22px; }
.c-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.cf-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; transition: all .28s;
}
.cf-card:hover { background: var(--surface2); border-color: rgba(200,164,74,.2); }
.cf-ico { font-size: 1.5rem; margin-bottom: 8px; }
.cf-ttl { font-size: .8rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cf-txt { font-size: .73rem; color: var(--text2); line-height: 1.58; }

.lang-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; }
.lang-hdr { font-size: .72rem; font-weight: 700; color: var(--text3); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.lang-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.lang-row:last-child { border-bottom: none; }
.lang-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lang-name { font-size: .82rem; font-weight: 600; color: var(--text); min-width: 90px; }
.lang-bar-wrap { flex: 1; height: 4px; background: var(--surface3); border-radius: 2px; }
.lang-bar { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--teal)); }
.lang-count { font-size: .68rem; color: var(--text3); min-width: 55px; text-align: right; }

.culture-imgs { display: flex; flex-direction: column; gap: 16px; }
.c-img-main .img-box,
.c-img-main .img-slot { border-radius: var(--r-lg); --slot-min: clamp(200px, 38vw, 290px); }
.c-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-img-sm .img-box,
.c-img-sm .img-slot { border-radius: var(--r); --slot-min: clamp(140px, 22vw, 180px); }
.team-avatar .img-slot { --slot-min: clamp(160px, 40vw, 200px); aspect-ratio: 1; }

/* ── FOOD ────────────────────────────────────────────────────────── */
#food { background: var(--bg2); }
.food-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.food-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .4s; cursor: pointer;
}
.food-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(200,164,74,.18); }
.food-img { position: relative; min-height: 190px; }
.food-img .img-box,
.food-img .img-slot { min-height: 190px; --slot-min: clamp(160px, 26vw, 190px); }
.food-img .img-box .ph,
.food-img .img-slot .ph { min-height: var(--slot-min); }
.food-body { padding: 18px; }
.food-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(200,164,74,.1); border: 1px solid rgba(200,164,74,.2);
  color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; margin-bottom: 7px;
}
.food-name { font-family: var(--f-elegant); font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.food-origin { font-size: .68rem; color: var(--text3); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.food-origin i { color: var(--teal); font-size: .62rem; }
.food-desc { font-size: .75rem; color: var(--text2); line-height: 1.65; }
.food-ingr { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px; }
.ingr { font-size: .62rem; color: var(--sky); background: rgba(96,170,255,.07); border: 1px solid rgba(96,170,255,.15); padding: 2px 7px; border-radius: 100px; }

/* ── HOTELS ──────────────────────────────────────────────────────── */
#hotels { background: var(--bg3); }
.hotels-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.h-cats { display: flex; gap: 3px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 3px; }
.h-cat {
  padding: 9px 20px; border-radius: 9px; border: none; cursor: pointer;
  font-family: var(--f-body); font-size: .78rem; font-weight: 600;
  color: var(--text2); background: transparent; transition: all .2s; white-space: nowrap;
}
.h-cat.act { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #150f00; }
.h-sort { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--text2); }
.h-sort select {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--f-body); font-size: .75rem;
  padding: 7px 12px; border-radius: 8px; outline: none; cursor: pointer;
}

.hotels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.hotel-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .4s; display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
}
.hotel-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(200,164,74,.18); }
.hotel-img-wrap { position: relative; min-height: 215px; overflow: hidden; }
.hotel-img-wrap .img-box,
.hotel-img-wrap .img-slot { min-height: 215px; --slot-min: clamp(180px, 28vw, 215px); }
.hotel-img-wrap .img-box .ph,
.hotel-img-wrap .img-slot .ph { min-height: var(--slot-min); }
.h-badge {
  position: absolute; top: 13px; left: 13px; z-index: 2;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(8px);
}
.hb-luxury { background: rgba(200,164,74,.18); color: var(--gold2); border: 1px solid rgba(200,164,74,.3); }
.hb-mid { background: rgba(96,170,255,.15); color: var(--sky); border: 1px solid rgba(96,170,255,.28); }
.hb-budget { background: rgba(94,203,138,.15); color: var(--green); border: 1px solid rgba(94,203,138,.28); }
.hb-eco { background: rgba(62,204,196,.15); color: var(--teal); border: 1px solid rgba(62,204,196,.28); }
.hb-heritage { background: rgba(240,168,48,.15); color: var(--amber); border: 1px solid rgba(240,168,48,.28); }
.h-wish {
  position: absolute; top: 13px; right: 13px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(4,6,14,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45); font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s;
}
.h-wish:hover, .h-wish.on { color: var(--rose); border-color: var(--rose); }

.h-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.h-loc { display: flex; align-items: center; gap: 5px; font-size: .68rem; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px; }
.h-loc i { color: var(--gold); font-size: .62rem; }
.h-name { font-family: var(--f-elegant); font-size: 1.22rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.h-stars { color: var(--gold); font-size: .72rem; letter-spacing: 2px; margin-bottom: 10px; }
.h-desc { font-size: .75rem; color: var(--text2); line-height: 1.68; margin-bottom: 13px; flex: 1; }
.h-amenities { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 16px; }
.amenity {
  display: flex; align-items: center; gap: 5px;
  font-size: .65rem; color: var(--text2);
  background: var(--surface); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}
.amenity i { font-size: .6rem; color: var(--teal); }
.h-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.h-price .lbl { font-size: .62rem; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; }
.h-price .amt { font-family: var(--f-elegant); font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1.1; }
.h-price .per { font-size: .65rem; color: var(--text3); }

/* ── TRAVEL GUIDE ────────────────────────────────────────────────── */
#travel { background: var(--bg); }
.travel-layout { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.t-sidebar { position: sticky; top: 90px; }
.t-nav { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.t-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: 10px; cursor: pointer;
  font-size: .82rem; font-weight: 500; color: var(--text2);
  border: 1px solid transparent; transition: all .22s;
}
.t-nav-item:hover, .t-nav-item.act {
  background: var(--surface2); color: var(--gold);
  border-color: rgba(200,164,74,.18);
}
.t-nav-item i { width: 18px; text-align: center; color: var(--gold); }
.t-count { margin-left: auto; font-size: .64rem; background: var(--surface2); border: 1px solid var(--border); color: var(--text3); padding: 2px 8px; border-radius: 100px; }
.t-contact-box {
  margin-top: 20px; background: linear-gradient(135deg,rgba(200,164,74,.1),rgba(62,204,196,.07));
  border: 1px solid rgba(200,164,74,.22); border-radius: var(--r-lg);
  padding: 22px; text-align: center;
}
.tc-icon { font-size: 2.2rem; margin-bottom: 10px; }
.tc-title { font-family: var(--f-elegant); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.tc-text { font-size: .74rem; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }

.t-section { display: none; }
.t-section.act { display: block; }

.route-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  margin-bottom: 16px; transition: all .3s; position: relative; overflow: hidden;
}
.route-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom,var(--gold),var(--teal)); }
.route-card:hover { background: var(--surface2); transform: translateX(4px); }
.rc-hdr { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.rc-title { font-family: var(--f-elegant); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.rc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.rc-tag { font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; background: var(--surface2); border: 1px solid var(--border); color: var(--text3); white-space: nowrap; }
.rc-desc { font-size: .82rem; color: var(--text2); line-height: 1.72; margin-bottom: 14px; }
.rc-stops { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.rc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.rc-stop { font-size: .7rem; font-weight: 600; color: var(--text); }
.rc-line { flex: 0 0 20px; height: 1px; background: var(--border2); max-width: 28px; }
.rc-end { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.transport-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 22px; margin-bottom: 12px; transition: all .28s;
}
.transport-card:hover { background: var(--surface2); }
.tc-icon-box {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.tc-body { flex: 1; }
.tc-name { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.tc-desc { font-size: .75rem; color: var(--text2); line-height: 1.6; }
.tc-tags2 { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.tc-tag2 { font-size: .62rem; color: var(--teal); background: rgba(62,204,196,.07); border: 1px solid rgba(62,204,196,.14); padding: 2px 7px; border-radius: 100px; }
.tc-right { text-align: right; flex-shrink: 0; }
.tc-cost { font-family: var(--f-elegant); font-size: 1.18rem; font-weight: 700; color: var(--gold); line-height: 1; }
.tc-cost-sub { font-size: .62rem; color: var(--text3); margin-top: 2px; }

.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tip-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px; transition: all .28s;
}
.tip-card:hover { background: var(--surface2); border-color: rgba(200,164,74,.18); transform: translateY(-2px); }
.tip-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 11px; }
.tip-title { font-size: .84rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.tip-text { font-size: .75rem; color: var(--text2); line-height: 1.65; }

/* ── TREKKING ────────────────────────────────────────────────────── */
#trekking { background: var(--bg2); }
.trek-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.trek-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: all .4s;
}
.trek-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.trek-img { position: relative; min-height: 210px; }
.trek-img .img-box,
.trek-img .img-slot { min-height: 210px; --slot-min: clamp(175px, 28vw, 210px); }
.trek-img .img-box .ph,
.trek-img .img-slot .ph { min-height: var(--slot-min); }
.trek-diff {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
}
.td-easy { background: rgba(94,203,138,.18); color: var(--green); border: 1px solid rgba(94,203,138,.3); }
.td-mod { background: rgba(96,170,255,.18); color: var(--sky); border: 1px solid rgba(96,170,255,.3); }
.td-hard { background: rgba(200,164,74,.18); color: var(--gold2); border: 1px solid rgba(200,164,74,.3); }
.td-ext { background: rgba(232,120,120,.18); color: var(--rose); border: 1px solid rgba(232,120,120,.3); }
.trek-body { padding: 20px; }
.trek-name { font-family: var(--f-elegant); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.trek-stats2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 12px; }
.ts-box { background: var(--surface); border-radius: 8px; padding: 9px 11px; }
.ts-lbl { font-size: .62rem; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.ts-val { font-size: .84rem; font-weight: 700; color: var(--text); }
.trek-desc { font-size: .74rem; color: var(--text2); line-height: 1.65; margin-bottom: 12px; }
.trek-hls { display: flex; gap: 4px; flex-wrap: wrap; }
.trek-hl { font-size: .62rem; color: var(--gold); background: rgba(200,164,74,.08); border: 1px solid rgba(200,164,74,.18); padding: 3px 8px; border-radius: 100px; }

/* ── WILDLIFE ────────────────────────────────────────────────────── */
#wildlife { background: var(--bg3); }
.wildlife-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.wl-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .35s; text-align: center;
}
.wl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wl-img { min-height: 190px; }
.wl-img .img-box,
.wl-img .img-slot { min-height: 190px; --slot-min: clamp(160px, 26vw, 190px); }
.wl-img .img-box .ph,
.wl-img .img-slot .ph { min-height: var(--slot-min); }
.wl-body { padding: 16px; }
.wl-status { display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; margin-bottom: 7px; }
.ws-end { background: rgba(232,120,120,.14); color: var(--rose); border: 1px solid rgba(232,120,120,.24); }
.ws-vul { background: rgba(200,164,74,.14); color: var(--gold2); border: 1px solid rgba(200,164,74,.24); }
.ws-pro { background: rgba(62,204,196,.12); color: var(--teal); border: 1px solid rgba(62,204,196,.22); }
.wl-name { font-family: var(--f-elegant); font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.wl-latin { font-size: .68rem; color: var(--text3); font-style: italic; margin-bottom: 7px; }
.wl-desc { font-size: .72rem; color: var(--text2); line-height: 1.6; }

/* ── WEATHER ─────────────────────────────────────────────────────── */
#weather { background: var(--bg); }
.weather-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.month-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.month-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px; text-align: center; cursor: pointer; transition: all .28s;
}
.month-card:hover { background: var(--surface2); }
.month-card.pk { border-color: rgba(200,164,74,.3); background: rgba(200,164,74,.06); }
.month-card.gd { border-color: rgba(62,204,196,.2); }
.month-card.off { opacity: .55; }
.m-icon { font-size: 1.5rem; margin-bottom: 5px; }
.m-name { font-size: .68rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.m-temp { font-size: .68rem; color: var(--text3); margin-bottom: 5px; }
.m-status { font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 7px; border-radius: 100px; }
.ms-pk { background: rgba(200,164,74,.14); color: var(--gold); }
.ms-gd { background: rgba(62,204,196,.1); color: var(--teal); }
.ms-off { background: var(--surface2); color: var(--text3); }
.ms-pt { background: rgba(96,170,255,.1); color: var(--sky); }

.weather-cards { display: flex; flex-direction: column; gap: 14px; }
.w-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px; transition: all .28s;
}
.w-card:hover { background: var(--surface2); }
.w-card-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.w-card-icon { font-size: 1.4rem; }
.w-card-title { font-size: .88rem; font-weight: 700; color: var(--text); }
.w-card-text { font-size: .76rem; color: var(--text2); line-height: 1.68; }

/* ── GALLERY ─────────────────────────────────────────────────────── */
#gallery { background: var(--bg2); }
.gallery-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.g-cats { display: flex; gap: 5px; flex-wrap: wrap; }
.g-cat { background: var(--surface); border: 1px solid var(--border); color: var(--text2); font-size: .74rem; font-weight: 600; padding: 7px 16px; border-radius: 100px; cursor: pointer; transition: all .2s; }
.g-cat.act,.g-cat:hover { background: var(--gold); color: #150f00; border-color: var(--gold); font-weight: 700; }

.gallery-masonry { columns: 4; column-gap: 12px; }
.g-item { break-inside: avoid; margin-bottom: 12px; border-radius: var(--r); overflow: hidden; cursor: pointer; position: relative; transition: transform .32s; }
.g-item:hover { transform: scale(1.02); }
.g-item .img-box,
.g-item .img-slot { border-radius: var(--r); width: 100%; }
.g-item .img-box .ph,
.g-item .img-slot .ph { border-radius: var(--r); }
/* Vary heights for masonry */
.g-item:nth-child(4n+1) .img-slot,
.g-item:nth-child(4n+1) .img-box { --slot-min: clamp(200px, 38vw, 260px); }
.g-item:nth-child(4n+2) .img-slot,
.g-item:nth-child(4n+2) .img-box { --slot-min: clamp(160px, 30vw, 190px); }
.g-item:nth-child(4n+3) .img-slot,
.g-item:nth-child(4n+3) .img-box { --slot-min: clamp(180px, 34vw, 230px); }
.g-item:nth-child(4n+4) .img-slot,
.g-item:nth-child(4n+4) .img-box { --slot-min: clamp(150px, 28vw, 175px); }
.g-item:nth-child(7n) .img-slot,
.g-item:nth-child(7n) .img-box { --slot-min: clamp(220px, 42vw, 310px); }
.g-item:nth-child(11n) .img-slot,
.g-item:nth-child(11n) .img-box { --slot-min: clamp(140px, 26vw, 150px); }

.g-hover {
  position: absolute; inset: 0; background: rgba(4,6,14,.72);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  border-radius: var(--r);
}
.g-item:hover .g-hover { opacity: 1; }
.g-hover-icon { font-size: 1.4rem; color: #fff; }
.g-hover-label { font-family: var(--f-elegant); font-size: .95rem; color: #fff; font-weight: 600; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(2,4,8,.97); backdrop-filter: blur(24px);
  align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-img-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  max-width: 88vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  min-width: 420px; min-height: 300px;
}
.lb-img-box .ph { min-width: min(420px, 92vw); min-height: clamp(220px, 50vw, 340px); border-radius: 0; border: none; }
.lb-img-box .img-slot,
.lb-img-box img { max-width: 92vw; max-height: 75vh; object-fit: contain; }
.lb-close { position: fixed; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.18); color: #fff; font-size: .9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.lb-close:hover { background: var(--rose); border-color: var(--rose); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.14); color: rgba(255,255,255,.65); font-size: .9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.lb-nav:hover { background: rgba(255,255,255,.18); color: #fff; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-caption { margin-top: 18px; font-family: var(--f-elegant); font-size: 1.08rem; color: rgba(255,255,255,.55); }
.lb-counter { font-size: .72rem; color: rgba(255,255,255,.28); margin-top: 5px; }

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
#testimonials { background: var(--bg); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.test-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px; position: relative; transition: all .3s;
}
.test-card:hover { background: var(--surface2); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.test-quote { position: absolute; top: 14px; right: 18px; font-size: 3.5rem; line-height: 1; color: var(--gold); opacity: .18; font-family: Georgia, serif; }
.test-stars { color: var(--gold); font-size: .78rem; letter-spacing: 2px; margin-bottom: 12px; }
.test-text { font-family: var(--f-elegant); font-size: 1.02rem; color: var(--text2); line-height: 1.78; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 11px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.test-name { font-size: .84rem; font-weight: 700; color: var(--text); }
.test-from { font-size: .7rem; color: var(--text3); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.test-from i { color: var(--sky); font-size: .62rem; }
.test-trip { font-size: .65rem; color: var(--gold); background: rgba(200,164,74,.1); border: 1px solid rgba(200,164,74,.18); padding: 2px 8px; border-radius: 100px; margin-top: 5px; display: inline-block; }

/* ── BLOG ────────────────────────────────────────────────────────── */
#blog { background: var(--bg2); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .4s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(200,164,74,.18); }
.blog-img { position: relative; min-height: 210px; }
.blog-img .img-box,
.blog-img .img-slot { min-height: 210px; --slot-min: clamp(175px, 28vw, 210px); }
.blog-img .img-box .ph,
.blog-img .img-slot .ph { min-height: var(--slot-min); }
.blog-cat {
  position: absolute; bottom: 13px; left: 13px; z-index: 2;
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
  background: rgba(4,6,14,.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.13); color: var(--gold2);
}
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 9px; flex-wrap: wrap; }
.bm-item { display: flex; align-items: center; gap: 5px; font-size: .68rem; color: var(--text3); }
.bm-item i { font-size: .6rem; color: var(--gold); }
.bm-read { color: var(--teal); }
.blog-title { font-family: var(--f-elegant); font-size: 1.18rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 9px; }
.blog-excerpt { font-size: .75rem; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.blog-tags2 { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 14px; }
.b-tag { font-size: .62rem; color: var(--sky); background: rgba(96,170,255,.07); border: 1px solid rgba(96,170,255,.14); padding: 2px 8px; border-radius: 100px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--border); }
.blog-read { font-size: .76rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap .2s; }
.blog-read:hover { gap: 9px; }
.blog-likes { font-size: .7rem; color: var(--text3); display: flex; align-items: center; gap: 4px; }
.blog-likes i { color: var(--rose); }

/* ── PLANNER ─────────────────────────────────────────────────────── */
#planner { background: var(--bg3); }
.planner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.plan-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
}
.plan-title { font-family: var(--f-elegant); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.plan-sub { font-size: .75rem; color: var(--text2); margin-bottom: 22px; }
.slider-row { margin-bottom: 18px; }
.sl-label { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.sl-val { color: var(--gold); font-family: var(--f-elegant); font-size: 1rem; }
/*input[type=range] { width: 100%; height: 4px; border-radius: 2px; background: var(--surface3); -webkit-appearance: none; outline: none; cursor: pointer; }*/
input[type=range] { width: 100%; height: 4px; border-radius: 2px; background: var(--surface3); -webkit-appearance: none; appearance: none; outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold2)); cursor: pointer; box-shadow: 0 2px 8px rgba(200,164,74,.4); }
.budget-total {
  background: linear-gradient(135deg,rgba(200,164,74,.1),rgba(62,204,196,.07));
  border: 1px solid rgba(200,164,74,.22); border-radius: var(--r); padding: 18px; margin-top: 20px;
}
.bt-lbl { font-size: .7rem; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.bt-amt { font-family: var(--f-elegant); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.bt-note { font-size: .68rem; color: var(--text3); margin-top: 3px; }

/* Packing list */
.pack-cats { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 16px; }
.pack-cat { background: var(--surface2); border: 1px solid var(--border); color: var(--text2); font-size: .7rem; font-weight: 600; padding: 5px 13px; border-radius: 100px; cursor: pointer; transition: all .2s; }
.pack-cat.act,.pack-cat:hover { background: var(--gold); color: #150f00; border-color: var(--gold); }
.pack-list { display: flex; flex-direction: column; gap: 7px; max-height: 340px; overflow-y: auto; }
.pack-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 13px; border-radius: 9px;
  background: var(--surface2); border: 1px solid transparent; cursor: pointer; transition: all .2s;
}
.pack-item.chk { background: rgba(94,203,138,.07); border-color: rgba(94,203,138,.18); }
.pack-item.chk .pi-text { text-decoration: line-through; color: var(--text3); }
.pi-box { width: 17px; height: 17px; border-radius: 4px; border: 1.5px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: .65rem; color: #fff; transition: all .2s; flex-shrink: 0; }
.pack-item.chk .pi-box { background: var(--green); border-color: var(--green); }
.pi-text { font-size: .78rem; color: var(--text); flex: 1; }
.pi-pri { font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 100px; }
.pi-must { background: rgba(232,120,120,.14); color: var(--rose); border: 1px solid rgba(232,120,120,.2); }
.pi-rec { background: rgba(200,164,74,.1); color: var(--gold); border: 1px solid rgba(200,164,74,.18); }
.pi-opt { background: var(--surface3); color: var(--text3); border: 1px solid var(--border); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 9px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(200,164,74,.28); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 17px 20px; cursor: pointer;
  font-size: .84rem; font-weight: 600; color: var(--text); transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-chev { width: 27px; height: 27px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .68rem; color: var(--text3); flex-shrink: 0; transition: all .3s; }
.faq-item.open .faq-chev { background: var(--gold); color: #150f00; border-color: var(--gold); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner { padding: 0 20px 16px; font-size: .8rem; color: var(--text2); line-height: 1.78; }

.faq-contact { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; text-align: center; }
.faq-c-icon { font-size: 3rem; margin-bottom: 14px; }
.faq-c-title { font-family: var(--f-elegant); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.faq-c-text { font-size: .8rem; color: var(--text2); line-height: 1.7; margin-bottom: 22px; }
.contact-methods { display: flex; flex-direction: column; gap: 9px; }
.cm {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; transition: all .22s;
}
.cm:hover { border-color: rgba(200,164,74,.2); background: var(--surface3); }
.cm i { width: 16px; text-align: center; color: var(--gold); font-size: .88rem; }
.cm-text { flex: 1; text-align: left; }
.cm-lbl { font-size: .68rem; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; }
.cm-val { font-size: .8rem; font-weight: 600; color: var(--text); }
.cm-arr { color: var(--text3); font-size: .72rem; }

/* ── NEWSLETTER ──────────────────────────────────────────────────── */
.nl-section {
  background: linear-gradient(135deg, #090f1a 0%, #050e0a 50%, #150900 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
}
.nl-aura {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: .1;
}
.nl-aura:nth-child(1) { width: 50%; height: 200%; background: var(--gold); right: -15%; top: -50%; }
.nl-aura:nth-child(2) { width: 40%; height: 150%; background: var(--teal); left: -10%; bottom: -30%; }
.nl-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.nl-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,164,74,.1); border: 1px solid rgba(200,164,74,.24); color: var(--gold2); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 18px; }
.nl-title { font-family: var(--f-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.nl-desc { font-size: .96rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 32px; }
.nl-form { display: flex; gap: 9px; max-width: 480px; margin: 0 auto 16px; }
.nl-input { flex: 1; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); color: #fff; font-family: var(--f-body); font-size: .84rem; padding: 13px 16px; border-radius: 12px; outline: none; transition: border-color .2s; }
.nl-input:focus { border-color: rgba(200,164,74,.4); }
.nl-input::placeholder { color: rgba(255,255,255,.22); }
.nl-btn { background: linear-gradient(135deg,var(--gold),var(--gold2)); color: #150f00; font-weight: 700; font-size: .84rem; padding: 13px 22px; border-radius: 12px; border: none; cursor: pointer; white-space: nowrap; transition: all .25s; }
.nl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(200,164,74,.35); }
.nl-note { font-size: .68rem; color: rgba(255,255,255,.22); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer { background: var(--bg3); border-top: 1px solid var(--border); }
.footer-accent {
  background: linear-gradient(90deg,rgba(200,164,74,.08),rgba(62,204,196,.06));
  border-bottom: 1px solid var(--border); padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.f-contact-row { display: flex; gap: 28px; flex-wrap: wrap; }
.f-contact-item { display: flex; align-items: center; gap: 7px; font-size: .75rem; color: var(--text2); }
.f-contact-item i { color: var(--gold); font-size: .8rem; }
.f-contact-item a { color: var(--text2); transition: color .2s; }
.f-contact-item a:hover { color: var(--gold); }

.footer-main { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 44px; padding: 52px 5% 38px; }
.f-brand-desc { font-size: .78rem; color: var(--text2); line-height: 1.82; margin: 14px 0 18px; max-width: 270px; }
.f-social { display: flex; gap: 7px; }
.f-social-btn { width: 36px; height: 36px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); color: var(--text2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .22s; font-size: .84rem; }
.f-social-btn:hover { background: var(--surface2); color: var(--gold); border-color: rgba(200,164,74,.28); }
.f-certifications { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 18px; }
.f-cert { display: flex; align-items: center; gap: 5px; background: var(--surface2); border: 1px solid var(--border); color: var(--text3); font-size: .62rem; font-weight: 600; padding: 4px 9px; border-radius: 7px; }
.f-cert i { color: var(--green); }
.footer-col-title { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links-list a { color: var(--text2); font-size: .76rem; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-links-list a:hover { color: var(--gold); }
.footer-links-list a i { font-size: .6rem; color: var(--text3); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 5%; border-top: 1px solid var(--border); font-size: .72rem; color: var(--text3); flex-wrap: wrap; gap: 10px; }
.fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.fb-links a { color: var(--text3); transition: color .2s; }
.fb-links a:hover { color: var(--gold); }

/* ── BACK TO TOP ─────────────────────────────────────────────────── */
.btt { position: fixed; bottom: 24px; right: 24px; z-index: 8000; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold2)); border: none; cursor: pointer; color: #150f00; display: flex; align-items: center; justify-content: center; font-size: .88rem; box-shadow: 0 4px 16px rgba(200,164,74,.3); transition: all .3s; opacity: 0; visibility: hidden; }
.btt.show { opacity: 1; visibility: visible; }
.btt:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,164,74,.45); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width:1200px) {
  .stats-inner { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .wildlife-grid { grid-template-columns: repeat(2,1fr); }
  .food-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .nav-links, .btn-plan { display: none; }
  .hamburger { display: flex; }
  .hero-side-stats { display: none; }
  .float-card-1, .float-card-2 { position: relative; inset: auto; margin: 12px 0; }
  .about-visual { display: flex; flex-direction: column; }
  .about-grid, .culture-grid, .travel-layout, .faq-layout, .planner-grid, .weather-layout { grid-template-columns: 1fr; }
  .travel-layout { gap: 36px; }
  .t-sidebar { position: static; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .hotels-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .trek-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 3; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-float-1 { right: 0; } .about-float-2 { left: 0; }
}
@media (max-width:768px) {
  section { padding: 70px 5%; }
  .c-img-row { grid-template-columns: 1fr; }
  .dest-hero { min-height: clamp(320px, 70vw, 480px); }
  .dest-grid { grid-template-columns: 1fr; }
  .dh-content { grid-template-columns: 1fr; padding: 26px; }
  .dh-aside { align-items: flex-start; flex-direction: row; }
  .detail-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .trek-grid { grid-template-columns: 1fr; }
  .wildlife-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .month-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-masonry { columns: 2; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nl-form { flex-direction: column; }
  .tips-grid { grid-template-columns: 1fr; }
  .c-facts { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badges { flex-direction: column; align-items: center; }
  .food-grid { grid-template-columns: 1fr; }
  .wildlife-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .month-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fb-links { justify-content: center; flex-wrap: wrap; }
  .ph-hint, .ph-size { display: none; }
  .ph-path { font-size: .62rem; padding: 4px 8px; }
}