
:root {
  color-scheme: light;
  --night: #10233B;
  --deep-teal: #147A8A;
  --sunset: #E9DFC8;
  --midnight: #0D1B2A;
  --fog: #526173;
  --card: rgba(16, 35, 59, 0.12);
  --page-bg: #F7FAFC;
  --brand-navy: #10233B;
  --brand-navy-deep: #0D1B2A;
  --brand-teal: #0B63FF;
  --brand-teal-hover: #0849D1;
  --brand-border: #D8E1E8;
  --main-nav-height: 53px;
  --main-nav-offset: 53px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--page-bg);
  color: var(--midnight);
}

body.page-tours {
  overflow-x: clip;
}

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

@keyframes mgGlow {
  0%, 100% { box-shadow: 0 16px 30px rgba(16, 35, 59, 0.14); }
  50% { box-shadow: 0 22px 40px rgba(20, 122, 138, 0.18); }
}

html {
  scroll-padding-top: 76px;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  border-bottom: 0;
  padding-top: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.main-nav__inner {
  width: min(1200px, calc(100% - 2rem));
  max-width: 1200px;
  min-height: var(--main-nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.85rem 24px;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.main-nav__panel {
  display: block;
  background: transparent;
}

.main-nav__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  text-align: right;
}

.main-nav__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0;
  border: 0;
  transition: color 0.2s ease;
}

.main-nav__label,
.main-nav__link,
.main-nav__brand {
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.main-nav__label--toggle {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  line-height: 1.2;
}

.main-nav__label--toggle::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  margin-left: 0.1rem;
}

.main-nav__group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.main-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0d0d0d;
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  flex-direction: column;
  gap: 0.45rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  text-align: left;
}

.main-nav__sublist::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.main-nav__group:hover > .main-nav__sublist,
.main-nav__group:focus-within > .main-nav__sublist,
.main-nav__group.is-open > .main-nav__sublist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav__sublist:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav__group--nested {
  width: 100%;
}

.main-nav__group--nested > .main-nav__sublist {
  top: 0;
  left: calc(100% - 8px);
}

.main-nav__sublink {
  display: inline-block;
  width: 100%;
  padding: 0.55rem 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  text-align: left;
}

.main-nav__links a:hover,
.main-nav__links a:focus-visible {
  color: #7ed6e2;
}

.main-nav__sublist .main-nav__sublink:hover,
.main-nav__sublist .main-nav__sublink:focus-visible {
  background: #1a1a1a;
  color: #ffffff;
}

.main-nav__links a[aria-current='page'] {
  color: #7ed6e2;
}

.main-nav__label--toggle:focus-visible,
.main-nav__toggle:focus-visible,
.main-nav__links a:focus-visible,
.main-nav__sublink:focus-visible {
  outline: 2px solid rgba(20, 122, 138, 0.55);
  outline-offset: 3px;
}

.main-nav__toggle {
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1.2;
}

.main-nav__toggleBar {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.main-nav__toggleText {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav__panel[aria-hidden='true'] {
  visibility: hidden;
}

.main-nav__panel[aria-hidden='false'] {
  visibility: visible;
}

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 24px;
  }

  :root {
    --main-nav-height: 0px;
    --main-nav-offset: 0px;
  }

  .main-nav {
    padding-top: 0;
  }

  .main-nav__inner {
    min-height: 0;
    padding: 0;
    height: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav__panel {
    position: fixed;
    right: 1.1rem;
    bottom: 4.8rem;
    background: rgba(0, 0, 0, 0.96);
    border-radius: 0;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    display: none;
    min-width: 210px;
  }

  .main-nav__panel[aria-hidden='true'] {
    display: none !important;
  }

  .main-nav__panel[aria-hidden='false'] {
    display: block !important;
  }

  .main-nav__links {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .main-nav__group {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav__sublist {
    position: static;
    display: none;
    background: #111111;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 0.75rem;
    min-width: unset;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav__sublist::before {
    content: none;
  }

  .main-nav__group.is-open > .main-nav__sublist {
    display: flex;
  }

  .main-nav__group--nested > .main-nav__sublist {
    margin-left: 0;
  }

  .main-nav__toggle {
    position: fixed;
    right: 1.1rem;
    bottom: 1.2rem;
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #0f151f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
  }

  .main-nav__toggleText {
    display: none;
  }

  .main-nav__toggleBar {
    width: 22px;
  }
}

@media (min-width: 901px) {
  .main-nav__toggleBar {
    display: none;
  }

  .main-nav__toggle {
    display: none;
  }
}

a {
  color: inherit;
  transition: color 0.2s;
}

a:focus-visible,
a:hover {
  color: var(--brand-teal);
}

main {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

:where(.mt-trust, .mt3, .rs2, .mtw-valletta, .mtc, .malta-veh-vlt, .mtfaq-vlt, .hub-routes, .hub-why, .hub-how, .hub-risk, .hub-cta, .route-links, .book-form, .faqs) {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.book-form {
  width: min(980px, calc(100% - 1.5rem));
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 0;
}

.rs2::before {
  border-radius: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 6, 12, 0.95);
  border-bottom: 1px solid rgba(244, 245, 250, 0.08);
  backdrop-filter: blur(20px);
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header nav a {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  border-color: rgba(20, 122, 138, 0.45);
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    linear-gradient(135deg, rgba(16, 35, 59, 0.92), rgba(22, 48, 79, 0.82));
  background-size: cover;
  background-position: center;
  padding: 4rem 0 5rem;
}

.hero--airport {
  background-image:
    linear-gradient(102deg, rgba(7, 12, 22, 0.94) 0%, rgba(7, 12, 22, 0.78) 38%, rgba(7, 12, 22, 0.58) 100%),
    url('/assets/images/malta-airport-transfer-malta.webp');
}

.hero--airport::after {
  display: none;
}

.hero::after {
  content: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 0.45rem 0.72rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  display: none;
}

.hero__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero__content h1 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #fff;
  animation: mgFadeUp 0.55s ease both;
}

.hero__content p {
  color: rgba(244, 245, 250, 0.85);
  margin-bottom: 1.5rem;
  animation: mgFadeUp 0.7s ease both;
}

.hero__content .eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 245, 250, 0.7);
}

.hero__micro {
  margin: 1rem 0 0;
  color: rgba(244, 245, 250, 0.78);
  font-size: 0.9rem;
}

.hero__link {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: rgba(244, 245, 250, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__form {
  background: rgba(16, 35, 59, 0.88);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(244, 245, 250, 0.14);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 1rem;
  animation: mgGlow 3.4s ease-in-out infinite;
}

.hero__field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: rgba(244, 245, 250, 0.75);
}

.hero__field input,
.hero__field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(244, 245, 250, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  width: auto;
}

.hero__btn.primary {
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  color: #0b1324;
}

.hero__btn.secondary {
  border: 1px solid rgba(244, 245, 250, 0.4);
  background: linear-gradient(135deg, #147A8A, #106673);
  color: #fdfdfd;
  padding: 0.75rem 1.1rem;
}

.hero__btn.secondary:hover,
.hero__btn.secondary:focus-visible {
  background: #ffffff;
  color: #0b63ff;
  border-color: rgba(11, 99, 255, 0.4);
}

.hero__btn.tertiary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.65rem 1rem;
}

.hero__subtitle {
  margin-bottom: 1rem;
  color: rgba(244, 245, 250, 0.9);
  font-size: 1.05rem;
  max-width: 630px;
  line-height: 1.48;
  text-wrap: balance;
}

.hero__trustline {
  margin: 1.05rem 0 0;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(244, 245, 250, 0.9);
  text-shadow: 0 1px 12px rgba(11, 19, 36, 0.18);
  text-wrap: balance;
}

.hero--tours {
  background:
    linear-gradient(135deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.62)),
    url('/assets/images/Malta-transfers.webp');
  background-size: cover;
  background-position: center;
}

.hero--tours .hero__content {
  max-width: 760px;
}

.hero--tours .hero__content h1 {
  max-width: 14ch;
}

.tour-options,
.tour-pickup {
  padding: 3.25rem 0 0;
  margin: 0 calc(50% - 50vw);
}

.tour-options {
  background: transparent;
}

.tour-pickup {
  background: transparent;
}

.tour-options__inner,
.tour-pickup__inner {
  width: min(1100px, 94%);
  margin: 0 auto;
}

.tour-options__head,
.tour-pickup__head {
  max-width: 720px;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.tour-options__head {
  margin-bottom: 0.55rem;
}

.tour-options__head p,
.tour-pickup__lead {
  color: rgba(11, 19, 36, 0.68);
  line-height: 1.55;
  text-wrap: balance;
}

.tour-showcase {
  margin-top: 0.4rem;
  position: relative;
  display: grid;
  gap: 1rem;
}

.tour-showcase__tabs {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 8;
  max-width: calc(100% - 1.8rem);
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-width: none;
}

.tour-showcase__tabs::-webkit-scrollbar {
  display: none;
}

.tour-showcase__tab {
  appearance: none;
  border: 1px solid rgba(11, 19, 36, 0.14);
  background: #ffffff;
  color: rgba(11, 19, 36, 0.74);
  padding: 0.78rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.tour-showcase__tab:hover,
.tour-showcase__tab:focus-visible {
  border-color: rgba(11, 99, 255, 0.28);
  color: #0b1324;
}

.tour-showcase__tab.is-active {
  background: #0b3a78;
  color: #ffffff;
  border-color: #0b3a78;
  box-shadow: none;
}

.tour-showcase__panel {
  border: 1px solid rgba(11, 19, 36, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(11, 19, 36, 0.07);
  border-radius: 0;
  overflow: hidden;
}

.tour-showcase__mediaWrap {
  position: relative;
}

.tour-showcase__media {
  min-height: clamp(320px, 38vw, 420px);
  background-size: cover;
  background-position: center;
}

.tour-showcase__media--malta {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.18), rgba(3, 6, 12, 0.08)),
    url('/assets/images/Malta-transfers.webp');
}

.tour-showcase__media--gozo {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.16), rgba(3, 6, 12, 0.08)),
    url('/assets/images/van-malta-group.webp');
}

.tour-showcase__media--comino {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.18), rgba(3, 6, 12, 0.08)),
    url('/assets/images/malta-airport-transfer-malta.webp');
}

