:root {
  --brand-blue: #478FBF;
  --brand-grey: #A9AAA9;
  --brand-white: #FFFFFE;
  --brand-black: #1A1919;
  --brand-dark-grey: #484847;
  --surface: #FFFFFE;
  --surface-soft: #f4f7f9;
  --ink: #1A1919;
  --muted: #5f6467;
  --line: #dde4e8;
  --blue-soft: rgba(71, 143, 191, 0.12);
  --shadow: 0 16px 42px rgba(26, 25, 25, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--brand-white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--brand-blue);
}

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

:focus-visible {
  outline: 3px solid rgba(71, 143, 191, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 254, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: contain;
  background: var(--brand-black);
}

.brand strong {
  display: block;
  color: var(--brand-black);
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle__bar {
  width: 19px;
  height: 2px;
  background: var(--brand-black);
}

.site-nav {
  position: absolute;
  top: 76px;
  left: 16px;
  right: 16px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--brand-dark-grey);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  background: var(--blue-soft);
  color: var(--brand-blue);
}

.language-switcher {
  position: relative;
  min-width: 0;
}

.language-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(71, 143, 191, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(71, 143, 191, 0.12), rgba(71, 143, 191, 0.05));
  color: var(--brand-black);
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 900;
}

.language-toggle__short {
  display: inline-grid;
  place-items: center;
  min-width: 31px;
  min-height: 24px;
  border-radius: 6px;
  background: var(--brand-blue);
  color: var(--brand-white);
  font-size: 12px;
  line-height: 1;
}

.language-toggle__label {
  min-width: 0;
  color: var(--brand-dark-grey);
  font-size: 13px;
  line-height: 1.1;
}

.language-toggle__chevron {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid var(--brand-dark-grey);
  border-bottom: 2px solid var(--brand-dark-grey);
  transform: translateY(-2px) rotate(45deg);
}

.language-toggle[aria-expanded="true"] .language-toggle__chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 190px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(26, 25, 25, 0.16);
  padding: 7px;
}

.language-menu a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--brand-black);
  text-decoration: none;
}

.language-menu a:hover {
  background: var(--blue-soft);
  color: var(--brand-black);
}

.language-menu span {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.language-menu strong {
  font-size: 14px;
  line-height: 1.1;
}

.site-nav .nav-whatsapp {
  margin-top: 8px;
  background: var(--brand-blue);
  color: var(--brand-white);
  text-align: center;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
}

.home-hero {
  min-height: 680px;
}

.hero-slides,
.hero-slide,
.page-hero {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide[data-active="true"] {
  opacity: 1;
}

.hero-slide__backdrop {
  display: none;
}

.hero-slide__image,
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__shade,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.hero-slide__shade {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(26, 25, 25, 0.1), rgba(26, 25, 25, 0.48) 64%, rgba(26, 25, 25, 0.62)),
    linear-gradient(180deg, rgba(26, 25, 25, 0.18), rgba(26, 25, 25, 0.36) 48%, rgba(26, 25, 25, 0.64));
}

.page-hero__shade {
  background: linear-gradient(90deg, rgba(26, 25, 25, 0.78), rgba(26, 25, 25, 0.36), rgba(26, 25, 25, 0.18));
}

.hero-slide__content,
.page-hero__content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding-block: 72px 130px;
  color: var(--brand-white);
}

.hero-slide__content {
  justify-items: center;
  text-align: center;
}

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

.page-hero__content {
  min-height: 430px;
  padding-block: 70px;
}

