:root {
  --ink: #0a2947;
  --muted: #607086;
  --line: #d7e6ee;
  --soft: #ebf8ff;
  --panel: #ffffff;
  --brand: #0a2947;
  --brand-dark: #061c31;
  --sky: #169bd5;
  --accent: #ff624a;
  --accent-dark: #db3f32;
  --gold: #f9b934;
  --green: #16835f;
  --navy: #0a2947;
  --brand-gradient: linear-gradient(135deg, #0f172a, #1e3a8a, #0284c7);
  --shadow: 0 22px 58px rgba(21, 34, 56, 0.16);
  --shadow-soft: 0 14px 34px rgba(21, 34, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef9ff 0%, #ffffff 34%, #fff9f5 70%, #f3f9fc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  color: #fff;
  background: var(--brand);
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(249, 185, 52, 0.55);
  box-shadow: 0 1px 0 rgba(21, 34, 56, 0.06), 0 18px 36px rgba(21, 34, 56, 0.06);
}

.top-strip {
  background: var(--brand-gradient);
  color: #f3fbff;
  font-size: 13px;
}

.strip-inner,
.main-nav,
.nav-links,
.strip-actions,
.brand {
  display: flex;
  align-items: center;
}

.strip-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 16px;
}

.strip-actions {
  gap: 8px;
}

.text-button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  opacity: 0.92;
  transition: opacity 160ms ease;
}

.text-button:hover {
  opacity: 1;
}

.main-nav {
  min-height: 74px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
    display: block;
    width: 219px;
    height: 94px;
  /* object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 41, 71, 0.16); */
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
}

.nav-links {
  gap: 8px;
  color: #263951;
  font-weight: 650;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 12px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a[aria-current="page"] {
  color: #0a2947;
  background: linear-gradient(135deg, #dff4ff, #fff1e9);
}

.nav-links a:hover {
  color: #0a2947;
  background: #eaf7fd;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.home-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: clamp(520px, calc(100svh - 150px), 640px);
  min-height: 520px;
  overflow: hidden;
  background: var(--brand-gradient);
  contain: layout paint;
  isolation: isolate;
}

.home-slides,
.home-slide,
.home-slide__media,
.home-slide__shade {
  position: absolute;
  inset: 0;
}

.home-slides,
.home-slide {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.home-slide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 700ms ease, opacity 700ms ease;
}

.home-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.home-slide__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 6s ease;
}

.home-slide.is-active .home-slide__media {
  transform: scale(1);
}

.home-slide__shade {
  background: linear-gradient(90deg, rgba(11, 42, 69, 0.92) 0%, rgba(8, 107, 159, 0.67) 48%, rgba(8, 107, 159, 0.08) 80%);
}

.home-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  padding-bottom: 28px;
}

.home-slide__copy {
  max-width: 680px;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease 180ms, transform 600ms ease 180ms;
}

.home-slide.is-active .home-slide__copy {
  opacity: 1;
  transform: translateY(0);
}

.home-slide__copy .eyebrow {
  color: #b9eaff;
}

.home-slide__copy h1,
.home-slide__copy h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 14px 38px rgba(5, 31, 52, 0.35);
}

.home-slide__copy h2 {
  font-size: clamp(38px, 5.4vw, 62px);
}

.home-slide__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 20px 0 0;
  color: #e8f7ff;
  font-size: 18px;
  line-height: 1.65;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.slide-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.slide-button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 28px rgba(219, 63, 50, 0.34);
}

.slide-button--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

.slide-button--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 55, 86, 0.34);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.slider-arrow span {
  margin-top: -3px;
  font-size: 36px;
  line-height: 1;
}