.tour-showcase__strip {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tour-showcase__strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.tour-showcase__strip span::before {
  content: '';
  width: 0.34rem;
  height: 0.34rem;
  background: #0b63ff;
  border-radius: 999px;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span {
  opacity: 0;
  transform: translateY(8px);
  animation: tourTagIn 0.48s ease forwards, tourTagFloat 3.6s ease-in-out 0.55s infinite;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip {
  font-size: 0.83rem;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span:nth-child(1) {
  animation-delay: 0.08s, 0.7s;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span:nth-child(2) {
  animation-delay: 0.2s, 0.82s;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span:nth-child(3) {
  animation-delay: 0.32s, 0.94s;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span::before {
  animation: tourDotPulse 1.8s ease-in-out infinite;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span:nth-child(2)::before {
  animation-delay: 0.18s;
}

.tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span:nth-child(3)::before {
  animation-delay: 0.36s;
}

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

@keyframes tourTagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes tourDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span,
  .tour-showcase__panel[data-tour-panel='malta'] .tour-showcase__strip span::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.tour-showcase__body {
  display: block;
  padding: 1.28rem;
}

.tour-showcase__copy {
  display: grid;
  gap: 0.52rem;
  max-width: 760px;
}

.tour-showcase__eyebrow,
.tour-showcase__asideLabel {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #0b63ff;
}

.tour-showcase__copy h3 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 1.6vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0b1324;
}

.tour-showcase__text,
.tour-showcase__aside p {
  margin: 0;
  color: rgba(11, 19, 36, 0.7);
  line-height: 1.5;
}

.tour-showcase__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.tour-showcase__bullets li {
  position: relative;
  padding-left: 1rem;
  color: rgba(11, 19, 36, 0.78);
  line-height: 1.45;
}

.tour-showcase__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #0b63ff;
  box-shadow: 0 0 0 4px rgba(11, 99, 255, 0.08);
}

.tour-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  padding-top: 0.25rem;
}

.tour-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.95rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 6px;
}

.tour-showcase__cta--primary {
  background: #0b63ff;
  color: #ffffff;
}

.tour-showcase__cta--primary:hover,
.tour-showcase__cta--primary:focus-visible {
  background: #084fcf;
}

.tour-showcase__cta--ghost {
  background: #ffffff;
  color: #0b63ff;
  border-color: rgba(11, 99, 255, 0.24);
}

.tour-showcase__cta--ghost:hover,
.tour-showcase__cta--ghost:focus-visible {
  background: #0b63ff;
  color: #ffffff;
  border-color: #0b63ff;
}

.tour-showcase__aside {
  display: none;
}

.tour-showcase__aside strong {
  color: #0b1324;
  line-height: 1.45;
}

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

.tour-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 251, 0.94));
  border: 1px solid rgba(11, 19, 36, 0.08);
  box-shadow: 0 18px 42px rgba(11, 19, 36, 0.08);
}

.tour-card {
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.tour-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.tour-card p {
  margin: 0;
  color: rgba(11, 19, 36, 0.72);
  line-height: 1.58;
}

.tour-card__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-weight: 700;
  color: #0b63ff;
  text-decoration: none;
}

.tour-card__link:hover,
.tour-card__link:focus-visible {
  color: #084fcf;
}

.tour-card {
  padding: 0;
  overflow: hidden;
}

.tour-card__photo {
  min-height: 190px;
  background-size: cover;
  background-position: center;
}

.tour-card__photo--malta { background-image: url('/assets/images/malta-airport-transfer-valletta.webp'); }
.tour-card__photo--sliema { background-image: url('/assets/images/malta-airport-transfer-sliema.webp'); }
.tour-card__photo--gozo { background-image: url('/assets/images/malta-airport-transfer-bugibba-qawra-hero.webp'); }
.tour-card__photo--group { background-image: url('/assets/images/malta-airport-transfer-van-group.webp'); }
.tour-card__photo--combo { background-image: url('/assets/images/mellieha-bay-airport-transfer-hero.webp'); }

.tour-card__photo {
  position: relative;
  background-image: none !important;
  background: linear-gradient(135deg, #EEF3F7, #DDE6EE);
}

.tour-card__photo::after {
  content: none;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #526173;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.tour-card__body {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.58rem;
}

.tour-card__meta {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0b63ff;
  font-weight: 800;
}

.tour-card__body ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.2rem;
  color: rgba(11, 19, 36, 0.78);
  font-size: 0.9rem;
}

.tour-card__body a {
  margin-top: 0.2rem;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
  color: #0b63ff;
}

.tour-fit,
.tour-routes {
  padding: 48px 16px;
}

.tour-fit__inner,
.tour-routes__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tour-fit__head,
.tour-routes__head {
  text-align: center;
  margin-bottom: 14px;
}

.tour-fit__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.tour-fit__grid article {
  background: #fff;
  border: 1px solid rgba(11, 19, 36, 0.1);
  border-radius: 12px;
  padding: 0.85rem;
}

.tour-fit__grid h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.tour-fit__grid p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(11, 19, 36, 0.76);
  line-height: 1.45;
}

.tour-routes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.tour-routes__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(241,246,255,0.96));
  border: 1px solid rgba(11, 19, 36, 0.08);
  border-radius: 12px;
  padding: 1rem;
}

.tour-routes__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.tour-routes__card p {
  margin: 0;
  color: rgba(11, 19, 36, 0.78);
}

.tour-pickup__inner {
  width: min(1100px, 94%);
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.35rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tour-pickup__lead {
  margin: 0;
  text-align: center;
}

.tour-pickup__zones {
  margin-top: 1rem;
}

.tour-pickup__chip {
  cursor: default;
}

.tour-pickup__chip:hover,
.tour-pickup__chip:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  box-shadow: 0 18px 40px rgba(11, 19, 36, 0.08);
}

.tour-pickup__chip em {
  font-style: normal;
}

.hub-cta--simple .hub-cta__inner {
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.hub-cta--simple .hub-cta__lead {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(11, 19, 36, 0.72);
  line-height: 1.6;
}

.hub-cta--simple .hub-cta__actions {
  justify-content: center;
}

.hub-cta--simple {
  background: transparent;
}

.tour-cta {
  margin: 0 calc(50% - 50vw);
  padding: clamp(42px, 5vw, 70px) 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(11, 99, 255, 0.14), transparent 42%),
    radial-gradient(circle at 90% 82%, rgba(11, 58, 120, 0.12), transparent 38%),
    linear-gradient(140deg, #071123, #0b3a78 48%, #0b63ff);
}

.tour-cta__inner {
  width: min(1100px, 94%);
  margin: 0 auto;
}

.tour-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 17, 35, 0.3);
  box-shadow: 0 24px 40px rgba(3, 6, 12, 0.28);
  padding: clamp(1.2rem, 2vw, 1.9rem);
  overflow: hidden;
}

.tour-cta__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.tour-cta__copy {
  position: relative;
  z-index: 1;
}

.tour-cta__copy h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.1;
  color: #ffffff;
  text-wrap: balance;
}

.tour-cta__copy p {
  margin: 0.72rem 0 0;
  color: rgba(242, 246, 255, 0.93);
  line-height: 1.52;
  max-width: 68ch;
}

.tour-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: #ffffff;
  color: #0b3a78;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tour-cta__btn:hover,
.tour-cta__btn:focus-visible {
  background: #0b1324;
  color: #ffffff;
  transform: translateY(-1px);
}

.hub-routes__inner,
.hub-how__inner,
.hub-why__inner,
.hub-risk__inner,
.hub-cta__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hub-routes__head,
.hub-how__head,
.hub-why__head,
.hub-risk__head {
  max-width: 720px;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.hub-routes__head p,
.hub-how__head p,
.hub-why__head p,
.hub-risk__head p {
  color: rgba(11, 19, 36, 0.68);
  line-height: 1.55;
  text-wrap: balance;
}

.hub-how__step,
.hub-risk__inner,
.hub-why__inner {
  box-shadow: 0 18px 42px rgba(11, 19, 36, 0.08);
}

.hub-how__step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 255, 0.94));
  border: 1px solid rgba(43, 108, 255, 0.12);
}

.hub-why__inner,
.hub-risk__inner,
.hub-cta__inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 251, 0.94));
  border: 1px solid rgba(11, 19, 36, 0.08);
}

.hub-why__inner,
.hub-risk__inner,
.hub-cta__inner,
.hub-how__inner {
  padding: clamp(1.3rem, 2.6vw, 2rem);
}

.hub-why__list {
  max-width: 780px;
  margin: 0 auto;
}

.hub-why__list li,
.hub-risk__list li,
.hub-cta__list li,
.hub-how__step p,
.hub-why__note,
.vehicles__note {
  line-height: 1.55;
}

.hub-cta__inner {
  box-shadow: 0 20px 48px rgba(11, 19, 36, 0.1);
}

.trust {
  margin: 3rem 0;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #ffffff, #eaf2ff);
  border: 1px solid rgba(43, 108, 255, 0.18);
  box-shadow: 0 14px 24px rgba(11, 58, 120, 0.08);
}

.trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust li {
  flex: 1 1 180px;
  font-weight: 600;
  color: #0b3a78;
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  max-width: 960px;
}

.route-links__label {
  padding: 0.25rem 0.75rem;
  font-weight: 700;
  color: var(--midnight);
}

.mt-trust {
  margin: 2rem 0;
  background: linear-gradient(180deg, #fff9f1, #f4ebd9);
  padding: 1.25rem;
  border-radius: 0;
  border: 1px solid rgba(244, 245, 250, 0.08);
}

.mt-trust__inner {
  max-width: min(1200px, 90%);
  margin: 0 auto;
}

.mt-trust__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.mt-trust__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.4rem;
  background: var(--sunset);
}
.route-links__item {
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(43, 108, 255, 0.2);
  font-size: 0.9rem;
  color: #0b3a78;
  text-align: center;
  box-shadow: 0 10px 18px rgba(11, 58, 120, 0.12);
}

.faq-hero {
  margin: 2.5rem 0 2rem;
  text-align: center;
}

