/* =========================================================================
   Sri Sant Balumama Tours & Travels — Design System
   Palette:  Indigo #14283D (ink/nav), Marigold #E7A33E (accent),
             Deep Teal #1F6F5C (secondary accent), Paper #FAF3E3 (bg),
             Rust #B4552F (rare, used only for "Upcoming" badges)
   Type:     Fraunces (display/serif) + Work Sans (body) + JetBrains Mono (data)
   Signature: a dashed "route line" that threads between waypoints — echoes
              a hand-marked itinerary map, used as the connective motif
              across hero, tour cards and the packages section.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #14283D;
  --ink-soft: #2C4A63;
  --marigold: #E7A33E;
  --marigold-deep: #C9821F;
  --teal: #1F6F5C;
  --teal-soft: #E7F1EE;
  --paper: #FAF3E3;
  --paper-white: #FFFDF8;
  --rust: #B4552F;
  --line: rgba(20, 40, 61, 0.12);
  --text: #23282A;
  --text-soft: #5B6570;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 30px -14px rgba(20, 40, 61, 0.25);
  --shadow-lift: 0 20px 40px -16px rgba(20, 40, 61, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head p { color: var(--text-soft); margin-top: 14px; font-size: 1.02rem; }
.section--alt { background: var(--paper-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--marigold); color: var(--ink); box-shadow: 0 10px 22px -10px rgba(231, 163, 62, 0.7); }
.btn-primary:hover { background: var(--marigold-deep); }
.btn-outline { background: transparent; border-color: rgba(250, 243, 227, 0.5); color: var(--paper-white); }
.btn-outline:hover { background: rgba(250, 243, 227, 0.12); }
.btn-dark { background: var(--ink); color: var(--paper-white); }
.btn-dark:hover { background: var(--ink-soft); }
.btn-teal { background: var(--teal); color: var(--paper-white); }
.btn-teal:hover { background: #185a4b; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(250, 243, 227, 0.85);
  font-size: 0.82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap; }
.topbar-links { display: flex; gap: 18px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-links a:hover { color: var(--marigold); }
.topbar-contact { display: flex; gap: 20px; font-family: var(--font-mono); font-size: 0.78rem; }

/* ---------- Navbar ---------- */
.navbar {
  background: var(--paper-white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 500;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--marigold), var(--rust));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper-white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); line-height: 1; }
.logo-text span { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--teal); text-transform: uppercase; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px; font-weight: 500; font-size: 0.93rem; color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-item.open > .nav-link { background: var(--teal-soft); color: var(--teal); }
.nav-caret { font-size: 0.62rem; transition: transform 0.2s; }
.nav-item.open > .nav-link .nav-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}
.nav-item.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown .nav-item { width: 100%; }
.dropdown .nav-link { justify-content: space-between; padding: 10px 12px; font-size: 0.88rem; border-radius: 8px; }
.dropdown .dropdown { top: -8px; left: calc(100% + 8px); }
.badge-pill {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--rust); color: var(--paper-white); padding: 2px 8px; border-radius: 999px;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper-white);
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1621331230259-c6d99ba6e70b?w=1800&q=75');
  background-size: cover; background-position: center;
  opacity: 0.32;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,40,61,0.55) 0%, rgba(20,40,61,0.92) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; }
.hero-inner h1 { color: var(--paper-white); margin-top: 18px; }
.hero-inner .lede { margin-top: 20px; font-size: 1.12rem; color: rgba(250, 243, 227, 0.85); max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-route {
  position: absolute; right: 0; top: 0; width: 46%; height: 100%; z-index: 1; opacity: 0.9;
}
.route-svg path { stroke: var(--marigold); stroke-width: 2; stroke-dasharray: 6 8; fill: none; }
.route-svg circle { fill: var(--marigold); }
.route-svg .waypoint-label { font-family: var(--font-mono); font-size: 10px; fill: rgba(250,243,227,0.75); letter-spacing: 0.05em; }

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tour-card {
  background: var(--paper-white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.tour-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-card:hover .tour-card-media img { transform: scale(1.06); }
.tour-card-price {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--paper-white); color: var(--ink);
  font-family: var(--font-mono); font-weight: 600; font-size: 0.8rem;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-card);
}
.tour-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tour-card-loc { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--teal); }
.tour-card-body h3 { font-size: 1.08rem; }
.tour-card-body p { color: var(--text-soft); font-size: 0.9rem; flex: 1; }
.tour-card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.tour-card-dur { font-size: 0.8rem; color: var(--text-soft); }