.slider-arrow:hover {
  background: #0a2947;
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow--prev {
  left: max(18px, calc((100% - 1280px) / 2));
}

.slider-arrow--next {
  right: max(18px, calc((100% - 1280px) / 2));
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 30px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 710px;
  padding: 82px 0 54px;
  background:
    linear-gradient(92deg, rgba(13, 35, 61, 0.94), rgba(8, 107, 159, 0.68), rgba(22, 155, 213, 0.14)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
  isolation: isolate;
}

.hero::after,
.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(238, 249, 255, 0), #eef9ff);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.48fr);
  align-items: start;
  gap: 34px;
}

.hero-copy {
  padding-top: 40px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #b9eaff;
}

.hero-copy h1,
.section-heading h2,
.holiday-feature h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 7vw, 72px);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hero-copy p:not(.eyebrow) {
  max-width: 510px;
  color: #eaf8ff;
  font-size: 18px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(249, 185, 52, 0.16);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.booking-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  overflow: visible;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 10px;
  background: linear-gradient(110deg, #def3ff, #fff2e9 58%, #fff8dc);
}

.tab {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #20364f;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tab.active {
  color: white;
  background: linear-gradient(135deg, #0a2947, #116f9f);
  box-shadow: 0 10px 24px rgba(10, 41, 71, 0.3);
}

.tab:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.trip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px 4px;
}

.radio-pill,
.direct-check,
.fare-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #334860;
  font-size: 14px;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.radio-pill:hover,
.direct-check:hover,
.fare-options label:hover {
  border-color: rgba(7, 136, 173, 0.42);
  background: #f8fcfd;
  transform: translateY(-1px);
}

.search-fields {
  display: grid;
  grid-template-columns: 1.15fr 40px 1.15fr 0.9fr 0.9fr 1fr;
  gap: 10px;
  padding: 14px 20px 16px;
}

.field-card {
  position: relative;
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.field-card:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10, 41, 71, 0.14);
}

.field-card:hover {
  border-color: rgba(7, 136, 173, 0.34);
  box-shadow: 0 12px 24px rgba(20, 33, 61, 0.07);
  transform: translateY(-1px);
}

.label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.field-card input,
.field-card select,
.promo-field input,
.planner-card select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.field-card input {
  min-width: 0;
  font-size: 22px;
  font-weight: 800;
}

.field-card small,
.traveller-trigger small {
  color: var(--muted);
}

.swap-button {
  align-self: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.09);
  transition: transform 160ms ease, border-color 160ms ease;
}

.swap-button:hover {
  border-color: var(--brand);
  transform: rotate(180deg);
}

.swap-button span,
.swap-button span::before,
.swap-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--brand);
  content: "";
}

.swap-button span::before {
  transform: translateY(-6px);
}

.swap-button span::after {
  transform: translateY(4px);
}

.traveller-card {
  z-index: 2;
}

.traveller-trigger {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.traveller-trigger strong {
  font-size: 20px;
}

.traveller-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.counter-row strong,
.counter-row small {
  display: block;
}

.counter {
  display: grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  text-align: center;
}

.counter button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfd;
  cursor: pointer;
}

.traveller-menu select,
.done-button {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border-radius: 8px;
}

.traveller-menu select {
  border: 1px solid var(--line);
  padding: 0 12px;
  background: #fff;
}

.done-button,
.search-button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.fare-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px 16px;
}

.fare-options label {
  background: #f8fbfd;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, auto);
  gap: 12px;
  padding: 16px 20px 20px;
  border-top: 1px solid #edf2f7;
}

.promo-field {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border: 1px dashed #adc1d2;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.search-button {
  min-height: 52px;
  border-radius: 8px;
  padding: 0 26px;
  box-shadow: 0 12px 26px rgba(255, 98, 74, 0.35);
}

.done-button:hover,
.search-button:hover {
  filter: saturate(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 98, 74, 0.3);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  transform: translateY(-28px);
  position: relative;
  z-index: 2;
}

.page-hero {
  position: relative;
  padding: 72px 0 40px;
  color: white;
  background:
    linear-gradient(92deg, rgba(13, 35, 61, 0.94), rgba(8, 107, 159, 0.72), rgba(22, 155, 213, 0.18)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80") center/cover;
  isolation: isolate;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #b9eaff;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #eaf8ff;
  font-size: 18px;
  line-height: 1.6;
}

.page-search {
  margin-top: -22px;
}

.content-band {
  padding: 56px 0;
}

.content-band.alt {
  background: linear-gradient(120deg, #e5f6ff, #fff5ee 62%, #fff9e8);
}

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

.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card::before,
.support-list article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--brand);
  content: "";
}

.info-card:nth-child(3n + 2)::before,
.support-list article:nth-child(3n + 2)::before {
  background: var(--accent);
}

.info-card:nth-child(3n)::before,
.support-list article:nth-child(3n)::before {
  background: var(--gold);
}

.info-card:hover {
  border-color: rgba(7, 136, 173, 0.3);
  box-shadow: 0 20px 44px rgba(20, 33, 61, 0.12);
  transform: translateY(-4px);
}

.info-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 8px 0;
}

