:root {
  color-scheme: light;
  --bg: #fbf8f1;
  --surface: #ffffff;
  --surface-soft: #f3eadc;
  --text: #18231f;
  --muted: #66706a;
  --line: #e4d6c3;
  --accent: #b84f2a;
  --accent-strong: #953f22;
  --green: #123f34;
  --green-soft: #e8f0ec;
  --gold: #c9913d;
  --shadow: 0 22px 60px rgba(38, 28, 18, 0.13);
  --shadow-soft: 0 12px 32px rgba(38, 28, 18, 0.08);
  --radius: 8px;
  --radius-lg: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 320px),
    radial-gradient(circle at 12% 18%, rgba(200, 145, 61, 0.11), transparent 24rem),
    radial-gradient(circle at 85% 8%, rgba(18, 63, 52, 0.08), transparent 22rem);
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--green);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 50%, transparent);
  box-shadow: 0 10px 30px rgba(28, 21, 14, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.3s ease;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  width: 100%;
  padding: 8px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 250, 242, 0.82);
  background: var(--green);
  font-size: 0.82rem;
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--green);
  text-decoration: none;
}

.site-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-text em {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  flex-wrap: nowrap;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--bg);
  font-weight: 900;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent);
}

.menu-toggle,
.lang-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle {
  min-width: 62px;
  height: 42px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease;
}

.lang-toggle:hover {
  background: var(--green-soft);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  min-height: 480px;
  max-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-soft) 48%, transparent 100%);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: 72px 7vw 72px max(7vw, calc((100vw - 1180px) / 2));
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.95;
  color: var(--green);
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fffaf2;
  box-shadow: 0 4px 15px rgba(184, 79, 42, 0.25);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 6px 20px rgba(184, 79, 42, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}

.btn-glass {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.56);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-light {
  color: var(--accent-strong);
  background: #fffaf2;
}

.hero-media {
  position: relative;
  min-height: 400px;
  max-height: 560px;
  overflow: hidden;
}

.hero-media img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--surface-soft) 45%, transparent), transparent 48%);
  pointer-events: none;
}

.trust-strip {
  width: var(--container);
  margin: -34px auto 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px;
  background: var(--surface);
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 900;
}

.trust-strip h3,
.tour-card h3,
.city-card h3,
.review-card strong,
.footer h3 {
  margin: 0;
}

.trust-strip p,
.tour-card p,
.city-card p,
.review-card p,
.footer p {
  color: var(--muted);
  margin: 6px 0 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.section-heading h2,
.content-band h2,
.cta-banner h2,
.contact-form h2,
.booking-box h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.section-heading p {
  color: var(--muted);
  margin: 12px auto 0;
}

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

.tour-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tour-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.tour-card:hover .tour-image img,
.city-card:hover img {
  transform: scale(1.05);
}

.tour-duration-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  z-index: 2;
  letter-spacing: 0.02em;
}

.tour-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.tour-image-overlay h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  font-weight: 700;
}

/* Keep old span badge for simpleTripCard compatibility */
.tour-image>span:not(.tour-duration-badge) {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 800;
}

.tour-body {
  padding: 18px 22px 22px;
}

.tour-body h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.18;
  color: var(--text);
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.tour-meta strong {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 900;
  font-size: 0.92rem;
}

.text-link::after {
  content: "->";
  color: var(--accent);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.city-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.city-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  transition: transform 450ms ease;
}

.city-card a {
  display: block;
  padding-bottom: 22px;
}

.city-card h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--green);
}

.city-card p {
  padding: 0 16px;
  min-height: 90px;
  font-size: 0.92rem;
}

.city-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 900;
  font-size: 0.9rem;
}

.editorial-panel {
  width: var(--container);
  margin: 78px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: center;
}

.editorial-panel.reverse .editorial-image {
  order: 2;
}

.editorial-image {
  min-height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.editorial-copy {
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.editorial-copy h2,
.service-card h2,
.article-body h2,
.article-sidebar h2,
.article-sidebar h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--green);
  line-height: 1.12;
}

