/* ═══════════════════════════════════════════════════════════════
   HIMACHAL BNB — MINIMAL LIGHT AIRBNB THEME
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f7f7f7;
  --bg-surface: #f4f4f4;
  --border: #e8e8e8;
  --border-hover: #c8c8c8;
  --text-primary: #1a1e18;
  --text-secondary: #6b6f68;
  --text-muted: #aaaaaa;
  --accent: #1a1e18;
  --accent-hover: #000000;
  --accent-subtle: rgba(0, 0, 0, 0.05);
  --accent-warm: #795548;
  --accent-rose: #e91e63;
  --accent-nature: #2d6a4f;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 8px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 24px 56px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-primary); overflow-x: hidden; min-height: 100vh; font-weight: 400; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--text-primary); outline-offset: 2px; }

/* Utilities */
.text-gradient { color: var(--accent-nature); }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.giant-title { font-family: var(--font-body); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Premium Agency-Level
   ═══════════════════════════════════════════════════════════════ */

.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow 0.3s var(--ease); }
.site-nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1320px; margin: 0 auto; padding: 0 32px; height: 64px; }
.site-nav.scrolled .nav-inner { height: 64px; }

/* Brand */
.nav-brand { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 6px; transition: opacity 0.2s; }
.nav-brand:hover { opacity: 0.7; }
.brand-icon { font-size: 1.1rem; }
.brand-primary { color: var(--text-primary); }
.brand-accent { color: var(--text-primary); margin-left: 0; font-weight: 400; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link { position: relative; background: none; border: none; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: color 0.2s; padding: 8px 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.nav-link::after { content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 1.5px; background: var(--text-primary); transform: scaleX(0); transform-origin: right; transition: transform 0.25s var(--ease); border-radius: 1px; }
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--text-primary); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

/* CTA Button */
.nav-cta { background: var(--text-primary); color: #fff; padding: 10px 22px; border-radius: 50px; font-family: var(--font-body); font-size: 13px; font-weight: 600; transition: all 0.2s var(--ease); border: none; cursor: pointer; text-decoration: none; }
.nav-cta:hover { background: #333; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger svg { transition: transform 0.25s var(--ease); }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); min-width: 210px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98); transition: all 0.2s var(--ease); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-link { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--text-secondary); border-radius: 8px; transition: all 0.15s var(--ease); }
.dropdown-link:hover { color: var(--text-primary); background: var(--bg-surface); }
.dropdown-link.active { color: var(--text-primary); font-weight: 600; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 8px; }
.dropdown-view-all { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.dropdown-view-all:hover { color: var(--accent-nature); }
.nav-dropdown-menu { left: 50%; right: auto; transform: translateX(-50%) translateY(-8px) scale(0.98); }
.nav-dropdown.open .nav-dropdown-menu { transform: translateX(-50%) translateY(0) scale(1); }

/* Nav right cluster */
.nav-right { display: flex; align-items: center; gap: 4px; }

/* Compact nav search */
.nav-search { position: relative; display: flex; align-items: center; }
.nav-search-toggle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-surface);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: var(--text-secondary);
  transition: all 0.2s; flex-shrink: 0;
}
.nav-search-toggle:hover { background: var(--border); color: var(--text-primary); }
.nav-search-box {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--border); border-radius: 50px;
  padding: 6px 6px 6px 16px;
  display: flex; align-items: center; gap: 4px;
  width: 260px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(0.97);
  transition: all 0.2s var(--ease); z-index: 200;
}
.nav-search.open .nav-search-box { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.nav-search-box input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 13px; color: var(--text-primary);
}
.nav-search-box input::placeholder { color: var(--text-muted); }
.nav-search-go {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--text-primary); color: #fff;
  border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background 0.15s;
}
.nav-search-go:hover { background: #333; }

/* Clickable card hover (non-link cards) */
.sp-card-clickable:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sp-card-clickable { transition: all 0.2s var(--ease); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.15s; }
.nav-hamburger:hover { background: var(--bg-surface); }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════════
   PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.page-main { padding-top: 64px; min-height: 100vh; }
.page-header { padding: 3rem 0 2rem; max-width: 720px; }
.section { padding: 4rem 0; }
.section-dark { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { display: inline-block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 0.8rem; }
.section-title { font-family: var(--font-body); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.8rem; color: var(--text-primary); }
.section-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 640px; font-weight: 400; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; border: none; border-radius: 50px; cursor: pointer; transition: all 0.2s var(--ease); text-decoration: none; }
.btn-primary { background: var(--text-primary); color: #fff; padding: 14px 32px; }
.btn-primary:hover { background: #333; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); padding: 13px 28px; }
.btn-outline:hover { border-color: var(--text-primary); background: var(--bg-surface); }
.btn-whatsapp { background: #25D366; color: #fff; padding: 10px 20px; font-size: 0.8rem; border-radius: 8px; }
.btn-whatsapp:hover { background: #1fb855; }
.btn-call { font-size: 0.8rem; padding: 10px 20px; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Direct Cards (No Hero)
   ═══════════════════════════════════════════════════════════════ */

/* Hide the old hero panels on homepage */
.hero-panels { display: none; }

/* ── Top Values Section (island* style) ── */
.hp-values { padding: 5rem 0 4rem; }
.hp-values-heading {
  font-family: var(--font-body); font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.hp-values-sub { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 3rem; }
.hp-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.hp-value-item { display: flex; flex-direction: column; gap: 0.75rem; }
.hp-value-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--bg-surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
}
.hp-value-item h3 {
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.3;
}
.hp-value-item p {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65;
  font-weight: 400;
}

/* Stats Bar (legacy fallback) */
.stats-bar { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 2rem 24px; text-align: center; }
.stat-number { font-family: var(--font-body); font-size: 2rem; font-weight: 800; color: var(--text-primary); display: block; }
.stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-top: 4px; }


/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID (legacy — services.html)
   ═══════════════════════════════════════════════════════════════ */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: all 0.3s var(--ease); }
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-3px); }
.service-icon { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.service-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; margin-bottom: 0.2rem; color: var(--text-primary); }
.service-area { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.8rem; font-weight: 500; }
.service-price { font-family: var(--font-heading); font-weight: 800; color: var(--accent); font-size: 0.9rem; display: block; margin-bottom: 1rem; }
.service-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; max-width: 640px; }
.service-strip-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.8rem 2rem; text-align: center; transition: all 0.2s var(--ease); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.service-strip-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-strip-card .service-icon { margin-bottom: 0.3rem; font-size: 2rem; }
.service-strip-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.service-strip-card p { font-size: 0.8rem; color: var(--text-secondary); font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-surface); color: var(--text-primary); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem; border: 1px solid var(--border); }
.testimonial-author strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* CTA */
.section-cta { background: var(--bg-surface); border-top: 1px solid var(--border); }


