/* ===========================================================
   Bhatkanti with Dev — shared stylesheet
   =========================================================== */

:root {
  --green: #1a7a3c;
  --green-dark: #145c2d;
  --orange: #e08a2e;
  --orange-dark: #c76f18;
  --rust: #cc4b1f;
  --ink: #1a1a1a;
  --cream: #fbf6ee;
  --cream-2: #f3ead8;
  --white: #ffffff;
  --muted: #6b675f;
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.10);
  --radius: 16px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--muted); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(224, 138, 46, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green-dark); }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(26, 122, 60, 0.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ---------- Top banner ---------- */
.top-banner {
  background: var(--ink);
  color: var(--cream-2);
  font-size: 0.8rem;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.02em;
}
.top-banner span { color: var(--orange); font-weight: 600; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26,26,26,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 46px; width: auto; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--green);
  color: var(--white);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(20,20,20,0.35), rgba(20,20,20,0.65)),
              url('../assets/hero-mountains.svg') center/cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.35em;
}
.hero h1 .accent { color: var(--orange); }

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.page-hero {
  min-height: 42vh;
  padding: 60px 0 40px;
}
.page-hero .hero-inner { max-width: 780px; }
.page-hero p.lead { font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.tight { padding: 50px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .tag {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.bg-alt { background: var(--cream-2); }
.bg-dark {
  background: var(--ink);
  color: var(--cream-2);
}
.bg-dark p { color: rgba(251,246,238,0.72); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,26,26,0.16); }

.card .thumb {
  height: 190px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.card .thumb svg,
.card .thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }

.card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
}
.card .badge.tour { background: var(--green); }

.card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { font-size: 1.15rem; margin-bottom: 6px; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--cream-2);
  padding: 5px 11px;
  border-radius: 999px;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed #e6ddca;
}
.price {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.05rem;
}
.price small { color: var(--muted); font-weight: 500; font-size: 0.75rem; }

.diff {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.diff.easy { background: #e4f4e8; color: var(--green-dark); }
.diff.moderate { background: #fdecd3; color: var(--orange-dark); }
.diff.tough { background: #fbe2dc; color: var(--rust); }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-bar button {
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green-dark);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-bar button.active,
.filter-bar button:hover {
  background: var(--green);
  color: var(--white);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats .stat h3 {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 2px;
}
.stats .stat p { margin: 0; color: rgba(251,246,238,0.75); font-size: 0.9rem; }

/* ---------- Why us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature {
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.feature h3 { font-size: 1.1rem; }
.feature p { margin: 0; font-size: 0.93rem; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testi .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.testi p.quote { color: var(--ink); font-style: italic; }
.testi .person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.testi .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.testi .person strong { display: block; font-size: 0.92rem; }
.testi .person span { font-size: 0.78rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ---------- Timeline / itinerary ---------- */
.timeline {
  border-left: 3px solid var(--green);
  margin-left: 10px;
  padding-left: 28px;
}
.timeline .day {
  position: relative;
  padding-bottom: 30px;
}
.timeline .day::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--cream);
}
.timeline .day h4 { margin-bottom: 4px; color: var(--green-dark); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-weight: 600; font-size: 0.88rem; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e6ddca;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Contact tiles ---------- */
.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-tile {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: center;
}
.contact-tile .icon {
  width: 50px; height: 50px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.contact-tile.wa .icon { background: #25D366; }
.contact-tile.ig .icon { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }
.contact-tile.mail .icon { background: var(--green); }
.contact-tile a.link { font-weight: 700; color: var(--green-dark); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(251,246,238,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 60px; margin-bottom: 14px; }
.footer-brand p { color: rgba(251,246,238,0.6); font-size: 0.9rem; max-width: 280px; }
footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a { color: rgba(251,246,238,0.7); font-size: 0.92rem; transition: color 0.2s ease; }
footer ul a:hover { color: var(--orange); }

.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--orange); }

.footer-bottom {
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(251,246,238,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,0.5);
  z-index: 200;
  font-size: 1.6rem;
  color: white;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery-group { margin-bottom: 46px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border, #eadfce);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--cream-2, #f2ece0);
  box-shadow: var(--shadow, 0 6px 18px rgba(0,0,0,0.08));
  transition: transform 0.2s ease;
}
.gallery-thumb:hover { transform: translateY(-4px); }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 10px 8px;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 15, 10, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}
.lightbox-overlay.show { display: flex; }
.lightbox-img {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: #fff;
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
  max-width: 700px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn span.long { display: none; }
  body.nav-open nav.main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    box-shadow: var(--shadow);
    padding: 10px 24px 20px;
  }
  body.nav-open nav.main-nav ul { flex-direction: column; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
  .hero { min-height: 92vh; text-align: left; }
}