.editorial-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.editorial-copy p {
  color: var(--muted);
  margin: 16px 0 0;
}

.editorial-copy .btn {
  margin-top: 24px;
}

.service-highlights {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 22px;
  padding-top: 0;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h2 {
  font-size: 1.55rem;
}

.service-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.testimonials {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: var(--surface-soft);
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.review-card p {
  font-size: 1rem;
}

.review-card div {
  margin-top: 24px;
  display: grid;
  gap: 2px;
}

.review-card span {
  color: var(--gold);
}

.split-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  width: var(--container);
  margin: 0 auto;
}

.split-sections .section {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 18px;
}

.blog-list {
  display: grid;
  gap: 16px;
}

.blog-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.blog-thumb,
.blog-card img,
.blog-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.blog-thumb {
  display: block;
  overflow: hidden;
}

.blog-card span,
.blog-tile span {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.82rem;
}

.blog-card h3,
.blog-tile h2 {
  margin: 4px 0;
  font-family: var(--serif);
  line-height: 1.18;
}

.blog-card p {
  margin: 0 0 6px;
  color: var(--muted);
}

.featured-article {
  width: var(--container);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 30px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.featured-article-image {
  min-height: 430px;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.featured-article>div {
  padding: 40px;
  display: grid;
  align-content: center;
}

.featured-article span,
.article-meta {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-article h2 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  color: var(--green);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.04;
}

.featured-article p,
.featured-article li {
  color: var(--muted);
}

.featured-article ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
  padding-left: 20px;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.keyword-row small {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.cta-banner {
  margin-top: 72px;
  padding: 42px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(149, 64, 31, 0.98), rgba(182, 83, 45, 0.88)),
    url("https://images.pexels.com/photos/4694737/pexels-photo-4694737.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1") center / cover;
  color: #fffaf2;
}

.cta-banner h2 {
  color: #fffaf2;
}

.cta-banner p {
  margin: 8px 0 0;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.tour-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0e241e;
}

.tour-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 20, 0.88), rgba(10, 24, 20, 0.45) 48%, rgba(10, 24, 20, 0.14)),
    linear-gradient(0deg, rgba(10, 24, 20, 0.88), transparent 48%);
}

.tour-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0 34px;
}

.tour-hero-copy {
  max-width: 780px;
  padding-bottom: 56px;
}

.tour-duration {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe2bd;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tour-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: 0.96;
  color: #fffaf2;
  letter-spacing: 0;
}

.tour-hero-copy>p:not(.tour-duration) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.12rem;
}

.tour-fact-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tour-fact-row span {
  display: grid;
  gap: 3px;
  min-height: 86px;
  padding: 18px 20px;
  color: #6b5e50;
  border-right: 1px solid #eadcc9;
}

.tour-fact-row span:last-child {
  border-right: 0;
}

.tour-fact-row strong {
  color: #123f34;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs {
  width: var(--container);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--green);
  font-weight: 800;
}

.breadcrumbs strong {
  color: var(--text);
}

.page-hero img {
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.page-hero::after {
  background: linear-gradient(0deg, rgba(13, 23, 20, 0.72), transparent 62%);
}

.page-hero div {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0 64px;
}

.page-hero h1,
.page-hero p {
  color: #fffaf2;
}

.content-band {
  width: var(--container);
  margin: 72px auto;
  padding: 46px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.content-band p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.tour-detail {
  width: var(--container);
  margin: 34px auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.booking-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.detail-main {
  padding: 42px;
}

.detail-main h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 42px 0 14px;
  font-family: var(--serif);
  color: var(--green);
  font-size: 2rem;
}

.detail-main h2:first-of-type {
  margin-top: 0;
}

.detail-main p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 1rem;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.detail-facts span {
  display: grid;
  gap: 3px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.detail-facts span:last-child {
  border-right: 0;
}

.detail-facts strong {
  color: var(--text);
}

.itinerary {
  position: relative;
  display: grid;
  gap: 16px;
}

.itinerary article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface-soft) 55%, var(--surface)));
}

