:root {
  --green: #839e73;
  --green-dark: #5f7356;
  --green-xdark: #708464;
  --green-light: #e8f0e9;
  --cream: #f7f5f0;
  --text: #1a1f1b;
  --muted: #6b7c6e;
  --white: #ffffff;
  --border: #e0e8e1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

body {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: var(--white);
}

h1, h2, h3, h4, .logo-text, .btn, .stat-number, .eyebrow,
.intro-text, .step-num, .faq-q, .cta-banner {
  font-family: "Rubik", sans-serif;
}

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

a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.015em; line-height: 1.18; }

h1 strong, h2 strong, h3 strong, h4 strong, .accent-bold {
  font-weight: 800;
}
.accent { color: var(--green); }
.accent-bold { color: var(--white); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn-primary { background: var(--green-dark); color: var(--white); }
.btn-outline { background: var(--green-dark); color: var(--white); width: 100%; text-align: center; }
.btn-caps { text-transform: uppercase; font-size: 12px; letter-spacing: .04em; font-weight: 800; padding: 11px 24px; }

/* Header */
.site-header {
  background: var(--green-xdark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; }

.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  opacity: .92;
}
.main-nav a:hover { opacity: 1; text-decoration: underline; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.lang-caret { font-size: 9px; opacity: .6; margin-left: 2px; }
.flag-icon { display: inline-block; vertical-align: middle; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); flex-shrink: 0; }
.lang-code { line-height: 1; }
.lang-switcher { position: relative; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  min-width: 130px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 200;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.lang-dropdown a:hover { background: var(--green-light); }
.lang-dropdown a.active { color: var(--green-dark); font-weight: 700; background: var(--green-light); }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(120deg, rgba(50,69,53,.78), rgba(50,69,53,.42)),
    url('images/hero-real.png') center 60%/cover no-repeat;
  color: var(--white);
  padding: 64px 0;
  display: flex;
  align-items: center;
}
.hero .container { width: 100%; }
.hero-eyebrow {
  color: var(--white);
  opacity: .85;
}
.hero-title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  font-size: 56px;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  opacity: .92;
  margin-bottom: 26px;
  max-width: 540px;
}
.hero-content .btn { padding: 14px 30px; font-size: 15px; }

