:root {
  --bg: #eef2f6;
  --panel: #ffffff;
  --ink: #17202a;
  --muted: #667085;
  --accent: #ff7707;
  --accent-dark: #ff7405;
  --accent-cool: #00a3a3;
  --line: rgba(23, 32, 42, 0.12);
  --shadow: 0 24px 70px rgba(28, 35, 45, 0.16);
  --radius-lg: 26px;
  --radius-md: 18px;
}

.showcase-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: calc(var(--radius-lg) + 8px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.showcase-slider__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}



.showcase-slider__title {
  max-width: 40%;
  margin: 0;
}

.showcase-slider__layout {
  display: grid;
  grid-template-columns: 2.2fr minmax(280px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}


.showcase-slider__main {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #101828;
  box-shadow: 0 28px 58px rgba(16, 24, 40, 0.22);
}

.showcase-slider__main::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item,
.hero-carousel__slide {
  height: 100%;
}

.hero-carousel__slide {
  position: relative;
  min-height: clamp(390px, 46vw, 620px);
  overflow: hidden;
  background: #101828;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5.8s ease, filter 0.7s ease;
}

.hero-carousel .owl-item.active .hero-carousel__slide img {
  transform: scale(1);
}

.hero-carousel__slide::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 40, 0.02) 30%, rgba(16, 24, 40, 0.64) 100%),
    linear-gradient(90deg, rgba(16, 24, 40, 0.4), transparent 52%);
  content: "";
  z-index: 1;
  pointer-events: none;
}

.hero-carousel__caption {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: min(420px, calc(100% - 36px));
  color: #fff;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.5s ease 0.18s, transform 0.5s ease 0.18s;
}

.hero-carousel .owl-item.active .hero-carousel__caption {
  transform: translateY(0);
  opacity: 1;
}

.hero-carousel .fadeIn {
  animation-name: localFadeIn;
}

@keyframes localFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.hero-carousel__caption span {
  width: max-content;
  max-width: 100%;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-carousel__caption strong {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-carousel .owl-dots {
  position: absolute;
  right: clamp(18px, 2.5vw, 32px);
  bottom: clamp(18px, 2.5vw, 34px);
  display: flex;
  gap: 8px;
}

.hero-carousel .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 0;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-carousel .owl-dot.active span {
  width: 30px;
  background: var(--accent);
}

.showcase-slider__thumbs {
  display: grid;
  grid-template-rows: repeat(4, minmax(92px, 1fr));
  gap: clamp(12px, 2.1vw, 24px);
  min-width: 0;
}

.thumb-card {
  position: relative;
  width: 100%;
  min-height: 104px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 35, 45, 0.1);
  cursor: pointer;
  isolation: isolate;
  transform: translateX(0);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.thumb-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 40, 0.7), rgba(16, 24, 40, 0.08));
  content: "";
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 1;
}

.thumb-card::after {
  position: absolute;
  inset: auto 12px 10px 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 4.5s linear;
  z-index: 3;
}

.thumb-card img {
  width: 100%;
  height: 200px;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.55s ease, filter 0.35s ease;
}

.thumb-card__label {
  position: absolute;
  left: 16px;
  bottom: 17px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  opacity: 0;
  text-shadow: 0 2px 14px rgba(16, 24, 40, 0.45);
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.thumb-card:hover,
.thumb-card:focus-visible {
  transform: translateX(-6px);
  box-shadow: 0 18px 42px rgba(28, 35, 45, 0.18);
}

.thumb-card:hover img,
.thumb-card:focus-visible img,
.thumb-card.is-active img {
  transform: scale(1);
  filter: saturate(1.1) contrast(1.04);
}

.thumb-card:hover::before,
.thumb-card:focus-visible::before,
.thumb-card.is-active::before,
.thumb-card:hover .thumb-card__label,
.thumb-card:focus-visible .thumb-card__label,
.thumb-card.is-active .thumb-card__label {
  opacity: 1;
  transform: translateY(0);
}

.thumb-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(255, 107, 0, 0.26);
  transform: translateX(-10px);
}

.thumb-card.is-active::after {
  transform: scaleX(1);
}

.thumb-card:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.35);
  outline-offset: 4px;
}


.itinerary-section__header {}

.itinerary-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 246, 0.88)),
    #ffffff;
}

