:root {
  --color-ink: #0c1712;
  --color-ink-2: #1c2f25;
  --color-muted: #5b6b63;
  --color-sand: #f4f7f2;
  --color-cream: #fcfbf8;
  --color-surface: #ffffff;
  --color-surface-2: #f0f7f2;
  --color-brand: #009040;
  --color-brand-2: #0b6f36;
  --color-accent: #caa35b;
  --color-accent-2: #ead2a2;
  --color-rose: #f0d4c7;
  --color-line: rgba(9, 35, 22, 0.12);
  --shadow-sm: 0 10px 24px rgba(9, 35, 22, 0.12);
  --shadow-md: 0 18px 42px rgba(9, 35, 22, 0.16);
  --shadow-lg: 0 26px 60px rgba(9, 35, 22, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;

  --font-body: "Sora", "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Sora", "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2rem;
  --text-4xl: 2.6rem;
  --text-5xl: 3.2rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(0, 144, 64, 0.14), rgba(0, 144, 64, 0) 60%),
    radial-gradient(700px 360px at 10% 0%, rgba(202, 163, 91, 0.2), rgba(202, 163, 91, 0) 60%),
    linear-gradient(180deg, #f7fbf6 0%, #eff6f1 45%, #fbfdfb 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-brand);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: 6px;
  z-index: 10;
}

.skip-link:focus {
  left: var(--space-3);
  top: var(--space-3);
}

header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(14px);
  background: rgba(246, 251, 247, 0.94);
  border-bottom: 1px solid var(--color-line);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.container-wide {
  width: min(1320px, 94vw);
  margin: 0 auto;
}

section {
  padding: var(--space-11) 0;
}

.booking-section {
  padding: var(--space-5) 0;
  background: #f6fbf7;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.booking-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.booking-copy--center {
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-actions--center {
  justify-content: center;
  margin-top: 6px;
}

.booking-copy .section-title {
  color: var(--color-ink);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 6px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  margin-top: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 3.4vw, var(--text-5xl));
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, var(--text-4xl));
}

p { line-height: 1.7; color: var(--color-ink-2); }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: var(--space-1) 0;
  gap: var(--space-5);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  grid-column: 2 / 3;
  width: 100%;
}

.nav-actions {
  grid-column: 3 / 4;
  justify-self: end;
  display: none;
  align-items: center;
  gap: var(--space-2);
}

.nav-actions .button {
  height: 34px;
  padding: 0 12px;
  font-size: var(--text-xs);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--color-brand);
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}


.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(0, 144, 64, 0.2);
  background: #fff;
  color: var(--color-brand);
  cursor: pointer;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 999px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 999px;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-links button {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after,
.nav-links button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-brand);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--color-brand-2);
}

.nav-links a:hover::after,
.nav-links button:hover::after {
  width: 100%;
}

.nav-item {
  position: relative;
  padding-bottom: 14px;
}

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(9, 35, 22, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(9, 35, 22, 0.18);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition-delay: 0.08s;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: var(--text-sm);
  color: var(--color-ink-2);
}

.dropdown a:hover {
  background: rgba(0, 144, 64, 0.08);
  color: var(--color-brand-2);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-cta {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.nav-cta .button {
  line-height: 1;
  height: 34px;
  padding: 0 12px;
}

.button {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  border: 1px solid rgba(0, 144, 64, 0.35);
  color: var(--color-brand-2);
  background: #fff;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pill {
  display: inline-flex;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-brand);
  background: rgba(0, 144, 64, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
}

.badge {
  background: rgba(0, 144, 64, 0.1);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  color: var(--color-ink-2);
}

.hero {
  position: relative;
  padding: var(--space-11) 0 var(--space-9);
  overflow: hidden;
  background-color: #0b2a1a;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.82)),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero--slider {
  background-image: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-name: heroSlideFade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: scale(1.02);
}

@keyframes heroSlideFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 1;
  }
  .hero-slide:not(:first-child) {
    display: none;
  }
}

.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}

.hero-home {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.92)),
    var(--hero-image, none);
}

.hero-microtrust {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-4);
}

.hero--no-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.7));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.6;
  z-index: 0;
  display: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(234, 210, 162, 0.8), rgba(234, 210, 162, 0.1));
  top: -130px;
  right: -120px;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at center, rgba(0, 144, 64, 0.35), rgba(0, 144, 64, 0.04));
  bottom: -190px;
  left: -160px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

body.page-home .hero-grid {
  gap: var(--space-9);
  align-items: center;
}

body.page-home .hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

body.page-home .hero-content > * {
  margin: 0;
}

body.page-home .hero-title {
  max-width: 20ch;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  color: #f8fffb;
}

body.page-home .hero-title .hero-line {
  display: block;
  color: #c6f6d5;
}