.tours-toolbar { display: flex; justify-content: center; margin-top: 44px; }

/* ---------- Best tours (circular) ---------- */
.best-tours-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.best-tour-item { text-align: center; }
.best-tour-circle {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--paper-white); box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}
.best-tour-item:hover .best-tour-circle { transform: scale(1.05); }
.best-tour-circle img { width: 100%; height: 100%; object-fit: cover; }
.best-tour-item h4 { margin-top: 14px; font-size: 0.98rem; }
.best-tour-item span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--teal); }

/* ---------- Stats ---------- */
.stats-block {
  background: var(--ink); border-radius: var(--radius-lg); padding: 54px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; overflow: hidden;
}
.stats-block::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(231,163,62,0.18), transparent 45%);
}
.stat-item { position: relative; text-align: center; color: var(--paper-white); }
.stat-value { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--marigold); }
.stat-label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(250,243,227,0.75); margin-top: 6px; }

/* ---------- Packages ---------- */
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.package-card {
  background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.25s;
}
.package-card:hover { transform: translateY(-5px); }
.package-media { aspect-ratio: 16/10; overflow: hidden; }
.package-media img { width: 100%; height: 100%; object-fit: cover; }
.package-body { padding: 18px; }
.package-tag { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rust); }
.package-body h3 { margin-top: 6px; }
.package-price { font-family: var(--font-mono); color: var(--teal); font-weight: 600; margin-top: 8px; display: block; font-size: 0.88rem; }
.package-features { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.package-features li { font-size: 0.84rem; color: var(--text-soft); display: flex; gap: 8px; align-items: flex-start; }
.package-features li::before { content: "—"; color: var(--marigold-deep); flex-shrink: 0; }

/* ---------- Reviews ---------- */
.review-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.review-track::-webkit-scrollbar { height: 6px; }
.review-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.review-card {
  scroll-snap-align: start; flex: 0 0 340px; background: var(--paper-white);
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-card);
}
.review-top { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-name { font-weight: 600; color: var(--ink); font-size: 0.94rem; }
.review-stars { color: var(--marigold-deep); font-size: 0.82rem; letter-spacing: 1px; }
.review-source {
  margin-left: auto; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase;
  background: var(--teal-soft); color: var(--teal); padding: 3px 9px; border-radius: 999px;
}
.review-text { margin-top: 14px; font-size: 0.9rem; color: var(--text-soft); }
.review-controls { display: flex; gap: 10px; margin-top: 24px; }
.review-arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper-white); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.review-arrow:hover { background: var(--teal-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--teal), #144a3d);
  border-radius: var(--radius-lg); padding: 50px 44px; color: var(--paper-white);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--paper-white); }
.cta-banner p { color: rgba(250,243,227,0.82); margin-top: 10px; max-width: 460px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(250,243,227,0.82); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(250,243,227,0.12); }
.footer h4 { color: var(--paper-white); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; color: rgba(250,243,227,0.7); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(250,243,227,0.25); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--marigold); border-color: var(--marigold); color: var(--ink); }
.footer-office { margin-bottom: 14px; }
.footer-office strong { display: block; color: var(--paper-white); font-size: 0.9rem; margin-bottom: 2px; }
.footer-office span { font-size: 0.83rem; color: rgba(250,243,227,0.65); }
.footer-contact li { font-size: 0.88rem; margin-bottom: 12px; color: rgba(250,243,227,0.75); }
.footer-contact a:hover { color: var(--marigold); }
.footer-form input, .footer-form textarea {
  width: 100%; background: rgba(250,243,227,0.06); border: 1px solid rgba(250,243,227,0.18);
  border-radius: 8px; padding: 11px 13px; color: var(--paper-white); font-family: var(--font-body);
  font-size: 0.88rem; margin-bottom: 10px;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(250,243,227,0.45); }
