@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #485569;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1e2a47;
}

h1 {
  font-size: 44px;
  line-height: 48px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

p {
  line-height: 16px;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
}

:focus-visible {
  outline: 2px solid #1e61f3;
  outline-offset: 2px;
}

::selection {
  background-color: #1e61f3;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1202px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 640px) {
  .container {
    padding-inline: 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 24px;
  }
}
@media (min-width: 1250px) {
  .container {
    padding-inline: 0;
  }
}

[hidden] {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  padding: 12px 16px;
  background-color: #0d1b3e;
  color: #ffffff;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0px 14px 18px rgba(5, 13, 38, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e3e9;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .header__inner {
    height: 72px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  width: auto;
  height: 32px;
}
@media (min-width: 1024px) {
  .header__logo-img {
    height: 38px;
  }
}

.header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

.header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #1e2a47;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__toggle--active .header__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header__toggle--active .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle--active .header__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e3e9;
  box-shadow: 0px 4.803px 3.602px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .header__menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: clamp(10px, 3.5vw - 26px, 24px);
    margin-left: clamp(10px, 5vw - 40px, 32px);
    padding: 0;
    border-bottom: none;
    box-shadow: none;
  }
}

.header__menu--open {
  display: flex;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-self: stretch;
  }
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1024px) {
  .header__nav-list {
    flex-direction: row;
    gap: clamp(8px, 4vw - 33px, 14px);
  }
}

@media (min-width: 1024px) {
  .header__nav-item {
    display: flex;
  }
}

.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1e2a47;
  border-radius: 8px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.header__nav-link:hover {
  color: #1e61f3;
}
@media (min-width: 1024px) {
  .header__nav-link {
    height: 72px;
    padding: 0 4px;
    border-radius: 0;
  }
}

.header__nav-link--active {
  color: #1e61f3;
}

@media (min-width: 1024px) {
  .header__nav-link--active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background-color: #1e61f3;
    border-radius: 2px 2px 0 0;
  }
}
.header__nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .header__actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
}

.header__auth {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__auth-link {
  font-size: 15px;
  font-weight: 600;
  color: #1e61f3;
  transition: opacity 0.15s ease;
}
.header__auth-link:hover {
  opacity: 0.75;
}

.header__auth-link--button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #1e61f3;
  border-radius: 28px;
  color: #ffffff;
}
.header__auth-link--button:hover {
  opacity: 1;
  filter: brightness(1.1);
}

.header__pickers {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1e2a47;
  transition: color 0.15s ease;
}
.header__picker:hover {
  color: #1e61f3;
}

.header__picker-icon {
  width: 16px;
  height: 16px;
}

.header__picker-caret {
  width: 12px;
  height: 12px;
  color: #828d9e;
}

.header__picker-flag {
  font-size: 16px;
  line-height: 1;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% + 130px);
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.6) 72%, rgba(255, 255, 255, 0.92) 85%, #ffffff 100%), linear-gradient(105deg, rgba(10, 33, 107, 0.72) 0%, rgba(0, 80, 200, 0.78) 35%, rgba(10, 106, 212, 0.42) 65%, rgba(30, 130, 220, 0.12) 100%);
  background-size: 100% 100%, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 55%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 88%);
}