body.page-home .hero-content .subtitle {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

body.page-home .hero-actions {
  margin: 0;
}

body.page-home .hero-trust-list {
  margin: 0;
  gap: var(--space-2);
}

body.page-home .hero-side {
  align-self: center;
}

.hero-content .subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-4);
}

.hero .pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero .trust-row {
  color: rgba(255, 255, 255, 0.85);
}

.hero .hero-metrics strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.hero-metrics {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: var(--space-5);
}

.hero-metrics strong {
  display: block;
  font-size: var(--text-lg);
  color: var(--color-ink);
}

.hero-metrics span {
  color: var(--color-ink-2);
  font-size: var(--text-sm);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: stretch;
}

.hero-side .search-card {
  order: 1;
}

.hero-side .hero-media {
  order: 2;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.9);
}

.hero-media {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(9, 35, 22, 0.08);
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 144, 64, 0) 45%, rgba(0, 69, 33, 0.28) 100%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.booking-panel {
  display: grid;
  gap: var(--space-4);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.city-widget-section {
  padding: var(--space-10) 0;
  background: #fff;
}

.city-widget-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  justify-items: center;
  justify-content: center;
}

.city-widget-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 360px;
}

.city-widget-card h3 {
  margin: 0;
  padding: var(--space-4) var(--space-4) 0;
  text-align: center;
}

onetwogo-travelto-widget {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.booking-panel__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(9, 35, 22, 0.1);
}

.booking-panel__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.booking-panel__badge {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  background: rgba(10, 45, 28, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf6 100%);
  padding: var(--space-6);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 144, 64, 0.18);
}

.booking-card {
  background: rgba(255, 255, 255, 0.98);
}

.hero-side .booking-card {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

.search-card h3 { margin-top: 0; margin-bottom: 8px; }
.search-card p { margin-top: 0; color: var(--color-ink-2); font-size: var(--text-sm); }
.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.secure-chip {
  background: rgba(0, 144, 64, 0.12);
  color: var(--color-brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
}

.mini-note {
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  margin-top: var(--space-3);
}

.widget-shell {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(9, 35, 22, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.widget-shell--hero {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.booking-inline .section-lead {
  margin-bottom: var(--space-3);
}

.booking-inline .mini-note {
  margin-top: var(--space-3);
  text-align: center;
}

.booking-inline__text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-4);
}

.booking-widget {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  min-height: 320px;
}

#booking-widget-inline {
  min-height: 320px;
}

.booking-widget iframe {
  width: 100% !important;
  max-width: 100%;
  border-radius: 18px;
  background: #fff;
  min-height: 300px;
}
.widget-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-2);
}

.powered,
#powered {
  font-size: var(--text-xs);
  color: var(--color-ink-2);
}

.powered,
#powered {
  display: none !important;
}

.powered a,
#powered a { color: var(--color-brand-2); font-weight: 600; }

.search-meta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-ink-2);
}

.section-title { margin-bottom: var(--space-4); }
.section-lead { color: var(--color-ink-2); line-height: 1.8; margin-bottom: var(--space-5); }

.booking-section .section-title {
  margin-bottom: 6px;
}

.booking-section .section-lead {
  margin-bottom: 6px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.popular-routes {
  background: #fff;
}

.destination-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-6);
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(8, 20, 12, 0.2) 0%, rgba(8, 20, 12, 0.75) 100%),
    var(--card-image, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destination-card.no-image {
  background:
    linear-gradient(180deg, rgba(8, 20, 12, 0.6) 0%, rgba(8, 20, 12, 0.9) 100%);
}

.destination-card__content {
  display: grid;
  gap: var(--space-2);
}

.destination-tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.destination-meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.82);
}

.destination-cta {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.activities {
  background: #f6faf6;
}

.activities .section-header {
  align-items: center;
}

.gyg-widget {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 144, 64, 0.2);
  background: #fff;
  min-height: 320px;
}
.intro {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.cards,
.route-grid,
.links-grid,
.steps {
  display: grid;
  gap: var(--space-4);
}

.card-media {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(9, 35, 22, 0.15) 0%, rgba(9, 35, 22, 0.55) 100%),
    var(--card-image, none);
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-4);
}

.card-media.no-image {
  background: linear-gradient(135deg, rgba(9, 35, 22, 0.4), rgba(0, 144, 64, 0.35));
}

.step-media {
  background:
    linear-gradient(180deg, rgba(9, 35, 22, 0.15) 0%, rgba(9, 35, 22, 0.55) 100%),
    var(--card-image, none);
  background-size: cover;
  background-position: center;
}

.step-media.no-image {
  background: linear-gradient(135deg, rgba(9, 35, 22, 0.4), rgba(0, 144, 64, 0.35));
}