/* Stats */
.stats { background: var(--white); padding: 30px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}
.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--green-dark);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Intro */
.intro {
  background: var(--green-light);
  padding: 44px 0;
  text-align: center;
}
.intro-text {
  max-width: 660px;
  margin: 0 auto;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.intro-badges {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* Tours */
.tours { padding: 56px 0 32px; text-align: center; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 6px;
}
.tours h2, .tours h1 { font-size: 27px; margin-bottom: 32px; }

.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.tour-card {
  border: 2px solid var(--green);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  display: flex;
  flex-direction: column;
  padding: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(74,99,80,.18);
}
.tour-img {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.tour-card:hover .tour-img { transform: scale(1.05); }
.tour-img--ebike { background-image: url('images/real-card-ebike.png'); }
.tour-img--tuktuk { background-image: url('images/real-card-tuktuk.png'); }
.tour-img--bike { background-image: url('images/real-card-bike.png'); }

.tour-body { padding: 16px 6px 6px; display: flex; flex-direction: column; gap: 6px; flex: 1; overflow: hidden; }
.tour-meta { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.tour-body h3 { font-size: 18px; font-weight: 700; color: var(--green-dark); }
.tour-desc { font-size: 13px; font-weight: 400; color: var(--muted); flex: 1; }
.tour-price { font-size: 14.5px; font-weight: 700; margin: 6px 0 4px; color: var(--text); }

.guided-banner {
  margin-top: 26px;
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
}
.guided-info h3 { font-size: 22px; font-weight: 800; color: var(--green); margin: 4px 0 6px; }
.guided-info .tour-desc { max-width: 560px; }
.guided-cta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.guided-cta .tour-price { font-size: 17px; font-weight: 800; text-align: right; }
.guided-cta small { font-weight: 400; color: var(--muted); }

/* Steps */
.steps { padding: 56px 0; text-align: center; }
.steps h2 { font-size: 34px; }
.steps h2 strong { color: var(--text); }
.steps-sub { color: var(--muted); font-weight: 400; font-size: 15px; margin: 10px auto 36px; max-width: 540px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 16px;
  background: var(--green-light);
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14.5px; font-weight: 400; line-height: 1.5; color: var(--muted); }

/* Gallery carousel */
.gallery { padding: 70px 0; background: var(--cream); }
.gallery .eyebrow { text-align: center; }
.gallery h2 { text-align: center; margin-bottom: 36px; }
.gallery-carousel { position: relative; max-width: 1040px; margin: 0 auto; }
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 auto;
  width: min(340px, 78vw);
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  font-size: 24px;
  line-height: 1;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.gallery-prev { left: -10px; }
.gallery-next { right: -10px; }
.gallery-arrow:hover { background: var(--green-light); }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; transition: width .2s ease, background .2s ease; }
.gallery-dot.active { background: var(--green); width: 22px; border-radius: 4px; }
@media (max-width: 640px) {
  .gallery { padding: 48px 0; }
  .gallery-arrow { display: none; }
}

/* CTA banner */
.cta-banner {
  background: var(--green-light);
  text-align: center;
  padding: 48px 0;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Map */
.map-section { padding: 40px 0; }

#ecotuk-widget {
  position: relative; width: 100%; height: 620px; overflow: hidden;
  border-radius: 16px; font-family: 'Rubik', sans-serif;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}
#ecotuk-widget * { box-sizing: border-box; margin: 0; padding: 0; }
#ew-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 800;
  background: var(--green-xdark); height: 52px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
#ew-logo { display: flex; align-items: center; gap: 10px; }
#ew-logo-icon { width: 30px; height: 30px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
#ew-logo-text { color: #fff; font-size: 16px; font-weight: 600; letter-spacing: -0.2px; }
#ew-logo-sub { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 300; letter-spacing: 0.06em; text-transform: uppercase; }
#ew-header-right { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 300; }
#ew-map { position: absolute; top: 52px; left: 0; right: 0; bottom: 0; z-index: 1; }

#ew-gesture-msg {
  position: absolute; top: 52px; left: 0; right: 0; bottom: 0;
  z-index: 500; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
#ew-gesture-msg.show { opacity: 1; }
#ew-gesture-inner {
  background: rgba(20,35,22,0.82); color: #fff;
  font-size: 13px; padding: 12px 22px; border-radius: 30px;
  font-family: 'Rubik', sans-serif;
  display: flex; align-items: center; gap: 8px;
}

#ew-panel {
  position: absolute; top: 52px; right: 0; bottom: 0; width: 370px; max-width: 100%;
  background: var(--white); box-shadow: -4px 0 32px rgba(0,0,0,0.13);
  z-index: 600; transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
#ew-panel.open { transform: translateX(0); }
#ew-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  background: rgba(0,0,0,0.38); border: none; border-radius: 50%;
  cursor: pointer; font-size: 14px; color: white;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: background 0.15s;
}
#ew-close:hover { background: rgba(0,0,0,0.58); }
#ew-hero { height: 200px; flex-shrink: 0; position: relative; overflow: hidden; background: var(--green-xdark); }
#ew-hero img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.35s; }
#ew-hero img.loading { opacity: 0; }
#ew-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,35,22,0.85) 0%, transparent 60%); }
#ew-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px 18px; }
#ew-hero-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
#ew-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); padding: 3px 9px; border-radius: 20px; }
#ew-stop-num { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); }
#ew-title { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.3px; }
#ew-body { flex: 1; overflow-y: auto; padding: 20px 18px; scroll-behavior: smooth; }
#ew-body::-webkit-scrollbar { width: 3px; }
#ew-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
#ew-desc { font-size: 13px; line-height: 1.8; color: #3e4e41; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1.5px solid var(--border); }
.ew-section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.ew-section-label.g { color: var(--green-dark); }
#ew-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.ew-fact { background: var(--cream); border-radius: 10px; padding: 11px 10px; text-align: center; border: 1.5px solid var(--border); }
.ew-fact-label { font-size: 9px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ew-fact-value { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.ew-tip { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: #445447; line-height: 1.65; margin-bottom: 10px; }
.ew-tip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }
#ew-nav { padding: 12px 14px; border-top: 1.5px solid var(--border); display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.ew-nav-btn { flex: 1; padding: 9px 6px; border: 1.5px solid var(--border); border-radius: 9px; background: var(--white); font-family: 'Rubik', sans-serif; font-size: 12px; font-weight: 500; color: var(--text); cursor: pointer; transition: all 0.15s; }
.ew-nav-btn:hover:not(:disabled) { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.ew-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
#ew-nav-count { font-size: 11px; color: var(--muted); min-width: 44px; text-align: center; }
#ew-footer { padding: 11px 18px; border-top: 1.5px solid var(--border); font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.ew-mk { width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 2.5px solid var(--green); box-shadow: 0 3px 12px rgba(74,100,80,0.38); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; cursor: pointer; color: var(--green-dark); transition: transform 0.18s, box-shadow 0.18s; }
.ew-mk:hover { transform: scale(1.2); box-shadow: 0 6px 18px rgba(74,100,80,0.48); }
.ew-mk.active { background: var(--green); color: white; border-color: var(--green-dark); transform: scale(1.2); box-shadow: 0 6px 18px rgba(74,100,80,0.55); }
#ecotuk-widget .leaflet-popup-content-wrapper { border-radius: 9px !important; border: none !important; box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important; padding: 0 !important; }
#ecotuk-widget .leaflet-popup-content { margin: 0 !important; }
.ew-popup { font-family: 'Rubik', sans-serif; padding: 9px 13px; font-size: 12px; font-weight: 500; color: #1a1f1b; white-space: nowrap; }
#ew-hint { position: absolute; left: 50%; transform: translateX(-50%); top: 62px; z-index: 700; background: rgba(20,35,22,0.82); color: #fff; font-size: 11.5px; padding: 7px 16px; border-radius: 30px; pointer-events: none; white-space: nowrap; animation: ewFade 4.5s forwards; }
@keyframes ewFade { 0%{opacity:0;transform:translateX(-50%) translateY(-6px)} 12%{opacity:1;transform:translateX(-50%) translateY(0)} 75%{opacity:1} 100%{opacity:0} }
@media (max-width:600px) {
  #ecotuk-widget { height: 580px; border-radius: 12px; }
  #ew-panel { width: 100%; top: auto; height: 72%; bottom: 0; transform: translateY(100%); border-radius: 16px 16px 0 0; }
  #ew-panel.open { transform: translateY(0); }
  #ew-hero { height: 170px; }
}

/* FAQ */
.faq { padding: 48px 0 64px; }
.faq h2 { text-align: center; font-size: 30px; margin-bottom: 32px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-q-text { flex: 1; }
.faq-icon {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  position: relative;
  transition: transform .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 2px;
}
.faq-icon::before { top: 6px; left: 0; width: 16px; height: 3px; }
.faq-icon::after { top: 0; left: 6px; width: 3px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 4px 0 32px;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* Footer */
.site-footer { background: var(--green-xdark); color: var(--white); padding-top: 56px; font-family: "Fredoka", "Rubik", sans-serif; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.footer-brand p { font-size: 16px; font-weight: 400; opacity: .85; line-height: 1.55; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 17px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; opacity: .95; margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 16px; font-weight: 400; opacity: .9; }
.footer-col a:hover { text-decoration: underline; opacity: 1; }
.reserve-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  opacity: .85;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-links a:hover { text-decoration: underline; }

/* ===== Tour detail pages ===== */

/* Tour hero */
.tour-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding: 56px 0;
}
.tour-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(50,69,53,.82), rgba(50,69,53,.42));
}
.tour-hero .container { position: relative; z-index: 1; width: 100%; }
.tour-hero h1 { font-size: 54px; margin-bottom: 14px; }
.tour-hero p { font-size: 20px; max-width: 580px; margin-bottom: 22px; opacity: .95; font-weight: 400; }
.price-pill {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 15px;
}

/* Breadcrumb-ish page nav active state */
.main-nav a.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* Experience + includes + calendar */
.detail-section { padding: 60px 0; }
.detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.detail-label {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--green); margin: 28px 0 10px; text-transform: uppercase;
}
.detail-label:first-child { margin-top: 0; }
.detail-text p { font-size: 15.5px; line-height: 1.7; color: var(--text); margin-bottom: 12px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); line-height: 1.4; }
.checklist li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); margin-top: 1px; }

/* Calendar widget */
.cal-wrap {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: sticky;
  top: 90px;
}
.cal-header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.cal-title { font-size: 14px; font-weight: 600; color: var(--text); }
.badge-realtime {
  display: flex; align-items: center; gap: 4px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 10.5px; font-weight: 500; padding: 3px 9px; border-radius: 20px;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); display: inline-block; }