.itinerary-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(22px, 3vw, 34px);
}


.itinerary-section__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.itinerary-section__link::after {
  width: 34px;
  height: 2px;
  margin-left: 12px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.itinerary-section__link:hover,
.itinerary-section__link:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}

.itinerary-section__link:hover::after,
.itinerary-section__link:focus-visible::after {
  transform: scaleX(1);
}

.itinerary-section__link:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.25);
  outline-offset: 6px;
  border-radius: 999px;
}


.itinerary-section__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 38px;
  align-items: start;
  position: relative;
}

.itinerary-tabs {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 15px;
  padding: 0;
}

.itinerary-tabs__button {
  position: relative;
  width: 100%;
  min-height: 45px;
  overflow: hidden;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--bs-body-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
  text-align: center;
  border: 1px solid #ddd;
}

.itinerary-tabs__button::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 46%, transparent 76%);
  content: "";
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.itinerary-tabs__button:hover,
.itinerary-tabs__button:focus-visible {
  transform: translateX(6px);
}

.itinerary-tabs__button:hover::before,
.itinerary-tabs__button:focus-visible::before,
.itinerary-tabs__button.is-active::before {
  transform: translateX(110%);
}

.itinerary-tabs__button.is-active {
  background: var(--bs-body-color);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(19, 22, 28, 0.22);
}

.itinerary-tabs__button:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.3);
  outline-offset: 4px;
}

.itinerary-accordion {
  display: grid;
  gap: clamp(16px, 2vw, 20px);
  min-width: 0;
}

.itinerary-card {
  overflow: hidden;
  border: 1px solid rgba(214, 78, 0, 0.15);
  border-radius: 26px;
  background: #fffaf5;
  box-shadow: 0 10px 34px rgba(28, 35, 45, 0.06);
  scroll-margin-top: 28px;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
  scroll-margin-top: 100px;
}

.itinerary-card.is-active {
  background: #ffffff;
  border-color: rgba(255, 107, 0, 0.24);
  box-shadow: 0 20px 48px rgba(255, 107, 0, 0.12);
  transform: translateY(-2px);
  scroll-margin-top: 100px;
}

.itinerary-card__trigger {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 98px;
  padding: 21px 32px;
  border: 0;
  background: rgb(255 255 255);
  color: #090909;
  text-align: left;
}

.itinerary-card.is-active .itinerary-card__trigger {
  background: #ff870f;
}


.itinerary-card__heading {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.itinerary-card__day {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-card__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.18;
}

.itinerary-card__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
}

.itinerary-card__icon::before,
.itinerary-card__icon::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.itinerary-card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.itinerary-card.is-active .itinerary-card__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.itinerary-card__trigger:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.28);
  outline-offset: -7px;
}

.itinerary-card__content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.itinerary-card__content[hidden] {
  display: none;
}

.itinerary-card.is-active .itinerary-card__content {
  grid-template-rows: 1fr;
  opacity: 1;
}



.itinerary-card__body {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(22px, 3vw, 34px);
  min-height: 0;
  overflow: hidden;
  padding: 32px 34px;
}

.itinerary-card__image {
  width: 100%;
  aspect-ratio: 1.1;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(28, 35, 45, 0.14);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: opacity 0.4s ease 0.14s, transform 0.5s ease 0.14s;
}

.itinerary-card.is-active .itinerary-card__image {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.itinerary-card__copy {
  align-self: start;
  color: #27313d;
  font-size: 18px;
  line-height: 1.85;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 0.38s ease 0.2s, transform 0.48s ease 0.2s;
}

.itinerary-card.is-active .itinerary-card__copy {
  opacity: 1;
  transform: translateY(0);
}

.itinerary-card__copy p {
  margin: 4px 0 18px;
}

.itinerary-card__copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.itinerary-card__copy li {
  position: relative;
  padding-left: 24px;
}

.itinerary-card__copy li::before {
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12);
  content: "";
}



.itinerary-card.is-active .itinerary-card__trigger span.itinerary-card__day {
  color: #fff;
}


.itinerary-card.is-active .itinerary-card__trigger span.itinerary-card__title {
  color: #fff;
}

.itinerary-card.is-active .itinerary-card__trigger span.itinerary-card__icon {
  color: #fff;
}