/* ═══════════════════════════════════════════════════════════════
   DESTINATION & TREK CARDS
   ═══════════════════════════════════════════════════════════════ */

.filter-bar { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 7px 16px; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: all 0.15s; font-family: var(--font-body); }
.filter-btn:hover { background: var(--bg-surface); color: var(--text-primary); border-color: var(--border-hover); }
.filter-btn.active { background: var(--text-primary); border-color: var(--text-primary); color: #fff; font-weight: 600; }

.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.25s var(--ease); animation: fadeInUp 0.5s var(--ease) both; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.dest-card-img { height: 210px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.dest-card:hover .dest-card-img img { transform: scale(1.05); }
.dest-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.dest-card-icon { font-size: 1.2rem; margin-bottom: 0.25rem; display: inline-block; }
.dest-card-name { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.dest-card-region { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-weight: 400; }
.dest-card-tagline { font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; margin-top: 0.4rem; }
.dest-card-meta { display: flex; gap: 0.5rem; margin-top: 0.8rem; font-size: 12px; font-weight: 500; color: var(--text-secondary); flex-wrap: wrap; }
.dest-card-meta span { background: var(--bg-surface); padding: 3px 9px; border-radius: 50px; border: 1px solid var(--border); }
.difficulty-badge { font-size: 0.65rem; font-weight: 600; padding: 2px 8px; border-radius: 10px; }
.difficulty-badge.Easy { background: #dcfce7; color: #166534; }
.difficulty-badge.Moderate { background: #fef9c3; color: #854d0e; }
.difficulty-badge.Hard { background: #fee2e2; color: #991b1b; }
.dest-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; background: var(--bg-surface); border: 1px solid var(--border); color: var(--text-secondary); font-weight: 500; }

.trek-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.trek-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s var(--ease); display: flex; flex-direction: column; }
.trek-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.trek-card-img { height: 210px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.trek-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.trek-card:hover .trek-card-img img { transform: scale(1.05); }
.trek-card-overlay { display: none; }
.trek-card-content { padding: 1.25rem 1.4rem 1.5rem; }
.trek-card-name { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin: 0.3rem 0; color: var(--text-primary); }
.trek-card-meta { display: flex; gap: 0.5rem; font-size: 12px; font-weight: 500; color: var(--text-secondary); flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   DETAIL OVERLAY & GALLERY
   ═══════════════════════════════════════════════════════════════ */

.detail-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.9); opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); display: flex; justify-content: flex-end; }
.detail-overlay.open { opacity: 1; visibility: visible; }
.detail-panel { width: min(540px, 100%); height: 100%; background: var(--bg); overflow-y: auto; transform: translateX(100%); transition: transform 0.4s var(--ease); }
.detail-overlay.open .detail-panel { transform: translateX(0); }
.detail-close { position: absolute; top: 16px; right: 16px; z-index: 10; background: rgba(255,255,255,0.9); border: 1px solid var(--border); color: #111; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.detail-close:hover { background: var(--bg-surface); }
.detail-gallery { position: relative; width: 100%; height: 320px; overflow: hidden; }
.gallery-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.gallery-img.active { opacity: 1; }
.gallery-prev, .gallery-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(0,0,0,0.5); border: 1px solid var(--border); color: white; width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s; }
.gallery-dot.active { background: #fff; width: 20px; border-radius: 4px; }

.detail-body { padding: 2rem 2rem 3rem; }
.detail-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.detail-name { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-primary); }
.detail-tag { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; display: block; margin-bottom: 1rem; }
.detail-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 400; }
.detail-section { margin-bottom: 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.detail-section-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--text-primary); }
.detail-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.detail-info-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; }
.detail-info-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 600; }
.detail-info-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.detail-list { list-style: none; padding: 0; }
.detail-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; font-weight: 400; }
.detail-list li::before { content: '→ '; color: var(--text-primary); font-weight: 600; }
.detail-budget { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.budget-tier { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.budget-label { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-weight: 600; }
.budget-value { font-size: 0.9rem; color: var(--text-primary); font-weight: 700; }

/* Itinerary */
.itinerary-timeline { border-left: 2px solid var(--border); padding-left: 1.5rem; margin-left: 0.5rem; }
.itinerary-day { position: relative; margin-bottom: 1.5rem; }
.itinerary-day::before { content: ''; position: absolute; left: -1.85rem; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--text-primary); border: 2px solid #fff; }
.itin-day-num { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.itin-day-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin: 2px 0; color: var(--text-primary); }
.itin-day-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }
.itin-day-alt { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   PLANNER
   ═══════════════════════════════════════════════════════════════ */

.planner-wizard { max-width: 800px; }
.planner-steps { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.planner-step { display: flex; align-items: center; gap: 0.5rem; padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s; font-weight: 600; }
.planner-step.active { color: var(--accent); border-color: var(--accent); background: var(--accent-subtle); }
.planner-step.done { color: var(--accent); opacity: 0.6; }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; }
.planner-step.active .step-num { background: var(--accent); color: #fff; }
.step-label { font-weight: 700; }
.planner-question { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-primary); }
.option-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.option-cards.multi { grid-template-columns: repeat(4, 1fr); }
.option-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; cursor: pointer; transition: all 0.2s var(--ease); text-align: center; }
.option-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-2px); }
.option-card.selected { border-color: var(--accent); background: var(--accent-subtle); }
.option-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.option-card strong { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; display: block; margin-bottom: 0.3rem; color: var(--text-primary); }
.option-desc { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   SEASONS
   ═══════════════════════════════════════════════════════════════ */

.season-wheel { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.5rem; margin-bottom: 2.5rem; }
.season-month { text-align: center; padding: 0.8rem 0.3rem; border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.season-month:hover { background: var(--bg-card-hover); }
.season-month.active { border-color: var(--accent); background: var(--accent-subtle); }
.season-month-icon { font-size: 1.2rem; display: block; margin-bottom: 4px; }
.season-month-name { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); }
.season-detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.season-detail-icon { font-size: 2.5rem; }
.season-detail-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.season-detail-label { font-size: 0.8rem; color: var(--accent); font-weight: 700; }
.season-detail-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 500; }
.season-detail-grid { display: flex; flex-direction: column; gap: 0.8rem; }
.season-meter { display: flex; align-items: center; gap: 1rem; }
.meter-label { font-size: 0.8rem; color: var(--text-primary); min-width: 110px; font-weight: 700; }
.meter-bar { flex: 1; height: 8px; background: var(--bg-card); border-radius: 4px; overflow: hidden; }
.meter-fill { height: 100%; border-radius: 4px; transition: width 0.5s var(--ease); }