.form-note { font-size: 0.74rem; color: rgba(250,243,227,0.55); margin-top: 8px; text-align: center; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; font-size: 0.8rem; color: rgba(250,243,227,0.55); flex-wrap: wrap; gap: 10px; }

/* ---------- Logo image (real logo, once added, sizes the same as the initials mark) ---------- */
.logo-mark-wrap { display: flex; }
.logo-mark-img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }

/* ---------- Topbar: route inquiry highlight + secondary number ---------- */
.topbar-highlight {
  background: var(--marigold); color: var(--ink) !important; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; margin-right: 4px;
}
.topbar-secondary { opacity: 0.75; }

/* ---------- Mobile nav: close button + overlay ---------- */
.nav-menu-mobile-head { display: none; }
.nav-close { display: none; }
.nav-overlay { display: none; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.6);
  animation: float-bob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.call-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(31, 111, 92, 0.6);
  animation: float-bob 3s ease-in-out infinite;
  animation-delay: 0.4s;
}
.call-float:hover { transform: scale(1.08); }

/* ---------- Mobile "switch to desktop" banner ---------- */
.desktop-banner {
  display: none; /* shown only on mobile widths, see media query */
  background: var(--ink); color: var(--paper-white);
  font-size: 0.8rem; padding: 10px 16px; align-items: center; justify-content: space-between; gap: 12px;
  position: relative; z-index: 10;
}
.desktop-banner strong { color: var(--marigold); }
.desktop-banner button {
  background: rgba(250,243,227,0.12); border: none; color: var(--paper-white);
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; font-size: 0.8rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { background: var(--paper-white); border-bottom: 1px solid var(--line); padding: 18px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-soft); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-float { animation: none; }
}

/* ---------- Filter chips (tours listing) ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 500; background: var(--paper-white); color: var(--text-soft);
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: var(--paper-white); }

/* ---------- Tour detail page ---------- */
.detail-hero { position: relative; height: 440px; border-radius: var(--radius-lg); overflow: hidden; margin-top: 30px; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,40,61,0) 40%, rgba(20,40,61,0.85) 100%); display: flex; align-items: flex-end; padding: 34px; }
.detail-hero-info h1 { color: var(--paper-white); }
.detail-hero-meta { display: flex; gap: 18px; margin-top: 10px; color: rgba(250,243,227,0.85); font-family: var(--font-mono); font-size: 0.82rem; flex-wrap: wrap; }

.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-top: 50px; align-items: start; }
.detail-block { margin-bottom: 42px; }
.detail-block h2 { font-size: 1.5rem; margin-bottom: 16px; }
.highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.highlight-chip { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; background: var(--teal-soft); color: var(--teal); padding: 10px 14px; border-radius: 10px; }

.itinerary-item { display: flex; gap: 20px; position: relative; padding-bottom: 30px; }
.itinerary-item:last-child { padding-bottom: 0; }
.itinerary-item::before { content: ""; position: absolute; left: 19px; top: 42px; bottom: 0; width: 1px; background: var(--line); border-left: 1px dashed var(--line); }
.itinerary-item:last-child::before { display: none; }
.itinerary-day {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--marigold);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 0.85rem; z-index: 1;
}
.itinerary-content h4 { font-size: 1rem; margin-bottom: 4px; }
.itinerary-content p { font-size: 0.9rem; color: var(--text-soft); }

.incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.incl-excl ul li { font-size: 0.9rem; padding: 7px 0; border-bottom: 1px dashed var(--line); display: flex; gap: 10px; }
.incl-list li::before { content: "✓"; color: var(--teal); font-weight: 700; }
.excl-list li::before { content: "✕"; color: var(--rust); font-weight: 700; }