.faq-hero__eyebrow {
  margin: 0 0 0.5rem;
  color: rgba(11, 19, 36, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.faq-hero__title {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.faq-hero__lead {
  margin: 0.6rem auto 0;
  max-width: 520px;
  color: rgba(42, 47, 60, 0.7);
}

.faq-panel {
  background: linear-gradient(135deg, rgba(11, 19, 36, 0.02), rgba(11, 19, 36, 0.06));
  border-radius: 0;
  width: min(1100px, 95%);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(11, 19, 36, 0.08);
  box-shadow: 0 18px 40px rgba(11, 19, 36, 0.08);
}

.faq-panel__head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.faq-panel__head p {
  margin: 0;
  color: rgba(42, 47, 60, 0.7);
}

.faq-panel__grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.faq-panel__item {
  border-radius: 0;
  border: 1px solid rgba(43, 108, 255, 0.18);
  background: #fff;
  overflow: hidden;
}

.faq-panel__item[open] {
  background: #f3f7ff;
  border-color: rgba(43, 108, 255, 0.32);
}

.faq-panel__q {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-panel__q::after {
  content: '+';
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(43, 108, 255, 0.25);
  color: rgba(11, 19, 36, 0.7);
  flex: 0 0 auto;
}

.faq-panel__item[open] .faq-panel__q::after {
  content: '–';
}

.faq-panel__a {
  padding: 0 1.2rem 1.1rem;
  color: rgba(42, 47, 60, 0.75);
  line-height: 1.6;
}

.book-hero {
  margin: 2.5rem 0 2rem;
  text-align: center;
}

.book-hero__eyebrow {
  margin: 0 0 0.5rem;
  color: rgba(11, 19, 36, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.book-hero__title {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.book-hero__lead {
  margin: 0.6rem auto 0;
  max-width: 560px;
  color: rgba(42, 47, 60, 0.7);
}



.book-form__card {
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(11, 19, 36, 0.1);
  box-shadow: 0 18px 40px rgba(11, 19, 36, 0.08);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.4rem;
}

.book-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.book-form__intro {
  margin: -0.2rem 0 0.25rem;
  padding: 0.72rem 0.85rem;
  border-left: 4px solid #0b63ff;
  background: linear-gradient(90deg, rgba(11, 99, 255, 0.12), rgba(11, 99, 255, 0.03));
  color: #0b1324;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.book-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(11, 19, 36, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.book-field {
  display: grid;
  gap: 0.5rem;
}

.book-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(11, 19, 36, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(11, 19, 36, 0.15);
  background: rgba(15, 23, 42, 0.08);
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: rgba(11, 19, 36, 0.92);
}

.book-field input::placeholder,
.book-field textarea::placeholder {
  color: rgba(11, 19, 36, 0.6);
}

.book-field select option {
  color: #0b1324;
}

.book-field textarea {
  resize: vertical;
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  outline: none;
  border-color: rgba(43, 108, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(43, 108, 255, 0.12);
}

.book-field--error input,
.book-field--error select,
.book-field--error textarea {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.book-field--full {
  grid-column: 1 / -1;
}

.book-summary {
  display: grid;
  gap: 0.5rem;
  background: rgba(11, 19, 36, 0.04);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  border: 1px dashed rgba(11, 19, 36, 0.12);
}

.book-summary__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 0.6rem;
}

.book-summary__row span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.book-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.book-summary__row span {
  color: rgba(11, 19, 36, 0.6);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.book-btn__icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.55rem;
}

.book-btn__icon img {
  display: block;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(11, 99, 255, 0.45);
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #0b63ff;
  background: #fff;
}

.book-btn--wa {
  background: linear-gradient(180deg, #2be06d 0%, #25d366 100%);
  border: 0;
  color: #0b1b12;
}

.book-btn--wa:hover,
.book-btn--wa:focus-visible {
  background: linear-gradient(135deg, #0b63ff, #0247c9);
  color: #ffffff;
}

.book-btn--primary {
  background: linear-gradient(135deg, #1d4ed8, #2b6cff);
  border: 0;
  color: #fff;
}

.book-btn--primary:hover,
.book-btn--primary:focus-visible {
  background: #ffffff;
  color: #0b63ff;
  border: 1px solid rgba(11, 99, 255, 0.45);
}

.book-btn:hover,
.book-btn:focus-visible {
  background: #0b63ff;
  color: #ffffff;
}

.book-btn--primary:hover,
.book-btn--primary:focus-visible {
  background: #ffffff !important;
  color: #0b63ff !important;
  border: 1px solid rgba(11, 99, 255, 0.45);
}

.book-hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(11, 19, 36, 0.6);
}

.book-next {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 19, 36, 0.1);
}

.book-next h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.book-next ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(11, 19, 36, 0.75);
}

@media (max-width: 760px) {
  .book-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-panel {
    padding: 1.4rem 1.1rem;
  }

  .faq-panel__q {
    padding: 0.9rem 1rem;
  }

  .faq-panel__a {
    padding: 0 1rem 1rem;
  }
}

.hub-routes,
.hub-why,
.hub-how,
.hub-cta {
  padding: clamp(44px, 5vw, 72px) 16px;
}

.hub-routes__inner,
.hub-why__inner,
.hub-how__inner,
.hub-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hub-routes__head,
.hub-why__head,
.hub-how__head {
  text-align: center;
  margin: 0 auto 18px;
}

.hub-routes__head h2,
.hub-why__head h2,
.hub-how__head h2,
.hub-cta__inner h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0b1324;
}

.hub-routes__head p,
.hub-why__head p,
.hub-how__head p,
.hub-cta__inner p {
  margin: 10px auto 0;
  max-width: 72ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(11, 19, 36, 0.72);
}

.hub-routes {
  background:
    radial-gradient(900px 360px at 18% 18%, rgba(43, 108, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 23, 0.02), rgba(11, 15, 23, 0));
}

.hub-routes__chips {
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
}

.hub-routes__label {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.7);
}

.hub-routes__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 108, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  color: #0b3a78;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(11, 58, 120, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hub-routes__chip em {
  font-style: normal;
  font-weight: 600;
  color: rgba(11, 58, 120, 0.72);
  font-size: 0.85rem;
}

.hub-routes__chip:hover,
.hub-routes__chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(43, 108, 255, 0.45);
  box-shadow: 0 16px 26px rgba(11, 58, 120, 0.2);
}

.hub-routes__chip--cta {
  background: linear-gradient(135deg, #4aa6ff, #3b8ce4);
  color: #ffffff;
}

.hub-routes__chip--cta em {
  color: rgba(255, 255, 255, 0.85);
}

.hub-routes__chip--cta:hover,
.hub-routes__chip--cta:focus-visible {
  background: #ffffff;
  color: #0b63ff;
  border-color: rgba(11, 99, 255, 0.45);
}

.hub-routes__chip--cta:hover em,
.hub-routes__chip--cta:focus-visible em {
  color: rgba(11, 99, 255, 0.9);
}

.cluster-breadcrumb {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto -34px;
  padding: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgba(244, 245, 250, 0.72);
  position: relative;
  z-index: 5;
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
}

.cluster-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
}

.cluster-breadcrumb a:hover,
.cluster-breadcrumb a:focus-visible {
  color: #f3c66b;
}

.cluster-breadcrumb [aria-current='page'] {
  color: #ffffff;
  font-weight: 700;
}

.cluster-section {
  padding: clamp(44px, 5vw, 72px) 16px;
}

.cluster-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cluster-section__head {
  text-align: center;
  margin: 0 auto 18px;
}

.cluster-section__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0b1324;
}

.cluster-section__head p {
  margin: 10px auto 0;
  max-width: 72ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(11, 19, 36, 0.72);
}

.cluster-section__seo-copy {
  margin: 6px auto 14px;
  max-width: 76ch;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(11, 19, 36, 0.82);
}

.cluster-quicknav {
  margin: 14px auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.cluster-quicknav a {
  text-decoration: none;
  color: #0b1324;
  border: 1px solid rgba(11, 19, 36, 0.13);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.74rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.cluster-quicknav a:hover,
.cluster-quicknav a:focus-visible {
  border-color: rgba(11, 99, 255, 0.45);
  color: #0b63ff;
}

.cluster-grid {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cluster-grid--hub .cluster-card--featured {
  grid-column: span 1;
}

.cluster-card {
  display: grid;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.18s ease;
}

.cluster-card:hover,
.cluster-card:focus-visible {
  transform: translateY(-2px);
}

.cluster-card__media {
  display: block;
  min-height: 215px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cluster-card:hover .cluster-card__media,
.cluster-card:focus-visible .cluster-card__media {
  transform: scale(1.015);
  filter: brightness(1.02);
}

.cluster-card--featured .cluster-card__media {
  min-height: 215px;
}

.cluster-card__media--valletta {
  background-image: url('/assets/images/van-malta-group.webp');
}

.cluster-card__media--sliema {
  background-image: url('/assets/images/malta-airport-transfer-sliema.webp');
}

.cluster-card__media--st-julians {
  background-image: url('/assets/images/Malta-transfers.webp');
}

.cluster-card__media--luqa {
  background-image: url('/assets/images/luqa-old-town-airport-transfer-hero.webp');
}

.cluster-card__media--mellieha {
  background-image: url('/assets/images/mellieha-bay-airport-transfer-hero.webp');
}

.cluster-card__media--bugibba-qawra {
  background-image: url('/assets/images/malta-airport-transfer-bugibba-qawra-hero.webp');
}

.cluster-card__media {
  position: relative;
  background-color: #EEF3F7;
}

.cluster-card__media::after {
  content: none;
}

.cluster-card__body {
  display: grid;
  gap: 0.46rem;
  padding: 0.75rem 0.15rem 0.2rem;
  text-align: center;
}

.cluster-card__meta {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0b63ff;
  background: transparent;
}

.cluster-card__body h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.2;
  color: #0b1324;
  text-transform: uppercase;
}

.cluster-card__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(11, 19, 36, 0.75);
}

.cluster-card__linktext {
  margin-top: 0.16rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0b63ff;
}

.cluster-card__linktext::before {
  content: '✓';
  font-weight: 900;
}

.cluster-card--featured .cluster-card__body h3 {
  font-size: 1.06rem;
}

.cluster-section--related {
  padding-top: 26px;
}

.cluster-backlink {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.cluster-backlink a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0b63ff;
  font-weight: 700;
  text-decoration: none;
}

.cluster-backlink a:hover,
.cluster-backlink a:focus-visible {
  color: #084fcf;
}

.hub-why__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(43, 108, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  box-shadow: 0 18px 44px rgba(11, 58, 120, 0.12);
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hub-why__card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #0b3a78;
}

.hub-why__card p {
  margin: 10px 0 0;
  font-size: 14.8px;
  line-height: 1.6;
  color: rgba(11, 19, 36, 0.7);
}

.hub-routes__footer,
.hub-why__note {
  margin: 18px auto 0;
  max-width: 980px;
  text-align: center;
  font-size: 12.8px;
  color: rgba(11, 19, 36, 0.64);
}

.hub-why {
  background:
    radial-gradient(900px 360px at 14% 14%, rgba(43, 108, 255, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 23, 0.012), rgba(11, 15, 23, 0));
}

.tour-why {
  padding: clamp(44px, 5vw, 72px) 0;
  background: transparent;
}

.tour-why__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.tour-why__head {
  max-width: 560px;
  margin: 0 0 1.8rem;
  text-align: left;
  padding-left: clamp(14px, 4vw, 56px);
  padding-right: clamp(14px, 4vw, 56px);
  position: relative;
  z-index: 5;
}

.tour-why__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 77, 130, 0.78);
}

.tour-why__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0b1324;
}

.tour-why__head p {
  margin: 1rem 0 0;
  max-width: 52ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(11, 19, 36, 0.72);
}

.tour-why__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: stretch;
  padding-left: clamp(14px, 4vw, 56px);
  z-index: 2;
}

.tour-why__content {
  display: grid;
  gap: 0.78rem;
  padding: 1rem 1rem 0.95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(244, 248, 255, 0.1));
  border: 1px solid rgba(123, 133, 149, 0.16);
  box-shadow:
    0 16px 32px rgba(11, 58, 120, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(5px);
  border-radius: 24px;
}

.tour-why__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  padding-bottom: 0.78rem;
  border-bottom: 1px solid rgba(11, 58, 120, 0.045);
}

.tour-why__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tour-why__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.5), rgba(233, 239, 248, 0.32));
  border: 1px solid rgba(121, 131, 147, 0.26);
  box-shadow:
    0 10px 22px rgba(11, 58, 120, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  position: relative;
}

.tour-why__icon::before,
.tour-why__icon::after {
  content: '';
  position: absolute;
}

.tour-why__icon--shield::before {
  width: 19px;
  height: 22px;
  top: 11px;
  left: 13px;
  background: #223654;
  clip-path: polygon(50% 0%, 92% 16%, 92% 53%, 50% 100%, 8% 53%, 8% 16%);
}

.tour-why__icon--shield::after {
  width: 8px;
  height: 8px;
  left: 19px;
  top: 17px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 61% 38%, 100% 38%, 69% 60%, 80% 100%, 50% 75%, 20% 100%, 31% 60%, 0 38%, 39% 38%);
}

.tour-why__icon--pin::before {
  width: 18px;
  height: 24px;
  left: 14px;
  top: 10px;
  background: #223654;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.tour-why__icon--pin::after {
  width: 7px;
  height: 7px;
  left: 19px;
  top: 18px;
  background: #ffffff;
  border-radius: 999px;
}

.tour-why__icon--car::before {
  left: 10px;
  right: 10px;
  top: 18px;
  height: 11px;
  background: #223654;
  border-radius: 8px 8px 4px 4px;
}

.tour-why__icon--car::after {
  left: 14px;
  right: 14px;
  top: 12px;
  height: 10px;
  background: #223654;
  clip-path: polygon(12% 100%, 24% 22%, 76% 22%, 88% 100%);
}

.tour-why__icon--chat::before {
  width: 22px;
  height: 16px;
  left: 12px;
  top: 14px;
  background: #223654;
  border-radius: 12px;
}

.tour-why__icon--chat::after {
  width: 9px;
  height: 9px;
  left: 15px;
  top: 24px;
  background: #223654;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.tour-why__item h3 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.1;
  color: #182544;
}

.tour-why__item p {
  margin: 0.28rem 0 0;
  font-size: 0.96rem;
  line-height: 1.42;
  color: rgba(11, 19, 36, 0.72);
}

.tour-why__visual {
  position: relative;
  min-height: 100%;
  display: grid;
  align-items: stretch;
  margin-top: -156px;
  align-self: stretch;
}

.tour-why__visual::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(248, 244, 238, 1) 0%,
    rgba(248, 244, 238, 0.9) 24%,
    rgba(248, 244, 238, 0.5) 44%,
    rgba(248, 244, 238, 0.14) 64%,
    rgba(248, 244, 238, 0) 80%
  );
}

.tour-why__image {
  min-height: 100%;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    url('/assets/images/malta-airport-transfer-valletta.webp');
  background-size: cover;
  background-position: center right;
  border-radius: 0;
  box-shadow: 0 26px 54px rgba(11, 58, 120, 0.12);
}

.tour-why__card {
  position: absolute;
  right: clamp(1rem, 3vw, 1.6rem);
  top: auto;
  bottom: clamp(0.9rem, 2vw, 1.3rem);
  transform: none;
  width: min(330px, calc(100% - 2.4rem));
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(123, 133, 149, 0.18);
  box-shadow:
    0 24px 56px rgba(11, 58, 120, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  z-index: 3;
}

.tour-why__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.74rem;
}

.tour-why__highlights li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #24344f;
}

.tour-why__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0f6ff, #dfeaff);
  box-shadow: inset 0 0 0 1px rgba(68, 92, 130, 0.14);
}

.tour-why__highlights li::after {
  content: '';
  position: absolute;
  left: 0.27rem;
  top: 0.58rem;
  width: 0.38rem;
  height: 0.2rem;
  border-left: 2px solid #b28a36;
  border-bottom: 2px solid #b28a36;
  transform: rotate(-45deg);
}

.tour-why__actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.tour-why__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.1rem;
  text-decoration: none;
  font-weight: 800;
  border-radius: 14px;
}

.tour-why__cta--primary {
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.tour-why__cta--secondary {
  background: linear-gradient(180deg, #31486e, #223654);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 58, 120, 0.12);
}

.tour-why__cta:hover,
.tour-why__cta:focus-visible {
  background: #ffffff;
  color: #0b63ff;
}

.tour-why__foot {
  margin: 1.2rem 0 0;
  text-align: center;
  font-size: 1rem;
  color: rgba(42, 47, 60, 0.72);
  padding: 0 clamp(14px, 4vw, 56px);
}

.hub-why__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hub-why__list {
  margin: 16px auto 0;
  padding: 0 1rem;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 920px;
}

.hub-why__list li {
  padding-left: 1.2rem;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 19, 36, 0.75);
}

.hub-why__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2b6cff;
  box-shadow: 0 0 0 3px rgba(43, 108, 255, 0.1);
}

.hub-why__list strong {
  color: #0b3a78;
}

.hub-how {
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.02), rgba(11, 15, 23, 0));
}

.tour-flow {
  padding: clamp(44px, 5vw, 72px) 16px;
  background: linear-gradient(180deg, rgba(11, 99, 255, 0.06) 0%, rgba(248, 159, 23, 0.06) 100%);
  margin: 0 calc(50% - 50vw);
}

.tour-flow__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.tour-flow__head {
  max-width: 840px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.tour-flow__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #0b1324;
}

.tour-flow__head p {
  margin: 12px auto 0;
  max-width: 52ch;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.4;
  color: rgba(11, 19, 36, 0.78);
}

.tour-flow__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
}