/* ═══════════════════════════════════════════════════════════════
   WILDLIFE
   ═══════════════════════════════════════════════════════════════ */

.wildlife-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.wildlife-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s var(--ease); }
.wildlife-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.wildlife-img-wrap { position: relative; height: 200px; overflow: hidden; }
.wildlife-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.wildlife-status { position: absolute; top: 10px; right: 10px; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.wildlife-status.vulnerable { background: rgba(245,158,11,0.2); color: #d97706; }
.wildlife-status.endangered, .wildlife-status.critically-endangered { background: rgba(220,38,38,0.2); color: #dc2626; }
.wildlife-status.near-threatened { background: rgba(245,158,11,0.2); color: #d97706; }
.wildlife-status.least-concern { background: rgba(46,125,50,0.2); color: #2e7d32; }
.wildlife-body { padding: 1.2rem; }
.wildlife-body h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.wildlife-scientific { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-bottom: 0.5rem; font-weight: 500; }
.wildlife-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.8rem; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wildlife-meta { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.facts-list { margin-top: 1.5rem; }
.fact-item { display: flex; gap: 1rem; padding: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.8rem; }
.fact-icon { font-size: 1.2rem; flex-shrink: 0; }
.fact-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   INFO PAGE — TABS
   ═══════════════════════════════════════════════════════════════ */

.info-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.info-tab { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 10px 20px; font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.info-tab:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.info-tab.active { background: var(--accent-subtle); border-color: var(--accent); color: var(--accent); font-weight: 800; }
.info-panel { display: none; }
.info-panel.active { display: block; }
.info-panel-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════
   GUIDE — ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.guide-sections { max-width: 800px; }
.accordion-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.8rem; overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; background: none; border: none; color: var(--text-primary); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; cursor: pointer; transition: background 0.2s; }
.accordion-trigger:hover { background: var(--bg-card-hover); }
.accordion-icon { font-size: 1.3rem; color: var(--accent); transition: transform 0.3s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); padding: 0 1.5rem; }
.accordion-item.open .accordion-body { max-height: 2000px; padding: 0 1.5rem 1.5rem; }

.guide-tip { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem; margin-bottom: 0.8rem; }
.guide-tip strong { display: block; margin-bottom: 0.3rem; font-size: 0.9rem; font-weight: 800; color: var(--text-primary); }
.risk-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; padding: 2px 8px; border-radius: 10px; margin-left: 0.5rem; text-transform: uppercase; }
.risk-badge.low { background: rgba(46,125,50,0.2); color: #2e7d32; }
.risk-badge.moderate { background: rgba(245,158,11,0.2); color: #d97706; }
.risk-badge.high { background: rgba(220,38,38,0.2); color: #dc2626; }
.risk-badge.very-high { background: rgba(220,38,38,0.3); color: #f87171; }
.guide-tip p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }

.packing-cat { margin-bottom: 1.2rem; }
.packing-cat h4 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--accent); margin-bottom: 0.5rem; text-transform: capitalize; font-weight: 800; }
.packing-cat ul { list-style: none; }
.packing-cat li { padding: 0.3rem 0; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.packing-cat li::before { content: '☐ '; color: var(--text-muted); }

.budget-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem; margin-bottom: 0.8rem; }
.budget-card h4 { font-family: var(--font-heading); margin-bottom: 0.3rem; font-weight: 800; color: var(--text-primary); }
.budget-range { color: var(--accent); font-size: 0.85rem; font-weight: 700; }
.budget-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 500; }
.budget-card ul { list-style: none; padding: 0; }
.budget-card li { padding: 0.2rem 0; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.budget-card li::before { content: '• '; color: var(--accent); }

.permit-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem; margin-bottom: 0.8rem; }
.permit-card h4 { font-family: var(--font-heading); margin-bottom: 0.3rem; font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }
.permit-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }
.permit-tip { color: var(--accent); font-style: italic; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; }
.emergency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.emergency-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.emergency-item strong { font-size: 0.85rem; font-weight: 800; color: var(--text-primary); }
.emergency-num { font-family: var(--font-heading); font-weight: 800; color: var(--accent); font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════════
   CULTURE
   ═══════════════════════════════════════════════════════════════ */

.culture-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.culture-tab { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 10px 20px; font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.culture-tab:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.culture-tab.active { background: var(--accent-subtle); border-color: var(--accent); color: var(--accent); font-weight: 800; }
.culture-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.culture-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: all 0.2s var(--ease); }
.culture-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }
.culture-card-icon { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.culture-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-primary); }
.culture-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }
.food-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.food-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.food-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-primary); }
.food-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.5rem; font-weight: 500; }
.food-region { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; }
.festival-grid { display: grid; gap: 1rem; }
.festival-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.festival-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.festival-icon { font-size: 1.8rem; }
.festival-header h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.festival-meta { font-size: 0.75rem; color: var(--accent); display: block; font-weight: 700; }
.festival-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }
.language-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.language-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.lang-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.lang-script { font-size: 2rem; width: 48px; height: 48px; border-radius: 50%; background: var(--accent-subtle); display: flex; align-items: center; justify-content: center; }
.lang-header h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.lang-region { font-size: 0.75rem; color: var(--text-muted); display: block; font-weight: 700; }
.lang-phrases { display: flex; flex-direction: column; gap: 0.5rem; }
.phrase { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.phrase-local { font-weight: 800; font-size: 0.9rem; color: var(--text-primary); }
.phrase-eng { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* ── Footer — island* rounded card ── */
.site-footer { margin: 4rem 20px 20px; }
.footer-inner {
  background: var(--bg-surface); border-radius: 24px;
  padding: 3.5rem 3rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.8rem; }
.footer-about p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; font-weight: 400; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col li a { font-size: 0.875rem; color: var(--text-secondary); transition: color 0.2s; font-weight: 400; }
.footer-col li a:hover { color: var(--text-primary); }
.footer-contact-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.8rem; font-weight: 400; }
.footer-email { display: inline-block; font-size: 0.85rem; color: var(--text-primary); font-weight: 600; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--text-primary); border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.2s; text-decoration: none;
}
.footer-social-link:hover { background: #333; transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; opacity: 0.7; }

/* Service Category Layout */
.service-category { margin-bottom: 3rem; }
.service-cat-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--text-primary); }
.service-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }
.service-card { box-shadow: var(--shadow-sm); }
.service-card:hover { box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.page-header { animation: slideUp 0.7s var(--ease) 0.1s both; }

@media (max-width: 768px) {
  .site-nav { background: rgba(255,255,255,0.98); border-color: var(--border); }
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1.5rem 24px 2rem; border-bottom: 1px solid var(--border); max-height: calc(100vh - 64px); overflow-y: auto; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 13px; width: 100%; text-align: left; font-weight: 700; }
  .nav-link::after { display: none; }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta { margin-top: 0.5rem; text-align: center; display: block; padding: 14px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none !important; background: transparent; border: none; padding: 0 0 0 1rem; max-height: 0; overflow: hidden; box-shadow: none; left: auto; }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 500px; }
  .dropdown-divider { display: none; }
  .nav-dropdown-trigger { display: flex; justify-content: space-between; align-items: center; }
  .nav-hamburger { display: flex; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hp-values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .dest-grid, .trek-grid, .services-grid { grid-template-columns: 1fr; }
  .hp-hero { margin: 0 12px; border-radius: 20px; }
  .site-footer { margin: 3rem 12px 12px; }
  .footer-inner { padding: 2.5rem 1.5rem 1.5rem; }
  .detail-budget, .detail-info-grid { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr; }
  .option-cards.multi { grid-template-columns: repeat(2, 1fr); }
  .planner-steps { flex-wrap: wrap; gap: 0.5rem; }
  .step-label { display: none; }
  .season-wheel { grid-template-columns: repeat(6, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .emergency-grid { grid-template-columns: 1fr; }
  .giant-title { font-size: clamp(2rem, 7vw, 3.5rem); }
  .service-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .season-wheel { grid-template-columns: repeat(4, 1fr); }
  .option-cards.multi { grid-template-columns: 1fr; }
  .culture-tabs { gap: 0.3rem; }
  .culture-tab { padding: 8px 14px; font-size: 0.75rem; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .hp-values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   DESTINATION PAGE — Cards First, No Hero Image
   ═══════════════════════════════════════════════════════════════ */

/* Hide hero on destination page */
.dp-hero { display: none; }

/* Page header for destination */
.dp-page-header { padding: 3rem 0 1.5rem; max-width: 800px; }
.dp-page-header h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; color: var(--text-primary); line-height: 1.1; margin: 0 0 0.5rem; }
.dp-page-header p { font-size: 16px; color: var(--text-secondary); font-weight: 600; margin: 0 0 1rem; }
.dp-page-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dp-page-badge { background: var(--bg-surface); border: 1px solid var(--border); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; color: var(--text-primary); }

/* Section Headings */
.dp-section-heading { font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--text-primary); margin: 0 0 0.4rem; }
.dp-section-sub { font-size: 15px; color: var(--text-secondary); margin: 0 0 2rem; max-width: 600px; font-weight: 600; }

.dp-booking-empty { text-align: center; padding: 2rem; grid-column: 1 / -1; }
.dp-booking-empty p { color: var(--text-secondary); font-size: 15px; font-weight: 600; }

/* Buttons */
.dp-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 800; text-decoration: none; transition: all 0.25s var(--ease); cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 0.06em; }
.dp-btn-whatsapp { background: #25d366; color: #fff; }
.dp-btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.dp-btn-call { background: #e8f5e9; color: var(--accent); border: 1px solid #a5d6a7; }
.dp-btn-call:hover { background: #c8e6c9; }
.dp-btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border); }
.dp-btn-outline:hover { background: var(--bg-surface); border-color: var(--accent); color: var(--accent); }

/* Nearby Treks */
.dp-trek-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.2rem; }
.dp-trek-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s var(--ease); }
.dp-trek-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.dp-trek-card-img { height: 180px; overflow: hidden; }
.dp-trek-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.dp-trek-card:hover .dp-trek-card-img img { transform: scale(1.05); }
.dp-trek-overlay { display: none; }
.dp-trek-content { padding: 1.2rem 1.5rem; color: var(--text-primary); }
.dp-trek-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin: 0.3rem 0 0.4rem; color: var(--text-primary); }
.dp-trek-meta { display: flex; gap: 1rem; font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.dp-trek-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; font-weight: 500; }