@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-16px, -8px, 0);
  }
}

@keyframes overlaySweep {
  from {
    transform: translateX(-14%);
  }

  to {
    transform: translateX(10%);
  }
}

@keyframes gridFloat {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 72px, 72px 0;
  }
}

@keyframes flightPath {
  0% {
    transform: translateX(-12%) rotate(-8deg);
  }

  50% {
    transform: translateX(46%) rotate(-5deg);
  }

  100% {
    transform: translateX(104%) rotate(-8deg);
  }
}

@keyframes planePulse {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -8px, 0) scale(1.08);
  }
}

@keyframes ringPulse {
  from {
    opacity: 0.8;
    transform: scale(0.7);
  }

  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

.route-hero {
  margin-top: 92px;
  position: relative;
  min-height: 100vh;
  overflow: clip;
  color: #ffffff;
  isolation: isolate;
  /* background: url('../images/flight-banner.jpg') center / cover no-repeat; */
}

.route-hero::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.02) 30%, rgba(16, 24, 40, 0.64) 100%),
    linear-gradient(90deg, rgba(16, 24, 40, 0.4), transparent 52%);
  content: "";
  transform: scale(1.02);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.route-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgb(18 20 24) 0%, rgb(255 113 4) 50%, rgb(115 97 83) 100%);
  content: "";
  opacity: 0.4;
}



.motion-plane {
  position: absolute;
  top: 34%;
  left: 8%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(255, 107, 0, 0.12);
  backdrop-filter: blur(14px);
  animation: planePulse 4.6s ease-in-out infinite;
}

.motion-plane::before,
.motion-plane::after {
  position: absolute;
  content: "";
}

.motion-plane::before {
  inset: 12px 9px;
  background: #ffffff;
  clip-path: polygon(50% 0, 62% 42%, 100% 56%, 100% 70%, 62% 62%, 57% 100%, 43% 100%, 38% 62%, 0 70%, 0 56%, 38% 42%);
  transform: rotate(44deg);
}

.motion-plane::after {
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  animation: ringPulse 2.8s ease-out infinite;
}

.route-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  margin: 0 auto;
  align-items: start;
}

.route-copy {
  min-width: 0;
}

.route-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 5px 7px 5px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.route-kicker span,
.quote-card__top p,
.related-routes__header p,
.route-card__body p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.route-kicker strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgb(255 126 10 / 20%);
  color: #ff6f02;
  font-size: 12px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.route-heading-block {
  padding-top: 20px;
}

.route-heading-block__eyebrow {
  margin: 0 0 12px;
  color: #ffd0ac;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-heading-block h1 {
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.4;
}

.route-heading-block p {
  max-width: 480px;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 25px 0 0 0;
}


.fare-chip {
  display: grid;
  gap: 4px;
  min-width: 126px;
  padding: 14px 18px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 20px;
  background: rgb(255 255 255 / 23%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.fare-chip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fare-chip strong {
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 900;
}


.route-button {
  position: relative;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 16px;
  background-color: #121418;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  font-size: 14px;
  transition: all 0.5s ease;
}

.route-button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 72%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.route-button:hover,
.route-button:focus-visible {
  transform: translateY(-3px);
}

.route-button:hover::before,
.route-button:focus-visible::before {
  transform: translateX(120%);
}

.route-button--primary {
  background: #ff7104;
  color: #ffffff;
}

.route-button--ghost {
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.route-button:focus-visible,
.route-card a:focus-visible,
.quote-help a:focus-visible,
.contact-strip a:focus-visible,
.mini-cta-group a:focus-visible,
.related-routes__header a:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.34);
  outline-offset: 5px;
}


.route-content-cards {
  display: grid;
  gap: 16px;
  max-width: 665px;
  padding-bottom: clamp(16px, 4vw, 44px);
}


.info-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  overflow: hidden;
  padding: clamp(19px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: linear-gradient(135deg, rgb(0 0 0 / 18%), rgb(115 97 83 / 30%)), rgb(18 20 24 / 54%);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px);
  transition: 0.5s ease all;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, transparent 64%);
  content: "";
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.25s ease, transform 0.5s ease;
  pointer-events: none;
}