.eyebrow {
  margin: 0;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-slide__content .eyebrow,
.page-hero__content .eyebrow {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 254, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(26, 25, 25, 0.35);
  color: var(--brand-white);
}

.hero-slide__content .eyebrow {
  margin-inline: auto;
  background: rgba(26, 25, 25, 0.26);
  backdrop-filter: blur(8px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.02;
}

.hero-slide__content h1 {
  max-width: 980px;
  margin-inline: auto;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.hero-title {
  display: grid;
  justify-items: center;
  gap: 7px;
  max-width: min(100%, 1120px);
  margin: 0 auto;
  line-height: 1;
}

.hero-title::after {
  content: "";
  width: 74px;
  height: 3px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 22px rgba(71, 143, 191, 0.46);
}

.hero-title__brand,
.hero-title__descriptor {
  display: block;
  max-width: 100%;
  letter-spacing: 0;
  text-align: center;
}

.hero-title__brand {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.98;
}

.hero-title__descriptor {
  color: rgba(255, 255, 254, 0.94);
  font-size: clamp(1.55rem, 3.5vw, 3.4rem);
  font-weight: 850;
  line-height: 1.04;
}

h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-slide__content p:not(.eyebrow),
.page-hero__content p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 254, 0.9);
  font-size: 18px;
}

.hero-slide__content p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.48;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-search-wrap {
  position: relative;
  z-index: 3;
  margin-top: -82px;
  padding-bottom: 36px;
}

.home-activity-shell {
  position: relative;
}

.home-activity-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid rgba(26, 25, 25, 0.12);
  border-radius: var(--radius);
  background: var(--brand-blue);
  box-shadow: 0 18px 48px rgba(26, 25, 25, 0.16);
  padding: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-activity-bar__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  flex: 0 0 min(82vw, 310px);
  row-gap: 4px;
  min-height: 70px;
  align-content: center;
  border: 1px solid rgba(26, 25, 25, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 254, 0.08);
  padding: 13px 54px 13px 15px;
  color: var(--brand-black);
  scroll-snap-align: start;
  text-decoration: none;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-activity-bar__item:last-child {
  border-right: 1px solid rgba(26, 25, 25, 0.14);
}

.home-activity-bar__item:hover {
  background: rgba(255, 255, 254, 0.18);
  color: var(--brand-black);
  box-shadow: inset 0 -3px 0 rgba(26, 25, 25, 0.18);
  transform: translateY(-1px);
}

.home-activity-bar__item::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(26, 25, 25, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 254, 0.16);
  transform: translateY(-50%);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.home-activity-bar__item::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(26, 25, 25, 0.82);
  border-right: 2px solid rgba(26, 25, 25, 0.82);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.home-activity-bar__item:hover::before {
  border-left-color: rgba(26, 25, 25, 0.22);
  background: rgba(255, 255, 254, 0.26);
  transform: translate(2px, -50%);
}

.home-activity-bar__item:hover::after {
  border-color: var(--brand-black);
  transform: translate(3px, -50%) rotate(45deg);
}

.home-activity-bar__item:focus-visible {
  outline: 3px solid rgba(255, 255, 254, 0.65);
  outline-offset: 3px;
}

.home-activity-bar__item span {
  position: relative;
  z-index: 1;
  color: var(--brand-black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.home-activity-bar__item small {
  position: relative;
  z-index: 1;
  color: var(--brand-dark-grey);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.home-activity-bar__item:hover span {
  color: var(--brand-black);
}

.home-activity-bar__item:hover small {
  color: var(--brand-dark-grey);
}

.home-activity-dots {
  display: none;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-toggle__chevron {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .home-activity-bar__item {
  padding-right: 15px;
  padding-left: 54px;
}

html[dir="rtl"] .home-activity-bar__item::before {
  right: auto;
  left: 12px;
}

html[dir="rtl"] .home-activity-bar__item::after {
  right: auto;
  left: 25px;
  transform: translateY(-50%) rotate(225deg);
}

html[dir="rtl"] .home-activity-bar__item:hover::before {
  transform: translate(-2px, -50%);
}

html[dir="rtl"] .home-activity-bar__item:hover::after {
  transform: translate(-3px, -50%) rotate(225deg);
}

html[dir="rtl"] .tour-bullet-list li {
  padding-right: 30px;
  padding-left: 0;
}

html[dir="rtl"] .tour-bullet-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .trust-item {
  border-right: 3px solid var(--brand-blue);
  border-left: 0;
  padding-right: 14px;
  padding-left: 0;
}

.search-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(169, 170, 169, 0.45);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 14px;
}

.search-panel label {
  display: grid;
  gap: 6px;
}

.search-panel span,
.contact-form span {
  color: var(--brand-dark-grey);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-panel input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
}

.search-panel input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.btn--primary:hover {
  background: #3679a5;
  color: var(--brand-white);
}

.btn--secondary {
  border-color: rgba(255, 255, 254, 0.58);
  background: rgba(255, 255, 254, 0.12);
  color: var(--brand-white);
}

.btn--secondary:hover {
  background: var(--brand-white);
  color: var(--brand-black);
}

.btn--small {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 14px;
}

.section {
  padding-block: 56px;
}

.section--white {
  background: var(--brand-white);
}

.section--soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.category-grid,
.tour-grid {
  display: grid;
  gap: 16px;
}

.category-card,
.tour-card,
.info-panel,
.tour-policy__card,
.side-cta,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(26, 25, 25, 0.06);
}

.category-card,
.tour-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.card-media-link {
  display: block;
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  background: var(--surface-soft);
  color: inherit;
}

.card-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.card-media[src*="temp-hot-air-balloon"] {
  object-position: 68% 28%;
}

.card-body {
  display: grid;
  gap: 12px;
  flex: 1;
  padding: 18px;
}

.card-kicker {
  margin: 0;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-body h3 a {
  text-decoration: none;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.tour-card .card-body {
  grid-template-rows: auto 2.45em 4.65em auto auto;
}

.tour-card .card-body h3 {
  height: 2.45em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tour-card .card-body > p:not(.card-kicker) {
  height: 4.65em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tour-card .mini-facts {
  margin-top: auto;
}

.tour-card .mini-facts div {
  min-height: 96px;
}

.tour-card .mini-facts dd {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tour-card .btn {
  width: max-content;
  max-width: 100%;
}

.mini-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.mini-facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.mini-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.trust-strip {
  background: var(--brand-black);
  color: var(--brand-white);
  padding-block: 28px;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-item {
  border-left: 3px solid var(--brand-blue);
  padding-left: 14px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  margin-top: 4px;
  color: rgba(255, 255, 254, 0.72);
}

.faq-cta-grid,
.help-layout,
.page-intro,
.split-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.side-cta {
  padding: 22px;
  align-self: start;
}

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

.side-cta__fineprint {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 900;
}

.side-cta__fineprint a {
  color: var(--brand-blue);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 15px 16px;
}

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

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

.results-note {
  margin: 18px 0;
  color: var(--muted);
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

.facts-grid {
  display: grid;
  gap: 10px;
  margin: 0;
}

.facts-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.facts-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-grid dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.page-intro__copy {
  max-width: 760px;
}

.page-intro__copy p {
  color: var(--muted);
  font-size: 17px;
}

.page-intro__copy .price-note {
  color: var(--ink);
  font-weight: 900;
}

.tour-policy {
  display: grid;
  gap: 20px;
}

.tour-policy__grid {
  display: grid;
  gap: 14px;
}

.tour-policy__card {
  padding: 20px;
}

.tour-policy__card span {
  display: block;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-policy__card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.tour-policy__card p {
  margin-top: 8px;
  color: var(--muted);
  white-space: pre-line;
}

.terms-grid {
  display: grid;
  gap: 14px;
}

.terms-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 8px 26px rgba(26, 25, 25, 0.05);
}

.terms-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.terms-card .check-list {
  color: var(--brand-dark-grey);
}

.shuttle-booking__grid {
  display: grid;
  gap: 20px;
}

.shuttle-booking__copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.shuttle-booking__copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.shuttle-price-preview {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(71, 143, 191, 0.28);
  border-radius: var(--radius);
  background: var(--blue-soft);
  padding: 18px;
}

.shuttle-price-preview span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shuttle-price-preview strong {
  color: var(--brand-black);
  font-size: 26px;
  line-height: 1.15;
}

.shuttle-price-preview p {
  margin: 0;
  color: var(--muted);
}

.shuttle-form {
  align-self: start;
}

.shuttle-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 5px;
}

.shuttle-mode-tabs__button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--brand-dark-grey);
  font-weight: 900;
  cursor: pointer;
}

.shuttle-mode-tabs__button[aria-pressed="true"] {
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 8px 18px rgba(26, 25, 25, 0.12);
}

.shuttle-panel {
  display: grid;
  gap: 14px;
}

.info-panel {
  padding: 22px;
}

.tour-detail {
  background: var(--brand-white);
}

.tour-gallery-hero {
  width: min(100% - 32px, 1320px);
  margin: 28px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.tour-gallery-hero__image {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  object-position: center;
}

.tour-gallery-hero__button {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--brand-white);
  color: var(--brand-black);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(26, 25, 25, 0.18);
}

.tour-section-nav {
  position: sticky;
  top: 77px;
  z-index: 90;
  margin-top: 24px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 254, 0.97);
  backdrop-filter: blur(14px);
}

.tour-section-nav__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tour-section-nav__inner::-webkit-scrollbar {
  display: none;
}

.tour-section-nav a {
  flex: 0 0 auto;
  padding: 16px 18px 14px;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.tour-section-nav a:hover,
.tour-section-nav a[aria-current="page"] {
  border-bottom-color: var(--brand-blue);
  color: var(--brand-black);
}

.tour-detail-body {
  padding-top: 38px;
}

.tour-detail-layout {
  display: grid;
  gap: 28px;
}

.tour-detail-main {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--brand-black);
}

.tour-badge {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-detail-main h1 {
  max-width: 860px;
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.tour-lead {
  max-width: 860px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.tour-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 34px;
  padding-block: 22px;
  border-block: 1px solid var(--line);
}

.tour-quick-grid div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.tour-quick-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-quick-grid strong {
  color: var(--brand-black);
  font-size: 16px;
  line-height: 1.35;
}

.tour-copy-section,
.tour-split-section {
  scroll-margin-top: 148px;
  margin-top: 42px;
}

.tour-copy-section h2,
.tour-split-section h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 34px);
}

.tour-rich-copy {
  max-width: 840px;
  color: var(--brand-dark-grey);
  font-size: 18px;
}

.tour-rich-copy p {
  margin: 0 0 18px;
}

.tour-bullet-list,
.tour-number-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0;
  padding: 0;
  color: var(--brand-dark-grey);
  font-size: 17px;
  list-style: none;
}

.tour-bullet-list li {
  position: relative;
  padding-left: 30px;
}

.tour-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.tour-bullet-list--check li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #3b8d56;
  font-weight: 900;
}

.tour-bullet-list--x li::before {
  content: "×";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #b9473e;
  font-weight: 900;
}

.tour-number-list {
  counter-reset: tour-step;
}

.tour-number-list li {
  position: relative;
  min-height: 42px;
  padding-left: 58px;
}

.tour-number-list li::before {
  counter-increment: tour-step;
  content: counter(tour-step);
  position: absolute;
  left: 0;
  top: -4px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(71, 143, 191, 0.35);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--brand-blue);
  font-weight: 900;
}

.tour-split-section {
  display: grid;
  gap: 28px;
}

.tour-copy-section > p,
.tour-split-section p {
  max-width: 860px;
  margin: 0;
  color: var(--brand-dark-grey);
  font-size: 17px;
  white-space: pre-line;
}

.tour-booking-card {
  display: grid;
  gap: 15px;
  align-self: start;
  padding: 22px;
  border: 1px solid #cad6dd;
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: 0 10px 30px rgba(26, 25, 25, 0.08);
}

.tour-booking-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

.tour-booking-card__value {
  margin: 0;
  color: var(--brand-blue);
  font-weight: 900;
}

.tour-booking-card label {
  display: grid;
  gap: 7px;
}

.tour-booking-card label span {
  color: var(--brand-dark-grey);
  font-size: 13px;
  font-weight: 900;
}

.tour-booking-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9de;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand-black);
  padding: 11px 12px;
}

.tour-booking-option {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 2px solid rgba(71, 143, 191, 0.55);
  border-radius: var(--radius);
  background: rgba(71, 143, 191, 0.06);
}

.tour-booking-option strong {
  color: var(--brand-black);
  font-size: 18px;
}

.tour-booking-option span {
  color: var(--brand-blue);
  font-size: 20px;
  font-weight: 900;
}

.tour-booking-option small,
.tour-booking-card p:not(.tour-booking-card__value) {
  color: var(--muted);
  white-space: pre-line;
}

.tour-booking-card__terms a {
  color: var(--brand-blue);
  font-weight: 900;
}

.tour-booking-card .btn {
  width: 100%;
}

.tour-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 254, 0.96);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -14px 34px rgba(26, 25, 25, 0.12);
  backdrop-filter: blur(16px);
}