.dp-feature-tag { background: var(--accent-subtle); color: var(--accent); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; }

/* CTA */
.dp-cta { padding: 4rem 0; background: linear-gradient(135deg, #1b5e20, #2e7d32, #43a047); }
.dp-cta .dp-section-heading { color: #fff; }
.dp-cta .dp-section-sub { color: rgba(255,255,255,0.85); margin: 0 auto 2rem; font-weight: 600; }

/* Destination page responsive */
@media (max-width: 768px) {
  .dp-trek-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE & ADVENTURE PAGE — No Hero
   ═══════════════════════════════════════════════════════════════ */

/* Hide hero sections */
.sp-hero, .ap-hero { display: none; }

/* Service Listings */
.sp-listings { padding: 0; background: var(--bg); }
.sp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.2rem; }
.sp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s var(--ease); box-shadow: var(--shadow-sm); }
.sp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.sp-card-img { height: 180px; overflow: hidden; }
.sp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.sp-card:hover .sp-card-img img { transform: scale(1.05); }
.sp-card-body { padding: 1.2rem 1.5rem; }
.sp-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 0.8rem; }
.sp-card-icon { font-size: 1.8rem; }
.sp-card h3, .sp-card-body h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin: 0; }
.sp-card-loc, .sp-card-body span { font-size: 12px; color: var(--text-muted); font-weight: 700; }
.sp-card p, .sp-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0.5rem 0 0.8rem; font-weight: 500; }
.sp-card-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.sp-card-price { font-size: 16px; font-weight: 800; color: var(--accent); }
.sp-card-rating { font-size: 14px; font-weight: 800; color: #f9a825; }
.sp-card-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.sp-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }

/* Visual card variant (with image) */
.sp-card-visual { padding: 0; overflow: hidden; }

/* Adventure page sections — no hero, cards directly */
.ap-operators { padding: 3rem 0; background: var(--bg); }
.ap-treks { padding: 3rem 0; background: var(--bg-surface); }
.ap-where { padding: 3rem 0; background: var(--bg); }
.ap-dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.ap-dest-card { position: relative; border-radius: 16px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; display: block; transition: all 0.3s var(--ease); }
.ap-dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.ap-dest-card-img { height: 180px; overflow: hidden; }
.ap-dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ap-dest-card:hover .ap-dest-card-img img { transform: scale(1.05); }
.ap-dest-overlay { display: none; }
.ap-dest-content { padding: 1.2rem; color: var(--text-primary); }
.ap-dest-icon { font-size: 1.5rem; margin-bottom: 0.3rem; display: inline-block; }
.ap-dest-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin: 0; color: var(--text-primary); }
.ap-dest-content span { font-size: 12px; color: var(--text-muted); font-weight: 700; }

/* Adventure/Service page header (replaces hero) */
.ap-page-header, .sp-page-header { padding: 3rem 0 1.5rem; }
.ap-page-header h1, .sp-page-header h1 { font-family: var(--font-heading); font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 900; color: var(--text-primary); margin: 0 0 0.3rem; }
.ap-page-header p, .sp-page-header p { font-size: 16px; color: var(--text-secondary); font-weight: 600; margin: 0; }

@media (max-width: 768px) {
  .sp-grid, .ap-dest-grid { grid-template-columns: 1fr; }
}


/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--text-primary);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
}

a { cursor: pointer; }

/* ═══════════════════════════════════════════════════════════════
   AIRBNB-STYLE LISTING UI — HimachalBNB
   ═══════════════════════════════════════════════════════════════ */