.day-marker {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  line-height: 1;
}

.day-marker span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.day-marker strong {
  font-size: 1.55rem;
  font-family: var(--serif);
}

.itinerary h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.22rem;
}

.itinerary p {
  margin: 5px 0 0;
}

.booking-box {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 0;
  overflow: hidden;
}

.booking-head {
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, var(--green), #0c2b23);
  color: #fffaf2;
}

.booking-head h2 {
  color: #fffaf2;
  font-size: 2rem;
}

.booking-head p,
.booking-box p {
  color: var(--muted);
  margin: 0;
}

.booking-head p {
  color: rgba(255, 250, 242, 0.76);
  margin-top: 8px;
}

.mini-inquiry {
  display: grid;
  gap: 13px;
  padding: 0 28px;
}

.mini-inquiry label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.mini-inquiry input,
.mini-inquiry textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 12px 13px;
}

.booking-divider {
  display: grid;
  place-items: center;
  position: relative;
  margin: 0 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--line);
}

.booking-divider span {
  position: relative;
  padding: 0 10px;
  background: var(--surface);
}

.contact-option {
  display: grid;
  gap: 3px;
  margin: 0 28px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.contact-option strong {
  color: var(--green);
}

.contact-option span {
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.whatsapp-option {
  border-color: rgba(37, 211, 102, 0.42);
  background: color-mix(in srgb, #25d366 10%, var(--surface));
}

.booking-benefits {
  margin: 0;
  padding: 4px 28px 28px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-benefits li {
  position: relative;
  padding-left: 18px;
}

.booking-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.highlight-grid,
.included-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.highlight-grid li,
.included-grid li {
  padding: 16px 16px 16px 44px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.highlight-grid li::before,
.included-grid li::before {
  left: 18px;
  top: 16px;
}

.good-to-know {
  margin-top: 34px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-soft), var(--surface-soft));
  border: 1px solid var(--line);
}

.good-to-know strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.good-to-know p {
  margin: 6px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-cards article,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.contact-cards span,
.contact-form label {
  color: var(--muted);
  font-weight: 800;
}

.contact-cards a,
.contact-cards strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 1.16rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form p {
  color: var(--muted);
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 13px 14px;
}

.form-status {
  min-height: 24px;
  color: var(--accent) !important;
  font-weight: 800;
}

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

.blog-tile {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 22px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.blog-tile p {
  color: var(--muted);
}

.article-page {
  background: var(--bg);
}

.article-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 22, 18, 0.86), rgba(8, 22, 18, 0.22));
}

.article-hero>div {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0 66px;
  color: #fffaf2;
}

.article-breadcrumbs {
  width: auto;
  margin: 0 0 20px;
  color: rgba(255, 250, 242, 0.72);
}

.article-breadcrumbs a,
.article-breadcrumbs strong {
  color: #fffaf2;
}

.article-hero h1 {
  max-width: 980px;
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.article-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.12rem;
}

.article-layout {
  width: var(--container);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 34px;
  align-items: start;
}

.article-body {
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.article-body section+section {
  margin-top: 34px;
}

.article-body h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.04rem;
}

.key-takeaways {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.key-takeaways ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.article-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.article-cta-card,
.sidebar-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.article-cta-card p {
  color: var(--muted);
}

.article-cta-card .btn {
  width: 100%;
  margin-top: 10px;
}

.mini-tour-link {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  color: var(--text);
  font-weight: 800;
}

.mini-tour-link img {
  width: 82px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}

.sidebar-link {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.legal {
  max-width: 900px;
}

.not-found {
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #052c18;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.footer {
  background: #0d2b23;
  color: #f8efe0;
  padding: 80px max(20px, calc((100vw - 1180px) / 2)) 40px;
}

.footer .brand {
  color: #f8efe0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr 1.2fr;
  gap: 34px;
}

.footer h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(248, 239, 224, 0.78);
  font-size: 0.88rem;
}

.footer-bottom a {
  margin-left: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1050px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 58px 24px 34px;
  }

  .hero-media {
    min-height: 360px;
  }

  .trust-strip,
  .tour-grid,
  .review-grid,
  .split-sections,
  .tour-detail,
  .contact-section,
  .blog-grid,
  .two-col,
  .editorial-panel,
  .service-highlights,
  .featured-article,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .city-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-box {
    position: static;
  }

  .article-sidebar {
    position: static;
  }

  .editorial-panel.reverse .editorial-image {
    order: 0;
  }

  .tour-fact-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-fact-row span:nth-child(2n) {
    border-right: 0;
  }

  .tour-fact-row span:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(calc(100vw - 28px), 1180px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand strong,
  .brand em {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .tour-hero {
    min-height: 650px;
  }

  .tour-hero-content {
    padding: 78px 0 22px;
  }

  .tour-hero-copy {
    padding-bottom: 28px;
  }

  .tour-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .tour-hero-copy>p:not(.tour-duration) {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-banner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip article {
    padding: 20px;
  }

  .section {
    padding: 52px 0;
  }

  .city-grid,
  .footer-grid,
  .blog-card,
  .blog-tile,
  .tour-fact-row,
  .highlight-grid,
  .included-grid,
  .booking-benefits {
    grid-template-columns: 1fr;
  }

  .tour-fact-row {
    border-radius: var(--radius);
  }

  .tour-fact-row span,
  .tour-fact-row span:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid #eadcc9;
    min-height: auto;
  }

  .tour-fact-row span:last-child {
    border-bottom: 0;
  }

  .city-card p {
    min-height: 0;
  }

  .content-band,
  .detail-main,
  .contact-cards article,
  .contact-form,
  .editorial-copy,
  .featured-article>div,
  .article-body {
    padding: 24px;
  }

  .editorial-image,
  .editorial-image img,
  .featured-article-image,
  .featured-article-image img {
    min-height: 280px;
  }

  .article-hero {
    min-height: 500px;
  }

  .article-hero>div {
    padding: 66px 0 42px;
  }

  .article-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .booking-head,
  .mini-inquiry {
    padding-left: 22px;
    padding-right: 22px;
  }

  .booking-divider,
  .contact-option {
    margin-left: 22px;
    margin-right: 22px;
  }

  .booking-benefits {
    padding-left: 22px;
    padding-right: 22px;
  }

  .itinerary article {
    grid-template-columns: 1fr;
  }

  .day-marker {
    width: 54px;
    height: 54px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero div {
    padding: 72px 0 44px;
  }

  .footer-bottom a {
    margin: 0 12px 0 0;
  }
}

/* --- FAQ Accordion --- */
.faq-accordion {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item button:hover {
  background: var(--color-background);
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--color-surface);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.2rem 1.2rem;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.wa-text {
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wa-text::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.whatsapp-float:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Mobile WhatsApp & UX --- */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .wa-text {
    display: none;
  }

  /* Compact brand on mobile */
  .brand span {
    font-size: 1rem !important;
    line-height: 1.15 !important;
  }

  .site-logo {
    max-height: 50px !important;
    width: 50px !important;
  }

  .brand {
    gap: 8px !important;
  }

  /* Hero section mobile fixes */
  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-media {
    min-height: 280px;
  }

  /* Trust strip stacked on mobile */
  .trust-strip {
    margin: -20px auto 40px;
  }

  .trust-strip article {
    padding: 18px 16px;
  }

  .trust-strip h3 {
    font-size: 0.95rem;
  }

  .trust-strip p {
    font-size: 0.85rem;
  }

  .icon-badge {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Section headings on mobile */
  .section-heading h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Tour cards grid on mobile */
  .tour-grid {
    gap: 16px;
  }

  .tour-body {
    padding: 16px;
  }

  .tour-body h3 {
    font-size: 1.1rem;
  }

  /* Contact form mobile */
  .contact-section {
    padding: 2rem 0;
  }

  .contact-cards {
    gap: 12px;
  }

  /* CTA banner mobile */
  .cta-banner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

@media (max-width: 420px) {
  .whatsapp-float {
    bottom: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
  }

  .hero h1 {
    font-size: 1.85rem !important;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .brand span {
    font-size: 0.9rem !important;
  }

  .site-logo {
    max-height: 44px !important;
    width: 44px !important;
  }
}

/* --- Form Status Messages --- */
.form-status {
  margin-top: 1rem;
  padding: 0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.form-status:not(:empty) {
  padding: 1rem 1.2rem;
}

.form-success {
  background: linear-gradient(135deg, rgba(18, 63, 52, 0.08), rgba(18, 63, 52, 0.04));
  color: var(--green);
  border: 1px solid color-mix(in srgb, var(--green) 25%, transparent);
  animation: slideUp 0.4s ease;
}

.form-error {
  background: linear-gradient(135deg, rgba(184, 79, 42, 0.08), rgba(184, 79, 42, 0.04));
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Polished Form Inputs --- */
.contact-form input,
.contact-form textarea,
.contact-form select,
.mini-inquiry input,
.mini-inquiry textarea,
.mini-inquiry select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.mini-inquiry input:focus,
.mini-inquiry textarea:focus,
.mini-inquiry select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.contact-form label,
.mini-inquiry label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

/* --- Disabled Button State --- */
button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Site Logo in Header --- */
.site-logo {
  border: 2px solid color-mix(in srgb, var(--gold) 40%, transparent);
  box-shadow: 0 2px 12px rgba(201, 145, 61, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand:hover .site-logo {
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(201, 145, 61, 0.25);
}

/* --- Smooth Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STAR RATINGS ===== */
.star-rating {
  display: inline-flex;
  gap: 2px;
  color: #e8a735;
  margin-bottom: 8px;
}

.star-rating svg {
  vertical-align: middle;
}

/* ===== REVIEW FORM ===== */
.review-form-wrap {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.review-form-wrap h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 0 4px;
}

.review-form-wrap>p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.review-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.rating-input {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 4px;
}

.rating-star {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  color: #d4d0c8;
  transition: color 0.15s ease, transform 0.15s ease;
}

.rating-star.active {
  color: #e8a735;
}

.rating-star:hover {
  transform: scale(1.2);
  color: #e8a735;
}

.rating-star svg {
  fill: currentColor;
  display: block;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 9998;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ===== TOUR FILTER BAR ===== */
.tour-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ===== NEWSLETTER BAR ===== */
.newsletter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  margin-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--line) 40%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 40%, transparent);
}

.newsletter-bar h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green);
  margin: 0 0 4px;
}

.newsletter-bar>div p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  min-width: 260px;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.newsletter-form .btn {
  white-space: nowrap;
}

.newsletter-form .form-status {
  flex-basis: 100%;
  margin-top: 0.5rem;
}

/* ===== MOBILE ADJUSTMENTS FOR NEW FEATURES ===== */
@media (max-width: 768px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }

  .review-form-wrap {
    padding: 1.5rem;
  }

  .newsletter-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .newsletter-form {
    justify-content: center;
    width: 100%;
  }

  .newsletter-form input {
    min-width: 0;
    flex: 1;
  }

  .tour-filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .back-to-top {
    bottom: 82px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  object-fit: contain;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top {
    bottom: 74px;
  }
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 960px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 16px 24px;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    display: none;
  }

  .site-header .nav-shell {
    position: relative;
    padding: 0 15px;
    gap: 10px;
    min-height: 60px;
  }

  .site-logo {
    height: 32px;
    width: 32px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text em {
    font-size: 1rem;
  }

  .menu-toggle {
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    padding: 0;
    color: var(--green);
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 4px 0;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    gap: 8px;
    padding: 0 12px;
  }

  .brand-text strong {
    font-size: 0.85rem;
  }

  .brand-text em {
    font-size: 0.85rem;
  }

  .lang-toggle {
    min-width: 44px;
    padding: 0 4px;
    font-size: 0.65rem;
    height: 32px;
  }
}

/* Force remove logo border */
.site-logo {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}