.hero > .ai-insights {
  position: relative;
  z-index: 2;
  width: calc(100% - 2 * 16px);
  max-width: 1202px;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .hero > .ai-insights {
    width: calc(100% - 2 * 24px);
  }
}
@media (min-width: 1250px) {
  .hero > .ai-insights {
    width: 100%;
  }
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-block: 32px 32px;
}
@media (min-width: 640px) {
  .hero__inner {
    padding-block: 36px 40px;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 82px;
    padding-block: 26px;
  }
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero__heading {
  max-width: 440px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}
@media (min-width: 640px) {
  .hero__heading {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .hero__heading {
    font-size: 44px;
    line-height: 48px;
  }
}

.hero__subheading {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.hero__search {
  margin-top: 24px;
}

.app-promo {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 24px;
  overflow: hidden;
  background-color: rgba(13, 27, 62, 0.8);
  border-radius: 16px;
  box-shadow: 0px 14px 18px rgba(5, 13, 38, 0.35);
}
@media (min-width: 1024px) {
  .app-promo {
    max-width: 431px;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 412px;
  }
}

.app-promo__body {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .app-promo__body {
    max-width: 220px;
  }
}

.app-promo__eyebrow {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.app-promo__highlight {
  margin-top: 4px;
  color: #f5a623;
  font-weight: 800;
  line-height: 1;
}

.app-promo__highlight-num {
  font-size: 48px;
}

.app-promo__highlight-unit {
  font-size: 48px;
  font-weight: 300;
}

.app-promo__title {
  margin-top: 0;
  max-width: 190px;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #ffffff;
}

.app-promo__divider {
  width: 200px;
  max-width: 100%;
  height: 1px;
  margin: 16px 0;
  border: 0;
  background-color: rgba(255, 255, 255, 0.18);
}

.app-promo__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-promo__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-promo__feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #f5a623;
}

.app-promo__feature-label {
  font-size: 13.5px;
  font-weight: 400;
  color: #d9e3f7;
}

.app-promo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  margin-top: 16px;
  padding-inline: 14px;
  background-color: #f5a623;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1b3a8a;
  transition: filter 0.15s ease;
}
.app-promo__btn:hover {
  filter: brightness(0.96);
}

.app-promo__btn-icon {
  width: 16px;
  height: 16px;
}

.app-promo__note {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: #8ca1c7;
}

.app-promo__mockup {
  position: absolute;
  bottom: 0px;
  right: -59px;
  margin: 0;
  z-index: 5;
  width: 305px;
}

.footer {
  background-color: #0d1b3e;
  color: #d9e0f2;
}

.footer__inner {
  padding-block: 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 1.4fr 2fr 1.4fr;
    gap: 64px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__logo {
  width: auto;
  height: 40px;
  padding: 6px 10px;
  background-color: #ffffff;
  border-radius: 8px;
  box-sizing: content-box;
}

.footer__tagline {
  font-size: 13.5px;
  line-height: 16px;
  color: #adb8d6;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: background-color 0.15s ease;
}
.footer__social-link:hover {
  background-color: #1e61f3;
}

.footer__social-icon {
  width: 18px;
  height: 18px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__col-title {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 13.5px;
  color: #adb8d6;
  transition: color 0.15s ease;
}
.footer__link:hover {
  color: #ffffff;
}

.footer__newsletter-text {
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 16px;
  color: #adb8d6;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .footer__form {
    flex-direction: row;
  }
}

.footer__input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  font-size: 14px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}
.footer__input::placeholder {
  color: #99b2db;
}
.footer__input:focus {
  outline: none;
  border-color: #1e61f3;
}

.footer__submit {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #1e61f3;
  border-radius: 8px;
  transition: filter 0.15s ease;
}
.footer__submit:hover {
  filter: brightness(1.08);
}

.footer__success {
  font-weight: 600;
  color: #d9e3f7;
}
.footer__success[hidden] {
  display: none;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 13px;
  color: #99b2db;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal-link {
  font-size: 13px;
  color: #adb8d6;
  transition: color 0.15s ease;
}
.footer__legal-link:hover {
  color: #ffffff;
}

.dropdown {
  position: relative;
}

.dropdown__menu,
.dropdown__panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 200;
  min-width: 168px;
  padding: 6px;
  background-color: #ffffff;
  border: 1px solid #e1e3e9;
  border-radius: 8px;
  box-shadow: 0px 10px 15px rgba(13, 26, 64, 0.22);
}

.dropdown--open .dropdown__menu,
.dropdown--open .dropdown__panel {
  display: block;
  animation: dropdown-in 0.15s ease;
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.dropdown__menu {
  list-style: none;
}

.dropdown__option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
  color: #1e2a47;
  border-radius: 6px;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.dropdown__option:hover {
  background-color: #edf2ff;
  color: #1e61f3;
}

.dropdown__caret {
  transition: transform 0.15s ease;
}

.dropdown--open .dropdown__caret {
  transform: rotate(180deg);
}

.mat-field {
  position: relative;
  display: block;
  flex: 1;
  min-width: 0;
}

.mat-field__input {
  display: block;
  width: 100%;
  padding: 23px 0 11px;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #1b3a8a;
  caret-color: #1e61f3;
}
.mat-field__input:focus {
  outline: none;
}
.mat-field__input::-webkit-outer-spin-button, .mat-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mat-field__input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.mat-field__label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  color: #828d9e;
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, transform 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.mat-field:focus-within .mat-field__label,
.mat-field__input:not(:placeholder-shown) ~ .mat-field__label {
  top: 8px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
}

.mat-field:focus-within .mat-field__label {
  color: #1e61f3;
}

.search-tabs {
  width: 100%;
  max-width: 100%;
  filter: drop-shadow(0 10px 15px rgba(13, 26, 64, 0.22));
}
@media (min-width: 992px) {
  .search-tabs {
    max-width: 680px;
  }
}

.search-tabs__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 100%;
  width: 100%;
  padding: 10px;
  background-color: #0d1b3e;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 640px) {
  .search-tabs__tabs {
    width: fit-content;
  }
}

.search-tabs__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #adb8d6;
  transition: background-color 0.15s ease, color 0.15s ease;
}
@media (min-width: 1024px) {
  .search-tabs__tab {
    padding: 6px 14px;
  }
}