/* Page wrapper */
.bnb-page { background: #f7f7f7; color: #111; }
.bnb-page .container { padding-bottom: 4rem; }

/* ── Photo Mosaic ─────────────────────────────────────────────── */
.bnb-mosaic {
  position: relative;
  margin: 1.5rem 0 2rem;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.bnb-mosaic-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  height: 448px;
}
.bnb-mosaic-img { overflow: hidden; background: #ddd; }
.bnb-mosaic-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bnb-mosaic-img:hover img { transform: scale(1.04); }
.bnb-mosaic-img:first-child { grid-row: 1/3; border-radius: 16px 0 0 16px; }
.bnb-mosaic-img:nth-child(3) { border-radius: 0 16px 0 0; }
.bnb-mosaic-img:nth-child(5) { border-radius: 0 0 16px 0; }
.bnb-mosaic-show-all {
  position: absolute; bottom: 16px; right: 16px;
  background: #fff; border: 1px solid #222; border-radius: 8px;
  padding: 8px 18px; font-size: 13px; font-weight: 700; color: #222;
  cursor: pointer; transition: background 0.2s; font-family: var(--font-body);
  display: flex; align-items: center; gap: 6px;
}
.bnb-mosaic-show-all:hover { background: #f7f7f7; }

/* ── Destination Header ───────────────────────────────────────── */
.bnb-dest-header {
  padding: 0.5rem 0 1rem;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 1.5rem;
}
.bnb-dest-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #222; margin-bottom: 0.3rem;
}
.bnb-dest-tagline { font-size: 15px; color: #717171; font-weight: 400; margin-bottom: 0.8rem; }
.bnb-dest-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.bnb-dest-badge {
  background: #f7f7f7; border: 1px solid #ebebeb; border-radius: 20px;
  padding: 5px 13px; font-size: 12px; font-weight: 700; color: #717171;
}
/* Override difficulty badge contrast for light bg */
.bnb-page .difficulty-badge.Easy { background: #d1fae5; color: #059669; }
.bnb-page .difficulty-badge.Moderate { background: #fef3c7; color: #b45309; }
.bnb-page .difficulty-badge.Hard { background: #fee2e2; color: #dc2626; }

/* ── Info Grid ────────────────────────────────────────────────── */
.bnb-info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #ebebeb; border-radius: 12px; overflow: hidden;
  border: 1px solid #ebebeb; margin: 1rem 0;
}
.bnb-info-item {
  text-align: center; padding: 1rem;
  background: #fff;
}
.bnb-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #717171; font-weight: 700; margin-bottom: 4px; display: block; }
.bnb-info-value { font-size: 15px; font-weight: 800; color: #222; }

/* ── Search Bar ───────────────────────────────────────────────── */
.bnb-search-bar {
  display: flex; align-items: stretch;
  background: #fff; border: 1px solid #ebebeb; border-radius: 40px;
  padding: 4px; padding-left: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 6px 16px rgba(0,0,0,0.08);
  margin: 1.5rem 0; gap: 0; max-width: 900px;
}
.bnb-search-field-wrap {
  flex: 1; min-width: 0; padding: 14px 20px;
  border-right: 1px solid #ebebeb; cursor: text;
  transition: background 0.15s; border-radius: 40px;
}
.bnb-search-field-wrap:last-of-type { border-right: none; }
.bnb-search-field-wrap:hover { background: #f7f7f7; }
.bnb-search-field-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: #222; display: block; margin-bottom: 2px; }
.bnb-search-field {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: 14px; font-weight: 400; color: #717171;
}
.bnb-search-field::placeholder { color: #b0b0b0; }
.bnb-search-btn {
  width: 50px; height: 50px; background: #111; color: #fff;
  border: none; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex-shrink: 0;
  align-self: center; margin-right: 2px; transition: background 0.2s;
}
.bnb-search-btn:hover { background: #333; }
.bnb-search-btn svg { width: 18px; height: 18px; }

/* ── Category Strip ───────────────────────────────────────────── */
.bnb-category-strip-wrapper {
  position: sticky; top: 64px; z-index: 50;
  background: #f7f7f7; padding: 4px 0;
  margin-bottom: 0; border-bottom: 1px solid #ebebeb;
}
.bnb-category-strip {
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 0;
}
.bnb-category-strip::-webkit-scrollbar { display: none; }
.bnb-category-pill {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 10px 18px; border-radius: 0; border: none; border-bottom: 2px solid transparent;
  background: transparent; cursor: pointer; white-space: nowrap;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; color: #717171;
  transition: all 0.2s; flex-shrink: 0;
}
.bnb-category-pill:hover { color: #111; border-bottom-color: #d0d0d0; }
.bnb-category-pill.active { color: #111; border-bottom-color: #111; font-weight: 700; }
.bnb-category-pill-icon { font-size: 1.4rem; }

/* ── Results Header ───────────────────────────────────────────── */
.bnb-results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1.2rem 0;
}
.bnb-results-count { font-size: 14px; font-weight: 600; color: #222; }
.bnb-filter-btn {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #ebebeb; border-radius: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 700; color: #222;
  cursor: pointer; font-family: var(--font-body); transition: box-shadow 0.2s;
}
.bnb-filter-btn:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.12); }

/* ── Listing Grid ─────────────────────────────────────────────── */
.bnb-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}

/* ── Listing Card ─────────────────────────────────────────────── */
.bnb-listing-card {
  text-decoration: none; color: inherit; display: block;
  cursor: pointer; animation: bnbFadeIn 0.4s ease both;
}
@keyframes bnbFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.bnb-listing-card-img-wrap {
  position: relative; border-radius: 14px; overflow: hidden;
  background: #e0e0e0; aspect-ratio: 1 / 1;
}
.bnb-listing-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.bnb-listing-card:hover .bnb-listing-card-img-wrap img { transform: scale(1.04); }

/* Heart */
.bnb-listing-card-heart {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer; font-size: 1.4rem;
  line-height: 1; z-index: 2; color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
  transition: transform 0.2s, color 0.2s;
}
.bnb-listing-card-heart:hover { transform: scale(1.2); }
.bnb-listing-card-heart.liked { color: #FF385C; filter: none; }

/* Badge */
.bnb-listing-card-type-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.93);
  color: #222; padding: 4px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
}

/* Nav dots */
.bnb-card-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; opacity: 0; transition: opacity 0.2s;
}
.bnb-listing-card:hover .bnb-card-dots { opacity: 1; }
.bnb-card-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); }
.bnb-card-dot.active { background: #fff; }

/* Body */
.bnb-listing-card-body { padding: 12px 2px 0; }
.bnb-listing-card-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 8px;
}
.bnb-listing-card-name {
  font-size: 14px; font-weight: 700; color: #222; line-height: 1.3;
}
.bnb-listing-card-rating {
  display: flex; align-items: center; gap: 2px;
  font-size: 13px; font-weight: 600; color: #222; flex-shrink: 0;
}
.bnb-listing-card-loc { font-size: 13px; color: #717171; font-weight: 400; margin-top: 2px; }
.bnb-listing-card-snippet {
  font-size: 13px; color: #717171; margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.bnb-listing-card-price { margin-top: 7px; font-size: 14px; color: #222; }
.bnb-listing-card-price strong { font-weight: 700; }
.bnb-listing-card-price span { font-weight: 400; color: #717171; }

/* CTA Buttons */
.bnb-listing-card-cta {
  display: block; margin-top: 10px; text-align: center;
  padding: 10px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.bnb-listing-card-cta.outline { background: #fff; color: #111; border: 1.5px solid #ebebeb; }
.bnb-listing-card-cta.outline:hover { border-color: #111; background: #f7f7f7; }
.bnb-listing-card-cta.explore { background: #111; color: #fff; border: 1.5px solid #111; }
.bnb-listing-card-cta.explore:hover { background: #333; border-color: #333; }

/* ── About / Guide Section ────────────────────────────────────── */
.bnb-about-section { border-top: 1px solid #ebebeb; padding: 2rem 0; }
.bnb-about-header {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
.bnb-about-section h2 {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #222;
}
.bnb-toggle-btn {
  background: none; border: 1px solid #222; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; color: #222;
  transition: background 0.2s;
}
.bnb-toggle-btn:hover { background: #f7f7f7; }
.bnb-about-body {
  max-height: 0; overflow: hidden; transition: max-height 0.45s ease;
}
.bnb-about-section.open .bnb-about-body { max-height: 3000px; }
.bnb-about-desc {
  font-size: 15px; line-height: 1.75; color: #717171; margin: 1.2rem 0;
}
.bnb-highlights-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid #ebebeb; margin-top: 1rem;
}
.bnb-highlight-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 1rem; border-bottom: 1px solid #ebebeb; font-size: 14px; color: #717171;
}
.bnb-highlight-item:nth-child(odd) { border-right: 1px solid #ebebeb; }
.bnb-highlight-item::before { content: '↗'; color: #222; font-weight: 800; flex-shrink: 0; }
.bnb-info-row { 
  padding: 1rem 0; border-bottom: 1px solid #ebebeb;
  display: grid; grid-template-columns: 140px 1fr; gap: 1rem; align-items: center;
}
.bnb-info-row-label { font-size: 13px; font-weight: 700; color: #222; }
.bnb-info-row-value { font-size: 14px; color: #717171; }

/* Empty State */
.bnb-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 3rem; color: #717171; font-size: 15px;
}
.bnb-empty p { margin-bottom: 1.2rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .bnb-listing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .bnb-listing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bnb-mosaic-grid {
    grid-template-columns: 2fr 1fr; grid-template-rows: 180px 180px; height: 368px;
  }
  .bnb-mosaic-img:nth-child(4), .bnb-mosaic-img:nth-child(5) { display: none; }
  .bnb-info-grid { grid-template-columns: repeat(2, 1fr); }
  .bnb-highlights-grid { grid-template-columns: 1fr; }
  .bnb-highlight-item:nth-child(odd) { border-right: none; }
}
@media (max-width: 600px) {
  .bnb-listing-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bnb-mosaic-grid {
    grid-template-columns: 1fr; grid-template-rows: 260px; height: 260px;
  }
  .bnb-mosaic-img:not(:first-child) { display: none; }
  .bnb-mosaic-img:first-child { border-radius: 16px; }
  .bnb-search-bar {
    flex-wrap: wrap; border-radius: 16px; padding: 8px;
  }
  .bnb-search-field-wrap {
    flex: unset; width: 100%; border-right: none; border-bottom: 1px solid #ebebeb;
    padding: 10px 14px;
  }
  .bnb-search-field-wrap:last-of-type { border-bottom: none; }
  .bnb-search-btn { align-self: flex-end; margin: 6px auto 2px; }
  .bnb-info-grid { grid-template-columns: repeat(2, 1fr); }
  .bnb-info-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — MINIMAL HERO + SEARCH
   ═══════════════════════════════════════════════════════════════ */

.hp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 4rem;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
  /* island* rounded card */
  border-radius: 28px;
  margin: 0 20px;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.hp-hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
}
.hp-hero-eyebrow {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6); margin-bottom: 1rem; display: block;
}
.hp-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1rem;
}
.hp-hero h1 .text-gradient { color: #fff; }
.hp-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.75); font-weight: 400;
  margin-bottom: 2.8rem; max-width: 400px; line-height: 1.6;
}
/* Scroll-down indicator */
.hp-scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  z-index: 1;
}
.hp-scroll-pill {
  width: 36px; height: 56px; border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8px;
}
.hp-scroll-pill::after {
  content: '';
  width: 4px; height: 12px;
  border-radius: 2px;
  background: rgba(255,255,255,0.7);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(16px); opacity: 0; }
}

/* Homepage search bar */
.hp-search-bar {
  display: flex; align-items: stretch;
  background: #fff; border: 1px solid var(--border); border-radius: 50px;
  padding: 5px; box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 16px 48px rgba(0,0,0,0.12);
  max-width: 740px;
}
.hp-search-field {
  flex: 1; min-width: 0; padding: 12px 20px; cursor: text;
  transition: background 0.15s; border-radius: 50px;
  border-right: 1px solid var(--border);
}
.hp-search-field:last-of-type { border-right: none; }
.hp-search-field:hover { background: var(--bg-surface); }
.hp-search-field label {
  display: block; font-size: 11px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 2px;
}
.hp-search-field input,
.hp-search-field select {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--text-secondary); cursor: pointer;
}
.hp-search-field select { appearance: none; -webkit-appearance: none; }
.hp-search-btn {
  width: 52px; height: 52px; background: var(--text-primary); color: #fff;
  border: none; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex-shrink: 0;
  align-self: center; margin-right: 3px; transition: background 0.15s;
}
.hp-search-btn:hover { background: #333; }
.hp-search-btn svg { width: 18px; height: 18px; }

/* Homepage category strip */
.hp-category-strip-wrapper {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky; top: 64px; z-index: 50;
}
.hp-category-strip {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none; padding: 0;
}
.hp-category-strip::-webkit-scrollbar { display: none; }
.hp-category-pill {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 20px; border-bottom: 2px solid transparent;
  background: transparent; border-top: none; border-left: none; border-right: none;
  cursor: pointer; white-space: nowrap;
  font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--text-secondary);
  transition: all 0.15s; flex-shrink: 0;
}
.hp-category-pill-icon { font-size: 1.4rem; }
.hp-category-pill:hover { color: var(--text-primary); border-bottom-color: #d0d0d0; }
.hp-category-pill.active { color: var(--text-primary); border-bottom-color: var(--text-primary); font-weight: 700; }

/* Listings section header */
.hp-listings-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.hp-listings-header h2 {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600;
  color: var(--text-primary);
}
.hp-sort-bar { display: flex; align-items: center; gap: 0.5rem; }
.hp-sort-btn {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--text-primary);
  cursor: pointer; font-family: var(--font-body); transition: border-color 0.15s;
}
.hp-sort-btn:hover { border-color: var(--text-primary); }

/* Collections section */
.hp-collections { background: var(--bg-surface); }
.hp-collections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 2rem;
}
.hp-collection-card {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; background: #ddd; cursor: pointer;
  text-decoration: none; display: block;
}
.hp-collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.hp-collection-card:hover img { transform: scale(1.05); }
.hp-collection-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
  transition: background 0.3s;
}
.hp-collection-card:hover .hp-collection-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%);
}
.hp-collection-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem;
}
.hp-collection-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75); margin-bottom: 0.3rem; display: block;
}
.hp-collection-title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  color: #fff; line-height: 1.3;
}
.hp-collection-count {
  font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 0.2rem;
}

/* Services section (2-card strip) */
.hp-services-strip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 2rem; max-width: 640px;
}
.hp-service-card {
  display: flex; align-items: center; gap: 1.2rem;
  border: 1.5px solid var(--border); border-radius: 14px; padding: 1.5rem;
  text-decoration: none; color: inherit; background: #fff;
  transition: all 0.2s var(--ease);
}
.hp-service-card:hover { border-color: var(--text-primary); box-shadow: var(--shadow-md); }
.hp-service-card-icon { font-size: 2.2rem; flex-shrink: 0; }
.hp-service-card-body h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.15rem; }
.hp-service-card-body p { font-size: 0.8rem; color: var(--text-secondary); font-weight: 400; }