.cal-month-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.cal-month-label { font-size: 12.5px; font-weight: 500; color: var(--text); }
.cal-nav-btn {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; line-height: 1;
}
.cal-nav-btn:hover { background: var(--green-light); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-day-name { font-size: 10px; color: var(--muted); padding: 1px 0 5px; font-weight: 500; }
.cal-day-cell {
  width: 100%; height: 30px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; border-radius: 50%; cursor: pointer; color: var(--text); user-select: none;
}
.cal-day-cell:hover:not(.cal-empty):not(.cal-selected) { background: var(--green-light); color: var(--green-dark); }
.cal-day-cell.cal-selected { background: var(--green); color: #fff; font-weight: 600; }
.cal-day-cell.cal-empty { cursor: default; }
.cal-hint { text-align: center; font-size: 10.5px; color: var(--muted); margin: .45rem 0 .5rem; }
.cal-time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: .6rem; }
.cal-time-slot { border: 1px solid var(--border); border-radius: 8px; padding: 6px 5px; text-align: center; cursor: pointer; }
.cal-time-slot:hover { border-color: var(--green); background: var(--green-light); }
.cal-time-slot.cal-slot-selected { border-color: var(--green); background: var(--green-light); }
.cal-time-main { font-size: 14px; font-weight: 600; color: var(--text); display: block; }
.cal-time-end { font-size: 10px; color: var(--muted); display: block; }
.cal-confirm-btn {
  width: 100%; background: #25D366; color: #fff; border: none; border-radius: 999px;
  padding: 12px; font-size: 13px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .15s, transform .15s;
}
.cal-confirm-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.cal-cancel-note { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 8px; font-size: 10.5px; color: var(--muted); }

/* Testimonial */
.testimonial { max-width: 720px; margin: 0 auto; text-align: center; padding: 8px 24px 12px; }
.testimonial blockquote { font-size: 21px; font-style: italic; color: var(--text); line-height: 1.55; margin-bottom: 14px; font-family: "Rubik", sans-serif; }
.testimonial cite { font-size: 14px; font-weight: 600; color: var(--green-dark); font-style: normal; }

/* Timeline (ruta) + meeting point map */
.route-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.route-map-wrap {
  position: sticky; top: 90px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.route-map-wrap iframe { width: 100%; height: 560px; border: 0; display: block; }
.route-map-label {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--white); color: var(--text);
  font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.ruta-wrap {
  --faded: #d0d8d1; --faded-text: #bcc5bd; --faded-dot: #d6e4d7;
}
.ruta-item { display: flex; gap: 22px; align-items: flex-start; position: relative; transition: all .6s ease; }
.ruta-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 28px; }
.ruta-dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; z-index: 1; background: var(--faded-dot); transition: background .6s ease, border-color .6s ease; }
.ruta-dot.small { width: 22px; height: 22px; background: transparent; border: 3px solid var(--faded-dot); margin: 3px; }
.ruta-line { width: 3px; min-height: 20px; flex: 1; margin-top: 4px; background: var(--faded); transition: background .6s ease; }
.ruta-content { flex: 1; padding-bottom: 32px; }
.ruta-title { font-size: 20px; font-weight: 600; margin-bottom: 7px; line-height: 1.3; color: var(--faded-text); transition: color .6s ease; }
.ruta-title.highlight { font-size: 22px; }
.ruta-desc { font-size: 16px; line-height: 1.65; margin-bottom: 10px; color: var(--faded-text); transition: color .6s ease; }
.ruta-time { font-size: 15px; font-weight: 500; color: var(--faded-dot); transition: color .6s ease; }
.ruta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ruta-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 20px; background: #f0f4f0; color: var(--faded-dot);
  transition: background .6s ease, color .6s ease;
}
.ruta-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.ruta-item:last-child .ruta-line { display: none; }
.ruta-item:last-child .ruta-content { padding-bottom: 0; }
.ruta-item.visible .ruta-dot { background: var(--green); }
.ruta-item.visible .ruta-dot.small { background: transparent; border-color: var(--green); }
.ruta-item.visible .ruta-line { background: #d6e4d7; }
.ruta-item.visible .ruta-title { color: #111; }
.ruta-item.visible .ruta-desc { color: #555; }
.ruta-item.visible .ruta-time { color: var(--green); }
.ruta-item.visible .ruta-tag { background: var(--green-light); color: var(--green-dark); }

/* Final CTA badges */
.cta-badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 26px; }
.cta-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13.5px; color: var(--green-dark); font-weight: 600; }
.cta-badge svg { width: 24px; height: 24px; }

/* Horarios: schedule rows */
.schedule-row {
  display: grid; grid-template-columns: 320px 1fr; gap: 36px; align-items: center;
  padding: 36px 0; border-bottom: 1px solid var(--border);
  text-align: left;
}
.schedule-row:first-child { padding-top: 0; }
.schedule-row img { width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 16/9; }
.schedule-content { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.schedule-info { max-width: 480px; }
.schedule-meta { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.schedule-row h2 { font-size: 24px; color: var(--green-dark); margin-bottom: 8px; }
.schedule-time { font-size: 14px; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.schedule-note { display: flex; gap: 8px; font-size: 13.5px; color: var(--muted); align-items: flex-start; }
.schedule-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green); margin-top: 2px; }
.schedule-row .btn { flex-shrink: 0; }

/* Before you come */
.before-come { padding: 56px 0; text-align: center; }
.before-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; text-align: left; margin-top: 24px; }
.before-grid img { width: 100%; border-radius: 16px; object-fit: cover; }
.before-grid h3 { font-size: 26px; color: var(--green-dark); margin-bottom: 10px; }
.before-grid p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--green-xdark);
    padding: 6px 0;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
  }
  .main-nav.mobile-open { display: flex; }
  .main-nav a {
    padding: 14px 24px;
    border-top: 1px solid rgba(255,255,255,.14);
    opacity: 1;
  }
  .main-nav a:first-child { border-top: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guided-banner { flex-direction: column; align-items: flex-start; }
  .guided-cta { align-items: flex-start; text-align: left; }
  .guided-cta .tour-price { text-align: left; }
  .detail-grid { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .route-map-wrap { position: static; }
  .cal-wrap { position: static; }
  .schedule-row { grid-template-columns: 1fr; }
  .schedule-content { flex-direction: column; align-items: flex-start; gap: 16px; }
  .before-grid { grid-template-columns: 1fr; }
}

/* Legal pages */
.legal-section { padding: 48px 0 80px; }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content .updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.legal-content h2 { font-size: 20px; color: var(--green-dark); margin: 36px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 16px; color: var(--text); margin: 20px 0 8px; }
.legal-content p { font-size: 14.5px; line-height: 1.75; color: var(--text); margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px 20px; }
.legal-content li { font-size: 14.5px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.legal-content a { color: var(--green-dark); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13.5px; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); }
.legal-content th { background: var(--green-light); color: var(--green-dark); font-weight: 600; }
.legal-content .placeholder { background: #fff3cd; padding: 1px 5px; border-radius: 3px; color: #7a5c00; }
.legal-content .notice-box { background: var(--green-light); border-radius: 10px; padding: 16px 20px; margin-bottom: 28px; font-size: 13.5px; color: var(--text); }