.info-card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.info-card--featured {
  border-color: rgba(255, 107, 0, 0.28);
  background: linear-gradient(90deg, rgb(255 106 0 / 42%) 0%, rgb(255 151 23 / 43%) 50%, rgb(255 106 0 / 54%) 100%);
  /* background: transparent; */
}

.info-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.28), rgba(27, 184, 178, 0.18)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.info-card__icon svg {
  width: 23px;
  height: 23px;
  fill: #ffffff;
}

.info-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.32;
}

.info-card p {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.82);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.route-content-cards {
  display: grid;
  gap: 16px;
  max-width: 665px;
  padding-bottom: 0;
  margin-top: 40px;
}

.contact-strip,
.mini-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-strip a,
.mini-cta-group a {
  align-items: center;
  min-height: 34px;
  background: #736153;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.5s ease;
}

.contact-strip a:hover,
.mini-cta-group a:hover {
  background: rgb(255 110 2);
  transform: translateY(-2px);
}

.icon-list,
.benefit-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 10px 0;
  padding: 0;
  list-style: none;
}

.icon-list li,
.benefit-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.icon-list li span {
  display: inline-grid;
  flex: 0 0 32px;
  width: 32px;
  height: 26px;
  place-items: center;
  border: 1px solid #ff7003;
  border-radius: 8px;
  background: rgb(115 97 83);
  color: #ff7003;
  font-size: 11px;
  font-weight: 900;
}

.benefit-list li {
  padding-left: 26px;
}

.benefit-list li::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff7405;
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.14);
  content: "";
}

.quote-column {
  position: sticky;
  top: 100px;
  align-self: start;
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 107, 0, 0.06), transparent 38%),
    linear-gradient(300deg, rgba(27, 184, 178, 0.07), transparent 35%);
  content: "";
  pointer-events: none;
}

.quote-card>* {
  position: relative;
}

.quote-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.quote-card__top p {
  color: var(--accent-cool);
}

.quote-card__top h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0%;
}

.quote-card__top span {
  flex: 0 0 auto;
  max-width: 165px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #ffdab2;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-dark);
}



.trip-switch {}

.trip-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #F2E7DB;
  border-radius: 14px;
  background: #FEFBF8;
}

.trip-switch__button {
  position: relative;
  min-height: 50px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #17202a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.trip-switch__button::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: -1;
}

.trip-switch__button.is-active {
  color: #ffffff;
  transform: translateY(-1px);
}

.trip-switch__button.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.trip-switch__button:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.28);
  outline-offset: 3px;
}



.trip-panel {
  display: grid;
  gap: 15px;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}


.trip-panel[hidden] {
  display: none;
}

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

.form-grid--single {
  grid-template-columns: 1fr;
}

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

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

.form-field {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field span {
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 45px;
  padding: 0 16px;
  border: 1px solid rgba(16, 19, 26, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: 0.5s ease all;
}

.form-field textarea {
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(16, 19, 26, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: 0.5s ease all;
}

.form-field input::placeholder {
  color: #98a0ad;
}

.form-field:focus-within span,
.form-field.has-value span {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.form-field:focus-within input,
.form-field:focus-within select {
  border-color: rgb(255 108 1);
  background: #ffffff;
  box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
  transform: translateY(-2px);
}



.submit-route {
  position: relative;
  min-height: 48px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #ff7104;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(255, 107, 0, 0.26);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.submit-route::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 44%, transparent 72%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.submit-route:hover,
.submit-route:focus-visible {
  box-shadow: 0 20px 38px rgb(0 0 0 / 34%);
  transform: translateY(-2px);
  background: #000;
}

.submit-route:hover::before,
.submit-route:focus-visible::before {
  transform: translateX(120%);
}

.submit-route:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.28);
  outline-offset: 4px;
}


.form-message {
  min-height: 14px;
  margin: -4px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.5s ease all;
}

.form-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.quote-help {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgb(255 113 4);
  border-radius: 20px;
  background: #F5F0E9;
}

.quote-help p {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-help span {
  color: #4a5362;
  font-size: 0.93rem;
  line-height: 1.55;
}

.quote-help a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.22s ease, transform 0.22s ease;
}

.quote-help a:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}




.related-routes {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 246, 0.88)), #ffffff;
}

.related-routes__inner {
  position: relative;
  margin: 0 auto;
}