/* Trust badges row */
.hp-trust-bar {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.hp-trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  text-align: center;
}
.hp-trust-icon { font-size: 1.5rem; }
.hp-trust-label { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.hp-trust-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hp-collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hp-hero { padding: 4.5rem 0 2.5rem; }
  .hp-search-bar { flex-wrap: wrap; border-radius: 16px; padding: 8px; }
  .hp-search-field { flex: unset; width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 10px 14px; }
  .hp-search-field:last-of-type { border-bottom: none; }
  .hp-search-btn { align-self: flex-end; margin: 6px auto 2px; }
  .hp-collections-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .hp-services-strip { max-width: 100%; }
  .hp-trust-bar { flex-wrap: wrap; gap: 1.5rem; }
  .service-strip { max-width: 100%; }
}
@media (max-width: 480px) {
  .hp-collections-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Verified / Trust tags ── */
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0;
  border-radius: 6px; padding: 3px 8px; font-size: 11px; font-weight: 600;
}
.trending-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa;
  border-radius: 6px; padding: 3px 8px; font-size: 11px; font-weight: 600;
}
.popular-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe;
  border-radius: 6px; padding: 3px 8px; font-size: 11px; font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   EDITORIAL FEATURE SECTION
   ═══════════════════════════════════════════════════════════════ */