.tour-flow__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 1.55rem 1.45rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(11, 99, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(11, 58, 120, 0.12);
  backdrop-filter: blur(3px);
}

.tour-flow__num {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 99, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(180deg, #2b6cff 0%, #0b63ff 100%);
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 16px rgba(11, 99, 255, 0.26);
}

.tour-flow__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.58rem;
}

.tour-flow__copy h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 1.35vw, 1.72rem);
  line-height: 1.15;
  color: #0b3a78;
}

.tour-flow__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(180deg, #2b6cff 0%, #0b63ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.tour-flow__icon--calendar::before {
  content: '';
  position: absolute;
  left: 7px;
  right: 7px;
  top: 9px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
}

.tour-flow__icon--calendar::after {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 8px;
  top: 17px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 47%, transparent 47% 53%, rgba(255, 255, 255, 0.92) 53% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 44%, transparent 44% 56%, rgba(255, 255, 255, 0.92) 56% 100%);
}

.tour-flow__icon--proposal::before {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  top: 8px;
  bottom: 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
}

.tour-flow__icon--proposal::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 15px;
  border-top: 2px solid rgba(11, 99, 255, 0.52);
  border-bottom: 2px solid rgba(11, 99, 255, 0.52);
}

.tour-flow__icon--confirm::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.tour-flow__icon--confirm::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 18px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #0b63ff;
  border-bottom: 3px solid #0b63ff;
  transform: rotate(-45deg);
}

.tour-flow__list {
  margin: 0.85rem 0 0;
  padding-left: 1.35rem;
  list-style: none;
}

.tour-flow__list li {
  margin: 0.34rem 0 0;
  position: relative;
  font-size: clamp(0.94rem, 0.92vw, 1.02rem);
  line-height: 1.32;
  color: rgba(11, 19, 36, 0.86);
  white-space: nowrap;
}

.tour-flow__list li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.56em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 99, 255, 0.9);
}

.tour-flow__meta {
  margin: 0.95rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-size: clamp(0.9rem, 0.86vw, 0.98rem);
  line-height: 1.3;
  color: rgba(11, 19, 36, 0.8);
}

.tour-flow__meta--single {
  white-space: nowrap;
}

.tour-flow__meta-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(180deg, #2b6cff 0%, #0b63ff 100%);
}

.tour-flow__meta-icon--time::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
}

.tour-flow__meta-icon--time::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 12px;
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 4px 5px 0 -1px rgba(255, 255, 255, 0.95);
}

.tour-flow__meta-icon--chat::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}

.tour-flow__meta-icon--chat::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 15px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #0b63ff;
  border-bottom: 3px solid #0b63ff;
  transform: rotate(-45deg);
}

.tour-flow__arrow {
  position: relative;
  width: 78px;
  height: 3px;
  align-self: start;
  margin-top: 58px;
  top: 0;
  left: 8px;
  z-index: 4;
  background: linear-gradient(90deg, rgba(248, 159, 23, 0.5), rgba(248, 159, 23, 0.95));
  border-radius: 999px;
}

.tour-flow__arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(248, 159, 23, 0.95);
  border-right: 3px solid rgba(248, 159, 23, 0.95);
  transform: translateY(-50%) rotate(45deg);
}

.tour-flow__trust {
  margin: 1.3rem auto 0;
  text-align: center;
  font-size: clamp(0.9rem, 0.85vw, 1rem);
  line-height: 1.45;
  color: rgba(11, 58, 120, 0.9);
}

.tour-pricing {
  padding: clamp(42px, 5vw, 70px) 0 0;
}

.tour-pricing__inner {
  width: min(1100px, 94%);
  margin: 0 auto;
}

.tour-pricing__head {
  max-width: 760px;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.tour-pricing__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  color: #0b1324;
}

.tour-pricing__head p {
  margin: 0.7rem auto 0;
  color: rgba(11, 19, 36, 0.72);
  line-height: 1.55;
}

.tour-pricing__tableCard {
  border: 1px solid rgba(11, 58, 120, 0.18);
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  box-shadow: 0 16px 34px rgba(11, 58, 120, 0.1);
  padding: 0.9rem;
}

.tour-pricing__bar {
  margin: 0;
  padding: 0.78rem 1rem;
  text-align: center;
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #0b3a78, #0b63ff);
}

.tour-pricing__tableWrap {
  overflow-x: auto;
}

.tour-pricing__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.tour-pricing__table th,
.tour-pricing__table td {
  border: 1px solid rgba(11, 58, 120, 0.14);
  padding: 0.82rem 0.78rem;
  text-align: center;
}

.tour-pricing__table thead th {
  background: #eaf2ff;
  color: #0b3a78;
  font-size: 1rem;
  font-weight: 700;
}

.tour-pricing__table tbody th {
  background: #f5f8ff;
  color: #0b3a78;
  font-size: 1.15rem;
  font-weight: 700;
}

.tour-pricing__table strong {
  color: #0b63ff;
  font-size: 1.15rem;
  font-weight: 700;
}

.tour-pricing__benefits {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.tour-pricing__benefits li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(11, 19, 36, 0.78);
  line-height: 1.42;
}

.tour-pricing__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #0b63ff;
  font-weight: 800;
}

.tour-pricing__footer {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(11, 19, 36, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.tour-pricing__footer p {
  margin: 0;
  color: rgba(11, 19, 36, 0.76);
  font-weight: 600;
}

.tour-pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.2rem;
  border: 1px solid #0b63ff;
  background: linear-gradient(90deg, #0b63ff, #0b3a78);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.tour-pricing__cta:hover,
.tour-pricing__cta:focus-visible {
  background: linear-gradient(90deg, #0b3a78, #0b1324);
  border-color: #0b3a78;
}

@media (max-width: 980px) {
  .tour-flow__head p {
    font-size: 1.04rem;
    max-width: 42ch;
  }

  .tour-flow__panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tour-flow__arrow {
    justify-self: center;
    width: 3px;
    height: 42px;
    margin-top: 0;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(248, 159, 23, 0.5), rgba(248, 159, 23, 0.95));
  }

  .tour-flow__arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -2px;
    border-top: 3px solid rgba(248, 159, 23, 0.95);
    border-right: 3px solid rgba(248, 159, 23, 0.95);
    transform: translateX(-50%) rotate(135deg);
  }

  .tour-pricing__table {
    min-width: 620px;
  }
}

@media (max-width: 640px) {
  .tour-flow {
    padding: 40px 14px;
  }

  .tour-flow__head h2 {
    font-size: 2rem;
  }

  .tour-flow__step {
    padding: 1.35rem 1.05rem 1.08rem;
  }

  .tour-flow__num {
    width: 46px;
    height: 46px;
    top: -21px;
    font-size: 1.4rem;
  }

  .tour-flow__copy h3 {
    gap: 0.55rem;
    font-size: 1.35rem;
  }

  .tour-flow__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .tour-flow__list li {
    font-size: 0.95rem;
    white-space: normal;
  }

  .tour-flow__meta {
    font-size: 0.88rem;
  }

  .tour-flow__meta--single {
    white-space: nowrap;
  }

  .tour-flow__meta-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .tour-flow__trust {
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  .tour-pricing__head h2 {
    font-size: 2rem;
  }

  .tour-pricing__bar {
    font-size: 1.05rem;
  }

  .tour-pricing__table {
    min-width: 560px;
  }

  .tour-pricing__table tbody th,
  .tour-pricing__table strong {
    font-size: 1rem;
  }

  .tour-pricing__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-pricing__cta {
    width: 100%;
  }
}

.hub-how__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hub-how__step,
.hub-risk__inner {
  border: 1px solid rgba(43, 108, 255, 0.18);
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
  box-shadow: 0 16px 36px rgba(11, 58, 120, 0.1);
}

.hub-how__step {
  padding: 18px;
}

.hub-how__num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #0b63ff;
  color: #ffffff;
  font-weight: 800;
}

.hub-how__step h3 {
  margin: 0 0 8px;
  color: #0b1324;
  font-size: 1.05rem;
}

.hub-how__step p,
.hub-how__note {
  margin: 0;
  color: rgba(11, 19, 36, 0.74);
  line-height: 1.6;
}

.hub-how__note {
  margin-top: 16px;
  text-align: center;
}

.hub-risk {
  padding: clamp(38px, 4vw, 64px) 16px;
}

.hub-risk__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
}

.hub-risk__head {
  text-align: center;
  margin-bottom: 16px;
}

.hub-risk__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  color: #0b1324;
}

.hub-risk__head p {
  margin: 10px auto 0;
  max-width: 68ch;
  color: rgba(11, 19, 36, 0.72);
}

.hub-risk__list {
  margin: 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.8rem;
  color: rgba(11, 19, 36, 0.76);
}

.hub-risk__list li {
  line-height: 1.6;
}

.vehicles__note {
  margin: 0.9rem auto 0;
  text-align: center;
  color: rgba(11, 19, 36, 0.72);
  font-weight: 600;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1rem;
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  color: #0b1324;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(11, 19, 36, 0.22);
}


.hub-cta {
  background: linear-gradient(135deg, rgba(11, 58, 120, 0.12), rgba(11, 15, 23, 0.04));
}

.hub-cta__actions {
  margin: 16px auto 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hub-cta__list {
  margin: 14px auto 0;
  padding: 0 1rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  max-width: 720px;
  text-align: left;
}

.hub-cta__list li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 14.8px;
  line-height: 1.6;
  color: rgba(11, 19, 36, 0.74);
}

.hub-cta__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2b6cff;
  box-shadow: 0 0 0 3px rgba(43, 108, 255, 0.1);
}

.hub-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 220px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
}

.hub-cta__btn--wa {
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  color: #0b1324;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.2);
}