.related-routes__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.related-routes__header p {
  color: var(--accent-dark);
}

.related-routes__header h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.4;
}

.related-routes__header span {
  color: #736153;
  font-size: 0.96rem;
}

.related-routes__header a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.related-routes__header a::after {
  width: 34px;
  height: 2px;
  margin-left: 12px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.related-routes__header a:hover,
.related-routes__header a:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
}

.related-routes__header a:hover::after,
.related-routes__header a:focus-visible::after {
  transform: scaleX(1);
}

.related-routes__header a:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.25);
  outline-offset: 6px;
  border-radius: 999px;
}

/* 
.related-routes__header a:hover {
  color: var(--accent-dark);
  transform: translateX(3px);
}

.related-routes__header a:hover::after {
  transform: scaleX(1);
} */


.route-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.route-card {
  overflow: hidden;
  border: 1px solid rgba(16, 19, 26, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(19, 26, 38, 0.11);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.route-card:hover {
  border-color: rgba(255, 107, 0, 0.26);
  box-shadow: 0 28px 58px rgba(19, 26, 38, 0.17);
  transform: translateY(-8px);
}

.route-card a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.route-card img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
  transition: 0.5s ease all;
}

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

.route-card__body {
  display: grid;
  gap: 14px;
  padding: 21px;
}

.route-card__body p {
  color: var(--accent-cool);
}

.route-card__body h3 {
  margin: 0;
  font-weight: 800;
  font-size: 19px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #000;
  text-decoration: none;
}


.route-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.route-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #ffdab2;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.route-card__meta strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.mini-cta-group strong {
  flex-basis: 100%;
}

.form-field select {
  background-position-x: 98% !important;
  background-position-y: 15px !important;
}



/*  */


.filter-box2 {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  margin-top: 35px;
  transition: .45s;
}

.filter-box2:hover {

  transform: translateY(-4px);

}




.filter-box2 .common_form_row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: end;
}

.common_formfield_wrapper {
  display: flex;
  flex-direction: column;
}

.common_formfield_wrapper label {
  margin-bottom: 8px;
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
}

.common_formfield {
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(16, 19, 26, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: 0.5s ease all;
}

.common_buttonstyle2 {
  position: relative;
  min-height: 48px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #ff7104;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  padding-inline: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.common_buttonstyle2:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 44%, transparent 72%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.common_buttonstyle2:hover,
.common_buttonstyle2:focus-visible {
  box-shadow: 0 20px 38px rgb(0 0 0 / 34%);
  transform: translateY(-2px);
  background: #000;
}

.common_buttonstyle2:hover::before,
.common_buttonstyle2:focus-visible::before {
  transform: translateX(120%);
}

.common_buttonstyle2:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.28);
  outline-offset: 4px;
}

/*  */
.blog-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: transform .45s, box-shadow .45s, opacity .45s;
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.blog-card .blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease, filter .5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-card .blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .12));
  opacity: 0;
  transition: .4s;
}

.blog-card:hover .blog-image::after {

  opacity: 1;

}

.blog-card .blog-content {
  padding: 20px 20px calc(20px + 16px + 48px) 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.blog-card .blog-content .meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #737373;
}

.blog-card .blog-content .badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;

}

.blog-card .blog-content .badges span {
  background: #f8f1e8;
  color: #ff7104;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 40px;
  font-weight: 600;
  transition: .3s;
}

.blog-card:hover .badges span {
  background: #ff7104;
  color: #f8f1e8;
}

.blog-card .blog-content h3 {
  margin: 0 0 10px 0;
  font-weight: 800;
  font-size: 19px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #000;
  text-decoration: none;
}

.blog-card .blog-content .common_buttonstyle2 {
  position: absolute;
  left: 20px;
  width: calc(100% - 40px);
  bottom: 20px;
}

/* single page */
.blog-page {
  margin-top: 92px;
}


.blog_grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 45px;
}

.article-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #ff8a00, #ffb347);
}

.article-card .category {
  background: #f8f1e8;
  color: #ff7104;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 40px;
  font-weight: 600;
  transition: .3s;
  display: inline-flex;
  margin-bottom: 18px;
}

.article-card h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0%;
  margin: 5px 0px;
  margin-bottom: 18px;
}

.post-meta {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #999;
  margin-bottom: 35px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 45px;
}

