@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,400..700&display=swap");

:root {
  --ink: #07111d;
  --sky: #53c5f2;
  --white: #f8fbfd;
  --line: rgba(255, 255, 255, 0.28);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: "Google Sans Flex", Arial, sans-serif;
}
body {
  margin: 0;
  min-width: 320px;
  background: #eef3f5;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
.page-shell {
  min-height: 100svh;
  padding: 0 clamp(14px, 1.8vw, 34px) clamp(14px, 1.8vw, 34px);
}
.site-header {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(4px, 1.8vw, 26px);
}
.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.brand-logo {
  position: relative;
  display: block;
  width: clamp(168px, 12vw, 220px);
  aspect-ratio: 1777/248;
}
.brand-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-word {
  clip-path: inset(0 17% 0 0);
  opacity: 0;
  animation: brand-word-in 0.55s ease-out 0.12s forwards;
}
.brand-symbol {
  clip-path: inset(0 0 0 83%);
  opacity: 0;
  transform: translateX(-28px);
  animation: brand-symbol-in 0.72s cubic-bezier(0.2, 0.72, 0.22, 1) 0.58s
    forwards;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 58px);
}
.main-nav a {
  font-size: 14px;
  transition: color 180ms ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: #168abb;
}
.quote-button {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 15px;
  min-height: 54px;
  padding: 7px 8px 7px 23px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.quote-button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--sky);
  font-size: 18px;
  transition: transform 180ms ease;
}
.quote-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.quote-button:hover span,
.quote-button:focus-visible span {
  transform: translate(2px, -2px);
}
.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  overflow: hidden;
  border-radius: clamp(24px, 2vw, 38px);
  background: #29495b;
  color: var(--white);
  isolation: isolate;
}
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: center 55%;
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 19, 31, 0.82),
      rgba(3, 19, 31, 0.38) 51%,
      rgba(3, 19, 31, 0.18)
    ),
    linear-gradient(
      0deg,
      rgba(1, 12, 21, 0.76),
      transparent 43%,
      rgba(1, 12, 21, 0.14)
    );
}
.hero-inner {
  position: relative;
  min-height: inherit;
  padding: clamp(32px, 3vw, 58px);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 30, 45, 0.25);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.status-pill::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 5px rgba(83, 197, 242, 0.13);
  content: "";
}
.hero-title {
  position: absolute;
  left: clamp(32px, 3vw, 58px);
  bottom: clamp(150px, 18vh, 210px);
  max-width: min(820px, 58vw);
  margin: 0;
  font-size: clamp(58px, 6.5vw, 120px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.94;
}
.hero-title span {
  display: block;
  color: var(--sky);
}
.travel-search {
  position: absolute;
  top: clamp(92px, 12vh, 130px);
  right: clamp(32px, 3vw, 58px);
  width: min(470px, 35vw);
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 60px rgba(0, 14, 24, 0.25);
  color: var(--ink);
}
.form-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.form-heading span {
  color: #70808c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-heading strong {
  font-size: 23px;
  letter-spacing: -0.035em;
}
.tabs-carousel {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  gap: 5px;
  align-items: center;
  margin-bottom: 18px;
}
.service-tabs {
  display: flex;
  min-width: 0;
  gap: 5px;
  overflow-x: auto;
  padding: 2px;
  border-radius: 14px;
  background: transparent;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
}
.service-tabs::-webkit-scrollbar {
  display: none;
}
.service-tab {
  display: flex;
  min-width: calc((100% - 10px) / 3);
  min-height: 56px;
  padding: 5px 4px;
  border: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  background: transparent;
  color: #64737d;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  scroll-snap-align: center;
}
.service-tab img {
  width: 70px;
  height: 50px;
  object-fit: contain;
}
.service-tab.is-active {
  background: #ededed;
  box-shadow: none;
  color: var(--ink);
}
.tabs-arrow {
  display: grid;
  width: 28px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid #dce4e8;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font:
    400 22px/1 "Google Sans Flex",
    sans-serif;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}
.tabs-arrow:hover,
.tabs-arrow:focus-visible {
  border-color: var(--sky);
  background: #f4fbfe;
}
.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.form-panel[hidden] {
  display: none;
}
.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}
.field-wide {
  grid-column: 1/-1;
}
.field > span {
  color: #566773;
  font-size: 12px;
  font-weight: 600;
}
.field input,
.field select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #dce4e8;
  border-radius: 10px;
  outline: 0;
  background: #f8fafb;
  color: var(--ink);
  font:
    500 14px "Google Sans Flex",
    sans-serif;
}
.field input:focus,
.field select:focus {
  border-color: #42bce9;
  box-shadow: 0 0 0 3px rgba(83, 197, 242, 0.14);
  background: #fff;
}
.search-submit {
  display: flex;
  width: 100%;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 16px 8px 16px 17px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font:
    600 14px "Google Sans Flex",
    sans-serif;
  cursor: pointer;
}
.search-submit span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--sky);
  font-size: 17px;
}
.hero-bottom {
  position: absolute;
  right: clamp(32px, 3vw, 58px);
  bottom: clamp(26px, 3vw, 46px);
  left: clamp(32px, 3vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.hero-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}
.service-pills {
  display: flex;
  gap: 9px;
}
.service-pills a {
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 14px;
  padding: 7px 18px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 29, 39, 0.42);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.service-pills b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: rgba(83, 197, 242, 0.18);
  color: var(--sky);
  font-size: 10px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    display: none;
  }
  .hero {
    min-height: 850px;
  }
  .hero-title {
    max-width: 60vw;
    bottom: 195px;
  }
  .travel-search {
    top: 100px;
    right: 34px;
    width: min(410px, 42vw);
  }
  .service-pills a {
    padding-right: 10px;
  }
  .service-pills a span {
    display: none;
  }
}
@media (max-width: 700px) {
  .page-shell {
    padding: 0 10px 10px;
  }
  .site-header {
    min-height: 70px;
  }
  .quote-button {
    min-height: 44px;
    padding: 5px 5px 5px 15px;
  }
  .quote-button strong {
    display: none;
  }
  .quote-button span {
    width: 22px;
    height: 22px;
  }
  .hero {
    min-height: 1120px;
    border-radius: 22px;
  }
  .hero-inner {
    padding: 24px;
  }
  .status-pill {
    font-size: 10px;
  }
  .travel-search {
    top: 92px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 18px;
  }
  .hero-title {
    right: 24px;
    bottom: 235px;
    left: 24px;
    max-width: none;
    font-size: clamp(52px, 16vw, 82px);
  }
  .hero-bottom {
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: block;
  }
  .hero-note {
    margin-bottom: 18px;
  }
  .service-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .service-pills a {
    justify-content: center;
    min-height: 44px;
    padding: 4px;
  }
  .service-pills b {
    width: 34px;
    height: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@keyframes brand-word-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes brand-symbol-in {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-word,
  .brand-symbol {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