.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.route-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.links-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.steps { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.card,
.info-card,
.highlight {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: 20px;
  border: 1px solid rgba(9, 35, 22, 0.08);
  box-shadow: 0 16px 40px rgba(9, 35, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-media,
.step-media {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: var(--space-4);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-ink-2);
  margin-bottom: var(--space-4);
}

.route-thumb {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(9, 35, 22, 0.12);
  flex-shrink: 0;
}

.card:hover,
.info-card:hover,
.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(9, 35, 22, 0.14);
}

.card h3 { margin-top: var(--space-2); margin-bottom: var(--space-2); }

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
}

.info-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-ink-2);
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.step {
  background: var(--color-surface);
  border-radius: 20px;
  padding: var(--space-5);
  border: 1px solid rgba(9, 35, 22, 0.08);
  box-shadow: 0 16px 36px rgba(9, 35, 22, 0.08);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0, 144, 64, 0.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--color-brand);
}

.links-grid .link-item {
  background: var(--color-surface);
  border: 1px solid rgba(9, 35, 22, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-weight: 600;
  color: var(--color-ink-2);
  box-shadow: 0 12px 30px rgba(9, 35, 22, 0.08);
}

.route-card {
  display: grid;
  gap: var(--space-3);
  background: var(--color-surface);
  border-radius: 20px;
  border: 1px solid rgba(9, 35, 22, 0.08);
  padding: var(--space-5);
  box-shadow: 0 16px 36px rgba(9, 35, 22, 0.08);
}

.route-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-ink-2);
}

.route-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  color: var(--color-brand);
}

.routes-list {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border-radius: 16px;
  border: 1px solid rgba(9, 35, 22, 0.08);
  box-shadow: 0 12px 30px rgba(9, 35, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-item .route-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.route-item strong {
  display: block;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-ink-2);
  margin-top: 4px;
}

.route-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(9, 35, 22, 0.14);
}

.route-item span {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.route-cta {
  font-weight: 600;
  color: var(--color-brand);
}

.cta-band {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
  color: #fff;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  padding: var(--space-9) 0;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.urgency {
  padding-bottom: var(--space-8);
}

.urgency-card {
  background: #0b2e1d;
  color: #fff;
  border-radius: 24px;
  padding: var(--space-7);
  display: grid;
  gap: var(--space-4);
  align-items: center;
  box-shadow: 0 20px 40px rgba(9, 35, 22, 0.18);
}

.urgency-card h2,
.urgency-card p {
  color: #fff;
}

.faq details {
  background: var(--color-surface);
  border-radius: 18px;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
  border: 1px solid rgba(9, 35, 22, 0.08);
  box-shadow: 0 10px 24px rgba(9, 35, 22, 0.06);
}

body.page-home .hero {
  min-height: 640px;
}

body.page-home .hero::before,
body.page-home .hero::after {
  display: none;
}

body.page-home .hero-media {
  display: none;
}

body.page-home .hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.card:not(.has-media)::before,
.info-card:not(.has-media)::before,
.highlight:not(.has-media)::before,
.route-card::before,
.step:not(.has-media)::before {
  content: "";
  display: block;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(9, 35, 22, 0.12), rgba(0, 144, 64, 0.18));
  margin-bottom: var(--space-4);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-ink);
}

.faq summary::marker {
  color: var(--color-brand);
}

.form-field {
  display: grid;
  gap: var(--space-2);
}

.form-label {
  font-weight: 600;
  color: var(--color-ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  font-family: var(--font-body);
  font-size: var(--text-md);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 144, 64, 0.2);
  border-color: var(--color-brand);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.navbar-spacer { height: 64px; }


.social-proof {
  background: var(--color-surface-alt);
}

.proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.rating-badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 144, 64, 0.1);
  color: var(--color-brand-2);
  font-weight: 600;
  font-size: var(--text-sm);
}

.rating-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.review-badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(9, 35, 22, 0.12);
  background: #fff;
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--color-ink);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.review-badge--google { color: #1a73e8; border-color: rgba(26, 115, 232, 0.2); }
.review-badge--facebook { color: #1877f2; border-color: rgba(24, 119, 242, 0.2); }
.review-badge--tripadvisor { color: #00aa6c; border-color: rgba(0, 170, 108, 0.2); }

.review-badge img {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.proof-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: var(--space-5);
  border: 1px solid rgba(9, 35, 22, 0.08);
  box-shadow: var(--shadow-sm);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 144, 64, 0.12);
  color: var(--color-brand);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

.review-meta {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-ink-2);
}

.review-rating {
  font-size: var(--text-sm);
  color: var(--color-brand-2);
  white-space: nowrap;
}

.review-card strong {
  display: block;
  font-weight: 700;
  color: var(--color-ink);
}

.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(0, 144, 64, 0.08);
  border: 1px solid rgba(0, 144, 64, 0.18);
  border-radius: 18px;
  margin-top: var(--space-4);
}

.booking-cta strong {
  display: block;
  font-size: var(--text-lg);
  color: var(--color-ink);
}

.booking-cta p {
  margin: 0;
  font-size: var(--text-sm);
}

/* Ensure hero CTA panel stays readable on dark hero backgrounds */
.hero .booking-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.hero .booking-cta strong {
  color: #fff;
}

.hero .booking-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.hero .booking-cta .button {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-ink-2);
}