.hub-cta__btn--wa:hover,
.hub-cta__btn--wa:focus-visible {
  background: linear-gradient(135deg, #0b63ff, #0247c9);
  color: #ffffff;
}

.hub-cta__btn--ghost {
  border: 1px solid rgba(43, 108, 255, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  color: #0b3a78;
  box-shadow: 0 12px 26px rgba(11, 58, 120, 0.1);
}

.hub-cta__btn--text {
  border: 0;
  background: transparent;
  color: rgba(11, 19, 36, 0.6);
  padding: 0;
  font-weight: 600;
}

.hub-cta__note {
  margin: 14px auto 0;
  font-size: 12.8px;
  color: rgba(11, 19, 36, 0.64);
  text-align: center;
}

@media (max-width: 980px) {
  .hub-how__grid,
  .hub-why__grid,
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-showcase__body {
    grid-template-columns: 1fr;
  }

  .tour-why__panel {
    grid-template-columns: 1fr;
    padding-right: 14px;
  }

  .tour-why__content {
    padding: 0.95rem;
  }

  .tour-why__image {
    min-height: 360px;
    background-position: center;
  }

  .tour-why__visual {
    min-height: auto;
    margin-top: 0;
  }

  .tour-why__visual::before {
    left: 0;
    width: 100%;
    background: linear-gradient(
      90deg,
      rgba(248, 244, 238, 0.86) 0%,
      rgba(248, 244, 238, 0.36) 35%,
      rgba(248, 244, 238, 0) 68%
    );
  }

  .tour-why__head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-right: 14px;
  }

  .tour-why__head p {
    margin-left: auto;
    margin-right: auto;
  }

  .tour-why__card {
    right: 0.75rem;
    top: auto;
    bottom: 0.75rem;
    transform: none;
    width: min(300px, calc(100% - 1.5rem));
    padding: 0.85rem;
  }

  .tour-why__foot {
    padding-right: 14px;
  }

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

  .cluster-grid--hub .cluster-card--featured {
    grid-column: auto;
  }

}

@media (max-width: 980px) {
  .tour-fit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-routes__grid,
  .tour-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hub-routes,
  .tour-options,
  .tour-pickup,
  .cluster-section,
  .tour-why,
  .hub-why,
  .hub-cta,
  .hub-how,
  .hub-risk {
    padding: 44px 14px;
  }

  .tour-why {
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    padding: 2.7rem 0 4.2rem;
  }

  .hero__content {
    text-align: left;
  }

  .hero__content h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 0.98;
    max-width: 11ch;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
  }

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

  .hero__btn.secondary {
    width: auto;
    min-width: 0;
    padding: 0.68rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .hero__subtitle,
  .hero__trustline,
  .hub-routes__head p,
  .tour-options__head p,
  .cluster-section__head p,
  .tour-why__head p,
  .hub-why__head p,
  .hub-risk__head p,
  .hub-how__head p,
  .section-subtitle,
  .hub-routes__footer {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero__subtitle {
    max-width: 29ch;
    margin-bottom: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .hero__trustline {
    max-width: 31ch;
    margin: 0.9rem 0 0;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hub-routes__chips {
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .hub-routes__chip {
    width: auto;
    min-width: calc(50% - 0.35rem);
    padding: 0.85rem 0.95rem;
  }

  .cluster-breadcrumb {
    width: calc(100% - 24px);
    margin-top: 0;
    margin-bottom: -30px;
    padding: 12px 0 0;
    font-size: 0.84rem;
  }

  .cluster-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tour-showcase__tabs {
    top: 0.7rem;
    left: 0.7rem;
    max-width: calc(100% - 1.4rem);
    gap: 0.5rem;
  }

  .tour-showcase__tab {
    padding: 0.72rem 0.92rem;
    font-size: 0.86rem;
  }

  .tour-showcase__media {
    min-height: 280px;
  }

  .tour-why__panel {
    padding: 0.9rem;
  }

  .tour-cta__panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .tour-cta__btn {
    width: 100%;
  }

  .tour-why__panel::before {
    inset: 10px;
  }

  .tour-why__head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .tour-why__head p {
    margin-left: auto;
    margin-right: auto;
  }

  .tour-why__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .tour-why__icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .tour-why__image {
    min-height: 220px;
  }

  .tour-why__card {
    right: 0.65rem;
    bottom: 0.65rem;
    width: min(300px, calc(100% - 1.3rem));
    padding: 0.85rem;
  }

  .tour-why__highlights li {
    font-size: 0.92rem;
  }

  .tour-why__head {
    margin-bottom: 1.35rem;
    padding-left: 14px;
    padding-right: 14px;
  }

  .tour-why__eyebrow {
    margin-bottom: 0.8rem;
  }

  .tour-why__head p {
    margin-top: 0.9rem;
  }

  .tour-why__item {
    padding-bottom: 0.7rem;
  }

  .tour-why__image {
    min-height: 300px;
    border-radius: 0;
  }

  .tour-why__card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -34px;
    margin-left: auto;
    margin-right: auto;
  }

  .tour-why__foot {
    margin-top: 0.95rem;
    font-size: 0.92rem;
    padding-left: 14px;
    padding-right: 14px;
  }

  .tour-why__cta {
    min-height: 46px;
    padding: 0 0.95rem;
    font-size: 0.92rem;
  }

  .tour-showcase__strip {
    padding: 0.75rem 0.9rem;
    font-size: 0.78rem;
  }

  .cluster-grid {
    grid-template-columns: 1fr;
  }

  .cluster-grid--hub .cluster-card--featured {
    grid-column: auto;
  }

  .cluster-card__media {
    min-height: 192px;
  }

  .cluster-card--featured .cluster-card__media {
    min-height: 188px;
  }

  .hub-routes__chip span,
  .tour-card h3,
  .cluster-card__body h3,
  .tour-why__item h3,
  .hub-how__step h3,
  .hub-risk__list strong,
  .hub-cta h2,
  .section-title,
  .cluster-section__head h2,
  .tour-why__head h2,
  .hub-why h2,
  .hub-how h2,
  .hub-risk h2 {
    text-wrap: balance;
  }

  .hub-how__grid {
    gap: 0.8rem;
  }

  .hub-how__step,
  .tour-card,
  .tour-showcase__body,
  .tour-showcase__aside,
  .tour-pickup__inner,
  .cluster-card__body,
  .hub-why__inner,
  .hub-risk__inner,
  .hub-cta__inner {
    padding: 1rem;
  }

  .hub-how__step p,
  .tour-card p,
  .tour-showcase__text,
  .tour-showcase__aside p,
  .tour-why__item p,
  .cluster-card__body p,
  .hub-why__list li,
  .hub-risk__list li,
  .hub-cta__list li,
  .vehicles__note {
    font-size: 0.92rem;
  }

  .hub-why__list,
  .hub-risk__list,
  .hub-cta__list {
    gap: 0.65rem;
  }

  .hub-cta__actions {
    gap: 0.75rem;
  }

  .tour-pickup__lead {
    text-align: left;
  }

  .tour-showcase__copy h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .tour-showcase__actions {
    gap: 0.65rem;
  }

  .tour-showcase__cta {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .route-links {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .route-links {
    gap: 0.75rem;
  }

  .route-links__item {
    min-width: 130px;
  }
}

.mt-trust__inner {
  max-width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 1rem;
}

.mt-trust__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.mt-trust__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.4rem;
  background: var(--sunset);
}

.mt3 {
  margin: 3rem 0;
  padding: 2rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='260' viewBox='0 0 520 260'%3E%3Cg fill='none' stroke='%232b6cff' stroke-width='1' opacity='0.18'%3E%3Ccircle cx='70' cy='70' r='18'/%3E%3Ccircle cx='200' cy='120' r='10'/%3E%3Ccircle cx='340' cy='60' r='14'/%3E%3Ccircle cx='420' cy='160' r='12'/%3E%3Ccircle cx='120' cy='200' r='9'/%3E%3Cpath d='M70 70 L200 120 L340 60 L420 160 L120 200 Z'/%3E%3Cpath d='M200 120 L120 200'/%3E%3Cpath d='M340 60 L120 200'/%3E%3C/g%3E%3C/svg%3E") center/520px 260px repeat,
    #fff;
  border-radius: 0;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.mt3__inner {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.mt3__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mt3__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
  color: var(--midnight);
}

.mt3__sub {
  margin: 0.5rem auto 0;
  color: rgba(42, 47, 60, 0.65);
  max-width: 420px;
}

.mt3__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mt3__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.mt3__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(11, 19, 36, 0.06);
  color: var(--midnight);
  font-weight: 600;
}

.mt3__item strong {
  font-weight: 700;
}

.mt3__card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  border: 1px solid rgba(43, 108, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt3__h {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  color: var(--midnight);
}

.mt3__p {
  margin: 0;
  color: rgba(42, 47, 60, 0.72);
  line-height: 1.5;
}

.mt3__card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt3__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(43, 108, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mt3__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(23, 31, 58, 0.25);
}

.mt3__card:hover::before {
  opacity: 1;
}

.mt3__card strong {
  color: var(--deep-teal);
}

.rs2 {
  margin: 3rem 0;
  width: 100%;
  background: #fff;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

.rs2__head,
.rs2__grid {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.rs2::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(43, 108, 255, 0.25), rgba(15, 23, 42, 0.05));
  margin-bottom: 1rem;
}

.rs2__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--midnight);
}

.rs2__head p {
  margin: 0.35rem 0 1.2rem;
  color: rgba(42, 47, 60, 0.7);
}

.rs2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.rs2__map {
  width: 100%;
  background: rgba(74, 166, 255, 0.05);
  border-radius: 1.25rem;
  padding: 1rem;
}

.rs2__route {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: rs2-draw 2.8s ease-out infinite;
}

.rs2__route--base {
  animation: none;
}

@keyframes rs2-draw {
  0% {
    stroke-dashoffset: 520;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rs2__route {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.rs2__facts h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--midnight);
}

.rs2__kv {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.rs2__kv div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.15);
  padding-bottom: 0.4rem;
}

.rs2__kv dt {
  font-weight: 700;
}

.rs2__kv dd {
  margin: 0;
  color: rgba(42, 47, 60, 0.75);
}

.rs2__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  border-radius: 999px;
  color: #0b1324;
  font-weight: 700;
}

.rs2__micro {
  margin: 0.25rem 0 0;
  color: rgba(42, 47, 60, 0.65);
}

.rs2__notesBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.rs2__note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.rs2__check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--deep-teal);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.mtw-valletta {
  margin: 3rem 0;
  background: linear-gradient(135deg, #0b3a78 0%, #0b0f17 85%);
  border-radius: 0;
  border: 1px solid rgba(11, 58, 120, 0.45);
  box-shadow: 0 24px 40px rgba(3, 6, 12, 0.35);
  padding: 2rem;
}

.mtw-valletta__container {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.mtw-valletta h2 {
  margin: 0 0 0.4rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #f8fbff;
}

.mtw-valletta__lead {
  margin: 0 0 1.25rem;
  color: rgba(248, 251, 255, 0.78);
}

.mtw-valletta__steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0 0 1.25rem;
}

.mtw-valletta__step {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #dbe9ff 100%);
  border: 1px solid rgba(43, 108, 255, 0.2);
  box-shadow: 0 12px 22px rgba(11, 58, 120, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mtw-valletta__step:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 30px rgba(11, 58, 120, 0.22);
}

.mtw-valletta__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mtw-valletta__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 166, 255, 0.25);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mtw-valletta__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--midnight);
}

.mtw-valletta__text {
  margin: 0.35rem 0 0;
  color: rgba(42, 47, 60, 0.72);
}

.mtw-valletta__notes {
  display: grid;
  gap: 0.5rem;
}

.mtw-valletta__note {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(74, 166, 255, 0.3);
  color: rgba(248, 251, 255, 0.85);
}

.mtc {
  margin: 3rem 0;
  background: #fff;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

.mtc__inner {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.mtc__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--midnight);
}

.mtc__head p {
  margin: 0.35rem 0 1rem;
  color: rgba(42, 47, 60, 0.7);
}

.mtc__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0 0 1.5rem;
}

.mtc__list li {
  position: relative;
  padding: 0.25rem 0.35rem 0.25rem 1.25rem;
  border-radius: 0;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #0b3a78;
  box-shadow: none;
  letter-spacing: 0.01em;
}

.mtc__list li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b6cff, #0b3a78);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(43, 108, 255, 0.12);
}

.mtc__included h3 {
  margin: 0 0 0.75rem;
  color: var(--midnight);
}

.mtc__cards {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mtc__card {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  border: 1px solid rgba(43, 108, 255, 0.2);
  box-shadow: 0 14px 26px rgba(11, 58, 120, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mtc__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 32px rgba(11, 58, 120, 0.18);
}

.mtc__card h4 {
  margin: 0 0 0.35rem;
}

.mtc__card p {
  margin: 0;
  color: rgba(42, 47, 60, 0.75);
}

.mtc__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.mtc__cta a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  color: #0b1324;
  font-weight: 700;
  border: none;
}

.mtc__cta-secondary {
  background: transparent;
  border: 1px solid #0b63ff;
  color: #0b63ff;
  font-weight: 700;
}

.mtc__cta-secondary:hover,
.mtc__cta-secondary:focus-visible {
  background: #0b63ff;
  color: #ffffff;
}

.mtc__ctaNote {
  font-size: 0.95rem;
  color: rgba(42, 47, 60, 0.7);
}

.cta-tertiary {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(11, 19, 36, 0.7);
  text-decoration: none;
}

.cta-tertiary:hover,
.cta-tertiary:focus-visible {
  color: #0b3a78;
}

.malta-veh-vlt {
  margin: 3rem 0;
  background: #fff;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

section#vehicles {
  position: relative;
  overflow: hidden;
}

section#vehicles::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0b3a78 0%, #0b63ff 58%, #2b6cff 100%);
}

.malta-veh-vlt__inner {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.malta-veh-vlt__head h2 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--midnight);
}

.malta-veh-vlt__sub {
  margin: 0.35rem 0 1rem;
  color: rgba(42, 47, 60, 0.7);
}

.malta-veh-vlt__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 1rem;
}

.vehvlt-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vehvlt-card--featured {
  border: 1px solid rgba(74, 166, 255, 0.3);
  background: linear-gradient(135deg, rgba(74, 166, 255, 0.08), rgba(15, 23, 42, 0.02));
}

.vehvlt-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.vehvlt-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--midnight);
}

.vehvlt-chip {
  background: rgba(74, 166, 255, 0.1);
  border: 1px solid rgba(74, 166, 255, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  color: #0f172a;
}

.vehvlt-desc {
  margin: 0;
  color: rgba(42, 47, 60, 0.72);
}

.vehvlt-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.vehvlt-specs li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
  padding-bottom: 0.25rem;
}

.vehvlt-specs .k {
  font-weight: 700;
  color: var(--midnight);
}

.vehvlt-specs .v {
  color: rgba(42, 47, 60, 0.72);
  text-align: right;
}

.vehvlt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vehvlt-badge {
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-weight: 600;
  color: #0f172a;
}

.vehvlt-cta {
  margin-top: auto;
}

.vehvlt-gallery {
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.vehvlt-gallery__slot {
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  color: rgba(42, 47, 60, 0.6);
  background: rgba(15, 23, 42, 0.02);
}

.malta-veh-vlt__note {
  margin: 0;
  color: rgba(42, 47, 60, 0.72);
}

.vehvlt-circ {
  margin: 2rem 0 3rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.vehvlt-circ__head h3 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--midnight);
}

.vehvlt-circ__head p {
  margin: 0.25rem 0 1rem;
  color: rgba(42, 47, 60, 0.7);
}