.tour-mobile-cta strong,
.tour-mobile-cta span {
  display: block;
}

.tour-mobile-cta strong {
  color: var(--brand-black);
  font-size: 14px;
  line-height: 1.15;
}

.tour-mobile-cta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.tour-mobile-cta .btn {
  width: auto;
  flex: 0 0 128px;
  min-height: 42px;
  padding-inline: 18px;
}

.btn--on-light {
  border-color: var(--line);
  background: var(--brand-white);
  color: var(--brand-black);
}

.btn--on-light:hover {
  background: var(--surface-soft);
  color: var(--brand-black);
}

.check-list,
.numbered-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li,
.numbered-list li {
  margin-top: 8px;
}

.section--contact {
  background: var(--surface-soft);
}

.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form .terms-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 12px;
}

.contact-form .terms-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-blue);
}

.contact-form .terms-check span {
  color: var(--brand-dark-grey);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.contact-form .terms-check a {
  color: var(--brand-blue);
  font-weight: 900;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-note,
.form-status,
.field-error {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: #2f6f45;
  font-weight: 800;
}

.form-status[data-state="error"],
.field-error {
  color: #9a2f2f;
  font-weight: 800;
}

.contact-form [aria-invalid="true"] {
  border-color: #9a2f2f;
}

.booking-cta {
  background: var(--brand-blue);
  color: var(--brand-white);
  padding-block: 34px;
}

.booking-cta__inner {
  display: grid;
  gap: 18px;
}

.booking-cta h2 {
  margin-bottom: 8px;
}

.booking-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 254, 0.88);
}