.article-card .content-section {}

.article-card .content-section h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.4;
}

.article-card .content-section h1 {
  font-weight: 700;
  font-size: 36px;
}

.article-card .content-section h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.4;
}

.article-card .content-section ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 20px;
}

.article-card .content-section ul li {
  position: relative;
  padding-left: 28px;
}

.article-card .content-section ul li:before {
  position: absolute;
  left: 0;
  top: 7px;
  background: #ff7104;
  font-weight: bold;
  box-shadow: 0 0 0 4px rgba(255, 138, 0, .12);
  border-radius: 50%;
  content: "";
  width: 9px;
  height: 9px;
}

.tags {
  padding: 20px 0 0 0;
  display: flex;
  gap: 20px;
  border-top: 2px solid #ddd;
  margin-top: 30px;
}

.tags span {
  background: #f8f1e8;
  color: #ff7104;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 40px;
  font-weight: 600;
  transition: .3s;
  display: inline-flex;
  margin-bottom: 0;
}


aside.sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-sticky .widget {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
  transition: .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-sticky .widget .related_posts {
  gap: 0px;
}

.sidebar-sticky h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
}

.sidebar-sticky .widget a {
  background: #f8f1e8;
  color: #000;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 40px;
  font-weight: 600;
  transition: .3s;
  display: inline-flex;
  text-decoration: none;
}

.sidebar-sticky .widget a:hover {
  background: #ff7f0b;
  color: #fff;
}

.sidebar-sticky .widget .related-post {
  border-bottom: 1px solid #f8f1e8;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.sidebar-sticky .widget .related-post h4 {
  font-size: 16px;
  font-weight: 700;
}

.sidebar-sticky .widget .related-post span {
  font-weight: 400;
  font-size: 14px;
}

.sidebar-sticky .widget .related-post:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

select.common_formfield,
select {
  background: url('data:image/svg+xml,<svg id="Expand_Arrow_24" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><rect width="24" height="24" stroke="none" fill="%23000000" opacity="0"/><g transform="matrix(0.45 0 0 0.45 12 12)" ><path style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" translate(-25, -25.08)" d="M 4.84375 12.90625 L 2.75 15 L 25 37.25 L 47.25 15 L 45.15625 12.90625 L 25 33.0625 Z" stroke-linecap="round" /></g></svg>');
  background-position: right 20px center;
  background-size: 16px;
  background-repeat: no-repeat;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
}

/* contact */
.contact_page_wrapper {
  padding-top: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
  position: relative;
  margin-top: 20px;
}

.contact-grid .quote-card {}

.contact-grid .common_field,
.contact-grid input,
.contact-grid select {
  height: 50px;
}

.contact-grid .quote-form {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

.contact-grid .form-grid {
  width: 100%;
}

.contact-grid .form-field {
  width: 100%;
}

.contact-grid button.submit-route {
  box-shadow: none;
  padding-inline: 20px;
  margin-bottom: 10px;
}

.booking-sidebar {
  position: sticky;
  top: 100px;
  padding: 32px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 35px rgba(23, 32, 42, .08);
}



.booking-sidebar .sidebar-heading span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #ff7707;
  margin-bottom: 10px;
  display: inline-flex;
}


.booking-sidebar .sidebar-heading {
  margin-bottom: 30px;
}

.booking-sidebar .support-card {
  animation: cardFloat .8s ease both;
  background: #fff;
  border: solid 1px #F2E7DB;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 22px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--accent);
}