.vehvlt-circ__viewport {
  position: relative;
  height: 360px;
  perspective: 1400px;
  overflow: hidden;
}

.vehvlt-circ__track {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateY(0deg);
}

.vehvlt-circ__item {
  position: absolute;
  width: 260px;
  height: 320px;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #0b1324;
  transition: opacity 0.3s linear;
  backface-visibility: hidden;
}

.vehvlt-circ__img {
  width: 100%;
  height: 70%;
  background-size: cover;
  background-position: center;
}

.vehvlt-circ__item figcaption {
  padding: 0.75rem 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.85), rgba(3, 6, 12, 0.9));
  height: 30%;
  display: grid;
  align-content: center;
  gap: 0.2rem;
}

.vehvlt-circ__item h4 {
  margin: 0;
  font-size: 1.05rem;
}

.vehvlt-circ__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}


.vehvlt-premium {
  margin: 2rem 0 3rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.vehvlt-premium__inner {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.vehvlt-premium__head h3 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.4rem;
  color: var(--midnight);
}

.vehvlt-premium__head p {
  margin: 0.25rem 0 1rem;
  color: rgba(42, 47, 60, 0.7);
}

.vehvlt-premium__carousel {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.02);
  position: relative;
}

.vehvlt-premium__track {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  animation: vehvlt-premium-marquee 30s linear infinite;
}

.vehvlt-premium__carousel:hover .vehvlt-premium__track {
  animation-play-state: paused;
}

.vehvlt-premium__card {
  min-width: 520px;
  max-width: 560px;
  border-radius: 1.1rem;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  background: #0b1324;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.vehvlt-premium__photo {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.vehvlt-premium__photo--sedan {
  background-image: url('/assets/images/malta-airport-transfer-sliema.webp');
}

.vehvlt-premium__photo--exec {
  background-image: url('/assets/images/malta-airport-transfer-valletta.webp');
}

.vehvlt-premium__photo--van {
  background-image: url('/assets/images/malta-airport-transfer-sliema.webp');
}

.vehvlt-premium__content {
  position: relative;
  padding: 1.5rem;
  color: #fff;
  display: grid;
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.8));
  animation: vehvlt-premium-text 6s ease-in-out infinite;
}

.vehvlt-premium__content h4 {
  margin: 0;
  font-size: 1.2rem;
}

.vehvlt-premium__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.vehvlt-premium__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(74, 166, 255, 0.15);
  color: #0f172a;
  font-weight: 700;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.vehvlt-showcase {
  margin: 2rem 0 3rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.vehvlt-showcase__head h3 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--midnight);
}

.vehvlt-showcase__head p {
  margin: 0.25rem 0 1rem;
  color: rgba(42, 47, 60, 0.7);
}

.vehvlt-showcase__viewport {
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.02);
}

.vehvlt-showcase__track {
  display: flex;
  transition: transform 0.6s ease;
}

.vehvlt-showcase__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  background: #0b1324;
}

.vehvlt-showcase__photo {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.vehvlt-showcase__content {
  padding: 1.5rem;
  display: grid;
  gap: 0.35rem;
  align-content: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.8));
}

.vehvlt-showcase__content h4 {
  margin: 0;
  font-size: 1.25rem;
}

.vehvlt-showcase__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.vehvlt-showcase__content span {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(74, 166, 255, 0.2);
  color: #0f172a;
  font-weight: 700;
  width: fit-content;
}

/* Stories-inspired gallery */
.vehvlt-stories {
  margin: 2rem 0 3rem;
  background: linear-gradient(135deg, #0b3a78 0%, #0b0f17 80%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.vehvlt-stories__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0 0.75rem 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vehvlt-stories__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  color: #0f172a;
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.vehvlt-stories__btn:hover,
.vehvlt-stories__btn:focus-visible {
  border-color: rgba(15, 23, 42, 0.35);
}

.vehvlt-stories__head h3 {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--midnight);
}

.vehvlt-stories__head p {
  margin: 0.25rem 0 1rem;
  color: rgba(42, 47, 60, 0.7);
}

.vehvlt-stories__viewport {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 0;
  padding-inline: 0;
  border-radius: 0;
  border: none;
  background: #fff;
}

.vehvlt-stories__viewport::-webkit-scrollbar {
  display: none;
}

.vehvlt-stories__track {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  animation: vehvlt-stories-scroll 28s linear infinite;
}

.vehvlt-stories__card {
  min-width: 380px;
  max-width: 460px;
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.16);
  border: none;
}

.vehvlt-stories__media {
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vehvlt-stories__media--toyota {
  background-image: url('/assets/images/toyota-malta-transfers.webp');
  background-size: 90% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.vehvlt-stories__media--peugeot {
  background-image: url('/assets/images/peugeot-malta.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.vehvlt-stories__media--van {
  background-image: url('/assets/images/malta-airport-transfer-minibus-18-seats.webp');
  background-size: 98% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}

.vehvlt-stories__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 6, 12, 0.72) 90%);
}

.vehvlt-stories__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.15rem 1.3rem 2.2rem;
  color: #fff;
  display: grid;
  gap: 0.25rem;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 12, 0.85));
}

.vehvlt-stories__body h4 {
  margin: 0;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  line-height: 1.2;
  word-break: break-word;
  max-width: 90%;
}

.vehvlt-stories__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.25;
}

.vehvlt-stories__body span {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #e7edf7;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.78rem;
  width: fit-content;
}

.vehvlt-stories__more {
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  width: fit-content;
}

.malta-hero__btn--wa:hover,
.malta-hero__btn--wa:focus-visible,
.rs2__cta:hover,
.rs2__cta:focus-visible,
.mtc__cta a:hover,
.mtc__cta a:focus-visible {
  background: linear-gradient(135deg, #0b63ff, #0247c9);
  color: #ffffff;
}

@media (max-width: 640px) {
  .book-form {
    width: 100%;
  }
}

.vehvlt-stories__track {
  display: flex;
  gap: 0.75rem;
  padding: 0;
}

@media (max-width: 768px) {
  .vehvlt-stories__controls {
    justify-content: space-between;
    padding: 0 1rem 0.5rem;
  }

  .vehvlt-stories__btn {
    width: 44px;
    height: 44px;
  }

  .vehvlt-stories__viewport {
    scroll-snap-type: x proximity;
  }

  .vehvlt-stories__track {
    gap: 0;
    padding: 0;
  }

  .vehvlt-stories__card {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .vehvlt-stories__media {
    height: 56vw;
    max-height: 420px;
  }

  .vehvlt-stories__body {
    padding: 1.6rem 1.5rem 3rem;
  }
}

.vehvlt-stories__viewport:hover .vehvlt-stories__track {
  animation-play-state: paused;
}

.vehvlt-stories--static .vehvlt-stories__controls,
.vehvlt-stories--static .vehvlt-stories__more {
  display: none;
}

.vehvlt-stories--static .vehvlt-stories__viewport {
  overflow: visible;
  scroll-snap-type: none;
  background: transparent;
}

.vehvlt-stories--static .vehvlt-stories__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  animation: none;
}

.vehvlt-stories--static .vehvlt-stories__card {
  min-width: 0;
  max-width: none;
  border: 1px solid var(--brand-border);
  box-shadow: 0 14px 28px rgba(16, 35, 59, 0.08);
}

.vehvlt-stories--static .vehvlt-stories__media {
  position: relative;
  height: 220px;
  background-color: #fff;
}

.vehvlt-stories--static .vehvlt-stories__media::before {
  content: none;
}

.vehvlt-stories--static .vehvlt-stories__overlay {
  display: none;
}

.vehvlt-stories--static .vehvlt-stories__body {
  position: static;
  padding: 1rem;
  color: var(--midnight);
  gap: 0.5rem;
  background: #fff;
}

.vehvlt-stories--static .vehvlt-stories__body h4 {
  max-width: none;
}

.vehvlt-stories--static .vehvlt-stories__body p {
  color: var(--fog);
}

.vehvlt-stories--static .vehvlt-stories__body span {
  border-radius: 0;
  border-color: var(--brand-border);
  background: #EDF4F8;
}

@media (max-width: 900px) {
  .vehvlt-stories--static .vehvlt-stories__track {
    grid-template-columns: 1fr;
  }

  .vehvlt-stories--static .vehvlt-stories__media {
    height: 180px;
  }
}


.mtfaq-vlt {
  margin: 3rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 2rem 0;
}

.mtfaq-vlt__inner {
  width: min(1100px, 95%);
  margin: 0 auto;
}

.mtfaq-vlt__head h2 {
  margin: 0 0 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #0b3a78;
}

.mtfaq-vlt__grid {
  display: grid;
  gap: 1rem;
}

.mtfaq-vlt__item {
  border: 1px solid rgba(43, 108, 255, 0.18);
  border-radius: 0;
  padding: 0.85rem 1.1rem;
  background: transparent;
  box-shadow: none;
}

.mtfaq-vlt__item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b3a78;
}

.mtfaq-vlt__content {
  margin-top: 0.5rem;
  color: rgba(42, 47, 60, 0.75);
}

body:not(.page-tours) main section { 
  margin-bottom: 4rem;
  position: relative;
}

body:not(.page-tours) main section:not(.hero):nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(233, 245, 250, 0.45) 100%);
}

body:not(.page-tours) main section:not(.hero):nth-of-type(even) {
  background: linear-gradient(180deg, rgba(247,250,252,0.85) 0%, rgba(255,255,255,0.95) 100%);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: rgba(11, 19, 36, 0.7);
  margin-bottom: 2rem;
}

.cards-grid,
.vehicle-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.vehicle-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
  border: 1px solid var(--brand-border);
  box-shadow: 0 18px 30px rgba(11, 58, 120, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: mgFadeUp 0.45s ease both;
}

.card:hover,
.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 122, 138, 0.35);
  box-shadow: 0 24px 36px rgba(16, 35, 59, 0.16);
}

.card h3,
.vehicle-card h3 {
  margin-top: 0;
}

.malta-hero {
  position: relative;
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, rgba(16, 35, 59, 0.75), rgba(20, 122, 138, 0.32)),
    #10233B;
  color: var(--fog);
}

.malta-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(31, 138, 141, 0.4), transparent 65%);
  z-index: 2;
}

.malta-hero__inner {
  position: relative;
  z-index: 4;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: clamp(1.5rem, 2vw, 3rem);
  flex-wrap: wrap;
}

.malta-hero__title {
  position: relative;
  z-index: 3;
  font-size: clamp(2.75rem, 4vw, 3.8rem);
  margin: 0 0 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #ffffff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(255, 255, 255, 0.12);
  letter-spacing: -0.01em;
}

.malta-hero__subtitle {
  color: rgba(244, 245, 250, 0.85);
  max-width: 560px;
  margin-bottom: 2rem;
}

.malta-hero__card {
  flex: 1 1 320px;
  background: rgba(3, 6, 12, 0.85);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(244, 245, 250, 0.12);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.malta-hero__form {
  display: grid;
  gap: 1rem;
}

.malta-hero__label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.malta-hero__input,
.malta-hero__select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(244, 245, 250, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #d5d5d5;
}

.malta-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.malta-hero__select {
  color: #ffffff;
}

.malta-hero__select option {
  color: #0b0f17;
}

.malta-hero__ctaActions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.malta-hero__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 0.9rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  width: auto;
}