.booking-cta .eyebrow {
  color: var(--brand-white);
}

.booking-cta .btn {
  width: max-content;
  background: var(--brand-white);
  color: var(--brand-black);
}

.site-footer {
  background: var(--brand-black);
  color: var(--brand-white);
  padding-block: 42px 22px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.brand--footer strong {
  color: var(--brand-white);
}

.brand--footer small,
.footer-text,
.footer-links,
.footer-bottom {
  color: rgba(255, 255, 254, 0.72);
}

.brand-logo--footer {
  width: 58px;
  height: 58px;
}

.footer-text {
  max-width: 420px;
}

.site-footer h2 {
  font-size: 16px;
}

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

.footer-links a,
.social-links a {
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 254, 0.12);
  padding-top: 16px;
  font-size: 13px;
}

@media (min-width: 700px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .language-toggle {
    min-height: 38px;
    padding: 8px 10px;
  }

  .language-toggle__label {
    font-size: 12px;
  }

  .site-nav .nav-whatsapp {
    margin-top: 0;
    margin-left: 8px;
    padding-inline: 15px;
  }

  .search-panel {
    grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.7fr) minmax(120px, 0.5fr) auto;
    align-items: end;
  }

  .home-activity-bar {
    gap: 0;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .home-activity-bar__item {
    min-width: 0;
    flex: 1 1 0;
    min-height: 76px;
    border: 0;
    border-right: 1px solid rgba(26, 25, 25, 0.14);
    border-radius: 0;
    background: transparent;
    scroll-snap-align: none;
  }

  .home-activity-bar__item:last-child {
    border-right: 0;
  }

  .home-activity-bar__item::before {
    right: 0;
    width: 46px;
    height: 100%;
    border: 0;
    border-left: 1px solid rgba(26, 25, 25, 0.16);
    border-radius: 0;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0), rgba(255, 255, 254, 0.15));
  }

  .home-activity-bar__item::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .site-nav .nav-whatsapp {
    margin-top: 0;
    margin-left: 8px;
    padding-inline: 15px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-slide__content {
    min-height: 560px;
    padding-block: 86px 150px;
  }

  .hero-slide__content h1 {
    max-width: 1080px;
    font-size: 58px;
    line-height: 1.06;
  }

  .hero-slide__content .hero-title {
    max-width: 1160px;
    gap: 8px;
  }

  .hero-slide__content p:not(.eyebrow) {
    max-width: 780px;
    font-size: 19px;
  }

  h2 {
    font-size: 38px;
  }

  .section {
    padding-block: 76px;
  }

  .category-grid,
  .tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .tour-grid--results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .faq-cta-grid,
  .help-layout,
  .page-intro,
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: start;
  }

  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
    align-items: start;
  }

  .tour-booking-card {
    position: sticky;
    top: 154px;
  }

  .tour-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tour-policy__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shuttle-booking__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    align-items: start;
  }

  .booking-cta__inner,
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .booking-cta__inner {
    align-items: center;
  }

  .booking-cta .btn {
    justify-self: end;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
}