.booking-card {
  position: sticky; top: 100px; background: var(--paper-white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-card);
}
.booking-price { font-family: var(--font-display); font-size: 2rem; color: var(--ink); font-weight: 600; }
.booking-price span { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-soft); font-weight: 400; }
.booking-card .btn { margin-top: 16px; }
.booking-meta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 0.86rem; color: var(--text-soft); }
.booking-meta div { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-detail-body { max-width: 760px; margin: 40px auto 0; }
.blog-detail-body p { margin-bottom: 18px; color: var(--text-soft); font-size: 1rem; line-height: 1.75; }
.blog-detail-body h3 { margin: 34px 0 14px; font-size: 1.25rem; color: var(--ink); }

/* ---------- Generic inner page styles ---------- */
.page-hero { background: var(--ink); color: var(--paper-white); padding: 60px 0; }
.page-hero h1 { color: var(--paper-white); }
.page-hero p { color: rgba(250,243,227,0.8); margin-top: 10px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.value-card .icon { font-size: 1.6rem; }
.value-card h4 { margin-top: 14px; }
.value-card p { margin-top: 8px; color: var(--text-soft); font-size: 0.9rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form-card { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem; background: var(--paper);
}
.contact-info-list li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info-list .icon { width: 42px; height: 42px; border-radius: 10px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 18px; }
.blog-date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--teal); text-transform: uppercase; }
.blog-body h3 { margin-top: 8px; font-size: 1.05rem; }
.blog-body p { margin-top: 8px; font-size: 0.88rem; color: var(--text-soft); }

.hire-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.hire-step { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; position: relative; }
.hire-step .step-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--marigold-deep); }
.hire-step h4 { margin-top: 10px; }
.hire-step p { margin-top: 8px; color: var(--text-soft); font-size: 0.9rem; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-soft); }
.empty-state h3 { margin-bottom: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .tour-grid { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .best-tours-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .stats-block { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .desktop-banner { display: flex; }
  .topbar { padding: 2px 0; }
  .topbar .container { flex-direction: column; align-items: stretch; gap: 6px; padding-top: 10px; padding-bottom: 10px; }
  .topbar-links { justify-content: center; gap: 10px; }
  .topbar-links a { font-size: 0.85rem; }
  .topbar-highlight { font-size: 0.85rem; padding: 6px 14px; }
  .topbar-contact { justify-content: center; flex-wrap: wrap; gap: 12px 16px; font-size: 0.8rem; }

  .nav-menu {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 84%; max-width: 340px;
    background: var(--paper-white); flex-direction: column; align-items: flex-start; padding: 0 20px 24px;
    box-shadow: var(--shadow-lift); transition: right 0.3s ease; overflow-y: auto; gap: 2px; z-index: 400;
  }
  .nav-menu.open { right: 0; }
  .nav-menu-mobile-head {
    display: flex; width: 100%; align-items: center; justify-content: space-between;
    padding: 18px 4px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
    position: sticky; top: 0; background: var(--paper-white); z-index: 2;
  }
  .nav-menu-mobile-head span { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
  .nav-close {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--paper); color: var(--ink); font-size: 1rem;
  }
  .nav-close:hover { background: var(--rust); color: var(--paper-white); border-color: var(--rust); }
  .nav-overlay {
    display: block; position: fixed; inset: 0; background: rgba(20,40,61,0.5);
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease; z-index: 300;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; height: 0; overflow: hidden; padding: 0; transition: height 0.25s ease; }
  .nav-item.open > .dropdown { height: auto; padding: 6px 0 6px 14px; }
  .dropdown .dropdown { top: 0; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-route { display: none; }
}
@media (max-width: 700px) {
  .tour-grid, .package-grid, .related-grid, .blog-grid, .value-grid, .hire-steps { grid-template-columns: repeat(2, 1fr); }
  .best-tours-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-block { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .tour-grid, .package-grid, .related-grid, .blog-grid, .value-grid, .hire-steps, .best-tours-strip, .incl-excl, .highlight-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 90px; }
  .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .call-float { width: 50px; height: 50px; left: 16px; bottom: 16px; }
}