.hp-editorial {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hp-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.hp-editorial .container { position: relative; z-index: 1; }
.hp-editorial-content { max-width: 520px; }
.hp-editorial-eyebrow {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65); margin-bottom: 1rem; display: block;
}
.hp-editorial-content h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.hp-editorial-content p {
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; font-weight: 400; margin-bottom: 2rem;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--text-primary);
  padding: 14px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s var(--ease); border: none; cursor: pointer;
}
.btn-white:hover { background: #f7f7f7; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════════════════════════════════
   BLOG PREVIEW SECTION
   ═══════════════════════════════════════════════════════════════ */

.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.hp-blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all 0.25s var(--ease); display: flex; flex-direction: column;
}
.hp-blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.hp-blog-card-img {
  height: 200px; overflow: hidden; background: var(--bg-surface);
}
.hp-blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.hp-blog-card:hover .hp-blog-card-img img { transform: scale(1.04); }
.hp-blog-card-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.hp-blog-card-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent-nature); margin-bottom: 0.5rem; display: block;
}
.hp-blog-card h3 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.35; margin-bottom: 0.5rem; flex: 1;
}
.hp-blog-card h3 a { color: inherit; text-decoration: none; }
.hp-blog-card h3 a:hover { color: var(--accent-primary); }
.hp-blog-card-meta {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 1rem;
}
.hp-blog-read-time {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px 10px;
  font-size: 11px; font-weight: 600; color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════ */

.hp-newsletter {
  background: var(--text-primary); padding: 4rem 0;
}
.hp-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.hp-newsletter h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #fff; margin-bottom: 0.4rem; letter-spacing: -0.02em;
}
.hp-newsletter p { font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 400; }
.hp-newsletter-form {
  display: flex; gap: 0.5rem;
  min-width: 320px; flex: 1; max-width: 500px;
}
.hp-newsletter-form input {
  flex: 1; padding: 14px 20px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px; font-size: 14px;
  color: #fff; outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.hp-newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.hp-newsletter-form input:focus { border-color: rgba(255,255,255,0.6); }
.hp-newsletter-form button {
  padding: 14px 24px; background: #fff; color: var(--text-primary);
  border: none; border-radius: 50px; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap; font-family: var(--font-body);
  transition: all 0.2s; flex-shrink: 0;
}
.hp-newsletter-form button:hover { background: #f7f7f7; transform: translateY(-1px); }

/* Footer social links */
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all 0.2s;
  text-decoration: none;
}
.footer-social-link:hover { background: var(--text-primary); border-color: var(--text-primary); color: #fff; }
.footer-social-link svg { width: 16px; height: 16px; }

/* ── Responsive for new sections ── */
@media (max-width: 768px) {
  .hp-blog-grid { grid-template-columns: 1fr; }
  .hp-editorial { min-height: 380px; }
  .hp-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .hp-newsletter-form { min-width: unset; width: 100%; }
  .hp-scroll-hint { display: none; }
}
@media (max-width: 640px) {
  .hp-hero { min-height: 75vh; padding-bottom: 3rem; }
  .hp-blog-grid { grid-template-columns: 1fr; }
}