.info-card p,
.support-list p {
  color: var(--muted);
  line-height: 1.6;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.quick-stats article,
.route-grid article,
.planner-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quick-stats article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-stats article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--brand);
  content: "";
}

.quick-stats article:nth-child(2)::before {
  background: var(--accent);
}

.quick-stats article:nth-child(3)::before {
  background: var(--gold);
}

.quick-stats article:nth-child(4)::before {
  background: var(--green);
}

.quick-stats article:hover {
  box-shadow: 0 20px 44px rgba(20, 33, 61, 0.12);
  transform: translateY(-4px);
}

.quick-stats strong {
  display: block;
  color: var(--green);
  font-size: 26px;
}

.quick-stats span,
.route-grid small {
  color: var(--muted);
}

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

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading h2,
.holiday-feature h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.results-section,
.route-section {
  padding: 48px 0;
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.result-card strong {
  display: block;
  font-size: 18px;
}

.result-card span {
  color: var(--muted);
}

.price {
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 850;
}

.deals-band {
  padding: 64px 0;
  background:
    linear-gradient(125deg, #e2f5ff, #fff5ed 52%, #fff8df);
}

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

.deal-card {
  border: 1px solid rgba(216, 228, 232, 0.85);
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.deal-card:hover {
  box-shadow: 0 24px 52px rgba(20, 33, 61, 0.15);
  transform: translateY(-5px);
}

.deal-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 240ms ease;
}

.deal-card:hover img {
  transform: scale(1.04);
}

.deal-card div {
  padding: 18px;
}

.deal-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-card h3 {
  margin: 8px 0;
  font-size: 22px;
}

.deal-card p,
.holiday-feature p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.deal-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 8px;
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg, #0a2947, #116f9f);
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.deal-card a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-1px);
}

.destination-band {
  padding: 76px 0;
  background: #fff;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.destination-card img,
.destination-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.destination-card img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.destination-card__shade {
  background: linear-gradient(180deg, rgba(10, 41, 71, 0.04) 28%, rgba(10, 41, 71, 0.92) 100%);
}

.destination-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 24px;
  color: #fff;
}

.destination-card__content small {
  color: #b9eaff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.destination-card__content strong {
  font-size: 30px;
  line-height: 1.1;
}

.destination-card__content span {
  color: #e4f4fb;
  font-size: 14px;
  line-height: 1.45;
}

.destination-card:hover img {
  transform: scale(1.06);
}