@keyframes cardFloat {

  from {

    opacity: 0;
    transform: translateY(40px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

.booking-sidebar .support-card .support-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.booking-sidebar .support-card .support-top span.card-tag {
  padding: 8px 15px;
  border-radius: 999px;
  background: #ffdab2;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  white-space: nowrap;
}

.booking-sidebar .support-card .support-top h4 {
  margin: 7px 0 0 0;
  color: #17202a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.booking-sidebar .support-card .support-top .support-icon {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.booking-sidebar .support-card .contact-action {
  align-items: center;
  padding: 0;
  border-radius: 14px;
  margin-bottom: 15px;
}

.booking-sidebar .support-card .contact-action:last-child {
  margin-bottom: 0;
}

.booking-sidebar .support-card .contact-action a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  border: solid 1px #F2E7DB;
  transition: all .35s ease;
  background: var(--bg);
  margin-bottom: 15px;
  text-decoration: none;
}

.booking-sidebar .support-card .contact-action a small {
  display: block;
  margin-bottom: 5px;
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
}

.booking-sidebar .support-card .contact-action a strong {
  color: var(--ink);
}

.booking-sidebar .quick-info {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: solid 1px #F2E7DB;
  margin-bottom: 18px;
  transition: .35s;
  flex-wrap: wrap;
}

.booking-sidebar .quick-info .info-item {
  display: flex;
  width: 100%;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #F2E7DB;
}

.booking-sidebar .quick-info .info-item .info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 119, 7, .10);
  color: var(--accent);
  font-size: 1.15rem;
  transition: .35s;
}

.booking-sidebar .quick-info .info-item span {
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
}

.booking-sidebar .quick-info .info-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 1px;
}

.booking-sidebar .quick-info .info-item h5 a {
  text-decoration: none;
  color: inherit;
  font: inherit;
}

.booking-sidebar .quick-info .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.booking-sidebar .support-card .contact-action a i {
  color: #ff9516;
  font-size: 28px;
}