.search-tabs__tab--active {
  background-color: #ffffff;
  color: #1b3a8a;
  font-weight: 600;
}

.search-tabs__tab-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.search-tabs__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.19);
  border-radius: 0 12px 12px 12px;
  border: 1px solid hsla(0, 0%, 100%, 0.1686);
}

.search-field {
  background-color: #ffffff;
  border-radius: 10px;
}

.search-field__icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #1e61f3;
}

.search-field__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.search-field__label {
  font-size: 11px;
  font-weight: 500;
  color: #828d9e;
}

.search-field__value-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-field__value {
  font-size: 14px;
  font-weight: 600;
  color: #1b3a8a;
  white-space: nowrap;
}

.search-field__day {
  font-size: 12px;
  font-weight: 400;
  color: #828d9e;
}

.search-field--location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 0 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.search-field--location:focus-within {
  border-color: #1e61f3;
  box-shadow: 0 0 0 1px #1e61f3;
}

.search-tabs__locate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 14px 8px 12px;
  background-color: #edf2ff;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1e61f3;
}

.search-tabs__locate-icon {
  width: 16px;
  height: 16px;
}

.search-tabs__fields {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .search-tabs__fields {
    flex-direction: row;
  }
}

.search-field--cell {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.search-field--cell:first-child {
  border-radius: 10px 10px 0 0;
}
.search-field--cell:last-child {
  border-radius: 0 0 10px 10px;
}
@media (min-width: 1024px) {
  .search-field--cell {
    flex: 1;
    min-width: 0;
  }
  .search-field--cell:first-child {
    border-radius: 10px 0 0 10px;
  }
  .search-field--cell:last-child {
    border-radius: 0 10px 10px 0;
  }
}

.search-field--cell + .search-field--cell {
  border-top: 1.5px solid #e1e3e9;
}
@media (min-width: 1024px) {
  .search-field--cell + .search-field--cell {
    border-top: 0;
    border-left: 1.5px solid #e1e3e9;
  }
}

.search-field__caret {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #828d9e;
}

.search-field--date,
.search-field--guests {
  position: relative;
  padding: 0;
}

.search-field__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background: transparent;
  border-radius: inherit;
  transition: background-color 0.12s ease;
}
.search-field__trigger:hover {
  background-color: rgba(237, 242, 255, 0.5);
}