.service-band {
  padding: 76px 0;
  background: linear-gradient(120deg, #e9f7ff, #f8fcff 60%, #fff7f1);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-item {
  display: grid;
  align-content: start;
  min-height: 190px;
  gap: 9px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-item:nth-child(3n + 2) {
  border-top-color: var(--accent);
}

.service-item:nth-child(3n) {
  border-top-color: var(--gold);
}

.service-item > span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-item > strong {
  font-size: 23px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-item:hover {
  box-shadow: 0 20px 44px rgba(10, 41, 71, 0.14);
  transform: translateY(-4px);
}

.trust-band {
  padding: 82px 0;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.trust-image {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.trust-content .section-heading {
  margin-bottom: 30px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.trust-points article {
  border-top: 3px solid var(--sky);
  padding-top: 16px;
}

.trust-points article:nth-child(2n) {
  border-top-color: var(--accent);
}

.trust-points strong {
  font-size: 18px;
}

.trust-points p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-band {
  padding: 76px 0;
  background: linear-gradient(120deg, #fff8ee, #f3f9fc);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: 64px;
}

.faq-list {
  border-top: 1px solid rgba(10, 41, 71, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(10, 41, 71, 0.18);
  padding: 20px 4px;
}

.faq-list summary {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details[open] summary {
  color: var(--brand-dark);
}

.faq-list p {
  margin: 14px 28px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-band {
  padding: 56px 0;
  color: #fff;
  background: var(--brand-gradient);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.contact-band .eyebrow {
  color: #b9eaff;
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.contact-band p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #d6ebf5;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-actions a:first-child {
  border-color: #fff;
  color: #0a2947;
  background: #fff;
}

.contact-actions a:hover {
  color: #0a2947;
  background: #b9eaff;
  transform: translateY(-2px);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.route-grid article {
  border-top: 4px solid var(--brand);
  display: grid;
  gap: 8px;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.route-grid article:nth-child(4n + 2) {
  border-top-color: var(--accent);
}

.route-grid article:nth-child(4n + 3) {
  border-top-color: var(--gold);
}

.route-grid article:nth-child(4n) {
  border-top-color: var(--green);
}

.route-grid article:hover {
  box-shadow: 0 20px 44px rgba(20, 33, 61, 0.12);
  transform: translateY(-4px);
}

.route-grid span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.route-grid strong {
  font-size: 18px;
}

.holiday-feature {
  padding: 64px 0;
  background:
    linear-gradient(120deg, #fff, #edf8fe 52%, #fff6ef);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 38px;
  align-items: center;
}

.planner-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-top: 4px solid var(--gold);
}

.planner-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.planner-card select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}

.planner-card input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

#budgetOutput {
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.site-footer {
  padding: 48px 0;
  color: #dfeef5;
  background: var(--brand-gradient);
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 340px) auto;
  gap: 44px;
}

.footer-brand small {
  color: #b9cfdb;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a {
  color: #dfeef5;
  transition: color 160ms ease;
}

.footer-grid a:hover {
  color: #b9eaff;
}

.footer-grid span {
  color: #b9cfdb;
  line-height: 1.5;
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  color: #fff;
  background: linear-gradient(135deg, #128c52, #1fb76a);
  box-shadow: 0 16px 34px rgba(18, 140, 82, 0.34);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-chat:hover {
  box-shadow: 0 22px 44px rgba(18, 140, 82, 0.42);
  transform: translateY(-3px);
}

.whatsapp-chat__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #128c52;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.whatsapp-chat__text {
  white-space: nowrap;
}

.whatsapp-chat:focus-visible {
  outline: 3px solid rgba(18, 140, 82, 0.32);
  outline-offset: 4px;
}

@media (max-width: 1320px) and (min-width: 761px) {
  .home-slide__inner {
    padding-right: 72px;
    padding-left: 72px;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 12px;
    font-size: 14px;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .feature-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .faq-grid {
    gap: 32px;
  }

  .trust-image,
  .trust-image img {
    min-height: 420px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .search-fields {
    grid-template-columns: 1fr 40px 1fr;
  }

  .return-card,
  .traveller-card {
    grid-column: span 1;
  }

  .deal-grid,
  .route-grid,
  .info-grid,
  .destination-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .main-nav {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .home-slider {
    height: calc(100svh - 104px);
    min-height: 500px;
    max-height: 590px;
  }

  .home-slide__shade {
    background: linear-gradient(90deg, rgba(10, 43, 70, 0.94), rgba(8, 107, 159, 0.66));
  }

  .home-slide__inner {
    padding: 20px 24px 48px;
  }

  .home-slide__copy h1 {
    font-size: 44px;
  }

  .home-slide__copy h2 {
    font-size: 38px;
  }

  .home-slide__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .slider-arrow {
    top: auto;
    bottom: 28px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .slider-arrow:hover {
    transform: scale(1.05);
  }

  .slider-arrow--prev {
    left: 14px;
  }

  .slider-arrow--next {
    right: 14px;
  }

  .slider-dots {
    bottom: 43px;
  }

  .hero {
    padding: 42px 0 28px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .product-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-fields {
    grid-template-columns: 1fr;
  }

  .swap-button {
    transform: rotate(90deg);
  }

  .form-footer,
  .quick-stats,
  .deal-grid,
  .route-grid,
  .info-grid,
  .destination-grid,
  .service-grid,
  .trust-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .destination-band,
  .service-band,
  .trust-band,
  .faq-band {
    padding: 58px 0;
  }

  .destination-card {
    min-height: 330px;
  }

  .trust-image,
  .trust-image img {
    min-height: 340px;
  }

  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 7px 14px 7px 7px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .home-slide__inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  .home-slide__copy h1 {
    font-size: 40px;
  }

  .home-slide__copy h2 {
    font-size: 34px;
  }

  .slide-actions {
    gap: 8px;
  }

  .slide-button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }

  .destination-card {
    min-height: 300px;
  }

  .destination-card__content {
    padding: 20px;
  }

  .service-item {
    min-height: auto;
  }

  .contact-actions {
    display: grid;
  }

  .booking-panel {
    border-radius: 8px;
  }

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

  .tab {
    min-height: 46px;
  }

  .field-card {
    min-height: 96px;
  }

  .field-card input {
    font-size: 20px;
  }

  .whatsapp-chat__text {
    display: none;
  }

  .whatsapp-chat {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-slide,
  .home-slide__media,
  .home-slide__copy {
    transition: none;
  }
}