@media (max-width: 699px) {
  body:has(.tour-mobile-cta) {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    background: rgba(255, 255, 254, 0.98);
    box-shadow: 0 8px 24px rgba(26, 25, 25, 0.06);
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .brand strong {
    font-size: 15px;
    letter-spacing: 0;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .menu-toggle__bar {
    width: 18px;
  }

  .site-nav {
    top: 64px;
    left: 12px;
    right: 12px;
    gap: 4px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(26, 25, 25, 0.18);
  }

  .site-nav a {
    padding: 13px 14px;
    font-size: 16px;
  }

  .language-switcher {
    width: 100%;
  }

  .language-toggle {
    min-height: 46px;
  }

  .language-menu {
    position: static;
    margin-top: 6px;
    min-width: 0;
    width: 100%;
    box-shadow: none;
  }

  .site-nav .nav-whatsapp {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  h1 {
    font-size: 36px;
    line-height: 1.03;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }

  .home-hero {
    min-height: 654px;
    background:
      radial-gradient(circle at 50% 28%, rgba(71, 143, 191, 0.24), transparent 48%),
      var(--brand-black);
  }

  .hero-slide__backdrop {
    position: absolute;
    inset: 0;
    display: block;
    background-position: center;
    background-size: cover;
    filter: blur(18px) saturate(1.08);
    opacity: 0.58;
    transform: scale(1.08);
  }

  .hero-slide__image {
    inset: 30px 12px auto;
    width: calc(100% - 24px);
    height: 316px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  }

  .hero-slide__shade,
  .page-hero__shade {
    background:
      linear-gradient(180deg, rgba(26, 25, 25, 0.14), rgba(26, 25, 25, 0.08) 48%, rgba(26, 25, 25, 0.76) 76%, rgba(26, 25, 25, 0.94)),
      linear-gradient(90deg, rgba(26, 25, 25, 0.34), rgba(26, 25, 25, 0));
  }

  .hero-slide__content {
    min-height: 654px;
    align-content: end;
    gap: 12px;
    padding-block: 382px 146px;
  }

  .hero-slide__content p:not(.eyebrow),
  .page-hero__content p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.48;
  }

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

  .page-hero__content {
    min-height: 350px;
    align-content: end;
    gap: 12px;
    padding-block: 46px 48px;
  }

  .hero-search-wrap {
    margin-top: 10px;
    padding-bottom: 24px;
  }

  .home-activity-shell {
    overflow: visible;
    border: 1px solid rgba(26, 25, 25, 0.16);
    border-radius: 10px;
    background: var(--brand-blue);
    box-shadow: 0 18px 40px rgba(26, 25, 25, 0.22);
    padding: 8px;
  }

  .home-activity-shell::after {
    content: none;
  }

  .home-activity-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    scroll-snap-type: none;
  }

  .home-activity-bar__item {
    grid-column: span 2;
    min-width: 0;
    min-height: 72px;
    border-color: rgba(26, 25, 25, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 254, 0.18), rgba(255, 255, 254, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 254, 0.18);
    padding: 10px 26px 10px 10px;
    scroll-snap-align: none;
  }

  .home-activity-bar__item span {
    font-size: 11.5px;
    line-height: 1.08;
  }

  .home-activity-bar__item small {
    margin-top: 1px;
    font-size: 9px;
    line-height: 1.18;
  }

  .home-activity-bar__item:nth-child(4),
  .home-activity-bar__item:nth-child(5) {
    grid-column: span 3;
  }

  .home-activity-bar__item::before {
    right: 7px;
    width: 16px;
    height: 16px;
  }

  .home-activity-bar__item::after {
    right: 13px;
    width: 5px;
    height: 5px;
    border-width: 1.5px;
  }

  html[dir="rtl"] .home-activity-bar__item {
    padding-right: 10px;
    padding-left: 26px;
  }

  html[dir="rtl"] .home-activity-bar__item::before {
    right: auto;
    left: 7px;
  }

  html[dir="rtl"] .home-activity-bar__item::after {
    right: auto;
    left: 13px;
  }

  .section {
    padding-block: 46px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p:not(.eyebrow),
  .contact-copy p {
    font-size: 16px;
  }

  .category-grid,
  .tour-grid {
    gap: 14px;
  }

  .category-card,
  .tour-card,
  .side-cta,
  .contact-form,
  .terms-card {
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(26, 25, 25, 0.07);
  }

  .card-media-link {
    aspect-ratio: 1.45 / 1;
  }

  .card-body {
    gap: 10px;
    padding: 15px;
  }

  .tour-card .card-body {
    grid-template-rows: auto 2.45em 4.65em auto auto;
  }

  .tour-card .mini-facts div {
    min-height: 82px;
    padding: 9px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .tour-gallery-hero {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .tour-gallery-hero__image {
    height: 300px;
  }

  .tour-gallery-hero__button {
    left: 14px;
    bottom: 14px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .tour-section-nav {
    top: 64px;
    z-index: 91;
    margin-top: 0;
    box-shadow: 0 8px 22px rgba(26, 25, 25, 0.08);
  }

  .tour-section-nav a {
    padding: 13px 14px 11px;
    font-size: 14px;
  }

  .tour-detail-body {
    padding-top: 22px;
  }

  .breadcrumbs {
    gap: 6px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .tour-badge {
    font-size: 12px;
  }

  .tour-detail-main h1 {
    font-size: 32px;
    line-height: 1.07;
  }

  .tour-lead {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .tour-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 28px;
    padding-block: 0;
    border-block: 0;
  }

  .tour-quick-grid div {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    padding: 11px;
  }

  .tour-quick-grid div:nth-child(3),
  .tour-quick-grid div:nth-child(6) {
    grid-column: 1 / -1;
  }

  .tour-quick-grid strong {
    font-size: 14px;
  }

  .tour-copy-section,
  .tour-split-section {
    scroll-margin-top: 126px;
    margin-top: 34px;
  }

  .tour-copy-section h2,
  .tour-split-section h2 {
    margin-bottom: 12px;
    font-size: 25px;
  }

  .tour-rich-copy,
  .tour-copy-section > p,
  .tour-split-section p,
  .tour-bullet-list,
  .tour-number-list {
    font-size: 16px;
  }

  .tour-bullet-list,
  .tour-number-list {
    gap: 13px;
  }

  .tour-booking-card {
    gap: 13px;
    padding: 16px;
    border-radius: 8px;
  }

  .tour-booking-card h2 {
    font-size: 23px;
  }

  .tour-booking-option {
    padding: 14px;
  }

  .tour-mobile-cta {
    display: flex;
  }

  .contact-grid {
    gap: 22px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-form {
    gap: 13px;
    padding: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .search-panel input {
    min-height: 50px;
    border-radius: 8px;
  }

  .contact-form .terms-check {
    border-radius: 8px;
    padding: 11px;
  }

  .shuttle-booking__grid {
    gap: 18px;
  }

  .shuttle-price-preview {
    border-radius: 8px;
    padding: 15px;
  }

  .shuttle-price-preview strong {
    font-size: 22px;
  }

  .shuttle-mode-tabs {
    border-radius: 8px;
  }

  .side-cta {
    padding: 18px;
  }

  .site-footer {
    padding-block: 34px 20px;
  }

  .footer-grid {
    gap: 20px;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 34px;
  }

  .home-hero {
    min-height: 642px;
  }

  .hero-slide__image {
    inset: 28px 10px auto;
    width: calc(100% - 20px);
    height: 304px;
  }

  .hero-slide__content {
    min-height: 642px;
    padding-block: 366px 136px;
  }

  .search-panel {
    padding: 12px;
  }

  .home-activity-bar__item {
    min-height: 70px;
    padding: 9px 25px 9px 9px;
  }

  .home-activity-bar__item::before {
    right: 7px;
    width: 16px;
    height: 16px;
  }

  .home-activity-bar__item::after {
    right: 13px;
    width: 5px;
    height: 5px;
  }

  html[dir="rtl"] .home-activity-bar__item {
    padding-right: 9px;
    padding-left: 25px;
  }

  html[dir="rtl"] .home-activity-bar__item::before {
    right: auto;
    left: 7px;
  }

  html[dir="rtl"] .home-activity-bar__item::after {
    right: auto;
    left: 13px;
  }

  .tour-gallery-hero {
    width: 100%;
    margin-top: 0;
  }

  .tour-gallery-hero__image {
    height: 300px;
  }

  .tour-gallery-hero__button {
    left: 12px;
    bottom: 12px;
  }

  .tour-section-nav {
    top: 64px;
  }

  .tour-section-nav a {
    padding-inline: 12px;
  }

  .tour-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