.datepicker {
  left: 0;
  right: 0;
  width: 100%;
  padding: 12px;
}
@media (min-width: 640px) {
  .datepicker {
    left: 12px;
    right: auto;
    width: 268px;
  }
}

.datepicker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.datepicker__title {
  font-size: 14px;
  font-weight: 700;
  color: #1b3a8a;
}

.datepicker__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 28px;
  color: #485569;
  transition: background-color 0.12s ease;
}
.datepicker__nav:hover {
  background-color: #edf2ff;
}

.datepicker__nav-icon {
  width: 16px;
  height: 16px;
}

.datepicker__nav-icon--prev {
  transform: rotate(180deg);
}

.datepicker__week,
.datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.datepicker__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 13px;
}

.datepicker__dow {
  font-size: 11px;
  font-weight: 600;
  color: #828d9e;
  text-transform: uppercase;
}

.datepicker__day {
  border-radius: 28px;
  color: #1e2a47;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.datepicker__day:hover {
  background-color: #edf2ff;
}

.datepicker__day--today {
  box-shadow: inset 0 0 0 1px #1e61f3;
}

.datepicker__day--selected {
  background-color: #1e61f3;
  color: #ffffff;
  font-weight: 700;
}
.datepicker__day--selected:hover {
  background-color: #1e61f3;
}

.search-guests {
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px;
}
@media (min-width: 640px) {
  .search-guests {
    left: auto;
    right: 0;
    width: 296px;
  }
}

.search-guests__title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1b3a8a;
}

.search-guests__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
}
.search-guests__row + .search-guests__row {
  border-top: 1px solid #e1e3e9;
}

.search-guests__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.search-guests__name {
  font-size: 14px;
  font-weight: 600;
  color: #1e2a47;
}

.search-guests__sub {
  font-size: 11px;
  color: #828d9e;
}

.search-guests__done {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: #1e61f3;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  transition: filter 0.15s ease;
}
.search-guests__done:hover {
  filter: brightness(1.08);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid #1e61f3;
  border-radius: 28px;
  font-size: 16px;
  line-height: 1;
  color: #1e61f3;
  transition: background-color 0.12s ease, opacity 0.12s ease;
}
.stepper__btn:hover:not(:disabled) {
  background-color: #edf2ff;
}
.stepper__btn:disabled {
  border-color: #e1e3e9;
  color: #828d9e;
  cursor: not-allowed;
}

.stepper__val {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e2a47;
}

.search-deals__label {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.search-deals__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-deals__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #ffffff;
  border: 1.5px solid #e1e3e9;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #1e2a47;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.search-deals__chip:hover {
  border-color: #1e61f3;
}

.search-deals__chip--active {
  border-color: #1e61f3;
  box-shadow: 0 0 0 1px #1e61f3;
  color: #1e61f3;
}

.search-deals__chip-off {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}

.search-tabs__note {
  font-size: 12px;
  color: #d9e3f7;
}
.search-tabs__note[hidden] {
  display: none;
}

.search-tabs__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .search-tabs__actions {
    flex-direction: row;
  }
}

.search-tabs__action {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  transition: filter 0.15s ease;
}
.search-tabs__action:hover {
  filter: brightness(1.08);
}

.search-tabs__action--primary {
  background-color: #193c8d;
}

.search-tabs__action--dark {
  background-color: #0d1b3e;
}

.search-tabs__action-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.search-tabs__action-arrow {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  display: inline-flex;
  padding: 10px 12px;
  background-color: #f5a623;
  border-radius: 6px;
}

.search-tabs__action-arrow-icon {
  width: 16px;
  height: 16px;
  color: #1b3a8a;
}