.malta-hero__btn--wa {
  background: linear-gradient(135deg, #25d366, #1ebe3d);
  border: none;
}

.malta-hero__btn--kadence {
  border: 1px solid rgba(244, 245, 250, 0.4);
  background: linear-gradient(135deg, #147A8A, #106673);
  color: #fdfdfd;
}

.malta-hero__btn--kadence:hover,
.malta-hero__btn--kadence:focus-visible {
  background: #ffffff;
  color: #0b63ff;
  border-color: rgba(11, 99, 255, 0.4);
}

.malta-hero__icon img {
  display: inline-block;
}

.malta-hero__field--pax select {
  appearance: none;
}
.malta-hero__input,
.malta-hero__select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(244, 245, 250, 0.25);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.malta-hero__select option {
  background: rgba(255, 255, 255, 0.18);
  color: #0b1324;
}

.malta-hero--proposal-1 {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.65)),
    url('/assets/images/malta-airport-transfer-luqa-terminal.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--proposal-2 {
  background-image:
    linear-gradient(120deg, rgba(3, 6, 12, 0.85), rgba(3, 6, 12, 0.5)),
    url('/assets/images/malta-airport-transfer-luqa-terminal.webp');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.malta-hero--proposal-3 {
  background-image:
    linear-gradient(180deg, rgba(3, 6, 12, 0.95), rgba(3, 6, 12, 0.7)),
    url('/assets/images/malta-airport-transfer-luqa-terminal.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
}

.malta-hero--valletta-hero {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.6)),
    url('/assets/images/van-malta-group.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--valletta {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.6)),
    url('/assets/images/van-malta-group.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--stj-hero {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.6)),
    url('/assets/images/Malta-transfers.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--st-julians {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.6)),
    url('/assets/images/Malta-transfers.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--luqa-hero {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.58)),
    url('/assets/images/luqa-old-town-airport-transfer-hero.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--mellieha {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.58)),
    url('/assets/images/mellieha-bay-airport-transfer-hero.webp');
  background-size: cover;
  background-position: center;
}

.malta-hero--bugibba-qawra {
  background-image:
    linear-gradient(135deg, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.58)),
    url('/assets/images/malta-airport-transfer-bugibba-qawra-hero.webp');
  background-size: cover;
  background-position: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.step {
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  padding: 1rem 1.3rem;
  border: 1px solid rgba(43, 108, 255, 0.2);
  box-shadow: 0 14px 24px rgba(11, 58, 120, 0.1);
}

.step h3 {
  margin: 0.5rem 0;
}

.faqs {
  background: #fff;
  border-radius: 0;
  border: 1px solid rgba(43, 108, 255, 0.18);
  box-shadow: 0 18px 28px rgba(11, 58, 120, 0.1);
  padding: clamp(44px, 5vw, 72px) 16px;
}

.faqs > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.faqs details {
  margin-bottom: 1rem;
  border: 1px solid rgba(43, 108, 255, 0.18);
  border-radius: 0;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
  box-shadow: 0 10px 18px rgba(11, 58, 120, 0.08);
}

.faqs summary {
  cursor: pointer;
  font-weight: 700;
  padding-bottom: 0.25rem;
  color: #0b3a78;
}

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: rgba(244, 245, 250, 0.7);
}

@media (max-width: 640px) {
  .site-header nav ul {
    justify-content: center;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .site-header .bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav ul {
    justify-content: flex-start;
    width: 100%;
  }

  .malta-hero__inner {
    flex-direction: column;
  }

  .malta-hero__card {
    padding: 1.5rem;
  }

  .malta-hero__ctaActions,
  .route-links {
    flex-direction: row;
    align-items: center;
  }

  .malta-hero__btn {
    width: auto;
    align-self: flex-start;
  }

  .mt-trust__list {
    justify-content: flex-start;
  }

  .mt-trust__inner {
    padding: 0;
  }

  .route-links__item {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
  }
}

.legal-page {
  padding: clamp(44px, 5vw, 72px) 16px;
}

.legal-page__inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(42, 47, 60, 0.6);
  margin: 0 0 0.6rem;
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.legal-page h2 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.2rem;
  color: #0b3a78;
}

.legal-page h3 {
  margin: 1.2rem 0 0.4rem;
  font-size: 1rem;
  color: #0b3a78;
}

.legal-page p {
  margin: 0 0 0.9rem;
  color: rgba(42, 47, 60, 0.82);
}

.legal-page ul {
  margin: 0 0 0.9rem 1.2rem;
  color: rgba(42, 47, 60, 0.82);
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.site-footer {
  background: linear-gradient(135deg, #10233B, #16304F);
  color: rgba(244, 245, 250, 0.85);
  padding: 2.5rem 0;
}

.site-footer__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
}

.site-footer__brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-footer__nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__nav a {
  color: rgba(244, 245, 250, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #7ed6e2;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.85rem;
}


.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 23, 0.92);
  color: #f8fafc;
  padding: 0.9rem 1rem;
  z-index: 9999;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
  align-items: center;
}

.cookie-banner__copy h2 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.cookie-banner__copy p {
  margin: 0 0 0.3rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.cookie-banner__link {
  color: #f3c66b;
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #f8fafc;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-panel {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-panel.is-open {
  display: flex;
}

.cookie-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.7);
}

.cookie-panel__card {
  position: relative;
  background: #ffffff;
  border-radius: 0;
  width: min(480px, 92%);
  padding: 1.2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.cookie-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cookie-panel__close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(11, 19, 36, 0.1);
  padding: 0.8rem 1rem;
  margin: 0.6rem 0;
  background: #f8fafc;
}

.cookie-panel__item span {
  display: block;
  color: rgba(42, 47, 60, 0.7);
  font-size: 0.85rem;
}

.cookie-panel__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.site-footer__link {
  background: transparent;
  border: 0;
  color: rgba(244, 245, 250, 0.85);
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 900px) {
  .cookie-banner__inner {
    grid-template-columns: 1.4fr 0.6fr;
  }
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    gap: 0.5rem;
  }

  .cookie-banner__copy h2 {
    font-size: 0.95rem;
  }

  .cookie-banner__copy p {
    font-size: 0.85rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }

  .cookie-panel__actions {
    flex-direction: column;
  }
}

/* Phase 4: MaltaGo brand governance (single source of truth) */
:root {
  --mg-brand-navy: #10233B;
  --mg-brand-navy-deep: #16304F;
  --mg-brand-teal: #147A8A;
  --mg-brand-teal-hover: #106673;
  --mg-border: #D8E1E8;
  --mg-text: #0D1B2A;
  --mg-wa: #25D366;
  --mg-wa-hover: #1FBE5C;
}

/* 1) Rectangular controls */
a[class*="btn"],
a[class*="cta"],
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.main-nav__links a,
.main-nav__toggle,
.main-nav__sublist,
.hub-routes__chip,
.route-links__item,
.cluster-quicknav a,
.cluster-nav a,
.tour-filter__btn,
.book-trust__chip,
.tour-card__badge,
.faq-panel__q::after,
.card,
.panel,
section,
article,
aside,
details,
summary,
form,
input,
select,
textarea,
label,
.main-nav,
.main-nav__panel,
.hero__form,
.book-form__card,
.book-summary,
.faq-panel,
.faq-panel__item,
.mtfaq-vlt__item,
.hub-how__step,
.hub-why__inner,
.hub-risk__inner,
.hub-cta__inner,
.cluster-card,
.cluster-card__media,
.cluster-card__body,
.tour-card,
.tour-card__photo,
.tour-card__body,
.tour-showcase__panel,
.tour-cta__panel,
.route-card,
.fit-card,
.step-card,
.pricing-table-wrap,
.pickup-chip,
.trust-item,
.trust-context__item,
.trust-context__proofItem,
.cookie-banner,
.cookie-banner__inner,
.cookie-panel,
.cookie-panel__card,
.site-footer,
.site-footer__inner {
  border-radius: 0 !important;
}

/* 2) CTA system */
.hero__btn,
.book-btn,
.hub-cta__btn,
.mobile-sticky-cta,
.rs2__cta,
.btn,
.tour-showcase__cta,
.tour-cta__btn {
  min-height: 48px;
}

.hero__btn.primary,
.book-btn--wa,
.hub-cta__btn--wa,
.mobile-sticky-cta {
  background: var(--mg-wa) !important;
  border-color: var(--mg-wa) !important;
  color: var(--mg-text) !important;
}

.hero__btn.primary:hover,
.book-btn--wa:hover,
.hub-cta__btn--wa:hover,
.mobile-sticky-cta:hover,
.hero__btn.primary:focus-visible,
.book-btn--wa:focus-visible,
.hub-cta__btn--wa:focus-visible,
.mobile-sticky-cta:focus-visible {
  background: var(--mg-wa-hover) !important;
  border-color: var(--mg-wa-hover) !important;
  color: var(--mg-text) !important;
}

.hero__btn.secondary,
.book-btn--primary,
.hub-cta__btn--ghost,
.tour-showcase__cta--primary,
.tour-cta__btn,
.btn-dark {
  background: var(--mg-brand-navy) !important;
  border-color: var(--mg-brand-navy) !important;
  color: #fff !important;
}

.hero__btn.secondary:hover,
.book-btn--primary:hover,
.hub-cta__btn--ghost:hover,
.tour-showcase__cta--primary:hover,
.tour-cta__btn:hover,
.btn-dark:hover,
.hero__btn.secondary:focus-visible,
.book-btn--primary:focus-visible,
.hub-cta__btn--ghost:focus-visible,
.tour-showcase__cta--primary:focus-visible,
.tour-cta__btn:focus-visible,
.btn-dark:focus-visible {
  background: var(--mg-brand-navy-deep) !important;
  border-color: var(--mg-brand-navy-deep) !important;
  color: #fff !important;
}

/* Hotfix: ensure dark background panel behind airport form */
.malta-hero__card {
  background: rgba(3, 6, 12, 0.88) !important;
  border: 1px solid rgba(244, 245, 250, 0.18) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45) !important;
  border-radius: 0 !important;
}

/* Hotfix: airport heroes full-width + vertical layout like Tours hero */
.malta-hero {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: calc(100svh - 52px) !important;
  display: flex !important;
  align-items: center !important;
  padding: clamp(40px, 6vh, 72px) 0 !important;
}

.malta-hero__inner {
  width: min(1200px, 92%) !important;
  margin: 0 auto !important;
  display: block !important;
}

.malta-hero__title,
.malta-hero__subtitle {
  max-width: 760px !important;
}

.malta-hero__card {
  width: min(760px, 100%) !important;
}

@media (max-width: 900px) {
  .malta-hero {
    min-height: calc(100svh - 48px) !important;
  }

  .malta-hero__card {
    width: 100% !important;
  }
}

/* Airport cluster branding alignment (docs/BRANDING-SYSTEM-OFICIAL.md) */
:root {
  --mg-brand-navy: #10233B;
  --mg-brand-navy-deep: #16304F;
  --mg-brand-teal: #147A8A;
  --mg-brand-teal-hover: #106673;
  --mg-brand-bg: #F7FAFC;
  --mg-surface: #FFFFFF;
  --mg-border: #D8E1E8;
  --mg-text-strong: #0D1B2A;
  --mg-text-medium: #526173;
  --mg-wa: #25D366;
  --mg-wa-hover: #1FBE5C;
}

body {
  background: var(--mg-brand-bg) !important;
  color: var(--mg-text-strong) !important;
}

.main-nav {
  background: var(--mg-brand-navy) !important;
  border-bottom: 1px solid rgba(216, 225, 232, 0.22) !important;
}

.main-nav__panel {
  background: var(--mg-brand-navy) !important;
}

.main-nav__links a,
.main-nav__label,
.main-nav__sublink {
  color: #fff !important;
}

.main-nav__links a:hover,
.main-nav__links a:focus-visible,
.main-nav__links a[aria-current='page'] {
  color: #E9DFC8 !important;
}

.malta-hero {
  background:
    linear-gradient(135deg, rgba(16, 35, 59, 0.90), rgba(22, 48, 79, 0.66)) !important;
  color: #fff !important;
}

.malta-hero__subtitle {
  color: rgba(247, 250, 252, 0.92) !important;
}

.malta-hero__card {
  background: rgba(13, 27, 42, 0.84) !important;
  border: 1px solid rgba(216, 225, 232, 0.28) !important;
}

.malta-hero__input,
.malta-hero__select {
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(216, 225, 232, 0.44) !important;
  color: #fff !important;
}

.malta-hero__btn--wa {
  background: var(--mg-wa) !important;
  color: var(--mg-text-strong) !important;
  border: 1px solid var(--mg-wa) !important;
}

.malta-hero__btn--wa:hover,
.malta-hero__btn--wa:focus-visible {
  background: var(--mg-wa-hover) !important;
  border-color: var(--mg-wa-hover) !important;
  color: var(--mg-text-strong) !important;
}

.malta-hero__btn--kadence,
.rs2__cta {
  background: var(--mg-brand-navy) !important;
  color: #fff !important;
  border: 1px solid var(--mg-brand-navy) !important;
}

.malta-hero__btn--kadence:hover,
.malta-hero__btn--kadence:focus-visible,
.rs2__cta:hover,
.rs2__cta:focus-visible {
  background: var(--mg-brand-navy-deep) !important;
  border-color: var(--mg-brand-navy-deep) !important;
  color: #fff !important;
}

.mt-trust,
.mt3,
.rs2,
.cluster-section,
.mtfaq-vlt,
.malta-veh-vlt {
  background: var(--mg-surface) !important;
  border-color: var(--mg-border) !important;
}

.mt3__title,
.rs2__head h2,
.cluster-section__head h2,
.mtfaq-vlt__head h2,
.malta-veh-vlt__title {
  color: var(--mg-text-strong) !important;
}

.mt3__sub,
.rs2__head p,
.cluster-section__head p,
.malta-veh-vlt__sub {
  color: var(--mg-text-medium) !important;
}

.mt3__item,
.rs2__facts,
.cluster-card,
.mtfaq-vlt__item {
  border: 1px solid var(--mg-border) !important;
  background: var(--mg-surface) !important;
}

.rs2__route,
.rs2__dot,
.tour-showcase__bullets li::before,
.mt-trust__dot {
  color: var(--mg-brand-teal) !important;
  background: var(--mg-brand-teal) !important;
}

/* Hotfix: restore airport hero background images (keep branding overlay) */
.malta-hero--valletta-hero,
.malta-hero--valletta {
  background-image:
    linear-gradient(135deg, rgba(16, 35, 59, 0.88), rgba(22, 48, 79, 0.62)),
    url('/assets/images/van-malta-group.webp') !important;
  background-size: cover !important;
  background-position: center !important;
}

.malta-hero--stj-hero,
.malta-hero--st-julians {
  background-image:
    linear-gradient(135deg, rgba(16, 35, 59, 0.88), rgba(22, 48, 79, 0.62)),
    url('/assets/images/Malta-transfers.webp') !important;
  background-size: cover !important;
  background-position: center !important;
}

.malta-hero--luqa-hero {
  background-image:
    linear-gradient(135deg, rgba(16, 35, 59, 0.88), rgba(22, 48, 79, 0.62)),
    url('/assets/images/luqa-old-town-airport-transfer-hero.webp') !important;
  background-size: cover !important;
  background-position: center !important;
}

.malta-hero--sliema {
  background-image:
    linear-gradient(135deg, rgba(16, 35, 59, 0.88), rgba(22, 48, 79, 0.62)),
    url('/assets/images/malta-airport-transfer-sliema.webp') !important;
  background-size: cover !important;
  background-position: center !important;
}

.malta-hero--mellieha {
  background-image:
    linear-gradient(135deg, rgba(16, 35, 59, 0.88), rgba(22, 48, 79, 0.62)),
    url('/assets/images/mellieha-bay-airport-transfer-hero.webp') !important;
  background-size: cover !important;
  background-position: center !important;
}

.malta-hero--bugibba-qawra {
  background-image:
    linear-gradient(135deg, rgba(16, 35, 59, 0.88), rgba(22, 48, 79, 0.62)),
    url('/assets/images/malta-airport-transfer-bugibba-qawra-hero.webp') !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Hotfix: Home/Hub hero full-width + full-height image (exclude tours) */
body:not(.page-tours) .hero {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: calc(100svh - 52px) !important;
  display: flex !important;
  align-items: center !important;
  background-size: cover !important;
  background-position: center center !important;
}

.hero__inner {
  width: min(1200px, 92%) !important;
}

@media (max-width: 900px) {
  body:not(.page-tours) .hero {
    min-height: calc(100svh - 48px) !important;
  }
}

/* Keep Transfers hero aligned with the Tours hub hero image */
.hero.hero--airport {
  background-image:
    linear-gradient(102deg, rgba(7, 12, 22, 0.94) 0%, rgba(7, 12, 22, 0.78) 38%, rgba(7, 12, 22, 0.58) 100%),
    url('/assets/images/malta-airport-transfer-malta.webp') !important;
}

/* FAQ unification: same centering + same visual system across pages */
.mtfaq-vlt,
.faq-panel {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: clamp(36px, 4.5vw, 56px) 16px !important;
  background: var(--mg-surface, #FFFFFF) !important;
  border-top: 1px solid var(--mg-border, #D8E1E8) !important;
  border-bottom: 1px solid var(--mg-border, #D8E1E8) !important;
  box-shadow: none !important;
}

.mtfaq-vlt__inner,
.faq-panel {
  width: min(1100px, 100%) !important;
  margin: 0 auto !important;
}

.mtfaq-vlt__head,
.faq-panel__head {
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto 1rem !important;
}

.mtfaq-vlt__head h2,
.faq-panel__head h2 {
  color: var(--mg-text-strong, #0D1B2A) !important;
  margin: 0 0 0.35rem !important;
}

.mtfaq-vlt__head p,
.faq-panel__head p {
  color: var(--mg-text-medium, #526173) !important;
  margin: 0 !important;
}

.mtfaq-vlt__grid,
.faq-panel__grid,
.mtfaq-vlt__faq {
  width: min(860px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  gap: 0.72rem !important;
}

.mtfaq-vlt__item,
.faq-panel__item {
  background: #FFFFFF !important;
  border: 1px solid var(--mg-border, #D8E1E8) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.mtfaq-vlt__item summary,
.faq-panel__q {
  list-style: none;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.8rem !important;
  padding: 0.95rem 1rem !important;
  font-weight: 700 !important;
  color: var(--mg-text-strong, #0D1B2A) !important;
}

.mtfaq-vlt__item summary::after,
.faq-panel__q::after {
  content: '+';
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--mg-border, #D8E1E8);
  color: var(--mg-brand-navy, #10233B);
  flex: 0 0 auto;
}

.mtfaq-vlt__item[open] summary::after,
.faq-panel__item[open] .faq-panel__q::after {
  content: '–';
}

.mtfaq-vlt__content,
.faq-panel__a {
  margin: 0 !important;
  padding: 0 1rem 1rem !important;
  color: var(--mg-text-medium, #526173) !important;
  line-height: 1.58 !important;
}

/* Spacing fix: FAQ block and footer breathing room */
.mtfaq-vlt,
.faq-panel {
  margin-bottom: clamp(28px, 4vw, 56px) !important;
}

main > .mtfaq-vlt:last-of-type,
main > .faq-panel:last-of-type {
  margin-bottom: clamp(40px, 6vw, 80px) !important;
}

.site-footer {
  margin-top: clamp(20px, 3vw, 40px) !important;
}

/* Hotfix: remove underline from button-like links */
a[class*="btn"],
a[class*="cta"],
.hero__btn,
.malta-hero__btn,
.book-btn,
.hub-cta__btn,
.mobile-sticky-cta,
.rs2__cta,
.tour-final-cta__btn,
.tour-types-next__cta,
.tour-showcase__cta,
.tour-cta__btn,
.hero__link {
  text-decoration: none !important;
  text-underline-offset: 0 !important;
}

/* Nav fix: keep dropdown arrow visible for Tours/Malta Airport toggles */
.main-nav__label--toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
}

.main-nav__label--toggle::after {
  content: '' !important;
  display: inline-block !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-right: 2px solid rgba(255, 255, 255, 0.78) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78) !important;
  transform: rotate(45deg) !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 0.1rem !important;
}

/* ===== MaltaGo FINAL BRAND NORMALIZATION (2026-03-26) ===== */
:root {
  --mg-brand-navy: #10233B;
  --mg-brand-navy-deep: #16304F;
  --mg-brand-teal: #147A8A;
  --mg-brand-teal-hover: #106673;
  --mg-bg: #F7FAFC;
  --mg-surface: #FFFFFF;
  --mg-border: #D8E1E8;
  --mg-text-strong: #0D1B2A;
  --mg-text-medium: #526173;
  --mg-wa: #25D366;
  --mg-wa-hover: #1FBE5C;
  --mg-cta: #0A4BFF;
  --mg-cta-hover: #3D73FF;
}

/* 1) Botones y CTAs rectangulares sin excepciones visuales */
button,
.btn,
[class*="btn"],
[class*="cta"] a,
[class*="cta"] button,
.hero__btn,
.book-btn,
.hub-cta__btn,
.cookie-banner__btn,
.main-nav__sublink {
  border-radius: 0 !important;
  font-family: 'Inter', system-ui, sans-serif;
}

/* 2) CTA semánticos unificados */
.btn,
.hero__btn.secondary,
.hub-cta__btn {
  background: var(--mg-cta) !important;
  border-color: var(--mg-cta) !important;
  color: #fff !important;
}
.btn:hover,
.hero__btn.secondary:hover,
.hub-cta__btn:hover,
.btn:focus-visible,
.hero__btn.secondary:focus-visible,
.hub-cta__btn:focus-visible {
  background: var(--mg-cta-hover) !important;
  border-color: var(--mg-cta-hover) !important;
}

.hero__btn.primary,
.btn--wa,
[data-whatsapp],
a[href*="wa.me"] {
  background: var(--mg-wa);
  border-color: var(--mg-wa);
}
.hero__btn.primary:hover,
.btn--wa:hover,
[data-whatsapp]:hover,
a[href*="wa.me"]:hover,
.hero__btn.primary:focus-visible,
.btn--wa:focus-visible,
[data-whatsapp]:focus-visible,
a[href*="wa.me"]:focus-visible {
  background: var(--mg-wa-hover);
  border-color: var(--mg-wa-hover);
}

/* 3) Superficies y texto coherentes */
body {
  color: var(--mg-text-strong);
  background: var(--mg-bg);
}
.site-footer,
.cookie-panel__card,
.card,
[class*="card"] {
  border-color: var(--mg-border);
}

/* ===== MaltaGo: Airport sibling pages readability pass (Key data box) ===== */
.rs2 {
  padding: clamp(20px, 3vw, 34px) !important;
}

.rs2__facts {
  background: #FFFFFF !important;
  border: 1px solid #D8E1E8 !important;
  padding: clamp(14px, 2vw, 24px) !important;
}

.rs2__facts h3 {
  margin: 0 0 14px !important;
  color: #0D1B2A !important;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem) !important;
  letter-spacing: -0.01em;
}

.rs2__kv {
  gap: 0 !important;
}

.rs2__kv div {
  padding: 11px 0 !important;
  border-bottom: 1px dashed rgba(16, 35, 59, 0.2) !important;
  align-items: baseline;
  gap: 14px;
}

.rs2__kv dt {
  font-weight: 700 !important;
  color: #0D1B2A !important;
  letter-spacing: -0.005em;
}

.rs2__kv dd {
  margin: 0 !important;
  color: #526173 !important;
  font-weight: 600;
  text-align: right;
}

.rs2__micro {
  margin-top: 10px !important;
  color: #526173 !important;
}

/* ===== MaltaGo: restore geometric background for "Time, pickup, fixed price" block ===== */
.mt3 {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='260' viewBox='0 0 520 260'%3E%3Cg fill='none' stroke='%23147A8A' stroke-width='1' opacity='0.18'%3E%3Ccircle cx='70' cy='70' r='18'/%3E%3Ccircle cx='200' cy='120' r='10'/%3E%3Ccircle cx='340' cy='60' r='14'/%3E%3Ccircle cx='420' cy='160' r='12'/%3E%3Ccircle cx='120' cy='200' r='9'/%3E%3Cpath d='M70 70 L200 120 L340 60 L420 160 L120 200 Z'/%3E%3Cpath d='M200 120 L120 200'/%3E%3Cpath d='M340 60 L120 200'/%3E%3C/g%3E%3C/svg%3E") center/520px 260px repeat,
    #FFFFFF !important;
  border: 1px solid #D8E1E8 !important;
}

.mt3__item {
  background: rgba(255, 255, 255, 0.86) !important;
}

/* ===== FINAL NAV DROPDOWN FIX: prevent white-on-white ===== */
.main-nav .main-nav__sublist {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  align-items: flex-start !important;
  text-align: left !important;
}
.main-nav .main-nav__sublist .main-nav__sublink,
.main-nav .main-nav__sublist a {
  color: #FFFFFF !important;
  text-align: left !important;
}
.main-nav .main-nav__sublist .main-nav__sublink:hover,
.main-nav .main-nav__sublist .main-nav__sublink:focus-visible,
.main-nav .main-nav__sublist a:hover,
.main-nav .main-nav__sublist a:focus-visible {
  background: #1a1a1a !important;
  color: #FFFFFF !important;
}

/* ===== FINAL HERO HEIGHT + HORIZONTAL SCROLL FIX (2026-03-26) ===== */
html,
body {
  overflow-x: hidden;
}

/* Keep airport heroes aligned without viewport overflow */
.malta-hero {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: calc(100svh - 52px) !important;
}

@media (max-width: 900px) {
  .malta-hero {
    min-height: calc(100svh - 48px) !important;
  }
}

/* ===== Floating UI coordination + placeholder cleanup (2026-03-27) ===== */
:root {
  --cookie-banner-height: 0px;
}

.hero::after,
.tour-card__photo::after {
  content: none !important;
}

@media (max-width: 900px) {
  .main-nav__toggle {
    bottom: calc(1.2rem + var(--cookie-banner-height, 0px)) !important;
  }

  .main-nav__panel {
    bottom: calc(4.8rem + var(--cookie-banner-height, 0px)) !important;
  }

  body.has-cookie-banner .mobile-sticky-cta,
  body.has-nav-open .mobile-sticky-cta,
  body.has-cookie-panel .mobile-sticky-cta {
    display: none !important;
  }

  body.has-cookie-panel .main-nav__toggle,
  body.has-cookie-panel .main-nav__panel {
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Minimalist normalization without overriding page-specific color systems */
main > section {
  background: transparent;
}