.station-maps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.map-card {
  background: #fff;
  border: 1px solid rgba(9, 35, 22, 0.1);
  border-radius: 16px;
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}

.map-card h3 {
  font-size: var(--text-sm);
  margin: 0 0 var(--space-2);
  color: var(--color-ink);
}

.map-card iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
}

.comparison-table {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(9, 35, 22, 0.12);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(9, 35, 22, 0.08);
  font-size: var(--text-sm);
}

.comparison-table th {
  background: rgba(0, 144, 64, 0.08);
  color: var(--color-ink);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-note {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-ink-2);
}
footer {
  background: #0b2e1b;
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-9) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.footer-grid h4 {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  color: #fff;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
}


.nav-link:focus-visible,
.dropdown a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(0, 144, 64, 0.7);
  outline-offset: 3px;
  border-radius: 10px;
}
.fade-up {
  animation: fadeUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .hero-side { align-items: stretch; }
}

@media (max-width: 1100px) {
  .city-widget-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    padding: 6px 0;
    gap: var(--space-3);
  }
  .nav-actions {
    display: flex;
    justify-self: end;
  }
  .nav-panel {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    padding: 0;
    background: transparent;
    border-radius: 18px;
    border: 0;
    box-shadow: none;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-cta {
    display: none;
  }
  body.nav-open .nav-panel {
    max-height: 80vh;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    padding: var(--space-4);
    background: #fff;
    border: 1px solid rgba(9, 35, 22, 0.08);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-4);
  }
  .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    order: 1;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  body.page-home .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  body.page-home .hero-side {
    order: 2;
  }
  body.page-home .hero-content {
    order: 1;
  }
  body.page-home .hero-side .booking-card {
    max-width: 100%;
    margin-left: 0;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(9, 35, 22, 0.08);
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
  }
  .nav-item.open .dropdown {
    max-height: 420px;
    padding: 12px;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item .nav-link {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }
  .nav-cta {
    display: none;
  }
}
@media (max-width: 720px) {
  .rating-stack {
    align-items: flex-start;
  }
  .review-badges {
    justify-content: flex-start;
  }
  .city-widget-grid {
    grid-template-columns: 1fr;
  }
  .city-widget-section {
    padding: var(--space-8) 0;
  }
  onetwogo-travelto-widget {
    min-height: 300px;
  }
  body.page-home .hero-title .hero-line {
    display: inline;
  }
}
@media (max-width: 640px) {
  header {
    background: #f6fbf7;
    backdrop-filter: none;
  }
  .nav { padding: 4px 0; }
  .logo-image { width: 44px; height: 44px; }
  .nav-actions .button {
    height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }
  .nav-toggle {
    width: 30px;
    height: 30px;
  }
  .card-media,
  .step-media { height: 130px; }
  .booking-cta { flex-direction: column; align-items: stretch; }
  .booking-cta .button { width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding-top: var(--space-10); }
  .button { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
  .review-top { flex-direction: column; align-items: flex-start; }
  .booking-panel__media img { height: 180px; }
  body.page-home .hero-title { max-width: 100%; }
  onetwogo-travelto-widget { min-height: 300px; }
}

/* Simplified UI mode */
body.simple-ui .card,
body.simple-ui .info-card,
body.simple-ui .highlight,
body.simple-ui .route-card,
body.simple-ui .cta-band,
body.simple-ui .widget-shell {
  box-shadow: none;
  border-radius: 16px;
}

body.simple-ui .card-media,
body.simple-ui .step-media {
  display: none !important;
}

body.simple-ui .card:not(.has-media)::before,
body.simple-ui .info-card:not(.has-media)::before,
body.simple-ui .highlight:not(.has-media)::before,
body.simple-ui .step:not(.has-media)::before,
body.simple-ui .route-card::before {
  display: none;
}

body.simple-ui .hero {
  min-height: 440px;
}

body.simple-ui .hero-content h1 {
  max-width: 18ch;
}

body.simple-ui .section-title {
  margin-bottom: var(--space-3);
}

body.simple-ui .section-lead {
  margin-bottom: var(--space-4);
}

body.simple-ui .route-grid,
body.simple-ui .links-grid,
body.simple-ui .cards {
  gap: var(--space-4);
}

body.simple-ui .booking-cta {
  box-shadow: none;
  border: 1px solid rgba(9, 35, 22, 0.12);
}