@media (max-width: 1399px) {
  .itinerary-card__title {
    font-size: 24px;
  }

  .hero-carousel__caption strong {
    font-size: 46px;
  }

  .showcase-slider__layout {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }

  .article-card .content-section h2 {
    font-size: 32px;
  }

  .article-card .content-section h3 {
    font-size: 24px;
  }

  .article-card .content-section h1 {
    font-size: 32px;
  }

  .article-card h1 {
    font-size: 36px;
    line-height: 1.4;
  }

  .contact-grid {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .itinerary-section__layout {
    gap: 24px;
  }

  .hero-carousel__caption strong {
    font-size: 42px;
  }

  .showcase-slider__layout {
    grid-template-columns: 1.5fr 1fr;
  }

  .quote-card__top h2 {
    font-size: 36px;
  }

  .route-hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .route-actions {
    flex-direction: column;
  }

  .fare-chip {
    width: auto;
    align-self: flex-start;
  }

  .info-card h2 {
    font-size: 20px;
  }

  .article-card .content-section h2 {
    font-size: 30px;
  }

  .sidebar-sticky .widget {
    padding: 20px;
  }

  .article-card {
    padding: 36px;
  }

  .booking-sidebar .quick-info .info-item h5 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .itinerary-card__title {
    font-size: 22px;
  }

  .showcase-slider__layout {
    grid-template-columns: 1fr;
  }

  .hero-carousel__caption strong {
    font-size: 38px;
  }

  .showcase-slider__thumbs {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    grid-template-rows: none;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scroll-snap-type: x mandatory;
  }

  .thumb-card {
    min-height: 112px;
    scroll-snap-align: start;
  }

  .thumb-card:hover,
  .thumb-card:focus-visible,
  .thumb-card.is-active {
    transform: translateY(-4px);
  }


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

  .itinerary-tabs {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .itinerary-tabs__button {
    width: auto;
    min-width: 200px;
  }

  .route-hero__inner {
    grid-template-columns: 1fr;
  }

  .route-content-cards {
    max-width: 100%;
  }

  .related-routes__header h2 {
    font-size: 34px;
  }

  .route-card-grid {
    gap: 15px;
  }

  .route-card__body {
    padding: 16px;
  }

  .blog_grid {
    gap: 20px;
    grid-template-columns: 1.4fr 1fr;
  }

  .article-card h1 {
    font-size: 32px;
  }

  .hero-image {
    margin-bottom: 30px;
  }

  .article-card .content-section h1 {
    font-size: 28px;
  }

  .article-card .content-section h2 {
    font-size: 28px;
  }

  .article-card .content-section h3 {
    font-size: 22px;
  }

  .sidebar-sticky h3 {
    font-size: 26px;
  }

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

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

  .quote-card__top h2 {
    font-size: 32px;
  }

  .booking-sidebar {
    padding: 28px;
  }

  .booking-sidebar .support-card {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .itinerary-card__body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }

  .itinerary-card__title {
    font-size: 18px;
  }

  .itinerary-section__header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .itinerary-section__link {
    min-height: 10px;
  }

  .hero-carousel__caption strong {
    font-size: 32px;
  }

  .showcase-slider__thumbs {}

  .showcase-slider__content {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .showcase-slider__title {
    width: 100%;
    max-width: 400px;
  }

  .common-heading p {
    margin: 0;
    font-size: 16px;
  }

  .showcase-slider__content {
    gap: 10px;
  }

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

  .article-card {
    padding: 20px;
  }

  .article-card h1 {
    font-size: 28px;
  }

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

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

  .filter-box2 .common_form_row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    text-align: left;
  }

  select.common_formfield,
  select {
    background-size: 12px;
    background-position: right 10px center;
    padding-inline: 10px 23px;
    min-height: 45px;
  }

  .filter-box2 {
    padding: 20px;
    border-radius: 24px;
    margin-top: 25px;
  }

  .booking-sidebar .support-card .support-top h4 {
    font-size: 22px;
    margin-top: 12px;
  }

  .booking-sidebar .support-card .contact-action a {
    padding: 12px 16px;
  }

  .booking-sidebar .support-card .contact-action a i {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .itinerary-tabs__button {
    min-width: 150px;
    padding-inline: 15px;
    font-size: 14px;
  }

  .route-heading-block h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .info-card h2 {
    font-size: 18px;
  }

  .info-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }

  .info-card {
    border-radius: 16px;
  }

  .quote-card__top h2 {
    font-size: 28px;
  }

  .quote-card {
    padding: 22px;
  }

  .form-field input,
  .form-field select,
  .trip-switch__button {
    min-height: 44px;
  }

  .trip-switch__button {
    font-size: 12px;
  }

  .related-routes__header h2 {
    font-size: 28px;
  }

  .hero-carousel__caption strong {
    font-size: 28px;
  }

  .article-card h1 {
    font-size: 24px;
  }

  .article-card .content-section h1 {
    font-size: 24px;
  }

  .article-card .content-section h2 {
    font-size: 24px;
  }

  .article-card .content-section h3 {
    font-size: 18px;
  }

  .article-card .content-section ul {
    gap: 10px;
  }

  .article-card .content-section ul li {
    padding-left: 24px;
  }

  .tags {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sidebar-sticky h3 {
    font-size: 22px;
  }

  .sidebar-sticky .widget a {
    font-size: 13px;
    padding: 6px 12px;
  }

  .booking-sidebar .support-card .support-top span.card-tag {
    padding: 6px 12px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .itinerary-card__trigger {
    padding: 20px;
  }

  .itinerary-tabs__button {
    min-width: 140px;
  }

  .hero-carousel__caption strong {
    font-size: 26px;
  }

  .quote-card__top {
    flex-direction: column;
  }

  .trip-switch {
    grid-template-columns: 1fr;
  }

  .form-grid {
    gap: 12px;
  }

  .form-field input,
  .form-field select,
  .trip-switch__button {
    min-height: 42px;
    font-size: 14px;
  }

  .form-grid--two {
    grid-template-columns: repeat(1, 1fr);
  }

  .form-field select {
    background-position-y: 15px !important;
  }

  .related-routes__header {
    margin-bottom: 30px;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-height: 800px) {
  /*  .quote-card__top h2 {
    font-size: 36px;
} */


  .form-field input,
  .form-field select {
    min-height: 40px;
    font-size: 14px;
  }

  .form-field {
    gap: 5px;
  }

  .trip-switch {
    padding: 8px;
  }

  .trip-switch__button {
    min-height: 42px;
    border-radius: 10px;
  }

  .trip-panel {
    gap: 12px;
  }
}

/* ======================================
   BestSkyDeals Pagination
====================================== */

.pagination {
  gap: 8px;
  margin: 0;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  background: #fff;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.pagination .page-link:hover {
  color: #fff;
  background: #ff7a00;
  border-color: #ff7a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 122, 0, .25);
}

.pagination .page-item.active .page-link {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 122, 0, .35);
}

.pagination .page-item.disabled .page-link {
  color: #bdbdbd;
  background: #f8f8f8;
  border-color: #ececec;
  cursor: not-allowed;
  box-shadow: none;
}

/* Previous / Next Buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  width: auto;
  padding: 0 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* Focus */
.pagination .page-link:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 122, 0, .25);
}