.ai-insights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  background-color: #FFC107;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 1024px) {
  .ai-insights {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.ai-insights__head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
@media (min-width: 1024px) {
  .ai-insights__head {
    flex: 1 1 auto;
  }
}

.ai-insights__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e61f3 0%, #7c2fbe 100%);
  color: #ffffff;
}

.ai-insights__badge-icon {
  width: 15px;
  height: 15px;
}

.ai-insights__title {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #1b3a8a;
}

.ai-insights__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex-shrink: 0;
}

.ai-insights__chip {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 8px;
  background-color: #ffffff;
  border-radius: 28px;
}

.ai-insights__chip-label {
  font-size: 11px;
  color: #828d9e;
  white-space: nowrap;
}

.ai-insights__chip-value {
  font-size: 12.5px;
  font-weight: 700;
  color: #1e61f3;
  white-space: nowrap;
}

.ai-insights__tip-text {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #485569;
  transition: opacity 0.25s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ai-insights__tip-text::before {
  content: "— ";
  color: #828d9e;
}

.ai-insights__tip-text--fade {
  opacity: 0;
}

.features {
  position: relative;
  z-index: 2;
  margin-block: 24px;
}
@media (min-width: 1024px) {
  .features {
    margin-top: -20px;
    margin-bottom: 32px;
  }
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e1e3e9;
  border-radius: 0 0 12px 12px;
  box-shadow: 0px 4.803px 3.602px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .feature-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px 16px;
  }
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  color: #ffffff;
}

.feature-card__icon--blue {
  background-color: #1e5cf3;
}

.feature-card__icon--purple {
  background-color: #7c2fbe;
}

.feature-card__icon--green {
  background-color: #16a34a;
}

.feature-card__icon--orange {
  background-color: #ea5b12;
}

.feature-card__icon-svg {
  width: 24px;
  height: 24px;
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.feature-card__title {
  font-size: 15.5px;
  font-weight: 700;
  color: #1e2a47;
}

.feature-card__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #485569;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1e61f3;
  transition: gap 0.15s ease;
}
.feature-card__link:hover {
  gap: 8px;
}

.feature-card__link-icon {
  width: 14px;
  height: 14px;
}

.destinations {
  margin-block: 32px;
}

.destinations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.destinations__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1e2a47;
}

.destinations__title-badge {
  display: inline-flex;
  color: #f5a623;
}

.destinations__title-icon {
  width: 20px;
  height: 20px;
}

.destinations__viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1e61f3;
  transition: gap 0.15s ease;
}
.destinations__viewall:hover {
  gap: 10px;
}

.destinations__viewall-icon {
  width: 15px;
  height: 15px;
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .destinations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .destinations__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.destination-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 198/184;
  isolation: isolate;
}

.destination-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(5, 10, 26, 0.9) 100%);
}

.destination-card__info {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 14px 14px;
}

.destination-card__city {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.destination-card__country {
  font-size: 12px;
  font-weight: 400;
  color: #d9e0f2;
}

.destination-card__price {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
}

.destination-card__from {
  font-size: 11px;
  font-weight: 400;
  color: #ccd6eb;
}

.destination-card__amount {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.destination-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.92);
  color: #1b3a8a;
}

.destination-card__arrow-icon {
  width: 12px;
  height: 12px;
}

.stats {
  margin-block: 32px;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px;
  background-color: #0d1b3e;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .stats-bar {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 32px;
  }
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 calc(50% - 12px);
}
@media (min-width: 640px) {
  .stats-bar__item {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (min-width: 1024px) {
  .stats-bar__item {
    flex: 0 0 auto;
    padding-block: 24px;
  }
}

.stats-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.stats-bar__icon-svg {
  width: 20px;
  height: 20px;
}

.stats-bar__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.stats-bar__value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.stats-bar__label {
  font-size: 12.5px;
  font-weight: 400;
  color: #99b2db;
}

.stats-bar__divider {
  display: none;
}
@media (min-width: 1024px) {
  .stats-bar__divider {
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.16);
  }
}
