* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0b3766;
  background: #f4f8fc;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
select,
input,
textarea {
  font-family: inherit;
}
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

button:disabled{
  background-color: darkgray !important;
  color: dimgray !important;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.translations {
  display: none;
}

.btn {
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 250px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}

.btn--red {
  color: #fff;
  background: #e61820;
  border: 1px solid #0b75bd;
  width: unset;
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  /* width: 250px; */
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s ease;
}

.btn--red:hover {
  background: #2c4482;
  color: #fff;
  translate: 0 -1px;
}

.btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 10px 24px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  /* width: 250px; */
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--blue {
  color: #0069c9;
  background: #fff;
  border: 1px solid #0b75bd;
  width: 340px;
}

.btn--green {
  color: #fff;
  background: #21b35b;
}

.btn--viber {
  color: #fff;
  background: #7360f2;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d9e9f8;
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo img {
  width: 142px;
  height: auto;
}

.logo__fallback {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 22px;
  color: #0b75bd;
}

.logo__icon {
  width: 42px;
  height: 28px;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(135deg, #0b75bd, #50b6ef);
  position: relative;
}

.logo__icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: -7px;
  bottom: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d71920;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  color: #173a63;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 74px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: #d71920;
}

.nav__link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  rotate: 45deg;
  margin-top: -3px;
  display: none;
}

.nav__item--has .nav__link::after {
  display: block;
}

.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: -18px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid #d8e7f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 45, 91, 0.13);
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: 0.2s ease;
}

.nav__item:hover .submenu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: #12385e;
  font-size: 13px;
}

.submenu a:hover {
  background: #edf6ff;
  color: #d71920;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang {
  position: relative;
}

.lang select {
  height: 38px;
  padding: 0 30px 0 12px;
  border: 1px solid #c9dced;
  border-radius: 8px;
  background: #fff;
  color: #0b3766;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.booking-link {
  height: 38px;
  padding: 0 16px;
  border: 1px solid #0b75bd;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  color: #0b3766;
  background: #fff;
  transition: all 0.1s ease-in;
}
.booking-link:hover {
  background-color: #00558d52;
}

.burger {
  width: 44px;
  height: 44px;
  border: 1px solid #c9dced;
  border-radius: 10px;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: #0b3766;
  transition: 0.25s ease;
}
.lang {
  position: relative;
  width: 84px;
  flex: 0 0 auto;
}

.lang__select {
  display: none;
}

.lang__btn {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 17px;

  border: 1px solid #c7dcf1;
  border-radius: 10px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  color: #0b3766;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;
  outline: none;

  box-shadow: 0 4px 12px rgba(11, 55, 102, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lang__btn:hover,
.lang.is-open .lang__btn {
  border-color: #7db7e8;
  box-shadow: 0 8px 22px rgba(11, 117, 189, 0.12);
}

.lang__arrow {
  position: absolute;
  top: 50%;
  right: 19px;
  translate: 0 -50%;

  color: #0b3766;
  pointer-events: none;
  transition: rotate 0.2s ease;
}

.lang.is-open .lang__arrow {
  rotate: 180deg;
}

.lang__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 100000;

  margin: 0;
  padding: 6px;

  list-style: none;

  border: 1px solid #d8e9f8;
  border-radius: 12px;
  background: #fff;

  box-shadow: 0 18px 40px rgba(0, 45, 91, 0.16);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;

  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.lang.is-open .lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang__option {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;

  border: 0;
  border-radius: 8px;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0b3766;
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang__option:hover {
  background: #edf6ff;
  color: #d71920;
}

.lang__option.is-active {
  background: #d71920;
  color: #fff;
}

@media (max-width: 640px) {
  .lang {
    width: 78px;
  }

  .lang__btn {
    height: 40px;
    padding-left: 14px;
    padding-right: 34px;
  }

  .lang__arrow {
    right: 17px;
  }
}
body.menu-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */

.hero {
  /* position: relative;
  overflow: hidden;
  padding: 54px 0 130px;
  color: #fff;
 background-image:
    linear-gradient(90deg, rgba(0, 55, 105, 0.78) 0%, rgba(0, 76, 136, 0.42) 40%, rgba(0, 68, 125, 0.05) 75%),
    url("./../img/hero-bgs.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 75vh; */
  position: relative;
  left: 50%;
  /* width: 100vw; */
  width: 100.4%;
  max-width: none;
  margin-left: -50vw;

  /* min-height: calc(100vh - 74px); */
  padding: 137px 0 150px;

  color: #fff;
  overflow: hidden;

  background-image: linear-gradient(
      90deg,
      rgb(0 55 105 / 45%) 0%,
      rgba(0, 76, 136, 0.62) 42%,
      rgba(0, 68, 125, 0.08) 78%
    ),
    url(./../img/heroMain.jpg);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(0, 45, 91, 0.28));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 566px;
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -1.2px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero__text {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BOOKING */

.booking {
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

.booking-card {
  width: 100%;
  padding: 28px 32px 30px;

  background: #fff;
  border: 1px solid #dbeaf7;
  border-radius: 10px;

  box-shadow: 0 18px 45px rgba(0, 58, 115, 0.16);
}

.booking-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px 285px;
  gap: 24px;
  align-items: center;

  margin-bottom: 13px;
}

.booking-card__title {
  margin: 0;

  color: #002f64;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.booking-card__title--passengers {
  grid-column: 3 / 3;
}

.booking-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.booking-card__title-mob {
  display: none;
}
.booking-route {
  min-width: 0;
}

.booking-route__fields {
  /* display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr); */
  gap: 14px;
  align-items: center;
}

.booking-select {
  position: relative;

  padding: 11px 18px 9px 18px;

  border: 1px solid #cfe1f2;
  border-radius: 8px;
  background: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-select:hover,
.booking-select:focus-within {
  border-color: #86bde9;
  box-shadow: 0 8px 22px rgba(11, 117, 189, 0.1);
}

.booking-select__label {
  margin-bottom: 5px;

  color: #477ab1;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.booking-select select {
  width: 100%;
  height: 22px;
  padding: 0;

  border: 0;
  outline: 0;
  background: transparent;

  color: #59728c;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.booking-select select:valid {
  color: #a6a6a6;
}
.booking-select__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .booking-select__icon {
  position: absolute;
  top: 50%;
  right: 18px;

  width: 22px;
  height: 23px;

  translate: 0 -50%;
  fill: #0069c9;

  pointer-events: none;
} */

.booking-select__icon {
  width: 25px;
}

.route-swap {
  width: 38px;
  height: 30px;

  border: 0;
  border-radius: 6px;
  background: #edf7ff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0069c9;
  cursor: pointer;

  transition: background 0.2s ease, transform 0.2s ease;
}

.route-swap svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.route-swap:hover {
  background: #dff0ff;
  transform: rotate(180deg);
}

.booking-options {
  height: 64px;
  margin-top: 24px;

  border: 1px solid #cfe1f2;
  border-radius: 8px;
  background: #fff;

  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.booking-check {
  min-width: 0;
  padding: 0 22px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #002f64;
  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  user-select: none;
}

.booking-check + .booking-check {
  border-left: 1px solid #dce9f5;
}

.booking-check__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: #0069c9;
}

.booking-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;

  accent-color: #ff5b00;
  cursor: pointer;
}

.booking-check span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.booking-passengers {
  height: 64px;

  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.booking-passengers__icon {
  width: 30px;
  height: 35px;
  justify-self: center;
  fill: #0069c9;
}

.passengers {
  height: 52px;
  padding: 0 11px;

  border: 1px solid #cfe1f2;
  border-radius: 8px;
  background: #fff;
  width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  overflow: hidden;
}

.passengers button {
  width: 38px;
  height: 38px;

  border: 0;
  border-radius: 8px;
  background: #edf7ff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0069c9;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;

  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.passengers button:hover {
  background: #dff0ff;
  transform: translateY(-1px);
}

.passengers span {
  color: #002f64;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.booking-submit {
  margin-top: 20px;
  padding: 18px 34px;
  width: 321px;
  border: 0;
  border-radius: 8px;
  background: #e61820;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  color: #fff;
  font-size: 14px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 16px 28px rgba(255, 91, 0, 0.22);

  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--red:hover {
  /* background: #d71920 ; */
  transform: translateY(-1px);
}
.booking-submit:hover {
  background: rgb(44, 68, 130);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(25, 28, 215, 0.25);
}

.booking-submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.booking-submit:hover {
  transform: translateY(-1px);
}

/* FLIGHTS */

.flights {
  display: none;
  margin-top: 22px;

  border: 1px solid #ffd0d2;
  border-radius: 12px;
  background: #fff7f7;

  overflow: hidden;
}

.flights.is-visible {
  display: block;
  animation: showBlock 0.25s ease;
}

@keyframes showBlock {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flights__head {
  padding: 16px 18px;

  border-bottom: 1px solid #ffd0d2;

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.flights__head h3 {
  margin: 0;

  color: #d71920;
  font-size: 18px;
  font-weight: 900;
}

.flights__head span {
  color: #173a63;
  font-size: 13px;
  font-weight: 800;
}

.flights__list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.flight-card {
  padding: 15px 16px;

  border: 1px solid #f1c9cb;
  border-radius: 10px;
  background: #fff;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.flight-card strong {
  display: block;
  margin-bottom: 6px;

  color: #002f64;
  font-size: 15px;
  font-weight: 900;
}

.flight-card p {
  margin: 0;

  color: #587490;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.flight-card__price {
  color: #d71920;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .booking-card__top,
  .booking-grid {
    grid-template-columns: minmax(0, 1fr) 245px 230px;
    gap: 16px;
  }

  .booking-submit {
    /* padding: 0 22px; */
  }
}

@media (max-width: 900px) {
  .booking-card {
    padding: 22px;
  }
  .cabin-layout {
    grid-template-columns: 1fr !important;
  }
  .booking-card__top {
    gap: 8px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-submit {
    width: 100%;
    margin-top: 0;
  }

  .booking-passengers {
    grid-template-columns: 32px minmax(0, 260px);
  }
}
@media (max-width: 768px) {
  .booking-grid,
  .booking-options {
    flex-direction: column;
    align-items: baseline;
  }

  .booking-card__title--passengers {
    display: none;
  }
  .booking-card__title-mob {
    display: flex;
  }
}
@media (max-width: 640px) {
  .booking {
    margin-top: -60px;
  }

  .booking-card {
    padding: 18px;
    border-radius: 12px;
  }

  .booking-route__fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-swap {
    margin: -2px auto;
    transform: rotate(90deg);
  }

  .route-swap:hover {
    transform: rotate(270deg);
  }

  .booking-options {
    height: auto;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .booking-check {
    min-height: 58px;
  }

  .booking-check + .booking-check {
    border-left: 0;
    border-top: 1px solid #dce9f5;
  }

  .booking-passengers {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .flight-card {
    grid-template-columns: 1fr;
  }
}
/* SECTIONS */

.section {
  padding: 34px 0 0;
}

.section-title {
  margin: 0 0 22px;
  text-align: center;
  color: #0b3766;
  font-size: 26px;
  font-weight: 700;
}
/* 
.info-banner,
.notice {
  border-radius: 10px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr 230px;
  gap: 18px;
  align-items: center;
  border: 1px solid #ffd0d2;
  background: linear-gradient(90deg, #fff3f3, #fff9ef);
}

.info-banner__icon,
.notice__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #d71920;
  font-weight: 900;
}

.info-banner h3,
.notice h3 {
  margin: 0 0 5px;
  color: #d71920;
  font-size: 17px;
}

.info-banner p,
.notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #173a63;
  font-weight: 600;
}

.info-banner__pic,
.notice__pic {
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.2)),
    url("images/port-cranes.png") center / contain no-repeat;
} */
.notice {
  background: #ffe0b2 !important;
}
.info-banner {
  position: relative;
  min-height: 86px;
  padding: 16px 22px 16px 24px;
  border: 1px solid #d7ecff;
  border-radius: 10px;
  background: linear-gradient(90deg, #d2eeff 0%, #d2eeff 3%, #d2eeff -13%);
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 315px;
  align-items: flex-start;
  gap: 14px;

  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 68, 125, 0.06);
}

.info-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.55), transparent 32%);
  pointer-events: none;
}

.info-banner__icon,
.info-banner__content,
.info-banner__pic {
  position: relative;
  z-index: 2;
}
.info-banner__pic img {
  position: absolute;
  top: -25px;
}
.info-banner__icon {
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0069c9;
  flex: 0 0 auto;
}

.info-banner__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  /* fill: #e61820; */
}

.info-banner__content {
  padding-top: 1px;
}

.info-banner h3 {
  margin: 0 0 5px;

  color: #e61820;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}
.notice__icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(4248%) hue-rotate(347deg) brightness(92%)
    contrast(98%);
}
.info-banner p {
  max-width: 690px;
  margin: 0;

  color: #173a63;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

/* .info-banner__pic {
  height: 74px;
  align-self: end;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
} */

.info-banner__pic svg {
  width: 100%;
  max-width: 315px;
  height: auto;

  filter: drop-shadow(0 3px 0 rgba(28, 102, 173, 0.08));
}

/* Адаптив */
@media (max-width: 900px) {
  .info-banner {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 16px 18px;
  }
  .info-banner__pic img {
    position: static;
    margin: 0 auto;
  }
  .info-banner__pic {
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin-top: -2px;
  }

  .info-banner__pic svg {
    max-width: 280px;
  }
}

@media (max-width: 560px) {
  .info-banner {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 9px;
  }

  .info-banner h3 {
    font-size: 14px;
  }
  .booking-select__icon:first-child {
    width: 36px;
  }
  .info-banner p {
    font-size: 12px;
  }

  .info-banner__pic {
  }

  .info-banner__pic svg {
    max-width: 220px;
  }
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benefit-card {
  min-height: 170px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d9e9f8;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.07);
  padding: 22px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
}

.benefit-card__img {
  /* width: 100px;
  height: 100px; */
}
.btn__card {
  font-size: 13px;
  color: #0069c9;
  transition: all 0.1s ease-in;
}
.btn__card:hover {
  color: #0068c960;
}
.benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0b3766;
}

.benefit-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #486987;
  font-weight: 600;
}

.prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  background: #fff;
  border: 1px solid #d9e9f8;
  border-radius: 12px;
  padding: 18px;
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.07);
}

.price-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0b75bd;
  font-size: 24px;
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #173a63;
}

.price-card p {
  margin: 0;
  font-size: 14px;
  color: #486987;
  font-weight: 700;
}

.price-card strong {
  color: #e61820;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.price-note {
  margin-top: 14px;
  border-radius: 8px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fef6ea;

  font-size: 13px;
  font-weight: 700;
  color: #173a63;
}
.price-note span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.trust-card {
  min-height: 88px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d9e9f8;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-card__icon {
  width: 42px;
}

.trust-card h3 {
  font-size: 14px;
  color: #173a63;
}

.trust-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #486987;
  font-weight: 700;
}

.managers {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.manager-card {
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d9e9f8;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.06);
}

.manager-card h3 {
  margin: 0 0 8px;
  color: #0b3766;
  font-size: 17px;
}

.manager-card p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 12px;
  color: #00488b;
  font-weight: 900;
  font-size: 15px;
}

.manager-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.manager-card__links a {
  padding: 9px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: #ececec;
}

.question-line {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #eaf5ff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.question-line strong {
  display: block;
  color: #0b3766;
  margin-bottom: 3px;
}

.question-line span {
  color: #486987;
  font-size: 13px;
  font-weight: 700;
}

.question-line__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.question-line__buttons .btn {
  min-height: 36px;
  padding: 0 16px;
  font-size: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  padding-top: 4px;
}

.step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 22px);
  width: calc(100% - 34px);
  height: 1px;
  border-top: 1px dashed #9abada;
}

.step:last-child::before {
  display: none;
}

.step__num {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #0b75bd;
  color: #0b75bd;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: #173a63;
  font-weight: 800;
}

.instruction-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.cta {
  margin-top: 34px;
  padding: 30px 0;
  color: #fff;
  background: url("./../img/bg2.jpg") center right / cover no-repeat, #064f8c;
}
.cta {
  margin-top: 34px;
  padding: 42px 0 36px;
  color: #fff;
  overflow: hidden;
  position: relative;
  min-height: 198px;

  background-color: #064f8c;
  background-image: linear-gradient(
      90deg,
      rgba(6, 79, 140, 0.96) 0%,
      rgba(6, 79, 140, 0.82) 28%,
      rgba(6, 79, 140, 0.35) 58%,
      rgba(6, 79, 140, 0.05) 78%,
      rgba(6, 79, 140, 0) 100%
    ),
    url("./../img/bg2.jpg");

  background-repeat: no-repeat, no-repeat;
  background-position: left top, right center;
  /* background-size: 100% 100%, auto 100%; */
}
.cta__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer {
  padding: 20px 0 14px;
  background: #00325b;
  color: #fff;
}

.footer__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 170px;
  gap: 36px;
  align-items: start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  width: max-content;
  max-width: 100%;

  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;

  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__payments {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-right: 45px;
}

.footer__socials a {
  padding: 4px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer__socials a img {
  width: 20px;
}
.footer__socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer__socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer__cards {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pay-card {
  width: 62px;
  height: 25px;

  border-radius: 4px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #12385e;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.pay-card--visa {
  color: #174ea6;
  font-style: italic;
}

.pay-card--mc {
  gap: 0;
}

.pay-card--mc i {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: block;
}

.pay-card--mc i:first-child {
  background: #eb001b;
  margin-right: -5px;
}

.pay-card--mc i:last-child {
  background: #f79e1b;
}

.pay-card--apple {
  color: #111;
  font-size: 12px;
}

.footer__bottom {
  margin-top: 16px;
  padding-top: 13px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
}

/* adaptive */

@media (max-width: 900px) {
  .footer {
    padding-top: 24px;
  }

  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
  }

  .footer__payments {
    align-items: flex-start;
  }

  .footer__socials {
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .footer__inner {
    width: min(100% - 24px, 1120px);
  }
  .cta {
    background-size: 100% 100%, auto 100%;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__col {
    gap: 8px;
  }

  .footer__col a {
    font-size: 12px;
  }

  .footer__payments {
    align-items: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__bottom {
    font-size: 10px;
  }
}
/* BULGARIA CONTACT PAGE */

.contacts-page {
  padding: 56px 0 70px;
  background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #eaf6ff 0%, #f4faff 100%);
  border-top: 1px solid #cfe4f6;
}

.contacts-page__title {
  margin: 0 0 30px;
  text-align: center;

  color: #003b73;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.contact-box,
.contact-form {
  position: relative;
  padding: 30px 32px;

  background: #fff;
  border: 1px solid #d3e8f9;
  border-radius: 16px;

  box-shadow: 0 20px 48px rgba(0, 58, 115, 0.11);
  overflow: hidden;
}

.contact-box::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #033d65, #054875);
  opacity: 0.95;
}

.contact-box h2,
.contact-form h2 {
  margin: 0 0 22px;

  color: #003b73;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info p {
  margin: 0;

  color: #002f64;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-info strong {
  color: #d71920;
  font-weight: 900;
}

.contact-info b {
  color: #d71920;
  font-weight: 900;
}

.contact-info span {
  color: #002f64;
}

.map-buttons {
  margin-top: 24px;

  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
}

.contact-btn {
  min-height: 48px;
  padding: 0 15px;

  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 900;
  line-height: 1;

  cursor: pointer;
  text-decoration: none;
  border: 0;

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-btn--red {
  color: #fff;
  background: #ff5b00;
  box-shadow: 0 14px 26px rgba(255, 91, 0, 0.22);
}

.contact-btn--red:hover {
  background: #d71920;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(215, 25, 32, 0.25);
}

.contact-btn--outline {
  color: #0069c9;
  background: #fff;
  border: 1px solid #0069c9 !important;
}

.contact-btn--outline:hover {
  color: #fff;
  background: #0069c9;
  transform: translateY(-1px);
}

.route-photo {
  height: 286px;
  margin-top: 20px;

  border-radius: 14px;
  border: 1px solid #cfe4f6;
  background: linear-gradient(135deg, rgba(0, 105, 201, 0.08), rgba(255, 255, 255, 0.35)), #dcefff;

  overflow: hidden;
}

.route-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-photo img[src=""],
.route-photo img:not([src]) {
  display: none;
}

/* FORM */

.contact-form {
  padding-bottom: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 18px;
}

.form-field {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field span {
  color: #003b73;
  font-size: 15px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;

  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;

  color: #002f64;
  font-size: 15px;
  font-weight: 700;

  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input {
  height: 50px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7d91a8;
  font-weight: 600;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #0069c9;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.12);
}

.form-submit {
  width: max-content;
  min-width: 205px;
  margin-top: 4px;
}

.form-message {
  display: none;

  margin-top: 18px;
  padding: 14px 16px;

  border-radius: 10px;
  background: #eaf8ef;
  border: 1px solid #bde9c9;

  color: #137a39;
  font-size: 14px;
  font-weight: 900;
}

.form-message.is-visible {
  display: block;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .contact-box,
  .contact-form {
    padding: 28px;
  }

  .route-photo {
    height: 320px;
  }
}

@media (max-width: 700px) {
  .contacts-page {
    padding: 42px 0 52px;
  }

  .contacts-page__title {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .contact-box,
  .contact-form {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .contact-box h2,
  .contact-form h2 {
    font-size: 24px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .map-buttons {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-submit {
    width: 100%;
  }

  .route-photo {
    height: 240px;
  }
}
@media (max-width: 460px) {
  .btn--red {
    width: 100%;
  }
  .btn--outline {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .contacts-page__title {
    font-size: 23px;
  }

  .contact-box h2,
  .contact-form h2 {
    font-size: 21px;
  }

  .contact-box,
  .contact-form {
    padding: 22px 14px;
  }

  .contact-btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .route-photo {
    height: 210px;
  }
}
/* RESPONSIVE */

@media (max-width: 1080px) {
  .nav {
    gap: 13px;
    font-size: 12px;
  }

  .booking-grid {
    grid-template-columns: 1fr 220px;
  }

  .booking-grid .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 86px 1fr;
  }

  .prices,
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px;
  }

  .step:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .header__inner {
    min-height: 68px;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;

    width: 100vw;
    height: calc(100vh - 68px);

    padding: 18px 16px 28px;

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    overflow-y: auto;
    overflow-x: hidden;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px);
    transition: 0.25s ease;
  }

  body.menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    width: 100%;
    min-height: 52px;
    padding: 0 4px;

    border-bottom: 1px solid #e3eff8;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #003b73;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
  }

  .nav__item--has .nav__link::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 12px;
    margin-right: 4px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    display: block;
    transform: rotate(2deg);
    transition: transform 0.25s ease;
  }

  .nav__item--has.is-open .nav__link::after {
    transform: rotate(180deg);
  }

  .submenu {
    position: static;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0 8px;

    border: 1px solid transparent;
    border-radius: 12px;
    background: #f3f9ff;

    box-shadow: none;

    opacity: 1;
    visibility: visible;
    translate: 0 0;
    transform: none;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.28s ease, padding 0.28s ease, margin 0.28s ease, border-color 0.28s ease;
  }

  .nav__item--has.is-open .submenu {
    max-height: 260px;
    margin: 10px 0 14px;
    padding: 8px;
    border-color: #d8e9f8;
  }

  .submenu a {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;

    border-radius: 8px;

    display: flex;
    align-items: center;

    color: #173a63;
    font-size: 14px;
    font-weight: 800;
  }

  .submenu a:hover {
    background: #e3f2ff;
    color: #d71920;
  }
  .header-actions {
    margin-left: auto;
  }

  .booking-link {
    display: none;
  }

  .hero {
    background-size: cover;
  }

  .hero__content {
    max-width: 100%;
  }

  .booking-card {
    padding: 22px;
  }

  .booking-grid,
  .booking-options {
    grid-template-columns: 1fr;
  }

  .info-banner,
  .notice {
    grid-template-columns: auto 1fr;
  }

  .info-banner__pic,
  .notice__pic {
    grid-column: 1 / -1;
  }

  .managers,
  .contacts-layout,
  .cta__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .question-line {
    grid-template-columns: 1fr;
  }

  .question-line__buttons {
    justify-content: stretch;
  }

  .question-line__buttons .btn {
    flex: 1 1 150px;
  }
}

@media (max-width: 640px) {
  /* .container {
    width: min(100% - 24px, 1120px);
  } */

  .logo img {
    width: 124px;
  }

  .booking-card {
    width: 100%;
    /* max-width: 331px; */
    margin: 0 auto;
  }
  .lang select {
    width: 72px;
    padding-left: 8px;
  }

  .hero {
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .booking {
    margin-top: -70px;
  }

  .booking-card {
    padding: 18px;
  }

  .booking-card__top {
    display: block;
  }

  .prices,
  .trust,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .step::before {
    display: none;
  }

  .price-note {
    display: block;
  }

  .price-note .btn {
    width: 100%;
    margin-top: 12px;
  }

  .benefit-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-card__img {
    margin: 0 auto;
    width: 150px;
  }

  .flight-card {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
.contacts-page-main {
  background: #eef7ff;
}

/* HERO */

.contacts-hero {
  position: relative;
  min-height: 360px;
  padding: 74px 0 115px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 55, 105, 0.92) 0%, rgba(0, 74, 132, 0.66) 42%, rgba(0, 74, 132, 0.1) 78%),
    url("images/kaunas-ferry.jpg") center right / cover no-repeat, #005397;
}

.contacts-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(0, 48, 92, 0.35));
  pointer-events: none;
}

.contacts-hero__inner {
  position: relative;
  z-index: 2;
}

.contacts-hero__content {
  max-width: 430px;
}

.contacts-hero h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.contacts-hero p {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.contacts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* COMMON BUTTONS */

.contact-btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: 0.22s ease;
}

.contact-btn--red {
  color: #fff;
  background: #ff5b00;
  box-shadow: 0 14px 28px rgba(255, 91, 0, 0.24);
}

.contact-btn--red:hover {
  background: #d71920;
  transform: translateY(-1px);
}

.contact-btn--outline-white {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.contact-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.contact-btn--green {
  color: #fff;
  background: #20b45b;
  transition: all 0.2s ease-in;
}
.contact-btn--green:hover {
  background: #148a43;
}
.contact-btn--blue {
  color: #fff;
  background: #229ed9;
  transition: all 0.2s ease-in;
}
.contact-btn--blue:hover {
  background: #12668d;
}
.contact-btn--dark {
  color: #fff;
  background: #004b82;
  transition: all 0.2s ease-in;
}
.contact-btn--dark:hover {
  background: #006ab6;
}
/* CONTENT */

.contacts-content {
  position: relative;
  z-index: 4;
  margin-top: -55px;
  /* padding-bottom: 36px; */
}

.contacts-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.contact-form-card,
.managers-card {
  min-height: 100%;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid #d5e7f6;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 58, 115, 0.12);
}

.contact-form-card h2,
.managers-card h2 {
  margin: 0 0 10px;
  color: #003b73;
  font-size: 22px;
  font-weight: 900;
}

.contact-form-card__text {
  margin: 0 0 24px;
  color: #55728f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form-card__fields {
  display: grid;
  gap: 14px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-field span {
  color: #003b73;
  font-size: 12px;
  font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #cfe1f2;
  border-radius: 7px;
  background: #fff;
  color: #002f64;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  transition: 0.2s ease;
}
.contact-field select {
  color: #9aaec1;
}
.contact-field input,
.contact-field select {
  height: 42px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 100px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9aaec1;
  font-weight: 600;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #0069c9;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.1);
}

.contact-policy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  color: #55728f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.contact-policy input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #0069c9;
  flex: 0 0 auto;
}

.contact-policy a {
  color: #0069c9;
  font-weight: 900;
  text-decoration: none;
}

.contact-submit {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #ff5b00;
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 91, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.contact-submit:hover {
  background: #d71920;
  transform: translateY(-1px);
}

.contact-form-message {
  display: none;
  padding: 13px 14px;
  border-radius: 8px;
  background: #eaf8ef;
  border: 1px solid #bde9c9;
  color: #137a39;
  font-size: 13px;
  font-weight: 900;
}

.contact-form-message.is-visible {
  display: block;
}

.contact-social-block {
  margin-top: 24px;
}

.contact-social-block__line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-social-block__line span {
  height: 1px;
  background: #dce9f5;
}

.contact-social-block__line p {
  margin: 0;
  color: #55728f;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.contact-social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.contact-social {
  min-height: 38px;
  border-radius: 7px;
  border: 1px solid currentColor;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease-in;
}
.contact-social:hover {
  opacity: 0.5;
}
.contact-social--whatsapp {
  color: #20b45b;
}

.contact-social--telegram {
  color: #229ed9;
}

.contact-social--viber {
  color: #7360f2;
}

/* MANAGERS */

.managers-list {
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

.manager-item {
  padding: 22px;
  border: 1px solid #dce9f5;
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.04);
}

.manager-item__avatar {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eaf6ff, #d6edff);
  display: grid;
  place-items: center;
  font-size: 46px;
  overflow: hidden;
}
.manager-item__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manager-item__content h3 {
  margin: 0 0 8px;
  color: #003b73;
  font-size: 17px;
  font-weight: 600;
}

.manager-item__content > a {
  display: inline-flex;
  margin-bottom: 15px;
  color: #000;
  align-items: center;
  font-size: 13px;
  gap: 5px;
  font-weight: 500;
  text-decoration: none;
}

.manager-item__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-btn {
  min-height: 41px;
  padding: 0px 6px;
  border-radius: 6px;
  gap: 5px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  transition: all 0.1s ease-in;
}
.mini-btn:hover {
  opacity: 0.5;
}

.mini-btn--whatsapp {
  color: #20b45b;
}

.mini-btn--telegram {
  color: #229ed9;
}

.mini-btn--viber {
  color: #7360f2;
}

/* HELP ROW */

.contact-help-row {
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 12px;
  border: 1px solid #d5e7f6;
  background: linear-gradient(90deg, #e8f6ff 0%, #e8f6ff 3%, #e8f6ff -13%);
  box-shadow: 0 15px 35px rgba(0, 58, 115, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-help-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
}

.contact-help-item + .contact-help-item {
  border-left: 1px solid #b0c2d1;
}

.contact-help-item__icon {
  /* width: 52px;
  height: 52px; */
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0069c9;
  font-size: 24px;
}

.contact-help-item h3 {
  margin: 0 0 5px;
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
}

.contact-help-item p {
  margin: 0;
  color: #003b73;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
}

/* QUESTION */

.contact-question {
  margin-top: 28px;
  padding: 10px 38px;
  border-radius: 14px;
  border: 1px solid #d5e7f6;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.1);
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
}

.contact-question__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.life-ring {
  display: grid;
  place-items: center;
  color: #003b73;
  font-size: 32px;
}

.contact-question h2 {
  margin: 0 0 10px;
  color: #003b73;
  font-size: 28px;
  font-weight: 600;
}

.contact-question p {
  margin: 0 0 22px;
  color: #55728f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-question__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .contacts-content__grid {
    grid-template-columns: 1fr;
  }

  .managers-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .manager-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .manager-item__buttons {
    justify-content: center;
  }

  .contact-help-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-help-item {
    padding: 0;
  }

  .contact-help-item + .contact-help-item {
    border-left: 0;
    border-top: 1px solid #b0c2d1;
    padding-top: 18px;
  }
}
.contact-help-item__icon img {
  width: 62px;
}
@media (max-width: 1000px) {
  .booking-link {
    padding: 0 7px;
  }
  .header__inner {
    gap: 10px;
  }
}
@media (max-width: 760px) {
  .contacts-hero {
    min-height: 380px;
    padding: 54px 0 110px;
    background: linear-gradient(180deg, rgba(0, 55, 105, 0.9), rgba(0, 74, 132, 0.58)),
      url("images/kaunas-ferry.jpg") center / cover no-repeat, #005397;
  }
  .life-ring {
    width: 230px;
  }
  .contacts-hero h1 {
    font-size: 38px;
  }

  .contacts-hero p {
    font-size: 15px;
  }

  .contacts-hero__actions .contact-btn {
    width: 100%;
  }

  .contact-form-card,
  .managers-card {
    padding: 24px 18px;
  }

  .managers-list {
    grid-template-columns: 1fr;
  }

  .manager-item {
    grid-template-columns: 82px 1fr;
    text-align: left;
    justify-items: stretch;
  }

  .manager-item__buttons {
    justify-content: flex-start;
  }

  .contact-social-buttons {
    grid-template-columns: 1fr;
  }

  .contact-question {
    grid-template-columns: 1fr;
    padding: 26px 18px;
    text-align: center;
  }

  .contact-question__buttons .contact-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contacts-content {
    margin-top: -45px;
  }

  .contacts-hero h1 {
    font-size: 32px;
  }

  .manager-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .manager-item__buttons {
    justify-content: center;
  }

  .contact-help-item {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .contact-social-block__line {
    grid-template-columns: 1fr;
  }

  .contact-social-block__line span {
    display: none;
  }

  .contact-social-block__line p {
    white-space: normal;
    text-align: center;
  }
}
/* REGISTER PAGE */

.register-page {
  background: #eef7ff;
  color: #003b73;
}

.register-hero {
  position: relative;
  min-height: 360px;
  padding: 72px 0 120px;

  color: #fff;
  overflow: hidden;

  background: linear-gradient(90deg, rgba(0, 55, 105, 0.92) 0%, rgba(0, 76, 136, 0.64) 42%, rgba(0, 68, 125, 0.12) 78%),
    url("./../img/hero-bgs.jpg") center right / cover no-repeat, #005397;
}

.register-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(0, 48, 92, 0.34));
  pointer-events: none;
}

.register-hero__inner {
  position: relative;
  z-index: 2;
}

.register-hero__content {
  max-width: 540px;
}

.register-hero__label {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);

  display: inline-flex;
  align-items: center;

  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.register-hero h1 {
  margin: 0 0 18px;

  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.register-hero p {
  margin: 0;

  max-width: 460px;

  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

/* CARD */

.register-section {
  position: relative;
  z-index: 5;
  margin-top: -62px;
  padding-bottom: 58px;
}

.register-card {
  /* display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr); */
  gap: 20px;
  align-items: stretch;
  display: flex;
  justify-content: center;
}

.register-info,
.register-form {
  border: 1px solid #d5e7f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 58, 115, 0.12);
}

.register-info {
  position: relative;
  overflow: hidden;

  padding: 36px 34px;

  background: radial-gradient(circle at 15% 8%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(135deg, #e9f6ff 0%, #ffffff 58%, #eef8ff 100%);
}

.register-info::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;

  width: 230px;
  height: 230px;

  border: 34px solid rgba(0, 105, 201, 0.08);
  border-radius: 50%;
}

.register-info__badge {
  width: 66px;
  height: 66px;
  margin-bottom: 24px;

  border: 3px solid #0069c9;
  border-radius: 50%;

  display: grid;
  place-items: center;

  color: #0069c9;
  background: #fff;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(0, 105, 201, 0.14);
}

.register-info h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 14px;

  color: #003b73;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 900;
}

.register-info > p {
  position: relative;
  z-index: 2;

  margin: 0 0 28px;

  color: #55728f;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.register-benefits {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 14px;
}

.register-benefit {
  padding: 14px 15px;

  border: 1px solid #d7e9f7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);

  display: flex;
  align-items: center;
  gap: 12px;
}

.register-benefit span {
  width: 26px;
  height: 26px;

  border-radius: 50%;
  background: #eaf8ef;

  display: grid;
  place-items: center;

  color: #19a753;
  font-size: 14px;
  font-weight: 900;
  flex: 0 0 auto;
}

.register-benefit p {
  margin: 0;

  color: #003b73;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

/* FORM */

.register-form {
  padding: 34px 36px 30px;
}

.register-form__head {
  margin-bottom: 24px;
}

.register-form__head h2 {
  margin: 0 0 8px;

  color: #003b73;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.register-form__head p {
  margin: 0;

  color: #55728f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.register-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.register-field {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-field--full {
  grid-column: 1 / -1;
}

.register-field > span {
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
}

.register-field input,
.register-password input {
  width: 100%;
  height: 50px;
  padding: 0 15px;

  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;

  color: #002f64;
  font-size: 14px;
  font-weight: 700;

  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.register-field input::placeholder,
.register-password input::placeholder {
  color: #8da4bb;
  font-weight: 600;
}

.register-field input:focus,
.register-password input:focus {
  border-color: #0069c9;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.12);
}

.register-password {
  position: relative;
}

.register-password input {
  padding-right: 94px;
}

.register-password__btn {
  position: absolute;
  top: 50%;
  right: 8px;

  height: 34px;
  padding: 0 10px;

  border: 0;
  border-radius: 8px;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;

  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.register-password__btn:hover {
}
.register-password input {
  padding-right: 56px;
}

.register-password__btn {
  position: absolute;
  top: 50%;
  right: 8px;

  width: 38px;
  height: 38px;
  padding: 0;

  border: 0;
  border-radius: 8px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #0069c9;
  cursor: pointer;

  transform: translateY(-50%);
  transition: 0.2s ease;
}

.register-password__btn:hover {
  background: #dff0ff;
  color: #003b73;
}

.register-password__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.register-password__btn .eye-close {
  display: none;
}

.register-password__btn.is-visible .eye-open {
  display: none;
}

.register-password__btn.is-visible .eye-close {
  display: block;
}
.register-password__btn .eye-close {
  display: none;
}

.register-password__btn.is-visible .eye-open {
  display: none;
}

.register-password__btn.is-visible .eye-close {
  display: block;
}
.register-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  color: #55728f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;

  cursor: pointer;
}

.register-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-top: 1px;

  accent-color: #0069c9;
  flex: 0 0 auto;
}

.register-checkbox a {
  color: #0069c9;
  font-weight: 900;
  text-decoration: none;
}

.register-checkbox a:hover {
  text-decoration: underline;
}

.register-submit {
  height: 52px;
  padding: 0 24px;

  border: 0;
  border-radius: 10px;
  background: #d71920;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #fff;
  font-size: 14px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.23);

  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.register-submit:hover {
  background: #b91419;
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(215, 25, 32, 0.28);
}

.register-message {
  display: none;

  padding: 14px 16px;

  border-radius: 10px;
  border: 1px solid #bde9c9;
  background: #eaf8ef;

  color: #137a39;
  font-size: 14px;
  font-weight: 900;
}

.register-message.is-visible {
  display: block;
}

/* .register-message.is-error {
  display: block;
  border-color: #ffc3c3;
  background: #fff0f0;
  color: #d71920;
} */

.register-login {
  margin-top: 24px;
  padding-top: 20px;

  border-top: 1px solid #dce9f5;

  text-align: center;

  color: #55728f;
  font-size: 14px;
  font-weight: 700;
}

.register-login a {
  color: #0069c9;
  font-weight: 900;
  text-decoration: none;
}

.register-login a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 1060px) {
  .register-card {
    grid-template-columns: 1fr;
  }

  .register-info {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .register-hero {
    min-height: 420px;
    padding: 54px 0 115px;

    background: linear-gradient(
        180deg,
        rgba(0, 55, 105, 0.92) 0%,
        rgba(0, 76, 136, 0.55) 56%,
        rgba(0, 68, 125, 0.18) 100%
      ),
      url("./../img/hero-bgs.jpg") center bottom / cover no-repeat, #005397;
  }

  .register-hero h1 {
    font-size: 36px;
  }

  .register-hero p {
    font-size: 15px;
  }

  .register-section {
    margin-top: -52px;
    padding-bottom: 42px;
  }

  .register-info,
  .register-form {
    border-radius: 14px;
  }

  .register-info {
    padding: 28px 20px;
  }

  .register-form {
    padding: 28px 20px 24px;
  }

  .register-info h2,
  .register-form__head h2 {
    font-size: 25px;
  }

  .register-form__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 460px) {
  .register-hero {
    min-height: 390px;
    padding-top: 42px;
  }

  .register-hero h1 {
    font-size: 31px;
  }

  .register-hero__label {
    font-size: 12px;
  }

  .register-info,
  .register-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .register-info h2,
  .register-form__head h2 {
    font-size: 22px;
  }

  .register-benefit {
    align-items: flex-start;
  }

  .register-password input {
    padding-right: 82px;
  }

  .register-password__btn {
    font-size: 11px;
    padding: 0 8px;
  }
}

.booking-instruction-page {
  background: #eef7ff;
  color: #003b73;
  overflow-x: hidden;
}

/* HERO */

.instruction-hero {
  position: relative;
  min-height: 360px;
  padding: 62px 0 105px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 55, 105, 0.94) 0%, rgba(0, 76, 136, 0.66) 43%, rgba(0, 68, 125, 0.08) 78%),
    url("./../img/hero-bgs.jpg") center right / cover no-repeat, #005397;
}

.instruction-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 105px;
  background: linear-gradient(180deg, transparent, rgba(0, 47, 90, 0.38));
  pointer-events: none;
}

.instruction-hero__inner {
  position: relative;
  z-index: 2;
}

.instruction-hero__content {
  max-width: 610px;
}

.instruction-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.03;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

.instruction-hero p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.instruction-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BUTTONS */

.instruction-btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: 0.22s ease;
}

.instruction-btn--red {
  background: #ff5b00;
  box-shadow: 0 14px 28px rgba(255, 91, 0, 0.24);
}

.instruction-btn--red:hover {
  background: #d71920;
  transform: translateY(-1px);
}

.instruction-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.instruction-btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.instruction-btn--green {
  background: #20b45b;
}

.instruction-btn--blue {
  background: #229ed9;
}

.instruction-btn--dark {
  background: #004b82;
}

/* CONTENT */

.instruction-content {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  padding-bottom: 36px;
}

.instruction-benefits {
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid #d5e7f6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.instruction-benefit {
  min-height: 70px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.instruction-benefit + .instruction-benefit {
  border-left: 1px solid #dce9f5;
}

.instruction-benefit__icon {
  width: 58px;
  height: 58px;
}

.instruction-benefit__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.instruction-benefit h3 {
  margin: 0 0 4px;
  color: #003b73;
  font-size: 14px;
  font-weight: 900;
}

.instruction-benefit p {
  margin: 0;
  color: #003b73;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

/* ACCORDION */

.instruction-accordion {
  display: grid;
  gap: 10px;
}

.instruction-step {
  border: 1px solid #d5e7f6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 58, 115, 0.06);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.instruction-step:hover {
  border-color: #b8d8f0;
  box-shadow: 0 12px 28px rgba(0, 58, 115, 0.09);
}

.instruction-step.is-open {
  border-color: #9fd0f5;
  box-shadow: 0 15px 36px rgba(0, 58, 115, 0.12);
}

.instruction-step__head {
  width: 100%;
  min-height: 74px;
  padding: 14px 18px;
  border: 0;
  background: #fff;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.instruction-step__icon {
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0069c9;
  transition: 0.22s ease;
}
.instruction-step__icon img {
  width: 45px;
  height: 45px;
}
.instruction-step.is-open .instruction-step__icon {
}

.instruction-step__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.instruction-step__text {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.instruction-step__text strong {
  color: #003b73;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.instruction-step__text span {
  position: relative;
  padding-left: 12px;
  color: #55728f;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.instruction-step__text span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0069c9;
}

.instruction-step__arrow {
  width: 10px;
  height: 10px;
  justify-self: end;
  border-right: 2px solid #0069c9;
  border-bottom: 2px solid #0069c9;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.instruction-step.is-open .instruction-step__arrow {
  transform: rotate(225deg);
}

.instruction-step__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.instruction-step__content {
  margin: 0 18px 16px 84px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f3f9ff;
  border: 1px solid #d8e9f8;
}

.instruction-step__content p {
  margin: 0;
  color: #173a63;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

/* HELP */

.instruction-help {
  margin-top: 20px;
  padding: 0px 24px;
  border: 1px solid #d5e7f6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 58, 115, 0.08);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
}

.instruction-help__image {
  display: flex;
  justify-content: center;
}

.instruction-lifebuoy {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 34%, transparent 35%),
    conic-gradient(
      #0069c9 0 15%,
      #fff 15% 25%,
      #0069c9 25% 40%,
      #fff 40% 60%,
      #0069c9 60% 75%,
      #fff 75% 85%,
      #0069c9 85% 100%
    );
  border: 7px solid #eaf6ff;
  box-shadow: 0 12px 28px rgba(0, 58, 115, 0.14);
  display: grid;
  place-items: center;
  color: #003b73;
  font-size: 26px;
}

.instruction-help h2 {
  margin: 0 0 7px;
  color: #003b73;
  font-size: 18px;
  font-weight: 900;
}

.instruction-help p {
  margin: 0;
  color: #003b73;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.instruction-help__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* CTA */

.instruction-cta {
  padding: 34px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 55, 105, 0.96), rgba(0, 68, 125, 0.58)),
    url("./../img/hero-bg2.png") center right / cover no-repeat, #004b82;
}

/* .instruction-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
} */

.instruction-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.instruction-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.instruction-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1122px) {
  .contact-book__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .instruction-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .instruction-benefit {
    padding: 0;
  }

  .instruction-benefit + .instruction-benefit {
    border-left: 0;
    border-top: 1px solid #dce9f5;
    padding-top: 16px;
  }

  .instruction-help {
    grid-template-columns: 3fr;
  }

  .instruction-help__buttons {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .life-ring {
    width: 230px;
  }
  .instruction-help__buttons .instruction-btn {
    flex: 1 1 160px;
  }

  .instruction-cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .instruction-hero {
    min-height: 420px;
    padding: 48px 0 105px;
    background: linear-gradient(
        180deg,
        rgba(0, 55, 105, 0.92) 0%,
        rgba(0, 76, 136, 0.58) 56%,
        rgba(0, 68, 125, 0.2) 100%
      ),
      url("./../img/hero-bgs.jpg") center / cover no-repeat, #005397;
  }

  .instruction-hero h1 {
    font-size: 34px;
  }

  .instruction-hero p {
    font-size: 14px;
  }

  .instruction-hero__actions .instruction-btn {
    width: 100%;
  }

  .instruction-content {
    margin-top: -42px;
  }

  .instruction-benefits {
    padding: 16px;
  }

  .instruction-step__head {
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    padding: 13px 14px;
  }

  .instruction-step__icon {
    width: 38px;
    height: 38px;
  }

  .instruction-step__text strong {
    font-size: 13px;
  }

  .instruction-step__text span {
    font-size: 11.5px;
  }

  .instruction-step__content {
    margin: 0 14px 14px 14px;
  }

  .instruction-help {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 16px;
  }

  .instruction-help__buttons .instruction-btn {
    width: 100%;
  }

  .instruction-cta__actions .instruction-btn {
    width: 100%;
  }
}
@media (max-width: 660px) {
  .contact-book__buttons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 460px) {
  .instruction-hero h1 {
    font-size: 29px;
  }
  .instruction-benefit {
    grid-template-columns: 42px 1fr;
  }

  .instruction-step__head {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .instruction-step__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .instruction-step__icon svg {
    width: 21px;
    height: 21px;
  }

  .instruction-step__text span {
    display: none;
  }

  .instruction-step__head {
    min-height: 64px;
  }

  .instruction-cta h2 {
    font-size: 23px;
  }
}
.orders-page {
  background: #eef7ff;
  color: #003b73;
  overflow-x: hidden;
}

/* HERO */

.orders-hero {
  position: relative;
  min-height: 360px;
  padding: 72px 0 120px;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(90deg, rgba(0, 55, 105, 0.94) 0%, rgba(0, 76, 136, 0.66) 44%, rgba(0, 68, 125, 0.12) 78%),
    url("./../img/hero-bgs.jpg") center right / cover no-repeat, #005397;
}

.orders-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(0, 47, 90, 0.38));
  pointer-events: none;
}

.orders-hero__inner {
  position: relative;
  z-index: 2;
}

.orders-hero__content {
  max-width: 540px;
}

.orders-hero__label {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.orders-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.orders-hero p {
  max-width: 470px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.orders-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BUTTONS */

.orders-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: 0.22s ease;
}

.orders-btn--red {
  background: #ff5b00;
  box-shadow: 0 14px 28px rgba(255, 91, 0, 0.24);
}

.orders-btn--red:hover {
  background: #d71920;
  transform: translateY(-1px);
}

.orders-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.orders-btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.orders-btn--blue {
  background: #0069c9;
}

.orders-btn--blue:hover {
  background: #0059ad;
  transform: translateY(-1px);
}

.orders-btn--light {
  color: #0069c9;
  background: #fff;
  border: 1px solid #cfe1f2;
}

.orders-btn--light:hover {
  background: #edf7ff;
  border-color: #9fd0f5;
  transform: translateY(-1px);
}

/* SECTION */

.orders-section {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 58px;
}

.orders-stats {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.orders-stat {
  min-height: 74px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
}

.orders-stat + .orders-stat {
  border-left: 1px solid #dce9f5;
}

.orders-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #edf7ff;
  display: grid;
  place-items: center;
  color: #0069c9;
  font-size: 22px;
}

.orders-stat strong {
  display: block;
  color: #003b73;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.orders-stat span {
  display: block;
  margin-top: 4px;
  color: #55728f;
  font-size: 12px;
  font-weight: 700;
}

/* LAYOUT */

.orders-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.orders-sidebar,
.orders-panel {
  border: 1px solid #d5e7f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.1);
}

.orders-sidebar {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.orders-profile {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid #dce9f5;
}

.orders-profile__avatar {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0069c9, #65baf2);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 105, 201, 0.22);
}
.orders-profile__avatar img {
  border-radius: 50%;
}
.orders-profile h2 {
  margin: 0 0 5px;
  color: #003b73;
  font-size: 21px;
  font-weight: 900;
}

.orders-profile p {
  margin: 0;
  color: #55728f;
  font-size: 13px;
  font-weight: 700;
}

.orders-account-nav {
  display: grid;
  gap: 8px;
}

.orders-account-nav a {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  color: #003b73;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.orders-account-nav a:hover,
.orders-account-nav a.is-active {
  color: #0069c9;
  background: #edf7ff;
}

/* MAIN PANEL */

.orders-panel {
  padding: 28px;
}

.orders-panel__head {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.orders-panel__head h2 {
  margin: 0 0 7px;
  color: #003b73;
  font-size: 28px;
  font-weight: 900;
}

.orders-panel__head p {
  margin: 0;
  color: #55728f;
  font-size: 14px;
  font-weight: 700;
}

.orders-toolbar {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: center;
}

.orders-tabs {
  padding: 5px;
  border: 1px solid #d5e7f6;
  border-radius: 12px;
  background: #f4faff;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.orders-tabs button {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #55728f;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.orders-tabs button:hover,
.orders-tabs button.is-active {
  color: #fff;
  background: #02498a;
}

.orders-search {
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: 0.2s ease;
}

.orders-search:focus-within {
  border-color: #0069c9;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.1);
}

.orders-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #003b73;
  font-size: 13px;
  font-weight: 700;
}

.orders-search input::placeholder {
  color: #8da4bb;
}

/* ORDER CARD */

.orders-list {
  display: grid;
  gap: 14px;
}

.order-card {
  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 58, 115, 0.06);
  transition: 0.22s ease;
}

.order-card:hover {
  border-color: #b8d8f0;
  box-shadow: 0 14px 32px rgba(0, 58, 115, 0.1);
}

.order-card.is-hidden {
  display: none;
}

.order-card__top {
  padding: 20px;
  border-bottom: 1px solid #edf3f9;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.order-card__number {
  display: inline-flex;
  margin-bottom: 7px;
  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.order-card h3 {
  margin: 0;
  color: #003b73;
  font-size: 20px;
  font-weight: 900;
}

.order-status {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
}

.order-status--active {
  color: #b36b00;
  background: #fff5dd;
}

.order-status--paid {
  color: #137a39;
  background: #eaf8ef;
}

.order-status--completed {
  color: #0069c9;
  background: #edf7ff;
}

.order-status--cancelled {
  color: #d71920;
  background: #fff0f0;
}

.order-card__grid {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.order-info {
  padding: 14px;
  border: 1px solid #edf3f9;
  border-radius: 10px;
  background: #fbfdff;
}

.order-info span {
  display: block;
  margin-bottom: 6px;
  color: #55728f;
  font-size: 11px;
  font-weight: 800;
}

.order-info strong {
  display: block;
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.order-card__actions {
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* DETAILS */

.order-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.order-card.is-open .order-details {
  border-top: 1px solid #edf3f9;
}

.order-details__inner {
  margin: 0 20px 20px;
  padding: 16px;
  border: 1px solid #d8e9f8;
  border-radius: 12px;
  background: #f3f9ff;
  display: grid;
  gap: 10px;
}

.order-details__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dce9f5;
}

.order-details__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-details__row span {
  color: #55728f;
  font-size: 13px;
  font-weight: 800;
}

.order-details__row strong {
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

/* EMPTY */

.orders-empty {
  display: none;
  padding: 42px 20px;
  text-align: center;
  border: 1px dashed #b8d8f0;
  border-radius: 14px;
  background: #f7fbff;
}

.orders-empty.is-visible {
  display: block;
}

.orders-empty__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #edf7ff;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.orders-empty h3 {
  margin: 0 0 8px;
  color: #003b73;
  font-size: 21px;
  font-weight: 900;
}

.orders-empty p {
  margin: 0;
  color: #55728f;
  font-size: 14px;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .orders-layout {
    grid-template-columns: 1fr;
  }

  .orders-sidebar {
    position: static;
  }

  .orders-account-nav {
    grid-template-columns: repeat(5, 1fr);
  }

  .orders-account-nav a {
    justify-content: center;
    text-align: center;
  }

  .orders-toolbar {
    grid-template-columns: 1fr;
  }

  .order-card__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .orders-hero {
    min-height: 420px;
    padding: 54px 0 115px;
    background: linear-gradient(
        180deg,
        rgba(0, 55, 105, 0.92) 0%,
        rgba(0, 76, 136, 0.58) 56%,
        rgba(0, 68, 125, 0.2) 100%
      ),
      url("./../img/hero-bgs.jpg") center / cover no-repeat, #005397;
  }

  .orders-hero h1 {
    font-size: 36px;
  }

  .orders-hero p {
    font-size: 15px;
  }

  .orders-hero__actions .orders-btn {
    width: 100%;
  }

  .orders-section {
    margin-top: -46px;
    padding-bottom: 42px;
  }

  .orders-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .orders-stat {
    padding: 0;
  }

  .orders-stat + .orders-stat {
    border-left: 0;
    border-top: 1px solid #dce9f5;
    padding-top: 14px;
  }

  .orders-panel {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .orders-panel__head {
    display: block;
  }

  .orders-panel__btn {
    width: 100%;
    margin-top: 16px;
  }

  .orders-account-nav {
    grid-template-columns: 1fr;
  }

  .order-card__top {
    flex-direction: column;
  }

  .order-status {
    width: max-content;
  }

  .order-card__grid {
    grid-template-columns: 1fr;
  }

  .order-card__actions .orders-btn {
    width: 100%;
  }

  .order-details__row {
    display: grid;
    gap: 5px;
  }

  .order-details__row strong {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .orders-hero h1 {
    font-size: 31px;
  }

  .orders-hero__label {
    font-size: 12px;
  }

  .orders-sidebar {
    padding: 20px 16px;
  }

  .orders-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .orders-tabs button {
    width: 100%;
  }

  .order-card__top,
  .order-card__grid,
  .order-card__actions {
    padding-left: 14px;
    padding-right: 14px;
  }

  .order-details__inner {
    margin-left: 14px;
    margin-right: 14px;
  }
}
/* IMPORTANT*/
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  position: relative;
  touch-action: pan-y;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

section,
header,
footer,
main {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 640px) {
  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }
}

.prepay-page {
  background: #eef7ff;
  color: #003b73;
  overflow-x: hidden;
}

/* HERO */

.prepay-hero {
  position: relative;
  min-height: 350px;
  padding: 70px 0 118px;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(90deg, rgba(0, 55, 105, 0.94) 0%, rgba(0, 76, 136, 0.66) 44%, rgba(0, 68, 125, 0.12) 78%),
    url("./../img/hero-bgs.jpg") center right / cover no-repeat, #005397;
}

.prepay-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(0, 47, 90, 0.38));
  pointer-events: none;
}

.prepay-hero__inner {
  position: relative;
  z-index: 2;
}

.prepay-hero__content {
  max-width: 560px;
}

.prepay-hero__label {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);

  display: inline-flex;

  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.prepay-hero h1 {
  margin: 0 0 18px;

  color: #fff;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

.prepay-hero p {
  max-width: 500px;
  margin: 0;

  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

/* SECTION */

.prepay-section {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 58px;
}

.prepay-steps {
  margin-bottom: 22px;
  padding: 18px 22px;

  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;

  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.12);
}

.prepay-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.prepay-step::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 24px);
  width: calc(100% - 36px);
  height: 1px;
  border-top: 1px dashed #b8d8f0;
}

.prepay-step:last-child::after {
  display: none;
}

.prepay-step span {
  width: 36px;
  height: 36px;

  border: 2px solid #cfe1f2;
  border-radius: 50%;
  background: #fff;

  display: grid;
  place-items: center;

  color: #55728f;
  font-size: 13px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.prepay-step p {
  margin: 0;

  color: #55728f;
  font-size: 12px;
  font-weight: 800;
}

.prepay-step.is-done span,
.prepay-step.is-active span {
  color: #fff;
  border-color: #0069c9;
  background: #0069c9;
}

.prepay-step.is-active p {
  color: #003b73;
}

.prepay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.prepay-main {
  display: grid;
  gap: 16px;
}

/* ALERT */

.prepay-alert {
  padding: 18px 20px;

  border: 1px solid #ffd0d2;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff3f3, #fff9ef);

  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
}

.prepay-alert__icon {
  width: 34px;
  height: 34px;

  border-radius: 50%;
  background: #e61820;

  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 900;
}

.prepay-alert h3 {
  margin: 0 0 5px;

  color: #e61820;
  font-size: 16px;
  font-weight: 900;
}

.prepay-alert p {
  margin: 0;

  color: #173a63;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

/* CARDS */

.prepay-card,
.prepay-summary__card {
  border: 1px solid #d5e7f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.09);
}

.prepay-card {
  padding: 24px;
}

.prepay-card__head {
  margin-bottom: 20px;

  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.prepay-card__head span {
  display: block;
  margin-bottom: 6px;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.prepay-card__head h2 {
  margin: 0;

  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.prepay-edit {
  /* min-height: 34px;
  padding: 0 12px;

  border: 1px solid #cfe1f2;
  border-radius: 8px;
  background: #fff;

  display: inline-flex;
  align-items: center;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;

  transition: 0.2s ease; */
  color: rgb(44, 68, 130);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 8px 24px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  /* width: 250px; */
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s ease;
  border: 1px solid rgb(44, 68, 130);
}

.prepay-edit:hover {
  background: #edf7ff;
  border-color: #9fd0f5;
}

/* ROUTE */

.prepay-route {
  margin-bottom: 18px;

  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 16px;
  align-items: center;
}

.prepay-route__point {
  min-height: 104px;
  padding: 18px;

  border: 1px solid #dce9f5;
  border-radius: 12px;
  background: #fbfdff;
}

.prepay-route__point span,
.prepay-info span {
  display: block;
  margin-bottom: 6px;

  color: #55728f;
  font-size: 12px;
  font-weight: 800;
}

.prepay-route__point strong {
  display: block;
  margin-bottom: 6px;

  color: #003b73;
  font-size: 22px;
  font-weight: 900;
}

.prepay-route__point p {
  margin: 0;

  color: #55728f;
  font-size: 13px;
  font-weight: 700;
}

.prepay-route__arrow {
  height: 2px;
  background: #b8d8f0;
  position: relative;
}

.prepay-route__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 12px;
  height: 12px;

  border-right: 2px solid #0069c9;
  border-top: 2px solid #0069c9;

  transform: translateY(-50%) rotate(45deg);
}

.prepay-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.prepay-info {
  padding: 14px;

  border: 1px solid #edf3f9;
  border-radius: 10px;
  background: #fbfdff;
}

.prepay-info strong {
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
}

.prepay-status {
  color: #b36b00 !important;
}

/* PASSENGERS */

.prepay-passengers {
  display: grid;
  gap: 12px;
}

.prepay-passenger {
  padding: 16px;

  border: 1px solid #dce9f5;
  border-radius: 12px;
  background: #fbfdff;

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.prepay-passenger__avatar {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  background: linear-gradient(135deg, #0069c9, #65baf2);

  display: grid;
  place-items: center;

  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.prepay-passenger h3 {
  margin: 0 0 6px;

  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

.prepay-passenger p {
  margin: 0;

  color: #55728f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.prepay-badge {
  min-height: 30px;
  padding: 0 12px;

  border-radius: 999px;
  background: #edf7ff;

  display: inline-flex;
  align-items: center;

  color: #0069c9;
  font-size: 11px;
  font-weight: 900;
}

/* SERVICES */

.prepay-services {
  display: grid;
  gap: 12px;
}

.prepay-service {
  padding: 16px;

  border: 1px solid #dce9f5;
  border-radius: 12px;
  background: #fbfdff;

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.prepay-service__icon {
  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #edf7ff;

  display: grid;
  place-items: center;

  font-size: 22px;
}

.prepay-service h3 {
  margin: 0 0 5px;

  color: #003b73;
  font-size: 15px;
  font-weight: 900;
}

.prepay-service p {
  margin: 0;

  color: #55728f;
  font-size: 12px;
  font-weight: 700;
}

.prepay-service strong {
  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

/* PAYMENT */

.prepay-payment {
  display: grid;
  gap: 12px;
}

.prepay-payment__item {
  padding: 16px;

  border: 1px solid #dce9f5;
  border-radius: 12px;
  background: #fff;

  display: grid;
  grid-template-columns: 18px 44px 1fr;
  gap: 12px;
  align-items: center;

  cursor: pointer;
  transition: 0.2s ease;
}

.prepay-payment__item.is-active {
  border-color: #0069c9;
  background: #f3f9ff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.08);
}

.prepay-payment__item input {
  accent-color: #0069c9;
}

.prepay-payment__icon {
  width: 42px;
  height: 42px;

  border-radius: 12px;

  display: grid;
  place-items: center;

  font-size: 21px;
}

.prepay-payment__item strong {
  display: block;
  margin-bottom: 5px;

  color: #003b73;
  font-size: 14px;
  font-weight: 900;
}

.prepay-payment__item small {
  color: #55728f;
  font-size: 12px;
  font-weight: 700;
}

/* SUMMARY */

.prepay-summary {
  position: sticky;
  top: 92px;
}

.prepay-summary__card {
  padding: 24px;
}

.prepay-summary__card h2 {
  margin: 0 0 18px;

  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.prepay-summary__route {
  margin-bottom: 18px;
  padding: 16px;

  border-radius: 12px;
  background: #edf7ff;
}

.prepay-summary__route strong {
  display: block;
  margin-bottom: 5px;

  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

.prepay-summary__route span {
  color: #55728f;
  font-size: 12px;
  font-weight: 700;
}

.prepay-summary__list {
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce9f5;
}

.prepay-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  color: #55728f;
  font-size: 14px;
  font-weight: 700;
}

.prepay-summary__row strong {
  color: #003b73;
  font-weight: 900;
}

.prepay-summary__discount {
  display: none;
  color: #137a39;
}

.prepay-summary__discount.is-visible {
  display: flex;
}

.prepay-summary__discount strong {
  color: #137a39;
}

/* PROMO */

.prepay-promo {
  padding: 16px 0;
  border-bottom: 1px solid #dce9f5;
}

.prepay-promo label > span {
  display: block;
  margin-bottom: 8px;

  color: #003b73;
  font-size: 13px;
  font-weight: 900;
}

.prepay-promo__field {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 8px;
}

.prepay-promo input {
  height: 44px;
  padding: 0 12px;

  border: 1px solid #cfe1f2;
  border-radius: 9px;

  color: #003b73;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.prepay-promo input:focus {
  border-color: #0069c9;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.1);
}

.prepay-promo button {
  border: 0;
  border-radius: 9px;
  background: rgb(44, 68, 130);

  color: #fff;
  font-size: 13px;
  font-weight: 900;

  cursor: pointer;
}

.prepay-promo__message {
  margin: 8px 0 0;

  font-size: 12px;
  font-weight: 800;
}

.prepay-promo__message.is-success {
  color: #137a39;
}

.prepay-promo__message.is-error {
  color: #d71920;
}

/* TOTAL */

.prepay-summary__total {
  padding: 18px 0;

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.prepay-summary__total span {
  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

.prepay-summary__total strong {
  color: #e61820;
  font-size: 30px;
  font-weight: 900;
}

.prepay-agree {
  margin-bottom: 16px;

  display: flex;
  gap: 10px;
  align-items: flex-start;

  color: #55728f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;

  cursor: pointer;
}

.prepay-agree input {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-top: 1px;

  accent-color: #0069c9;
  flex: 0 0 auto;
}

.prepay-pay {
  width: 100%;
  height: 52px;

  border: 0;
  border-radius: 10px;
  background: #e61820;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #fff;
  font-size: 14px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.23);

  transition: 0.22s ease;
}

.prepay-pay:hover {
  background: #b91419;
  transform: translateY(-1px);
}

.prepay-pay:disabled {
  background: #aab8c5;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.prepay-secure {
  margin-top: 14px;
  padding: 12px;

  border-radius: 10px;
  background: #f3f9ff;

  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: center;
}

.prepay-secure p {
  margin: 0;

  color: #55728f;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .prepay-layout {
    grid-template-columns: 1fr;
  }

  .prepay-summary {
    position: static;
  }

  .prepay-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .prepay-hero {
    min-height: 420px;
    padding: 54px 0 115px;

    background: linear-gradient(
        180deg,
        rgba(0, 55, 105, 0.92) 0%,
        rgba(0, 76, 136, 0.58) 56%,
        rgba(0, 68, 125, 0.2) 100%
      ),
      url("./../img/hero-bgs.jpg") center / cover no-repeat, #005397;
  }

  .prepay-hero h1 {
    font-size: 36px;
  }

  .prepay-hero p {
    font-size: 15px;
  }

  .prepay-section {
    margin-top: -46px;
    padding-bottom: 42px;
  }

  .prepay-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prepay-step {
    grid-template-columns: 36px 1fr;
    justify-items: start;
    text-align: left;
  }

  .prepay-step::after {
    display: none;
  }

  .prepay-card,
  .prepay-summary__card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .prepay-card__head {
    display: block;
  }

  .prepay-edit {
    margin-top: 12px;
  }

  .prepay-route {
    grid-template-columns: 1fr;
  }

  .prepay-route__arrow {
    width: 2px;
    height: 38px;
    margin: 0 auto;
  }

  .prepay-route__arrow::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }

  .prepay-info-grid {
    grid-template-columns: 1fr;
  }

  .prepay-passenger,
  .prepay-service {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .prepay-badge {
    width: max-content;
  }

  .prepay-payment__item {
    grid-template-columns: 18px 40px 1fr;
    padding: 14px;
  }
}

@media (max-width: 460px) {
  .prepay-hero h1 {
    font-size: 31px;
  }

  .prepay-hero__label {
    font-size: 12px;
  }

  .prepay-alert {
    grid-template-columns: 1fr;
  }

  .prepay-summary__total strong {
    font-size: 26px;
  }
}

.passenger-page {
  background: #eef7ff;
  color: #003b73;
  overflow-x: hidden;
}

/* HERO */

.passenger-hero {
  position: relative;
  min-height: 350px;
  padding: 70px 0 118px;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(90deg, rgba(0, 55, 105, 0.94) 0%, rgba(0, 76, 136, 0.66) 44%, rgba(0, 68, 125, 0.12) 78%),
    url("./../img/hero-bgs.jpg") center right / cover no-repeat, #005397;
}

.passenger-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(0, 47, 90, 0.38));
  pointer-events: none;
}

.passenger-hero__inner {
  position: relative;
  z-index: 2;
}

.passenger-hero__content {
  max-width: 560px;
}

.passenger-hero__label {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);

  display: inline-flex;

  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.passenger-hero h1 {
  margin: 0 0 18px;
  color: #fff;

  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

.passenger-hero p {
  max-width: 500px;
  margin: 0;

  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

/* SECTION */

.passenger-section {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 58px;
}

.passenger-steps {
  margin-bottom: 22px;
  padding: 18px 22px;

  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;

  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.12);
}

.passenger-step {
  position: relative;

  display: grid;
  justify-items: center;
  gap: 7px;

  text-align: center;
}

.passenger-step::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 24px);

  width: calc(100% - 36px);
  height: 1px;

  border-top: 1px dashed #b8d8f0;
}

.passenger-step:last-child::after {
  display: none;
}

.passenger-step span {
  width: 36px;
  height: 36px;

  border: 2px solid #cfe1f2;
  border-radius: 50%;
  background: #fff;

  display: grid;
  place-items: center;

  color: #55728f;
  font-size: 13px;
  font-weight: 900;

  position: relative;
  z-index: 2;
}

.passenger-step p {
  margin: 0;
  color: #55728f;
  font-size: 12px;
  font-weight: 800;
}

.passenger-step.is-done span,
.passenger-step.is-active span {
  color: #fff;
  border-color: #0069c9;
  background: #0069c9;
}

.passenger-step.is-active p {
  color: #003b73;
}

/* LAYOUT */

.passenger-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.passenger-main {
  display: grid;
  gap: 16px;
}

.passenger-card,
.passenger-summary__card {
  border: 1px solid #d5e7f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.09);
}

.passenger-card {
  padding: 24px;
}

.passenger-card__head {
  margin-bottom: 20px;

  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.passenger-card__head span {
  display: block;
  margin-bottom: 6px;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.passenger-card__head h2 {
  margin: 0;

  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.passenger-card__icon {
  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #edf7ff;

  display: grid;
  place-items: center;

  font-size: 22px;
}

/* FIELDS */

.passenger-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 18px;
}

.passenger-field {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.passenger-field--full {
  grid-column: 1 / -1;
}

.passenger-field span {
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
}

.passenger-field input,
.passenger-field select,
.passenger-field textarea {
  width: 100%;

  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;

  color: #002f64;
  font-size: 14px;
  font-weight: 700;

  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.passenger-field input,
.passenger-field select {
  height: 50px;
  padding: 0 15px;
}

.passenger-field textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.passenger-field input::placeholder,
.passenger-field textarea::placeholder {
  color: #8da4bb;
  font-weight: 600;
}

.passenger-field input:focus,
.passenger-field select:focus,
.passenger-field textarea:focus {
  border-color: #0069c9;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.12);
}

.passenger-field input:invalid:not(:placeholder-shown) {
  border-color: #d71920;
  background: #fff7f7;
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.08);
}

/* DETAILS */

.passenger-details {
  padding: 0;
  overflow: hidden;
}

.passenger-details summary {
  padding: 22px 24px;

  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;

  cursor: pointer;
  list-style: none;
}

.passenger-details summary::-webkit-details-marker {
  display: none;
}

.passenger-details summary::after {
  content: "";
  width: 10px;
  height: 10px;

  border-right: 2px solid #0069c9;
  border-bottom: 2px solid #0069c9;

  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.passenger-details[open] summary::after {
  transform: rotate(225deg);
}

.passenger-details summary b {
  display: block;
  margin-bottom: 5px;

  color: #003b73;
  font-size: 22px;
  font-weight: 900;
}

.passenger-details summary small {
  color: #55728f;
  font-size: 13px;
  font-weight: 700;
}

.passenger-details__content {
  padding: 0 24px 24px;
}

/* SUMMARY */

.passenger-summary {
  position: sticky;
  top: 92px;
}

.passenger-summary__card {
  padding: 24px;
}

.passenger-summary__card h2 {
  margin: 0 0 18px;

  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.passenger-summary__route {
  margin-bottom: 18px;
  padding: 16px;

  border-radius: 12px;
  background: #edf7ff;
}

.passenger-summary__route strong {
  display: block;
  margin-bottom: 5px;

  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

.passenger-summary__route span {
  color: #55728f;
  font-size: 12px;
  font-weight: 700;
}

.passenger-summary__list {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.passenger-summary__list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  color: #55728f;
  font-size: 14px;
  font-weight: 700;
}

.passenger-summary__list strong {
  color: #003b73;
  font-weight: 900;
  text-align: right;
}

/* WARNING */

.passenger-warning {
  margin: 18px 0;
  padding: 14px;

  border: 1px solid #ffd0d2;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff3f3, #fff9ef);

  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.passenger-warning span {
  width: 26px;
  height: 26px;

  border-radius: 50%;
  background: #d71920;

  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 900;
}

.passenger-warning p {
  margin: 0;

  color: #173a63;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.passenger-warning b {
  color: #d71920;
}

/* BUTTONS */

.passenger-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}

.passenger-btn {
  min-height: 50px;
  padding: 0 18px;

  border: 0;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;

  transition: 0.22s ease;
}

.passenger-btn--red {
  color: #fff;
  background: #e61820;
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.23);
}

.passenger-btn--red:hover {
  background: #b91419;
  transform: translateY(-1px);
}

.passenger-btn--light {
  color: #0069c9;
  background: #fff;
  border: 1px solid #cfe1f2;
}

.passenger-btn--light:hover {
  background: #edf7ff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .passenger-layout {
    grid-template-columns: 1fr;
  }

  .passenger-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .passenger-hero {
    min-height: 420px;
    padding: 54px 0 115px;

    background: linear-gradient(
        180deg,
        rgba(0, 55, 105, 0.92) 0%,
        rgba(0, 76, 136, 0.58) 56%,
        rgba(0, 68, 125, 0.2) 100%
      ),
      url("./../img/hero-bgs.jpg") center / cover no-repeat, #005397;
  }

  .passenger-hero h1 {
    font-size: 34px;
  }

  .passenger-hero p {
    font-size: 15px;
  }

  .passenger-section {
    margin-top: -46px;
    padding-bottom: 42px;
  }

  .passenger-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .passenger-step {
    grid-template-columns: 36px 1fr;
    justify-items: start;
    text-align: left;
  }

  .passenger-step::after {
    display: none;
  }

  .passenger-card,
  .passenger-summary__card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .passenger-grid {
    grid-template-columns: 1fr;
  }

  .passenger-details {
    padding: 0;
  }

  .passenger-details summary {
    padding: 20px 16px;
  }

  .passenger-details summary b {
    font-size: 20px;
  }

  .passenger-details__content {
    padding: 0 16px 20px;
  }

  .passenger-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .passenger-hero h1 {
    font-size: 29px;
  }

  .passenger-hero__label {
    font-size: 12px;
  }

  .passenger-card__head {
    display: block;
  }

  .passenger-card__icon {
    margin-top: 12px;
  }

  .passenger-summary__list div {
    display: grid;
    gap: 5px;
  }

  .passenger-summary__list strong {
    text-align: left;
  }
}

.cabin-page {
  background: #eef7ff;
  color: #003b73;
  overflow-x: hidden;
}

/* HERO */

.cabin-hero {
  position: relative;
  min-height: 350px;
  padding: 70px 0 118px;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(90deg, rgba(0, 55, 105, 0.94) 0%, rgba(0, 76, 136, 0.66) 44%, rgba(0, 68, 125, 0.12) 78%),
    url("./../img/hero-bgs.jpg") center right / cover no-repeat, #005397;
}

.cabin-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(0, 47, 90, 0.38));
  pointer-events: none;
}

.cabin-hero__inner {
  position: relative;
  z-index: 2;
}

.cabin-hero__content {
  max-width: 560px;
}

.cabin-hero__label {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);

  display: inline-flex;

  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.cabin-hero h1 {
  margin: 0 0 18px;
  color: #fff;

  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

.cabin-hero p {
  max-width: 510px;
  margin: 0;

  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

/* SECTION */

.cabin-section {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 58px;
}

.cabin-steps {
  margin-bottom: 22px;
  padding: 18px 22px;

  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;

  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.12);
}

.cabin-step {
  position: relative;

  display: grid;
  justify-items: center;
  gap: 7px;

  text-align: center;
}
.hero-bg2 {
  background-image: linear-gradient(
    90deg,
    rgb(0 76 136 / 89%) 42%,
    rgba(0, 76, 136, 0.62) 42%,
    rgb(0 76 136 / 89%) 42%
  );
}
.cabin-step::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 24px);

  width: calc(100% - 36px);
  height: 1px;

  /* border-top: 1px dashed #b8d8f0; */
}
.cabin-steps-form {
  margin-top: -43px;
  position: relative;
  z-index: 2;
}

.cabin-step:last-child::after {
  display: none;
}

.cabin-step span {
  width: 36px;
  height: 36px;

  border: 2px solid #cfe1f2;
  border-radius: 50%;
  background: #fff;

  display: grid;
  place-items: center;

  color: #55728f;
  font-size: 13px;
  font-weight: 900;

  position: relative;
  z-index: 2;
}

.cabin-step p {
  margin: 0;
  color: #55728f;
  font-size: 12px;
  font-weight: 800;
}

.cabin-step.is-done span,
.cabin-step.is-active span {
  color: #fff;
  border-color: #0069c9;
  background: #0069c9;
}

.cabin-step.is-active p {
  color: #003b73;
}

/* LAYOUT */

.cabin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.cabin-main {
  display: grid;
  gap: 16px;
}

.cabin-route-card,
.cabin-summary__card,
.cabin-note {
  border: 1px solid #d5e7f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.09);
}

/* ALERT */

.cabin-alert {
  padding: 18px 20px;

  border: 1px solid #ffd0d2;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff3f3, #fff9ef);

  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
}

.cabin-alert__icon {
  width: 34px;
  height: 34px;

  border-radius: 50%;
  background: #e61820;

  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 900;
}

.cabin-alert h3 {
  margin: 0 0 5px;

  color: #e61820;
  font-size: 16px;
  font-weight: 900;
}

.cabin-alert p {
  margin: 0;

  color: #173a63;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

/* ROUTE */

.cabin-route-card {
  padding: 24px;
}

.cabin-route-card__head {
  margin-bottom: 18px;

  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.cabin-route-card__head span {
  display: block;
  margin-bottom: 6px;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.cabin-route-card__head h2 {
  margin: 0;

  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.cabin-edit {
  color: rgb(44, 68, 130);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 8px 24px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  /* width: 250px; */
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s ease;
  border: 1px solid rgb(44, 68, 130);
}

.cabin-edit:hover {
  background: #edf7ff;
  border-color: #9fd0f5;
}

.cabin-route-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cabin-route-info div {
  padding: 14px;

  border: 1px solid #edf3f9;
  border-radius: 10px;
  background: #fbfdff;
}

.cabin-route-info span {
  display: block;
  margin-bottom: 6px;

  color: #55728f;
  font-size: 11px;
  font-weight: 800;
}

.cabin-route-info strong {
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

/* HEADLINE */

.cabin-headline {
  padding: 6px 2px 0;

  /* display: flex; */
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.cabin-headline span {
  display: block;
  margin-bottom: 6px;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.cabin-headline h2 {
  margin: 0;

  color: #003b73;
  font-size: 28px;
  font-weight: 900;
}

.cabin-headline p {
  margin: 0;

  color: #55728f;
  font-size: 13px;
  font-weight: 700;
}

/* OPTIONS */

.cabin-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cabin-option {
  cursor: pointer;
}

.cabin-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cabin-option__card {
  min-height: 100%;
  border: 1px solid #d5e7f6;
  border-radius: 16px;
  background: #fff;

  display: grid;
  grid-template-rows: 170px 1fr;

  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 58, 115, 0.08);

  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.cabin-option:hover .cabin-option__card {
  transform: translateY(-2px);
  border-color: #9fd0f5;
  box-shadow: 0 18px 38px rgba(0, 58, 115, 0.13);
}

.cabin-option input:checked + .cabin-option__card {
  border-color: #0069c9;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.14), 0 0 0 4px rgba(0, 105, 201, 0.1);
}

/* .cabin-option__image {
height: 180px;
}
.cabin-option__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.cabin-option__image {
  height: 180px;
}

.cabin-option__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cabin-bed {
  position: relative;
  z-index: 2;

  width: 82px;
  height: 82px;

  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);

  display: grid;
  place-items: center;

  color: #fff;
  font-size: 42px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.cabin-option__content {
  padding: 20px;

  display: grid;
  gap: 18px;
}

.cabin-option__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.cabin-option__top b {
  display: block;
  margin-bottom: 6px;

  color: #003b73;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
}

.cabin-option__top small {
  color: #55728f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.cabin-choice-dot {
  width: 22px;
  height: 22px;

  border: 2px solid #cfe1f2;
  border-radius: 50%;

  flex: 0 0 auto;
  position: relative;
}

.cabin-option input:checked + .cabin-option__card .cabin-choice-dot {
  border-color: #0069c9;
  background: rgb(44, 68, 130);
}

.cabin-option input:checked + .cabin-option__card .cabin-choice-dot::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;

  width: 5px;
  height: 9px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: rotate(45deg);
}

.cabin-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.cabin-features span {
  min-height: 34px;
  padding: 0 10px;

  border-radius: 8px;
  background: #edf7ff;

  display: flex;
  align-items: center;

  color: #173a63;
  font-size: 12px;
  font-weight: 800;
}

.cabin-option__bottom {
  padding-top: 16px;
  border-top: 1px solid #edf3f9;

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cabin-option__bottom small {
  display: block;
  margin-bottom: 4px;

  color: #55728f;
  font-size: 11px;
  font-weight: 800;
}

.cabin-option__bottom strong {
  color: #e61820;
  font-size: 24px;
  font-weight: 900;
}

.cabin-select-text {
  min-height: 38px;
  padding: 0 14px;

  border-radius: 8px;
  background: #edf7ff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.cabin-option input:checked + .cabin-option__card .cabin-select-text {
  color: #fff;
  background: rgb(44, 68, 130);
}

/* NOTE */

.cabin-note {
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
}

.cabin-note__icon {
  width: 34px;
  height: 34px;

  border-radius: 50%;
  background: #0069c9;

  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 900;
}

.cabin-note h3 {
  margin: 0 0 5px;

  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

.cabin-note p {
  margin: 0;

  color: #55728f;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

/* SUMMARY */

.cabin-summary {
  position: sticky;
  top: 92px;
}

.cabin-summary__card {
  padding: 24px;
}

.cabin-summary__card h2 {
  margin: 0 0 18px;

  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.cabin-summary__route {
  margin-bottom: 18px;
  padding: 16px;

  border-radius: 12px;
  background: #edf7ff;
}

.cabin-summary__route strong {
  display: block;
  margin-bottom: 5px;

  color: #003b73;
  font-size: 16px;
  font-weight: 900;
}

.cabin-summary__route span {
  color: #55728f;
  font-size: 12px;
  font-weight: 700;
}

.cabin-summary__list {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce9f5;
}

.cabin-summary__list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  color: #55728f;
  font-size: 14px;
  font-weight: 700;
}

.cabin-summary__list strong {
  color: #003b73;
  font-weight: 900;
  text-align: right;
}

.cabin-summary__price {
  padding: 18px 0;

  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cabin-summary__price span {
  color: #003b73;
  font-size: 15px;
  font-weight: 900;
}

.cabin-summary__price strong {
  color: #e61820;
  font-size: 28px;
  font-weight: 900;
}

.cabin-summary__warning {
  margin-bottom: 18px;
  padding: 14px;

  border: 1px solid #ffd0d2;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff3f3, #fff9ef);

  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.cabin-summary__warning span {
  width: 26px;
  height: 26px;

  border-radius: 50%;
  background: #e61820;

  display: grid;
  place-items: center;

  color: #fff;
  font-weight: 900;
}

.cabin-summary__warning p {
  margin: 0;

  color: #173a63;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

/* BUTTONS */

.cabin-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}

.cabin-btn {
  min-height: 50px;
  padding: 0 18px;

  border: 0;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;

  transition: 0.22s ease;
}

.cabin-btn--red {
  color: #fff;
  background: #e61820;
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.23);
}

.cabin-btn--red:hover {
  background: #b91419;
  transform: translateY(-1px);
}

.cabin-btn--light {
  color: #0069c9;
  background: #fff;
  border: 1px solid #cfe1f2;
}

.cabin-btn--light:hover {
  background: #edf7ff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .cabin-summary {
    position: static;
  }

  .cabin-route-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .cabin-options {
    grid-template-columns: 1fr;
  }

  .cabin-headline {
    display: block;
  }

  .cabin-headline p {
    margin-top: 8px;
  }
}

@media (max-width: 760px) {
  .cabin-hero {
    min-height: 420px;
    padding: 54px 0 115px;

    background: linear-gradient(
        180deg,
        rgba(0, 55, 105, 0.92) 0%,
        rgba(0, 76, 136, 0.58) 56%,
        rgba(0, 68, 125, 0.2) 100%
      ),
      url("./../img/hero-bgs.jpg") center / cover no-repeat, #005397;
  }

  .cabin-hero h1 {
    font-size: 34px;
  }

  .cabin-hero p {
    font-size: 15px;
  }

  .cabin-section {
    margin-top: -46px;
    padding-bottom: 42px;
  }

  .cabin-steps {
    gap: 14px;
  }

  .cabin-step {
    grid-template-columns: 36px 1fr;
    justify-items: start;
    text-align: left;
  }

  .cabin-route-card,
  .cabin-summary__card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .cabin-alert,
  .cabin-note {
    grid-template-columns: 1fr;
  }

  .cabin-route-card__head {
    display: block;
  }

  .cabin-edit {
    margin-top: 12px;
  }

  .cabin-route-info {
    grid-template-columns: 1fr;
  }

  .cabin-option__card {
    grid-template-rows: 145px 1fr;
  }

  .cabin-option__content {
    padding: 16px;
    margin-top: 34px;
  }

  .cabin-features {
    grid-template-columns: 1fr;
  }

  .cabin-option__bottom {
    display: grid;
    gap: 12px;
  }

  .cabin-select-text {
    width: 100%;
  }

  .cabin-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .cabin-hero h1 {
    font-size: 29px;
  }

  .cabin-hero__label {
    font-size: 12px;
  }

  .cabin-route-card__head h2,
  .cabin-summary__card h2,
  .cabin-headline h2 {
    font-size: 22px;
  }

  .cabin-option__top {
    gap: 10px;
  }

  .cabin-option__top b {
    font-size: 16px;
  }

  .cabin-summary__list div {
    display: grid;
    gap: 5px;
  }

  .cabin-summary__list strong {
    text-align: left;
  }

  .cabin-summary__price {
    display: grid;
    gap: 6px;
  }
}

.routes-display {
  padding: 42px 0;
  background: #eef7ff;
}

.routes-display__wrap {
  position: relative;
  padding: 10px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("./img/hero-bgs.jpg") center / cover no-repeat;
  box-shadow: 0 18px 45px rgba(0, 58, 115, 0.15);
  margin-top: -90px;
}

/* TOP FILTER */

.routes-search {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  padding: 26px 34px;
  border: 1px solid rgba(207, 225, 242, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 58, 115, 0.08);
  backdrop-filter: blur(8px);
}

.routes-search__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.routes-field {
  display: grid;
  gap: 8px;
}

.routes-field > span {
  color: #5f7287;
  font-size: 13px;
  font-weight: 800;
}

.routes-select {
  position: relative;
  height: 54px;
  border: 1px solid #d4e2ef;
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.05);
}

.routes-select svg {
  width: 21px;
  height: 21px;
  margin-left: 18px;
  color: #30465b;
  fill: currentColor;
  flex: 0 0 auto;
}

/* .routes-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #23384d;
  border-bottom: 2px solid #23384d;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
} */

.routes-select select {
  width: 100%;
  height: 100%;
  padding: 0 44px 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  appearance: none;
  color: #23384d;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
.routes-select {
  position: relative;
  height: 54px;
  border: 1px solid #d4e2ef;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.05);
  /* z-index: 20; */
}

.routes-select.is-open {
  border-color: #2f80d0;
  box-shadow: 0 10px 26px rgba(0, 58, 115, 0.14);
}

.routes-select__icon {
  width: 21px;
  height: 21px;
  margin-left: 18px;
  color: #30465b;
  fill: currentColor;
  flex: 0 0 auto;
  pointer-events: none;
}

.routes-select__native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.routes-select__button {
  width: 100%;
  height: 100%;
  padding: 0 44px 0 14px;
  display: flex;
  align-items: center;
  text-align: left;
  color: #23384d;
  border: none;
  font-size: 16px;
  border-radius: 29px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.routes-select__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #23384d;
  border-bottom: 2px solid #23384d;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.routes-select.is-open .routes-select__button::after {
  transform: translateY(-35%) rotate(225deg);
}

.routes-select__value {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* сам випадаючий список */
.routes-select__dropdown {
  position: absolute;
  left: -1px;
  right: -1px;
  top: calc(100% + 6px);

  width: calc(100% + 2px);
  max-height: 220px;
  overflow: hidden;

  background: #fff;
  border: 1px solid #d4e2ef;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0, 58, 115, 0.16);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.2s ease;

  z-index: 999;
}

.routes-select.is-open .routes-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.routes-select__option {
  width: 100%;
  min-height: 36px;
  padding: 8px 14px 8px 53px;
  display: flex;
  align-items: center;
  color: #23384d;
  background: #fff;
  border: 1px solid #cbcbcb;
  color: #23384d;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: left;

  transition: 0.18s ease;
}

.routes-select__option:hover,
.routes-select__option.is-active {
  background: #136dc7;
  color: #fff;
}

.routes-select__option:first-child {
  border-radius: 9px 9px 0 0;
}

.routes-select__option:last-child {
  border-radius: 0 0 9px 9px;
}

/* щоб dropdown не обрізався батьківськими блоками */
.booking-card,
.booking-grid,
.routes-select-wrap {
  overflow: visible !important;
}

/* adaptive */
@media (max-width: 768px) {
  .routes-select {
    height: 50px;
  }

  .routes-select__button {
    font-size: 15px;
  }

  .routes-select__option {
    min-height: 38px;
    font-size: 14px;
    padding-left: 48px;
  }
}
.routes-check {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #d4e2ef;
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.05);
  transition: 0.2s ease;
}

.routes-check:hover {
  border-color: #a7cbe8;
}

.routes-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.routes-check__box {
  width: 20px;
  height: 20px;
  border: 2px solid #cfd9e3;
  border-radius: 5px;
  background: #fff;
  flex: 0 0 auto;
  position: relative;
}

.routes-check input:checked + .routes-check__box {
  border-color: #0069c9;
  background: #0069c9;
}

.routes-check input:checked + .routes-check__box::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 5px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.routes-check__text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #34495e;
  font-size: 15px;
  font-weight: 800;
}

.routes-check__text svg {
  width: 22px;
  height: 22px;
  color: #536678;
  fill: currentColor;
}

/* RESULT */

.routes-result {
  position: relative;
  z-index: 2;
  padding: 22px 34px 28px;
  border: 1px solid rgba(207, 225, 242, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(0, 58, 115, 0.08);
  backdrop-filter: blur(8px);
}

.block__cabin {
  border-radius: 16px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 7px 16px rgba(0, 58, 115, 0.08);
  backdrop-filter: blur(8px);
  padding: 7px;
  margin-bottom: 5px;
  border: 2px solid rgba(207, 225, 242, 0.9);
}
.routes-result h2 {
  margin: 0 0 16px;
  color: #26394d;
  font-size: 16px;
  font-weight: 900;
}

/* CARD */

.route-card {
  min-height: 150px;
  padding: 6px 0 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 26px;
}

.route-card__date span {
  display: block;
  margin-bottom: 4px;
  color: #4d6175;
  font-size: 13px;
  font-weight: 700;
}

.route-card__date strong {
  display: block;
  margin-bottom: 2px;
  color: #172b40;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}

.route-card__date small {
  display: block;
  margin-bottom: 3px;
  color: #52687d;
  font-size: 13px;
  font-weight: 700;
}

.route-card__date p {
  margin: 0;
  color: #172b40;
  font-size: 14px;
  font-weight: 900;
}

.route-card__date--right {
  text-align: right;
}

.route-card__ship {
  min-width: 0;
  text-align: center;
}

.route-card__ship-icon {
  width: 70px;
  height: 38px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a4c5e;
}

.route-card__ship-icon svg {
  width: 70px;
  height: auto;
}

.route-card__ship > strong {
  display: block;
  margin-bottom: 14px;
  color: #384c60;
  font-size: 16px;
  font-weight: 800;
}

.route-card__line {
  position: relative;
  height: 2px;
  max-width: 210px;
  margin: 0 auto 22px;
  background-image: linear-gradient(to right, #8aa2b6 45%, transparent 45%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.route-card__line::before,
.route-card__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #005bbb;
  transform: translateY(-50%);
}

.route-card__line::before {
  left: -2px;
}

.route-card__line::after {
  right: -2px;
}

.route-card__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 286px;
  margin: 0 auto;
  margin-bottom: 7px;
}

.route-btn {
  padding: 7px;
  border-radius: 7px;
  font-size: 12px;

  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.route-btn--blue {
  border: 1px solid #005bbb;
  background: #005bbb;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 91, 187, 0.2);
}

.route-btn--blue:hover {
  background: #004a9b;
}

.route-btn--outline {
  border: 1px solid #8aa9c5;
  background: #fff;
  color: #17436d;
}

.route-btn--outline:hover {
  border-color: #005bbb;
  color: #005bbb;
  background: #edf7ff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .routes-search,
  .routes-result {
    padding: 20px;
  }

  .routes-search__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .route-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .route-card__date,
  .route-card__date--right {
    text-align: center;
  }

  .route-card__buttons {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .routes-display {
    padding: 24px 0;
  }

  .routes-display__wrap {
    padding: 7px;
    border-radius: 14px;
  }

  .routes-search,
  .routes-result {
    padding: 16px;
    border-radius: 13px;
  }

  .routes-select,
  .routes-check {
    height: 50px;
  }

  .routes-select select {
    font-size: 14px;
  }

  .routes-check__text {
    font-size: 13px;
  }

  .route-card__date strong {
    font-size: 31px;
  }

  .route-card__buttons {
    /* grid-template-columns: 1fr; */
    gap: 10px;
  }

  .route-btn {
    width: 100%;
  }
}

/*!IMPORTANT STYLE */

/* FIX MOBILE MENU + DROPDOWNS */

.header {
  z-index: 9999 !important;
  overflow: visible !important;
}

.header__inner {
  overflow: visible !important;
}

.lang,
.js-lang {
  position: relative;
  z-index: 10020 !important;
}

.lang__dropdown,
.js-lang-dropdown {
  z-index: 10030 !important;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .nav,
  .js-nav {
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: calc(100dvh - 68px) !important;

    z-index: 10000 !important;

    padding: 18px 16px 28px !important;

    background: #fff !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: translateY(-12px) !important;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease !important;
  }

  body.menu-open .nav,
  body.menu-open .js-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav__item {
    width: 100% !important;
    flex: 0 0 auto !important;
  }

  .nav__link {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 6px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    border-bottom: 1px solid #e3eff8 !important;

    color: #003b73 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
  }

  .nav__item:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .submenu {
    position: static !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 8px !important;

    border: 1px solid transparent !important;
    border-radius: 12px !important;
    background: #f3f9ff !important;

    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    translate: 0 0 !important;

    max-height: 0 !important;
    overflow: hidden !important;

    pointer-events: auto !important;

    transition: max-height 0.28s ease, padding 0.28s ease, margin 0.28s ease, border-color 0.28s ease !important;
  }

  .nav__item--has.is-open .submenu {
    max-height: 320px !important;
    margin: 10px 0 14px !important;
    padding: 8px !important;
    border-color: #d8e9f8 !important;
  }

  .submenu a {
    width: 100% !important;
    min-height: 42px !important;
    padding: 0 12px !important;

    display: flex !important;
    align-items: center !important;

    border-radius: 8px !important;

    color: #173a63 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }
}

/* ===============================
   CABIN PAGE FIX FROM SCREENSHOTS
================================ */

.cabin-alert,
.cabin-route-card {
  display: none !important;
}

/* КРОКИ ЗАВЖДИ ГОРИЗОНТАЛЬНО */

.cabin-steps {
  width: 100%;
  margin-bottom: 22px;
  padding: 16px 18px !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #fff;

  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.12);

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cabin-steps::-webkit-scrollbar {
  display: none;
}

.cabin-step {
  position: relative;
  min-width: 112px;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 8px !important;
  text-align: center !important;
}

.cabin-step::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 24px);

  width: calc(100% - 10px);
  height: 1px;

  /* border-top: 2px dashed #b8d8f0; */
}

.cabin-step:last-child::after {
  display: none;
}

.cabin-step span {
  width: 38px !important;
  height: 38px !important;

  border-radius: 50%;
  border: 2px solid #cfe1f2;
  background: #fff;

  display: grid;
  place-items: center;

  color: #55728f;
  font-size: 13px;
  font-weight: 900;

  position: relative;
  z-index: 2;
}

.cabin-step p {
  margin: 0;
  color: #55728f;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.cabin-step.is-done span,
.cabin-step.is-active span {
  border-color: #0069c9;
  background: #0069c9;
  color: #fff;
}

.cabin-step.is-active p {
  color: #003b73;
}

/* ОСНОВНА КОМПОНОВКА */

.cabin-layout--booking {
  display: grid !important;
  /* grid-template-columns: 360px minmax(0, 1fr) 330px !important; */
  gap: 18px !important;
  align-items: start !important;
  margin-bottom: 50px;
}

.cabin-booking-panel {
  border: 1px solid #b9d7e9;
  background: #0069c908;
  box-shadow: 0 16px 34px rgba(0, 58, 115, 0.11);
}

.cabin-trip-box {
  border-bottom: 1px solid #a6c9df;
  background: #0069c900;
}

.cabin-trip-box__head {
  padding: 7px 10px;
  border-bottom: 1px solid #b9d7e9;
  color: #003b73;
  font-size: 12px;
  font-weight: 900;
}

.cabin-trip {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  gap: 8px;
  align-items: center;
}

.cabin-trip__date span,
.cabin-trip__date small {
  display: block;
  color: #324e68;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.cabin-trip__date strong {
  display: block;
  color: #172b40;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.cabin-trip__date b {
  display: block;
  color: #172b40;
  font-size: 11px;
  font-weight: 900;
}

.cabin-trip__date--right {
  text-align: right;
}

.cabin-trip__ship {
  text-align: center;
  color: #2f485f;
  font-size: 13px;
  font-weight: 800;
}

.cabin-trip__line {
  height: 1px;
  margin-top: 8px;
  background: #0069c9;
  position: relative;
}

.cabin-trip__line::before,
.cabin-trip__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0069c9;
  transform: translateY(-50%);
}

.cabin-trip__line::before {
  left: 0;
}

.cabin-trip__line::after {
  right: 0;
}

.cabin-current {
  padding: 11px 10px 14px;
}

.cabin-current__title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}
.cabin-current__title div img {
  border-radius: 10px;
}
.cabin-current__title span {
  color: #173a63;
  font-size: 11px;
  font-weight: 800;
}

.cabin-current__title h3 {
  margin: 2px 0;
  color: #003b73;
  font-size: 14px;
  font-weight: 900;
}

.cabin-current__title p,
.cabin-current__title small {
  display: block;
  color: #173a63;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.cabin-current__icons {
  display: flex;
  gap: 4px;
  font-size: 19px;
}

.cabin-current__price {
  display: block;
  margin-top: 4px;
  color: #003b73;
  font-size: 18px;
  font-weight: 900;
}

.cabin-current__buttons {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.cabin-current__buttons button {
  min-width: 96px;
  height: 34px;

  border: 0;
  background: #2c4482;

  color: #fff;
  font-size: 12px;
  font-weight: 900;

  cursor: pointer;
}

.cabin-passenger-counts {
  padding: 12px 10px 18px;
  border-top: 1px solid #b9d7e9;
}

.cabin-passenger-counts h3 {
  margin: 14px 0 8px;
  text-align: center;
  color: #003b73;
  font-size: 12px;
  font-weight: 900;
}

.cabin-alone {
  min-height: 38px;
  padding: 0 12px;
  background: rgb(44 68 130 / 7%) !important;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  color: #173a63;
  font-size: 12px;
  font-weight: 800;
}

.cabin-counter-row {
  margin-top: 11px;
  text-align: center;
}

.cabin-counter-row p {
  margin: 0 0 5px;
  color: #173a63;
  font-size: 11px;
  font-weight: 700;
}

.cabin-counter {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.cabin-counter button {
  width: 38px;
  height: 34px;

  border: 1px solid #2c4482;
  background: #2c4482;

  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.cabin-counter div {
  width: 38px;
  min-height: 34px;
  border: 1px solid #2c4482;
  background: #eaf8ff;
  display: grid;
  place-items: center;
}

.cabin-counter small {
  color: #2c4482;
  font-size: 8px;
  line-height: 1;
}

.cabin-counter strong {
  color: #2c4482;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.cabin-pet-select {
  margin-top: 14px;
  padding: 12px;
  background: rgb(44 68 130 / 7%) !important;
}

.cabin-pet-select span {
  display: block;
  margin-bottom: 8px;
  color: #003b73;
  font-size: 12px;
  font-weight: 900;
}

.cabin-pet-select select {
  height: 42px;
  min-width: 150px;
  padding: 0 12px;
  border: 1px solid #9ccde6;
  background: #fff;
  width: 100%;
  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;
  color: #002f64;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: 0.2s ease;
}

.cabin-add-pet,
.cabin-add-cart,
.cabin-collapse {
  border: 0;
  background: #2c4482;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cabin-add-pet {
  height: 38px;
  margin-top: 12px;
  padding: 0 16px;
}

.cabin-cart-actions {
  margin-top: 16px;
  display: grid;
  justify-content: center;
  gap: 10px;
}

.cabin-add-cart {
  height: 40px;
  padding: 0 24px;
}

.cabin-collapse {
  height: 36px;
  padding: 0 22px;
  justify-self: center;
}

/* ПРАВИЙ БЛОК КАЮТ */

.cabin-options--list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.cabin-options--list .cabin-option__card {
  grid-template-rows: 185px 1fr !important;
  border-color: #0069c9;
}

.cabin-option__image--photo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabin-option__image--photo::before {
  display: none !important;
}

.cabin-option__image--photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* КОШИК */

.cabin-summary--cart {
  position: sticky;
  top: 92px;
}

.cart-head {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h2 {
  margin: 0;
  color: #003b73;
  font-size: 19px;
  font-weight: 900;
}

.cart-head select {
  height: 28px;
  border: 1px solid #b9d7e9;
  background: #fff;
  color: #003b73;
  font-weight: 800;
}

.cart-block {
  position: relative;
  margin-bottom: 8px;
  padding: 10px 28px 10px 10px;
  border-radius: 10px;
  border: 1px solid #9fcde8;
  background: #dff0f8;

  color: #173a63;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.cart-block--red {
  border-color: #d71920;
}

.cart-block--yellow {
  background: #fff8e6;
  border-color: #ead391;
}

.cart-block button {
  position: absolute;
  top: 4px;
  right: 5px;

  border: 0;
  background: transparent;

  color: #003b73;
  font-size: 16px;
  cursor: pointer;
}

.cart-block span {
  display: block;
  margin-bottom: 4px;
  text-align: center;
  color: #003b73;
  font-size: 12px;
  font-weight: 900;
}

.cart-block p {
  margin: 2px 0;
}

.cart-block b,
.cart-block strong {
  display: block;
  color: #003b73;
  font-weight: 900;
}

.cart-route {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cart-route p:last-child {
  text-align: right;
}

.cart-total {
  margin: 12px 0;
  padding: 8px;
  border: 1px solid #b9d7e9;
  background: #fff;
  text-align: center;
}

.cart-total span {
  color: #55728f;
  font-size: 12px;
  font-weight: 800;
}

.cart-total strong {
  color: #003b73;
  font-size: 14px;
  font-weight: 900;
}

/* АДАПТИВ */

@media (max-width: 1180px) {
  /* .cabin-layout--booking {
    grid-template-columns: 320px minmax(0, 1fr) !important;
  } */

  /* .cabin-summary--cart {
    grid-column: 1 / -1;
    position: static;
  } */
}

@media (max-width: 820px) {
  .cabin-layout--booking {
    grid-template-columns: 1fr !important;
  }

  .cabin-booking-panel {
    order: 1;
  }

  .cabin-main {
    order: 2;
  }

  .cabin-summary--cart {
    order: 3;
  }

  .cabin-steps {
    flex-wrap: nowrap !important;
  }

  .cabin-step {
    min-width: 88px;
  }

  .cabin-step p {
    font-size: 10px;
  }

  .cabin-step span {
    width: 32px !important;
    height: 32px !important;
  }

  .cabin-step::after {
    top: 16px;
    left: calc(50% + 18px);
  }
}

@media (max-width: 520px) {
  .cabin-steps {
    padding: 12px 10px !important;
    gap: 8px !important;
  }

  .cabin-step {
    min-width: 76px;
  }

  .cabin-trip {
    /* grid-template-columns: 1fr; */
    /* text-align: center; */
  }
  .block__cabin .cabin-trip {
    /* grid-template-columns: 1fr; */
    text-align: unset;
  }
  /* .cabin-trip__date,
  .cabin-trip__date--right {
    text-align: center;
  } */

  .cabin-current__buttons {
    gap: 10px;
  }

  .cabin-current__buttons button {
    min-width: 120px;
  }

  .cabin-options--list .cabin-option__card {
    grid-template-rows: 150px 1fr !important;
  }
}
/* ===============================
   CABIN BUTTONS ALIGN FIX
================================ */

/* Загальний стиль кнопок на сторінці кают */
.cabin-booking-panel button,
.cabin-select-text,
.cabin-btn,
.cart-block button,
.cabin-current__buttons button {
  font-family: inherit;
}

/* Лівий блок — кнопки Вибрати / Докладніше */
.cabin-current__buttons {
  width: 100%;
  margin-top: 16px;

  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px !important;
}

.cabin-current__buttons button {
  width: 100% !important;
  min-width: 0 !important;
  height: 40px !important;

  border: 0 !important;
  border-radius: 8px !important;
  background: #2c4482 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  cursor: pointer;
  transition: 0.2s ease;
}

.cabin-current__buttons button:hover {
  background: #0069c9 !important;
  transform: translateY(-1px);
}

/* Лічильники — кнопки мінус / плюс */
.cabin-counter {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
}

.cabin-counter button {
  width: 40px !important;
  height: 36px !important;

  border: 1px solid #2c4482 !important;
  background: #2c4482 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #fff !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  cursor: pointer;
  transition: 0.2s ease;
}

.cabin-counter button:hover {
  background: #0069c9 !important;
}

/* Додати вихованця / Додати до кошику / Згорнути */
.cabin-add-pet,
.cabin-add-cart,
.cabin-collapse {
  min-height: 40px !important;
  padding: 0 18px !important;

  border: 0 !important;
  border-radius: 8px !important;
  background: #2c4482 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  cursor: pointer;
  transition: 0.2s ease;
}

.cabin-add-pet:hover,
.cabin-add-cart:hover,
.cabin-collapse:hover {
  background: #0069c9 !important;
  transform: translateY(-1px);
}

.cabin-add-pet {
  width: 100% !important;
  margin-top: 12px !important;
}

.cabin-cart-actions {
  width: 100%;
  margin-top: 16px;

  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.cabin-add-cart,
.cabin-collapse {
  width: 100% !important;
}

/* Картка каюти — щоб кнопка завжди була рівно справа знизу */
.cabin-option__content {
  min-height: 210px;
  display: grid !important;
  grid-template-rows: auto auto 1fr auto !important;
}

.cabin-option__bottom {
  width: 100%;
  margin-top: auto !important;
  padding-top: 14px !important;

  border-top: 1px solid #edf3f9;

  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 16px !important;
  align-items: end !important;
}

/* Кнопка "Обрати каюту" */
.cabin-select-text {
  min-width: 132px !important;
  height: 42px !important;
  padding: 0 18px !important;

  border: 0 !important;
  border-radius: 8px !important;
  background: #edf7ff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #0069c9 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  transition: 0.2s ease;
}

.cabin-option:hover .cabin-select-text {
  background: #dff0ff !important;
}

.cabin-option input:checked + .cabin-option__card .cabin-select-text {
  background: #2c4482 !important;
  color: #fff !important;
}

/* Ціна */
.cabin-option__bottom strong {
  display: block;
  color: #e61820 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.cabin-option__bottom small {
  display: block;
  margin-bottom: 6px;
  color: #55728f;
  font-size: 11px;
  font-weight: 900;
}

/* Кошик — кнопки внизу */
.cabin-actions {
  width: 100%;
  margin-top: 14px;

  display: grid !important;
  grid-template-columns: 1fr 1.35fr !important;
  gap: 10px !important;
}

.cabin-btn {
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 18px !important;

  border-radius: 9px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  cursor: pointer;
  transition: 0.22s ease;
}

.cabin-btn--light {
  border: 1px solid #cfe1f2 !important;
  background: #fff !important;
  color: #0069c9 !important;
}

.cabin-btn--light:hover {
  background: #edf7ff !important;
  border-color: #9fd0f5 !important;
  transform: translateY(-1px);
}

.cabin-btn--red {
  border: 0 !important;
  background: #e61820 !important;
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(230, 24, 32, 0.22) !important;
}

.cabin-btn--red:hover {
  background: #2c4482 !important;
  transform: translateY(-1px);
}

/* Хрестики в кошику — акуратні */
.cart-block button {
  position: absolute !important;
  top: 6px !important;
  right: 7px !important;

  width: 22px !important;
  height: 22px !important;

  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.65) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #003b73 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  cursor: pointer;
  transition: 0.2s ease;
}

.cart-block button:hover {
  background: #e61820 !important;
  color: #fff !important;
}

/* Адаптив кнопок */
@media (max-width: 900px) {
  .cabin-option__bottom {
    grid-template-columns: 1fr auto !important;
  }

  .cabin-select-text {
    min-width: 130px !important;
  }
}

@media (max-width: 560px) {
  .cabin-current__buttons {
    grid-template-columns: 1fr !important;
  }

  .cabin-option__bottom {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .cabin-select-text {
    width: 100% !important;
  }

  .cabin-actions {
    grid-template-columns: 1fr !important;
  }
}

/* ===============================
   PASSENGER PAGE FIX
================================ */

.passenger-layout--edit {
  display: grid !important;
  grid-template-columns: 330px minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: start !important;
}

.passenger-summary {
  display: none !important;
}

/* ЛІВІ БЛОКИ */

.passenger-side {
  display: grid;
  gap: 16px;
}

.passenger-side-card {
  padding: 20px 18px;
  border: 1px solid #b7d8ef;
  border-radius: 14px;
  background: #dff1fb;
  box-shadow: 0 16px 36px rgba(0, 58, 115, 0.1);
}

.passenger-side-card h2 {
  margin: 0 0 14px;
  color: #003b73;
  font-size: 19px;
  font-weight: 900;
}

.passenger-cabin-desc,
.passenger-desc {
  padding: 14px;
  border: 1px solid #9fcde8;
  background: #eef9ff;
  color: #173a63;
}

.passenger-cabin-desc span,
.passenger-desc span {
  display: block;
  margin-bottom: 4px;
  color: #003b73;
  font-size: 12px;
  font-weight: 900;
}

.passenger-cabin-desc h3 {
  margin: 0 0 6px;
  color: #003b73;
  font-size: 17px;
  font-weight: 900;
}

.passenger-cabin-desc p,
.passenger-desc p {
  margin: 4px 0;
  color: #173a63;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.passenger-desc b {
  color: #e61820;
}

/* ФОРМА */

.passenger-main {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.passenger-card {
  padding: 24px !important;
  border: 1px solid #d5e7f6 !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(0, 58, 115, 0.09) !important;
}

.passenger-card__head {
  margin-bottom: 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 16px !important;
  align-items: flex-start !important;
}

.passenger-card__head span {
  display: block;
  margin-bottom: 6px;
  color: #0069c9;
  font-size: 12px;
  font-weight: 900;
}

.passenger-card__head h2 {
  margin: 0;
  color: #003b73;
  font-size: 24px;
  font-weight: 900;
}

.passenger-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #edf7ff;
  display: grid;
  place-items: center;
  color: #0069c9;
  font-size: 22px;
}

.passenger-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(92%) saturate(1150%) hue-rotate(176deg) brightness(92%)
    contrast(96%);
}

.passenger-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px 18px !important;
}

.passenger-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.passenger-field--full {
  grid-column: 1 / -1;
}

.passenger-field span {
  color: #003b73;
  font-size: 13px;
  font-weight: 900;
}

.passenger-field input,
.passenger-field select,
.passenger-field textarea {
  width: 100%;
  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;
  color: #002f64;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: 0.2s ease;
}

.passenger-field input,
.passenger-field select {
  height: 50px;
  padding: 0 15px;
}

.passenger-field textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.passenger-field input::placeholder,
.passenger-field textarea::placeholder {
  color: #8da4bb;
  font-weight: 600;
}

.passenger-field input:focus,
.passenger-field select:focus,
.passenger-field textarea:focus {
  border-color: #0069c9;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.12);
}

.passenger-field input.is-error {
  border-color: #e61820;
  background: #fff7f7;
  box-shadow: 0 0 0 4px rgba(230, 24, 32, 0.1);
}

/* КНОПКА ЗАСТОСУВАТИ */

.passenger-apply {
  width: max-content;
  min-width: 170px;
  height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #2c4482;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.passenger-apply:hover {
  background: #0069c9;
  transform: translateY(-1px);
}

/* НИЖНІ КНОПКИ */

.passenger-actions--bottom {
  margin-top: 4px;
  padding: 0;
  display: grid !important;
  grid-template-columns: 160px 220px !important;
  gap: 12px !important;
  justify-content: flex-end;
}

.passenger-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: 0.22s ease;
}

.passenger-btn--light {
  color: #0069c9;
  background: #fff;
  border: 1px solid #cfe1f2;
}

.passenger-btn--light:hover {
  background: #edf7ff;
  border-color: #9fd0f5;
  transform: translateY(-1px);
}

.passenger-btn--red {
  border: 0;
  color: #fff;
  background: #e61820;
  box-shadow: 0 16px 30px rgba(230, 24, 32, 0.22);
}

.passenger-btn--red:hover {
  background: #2c4482;
  transform: translateY(-1px);
}

/* ADAPTIVE */

@media (max-width: 1000px) {
  .passenger-layout--edit {
    grid-template-columns: 1fr !important;
  }

  .passenger-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .passenger-side {
    grid-template-columns: 1fr;
  }

  .passenger-card {
    padding: 20px 16px !important;
  }

  .passenger-grid {
    grid-template-columns: 1fr !important;
  }

  .passenger-actions--bottom {
    grid-template-columns: 1fr !important;
  }

  .passenger-apply {
    width: 100%;
  }
}
/* ===============================
   PREPAY MAIN ONLY FIX
================================ */

.prepay-left,
.prepay-summary,
.prepay-left-card--route,
.prepay-route--vertical {
  display: none !important;
}

.prepay-layout--main-only {
  display: block !important;
}

.prepay-layout--main-only .prepay-main {
  width: min(100%, 980px);
  margin: 0 auto;

  display: grid;
  gap: 16px;
}

/* FLIGHT CARD */

.prepay-flight-view {
  margin-bottom: 18px;
  padding: 18px 20px;

  border: 1px solid #d5e7f6;
  border-radius: 14px;
  background: #dff1fb;

  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  gap: 18px;
  align-items: center;
}

.prepay-flight-view__date span,
.prepay-flight-view__date small {
  display: block;
  color: #324e68;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.prepay-flight-view__date strong {
  display: block;
  margin: 3px 0;
  color: #172b40;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.prepay-flight-view__date b {
  display: block;
  color: #172b40;
  font-size: 13px;
  font-weight: 900;
}

.prepay-flight-view__date--right {
  text-align: right;
}

.prepay-flight-view__ship {
  text-align: center;
}

.prepay-flight-view__ship span {
  display: block;
  margin-bottom: 12px;
  color: #2f485f;
  font-size: 13px;
  font-weight: 900;
}

.prepay-flight-view__line {
  width: 100%;
  height: 2px;
  background: #0069c9;
  position: relative;
}

.prepay-flight-view__line::before,
.prepay-flight-view__line::after {
  content: "";
  position: absolute;
  top: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #0069c9;

  transform: translateY(-50%);
}

.prepay-flight-view__line::before {
  left: 0;
}

.prepay-flight-view__line::after {
  right: 0;
}

/* DETAILS */

.prepay-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.prepay-detail-box {
  padding: 14px;

  border: 1px solid #dce9f5;
  border-radius: 10px;
  background: #fbfdff;
}

.prepay-detail-box--full {
  grid-column: 1 / -1;
}

.prepay-detail-box span {
  display: block;
  margin-bottom: 6px;

  color: #55728f;
  font-size: 12px;
  font-weight: 800;
}

.prepay-detail-box strong {
  display: block;

  color: #003b73;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.prepay-passenger--full {
  grid-template-columns: 1fr auto !important;
}

.prepay-passenger-data {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 8px 14px;
}

.prepay-passenger-data p {
  margin: 0;
  color: #55728f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.prepay-passenger-data span {
  color: #55728f;
  font-weight: 800;
}

.prepay-passenger-data b {
  color: #003b73;
  font-weight: 900;
}

/* MOBILE */

@media (max-width: 700px) {
  .prepay-layout--main-only .prepay-main {
    width: 100%;
  }

  .prepay-flight-view {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .prepay-flight-view__date,
  .prepay-flight-view__date--right {
    text-align: center;
  }

  .prepay-flight-view__line {
    max-width: 180px;
    margin: 0 auto;
  }

  .prepay-flight-view__date strong {
    font-size: 26px;
  }

  .prepay-details-grid,
  .prepay-passenger-data {
    grid-template-columns: 1fr;
  }

  .prepay-passenger--full {
    grid-template-columns: 1fr !important;
  }
}

/* ===============================
   PREPAY BOTTOM PAYMENT STYLES FIX
================================ */

.prepay-total-card .prepay-payment-bottom {
  width: 100% !important;
  margin: 20px 0 18px !important;
  padding: 18px !important;

  border: 1px solid #d5e7f6 !important;
  border-radius: 16px !important;
  background: #f3f9ff !important;

  display: grid !important;
  gap: 14px !important;
}

/* TIMER */

.prepay-total-card .prepay-pay-timer {
  width: 100% !important;
  padding: 18px 16px !important;

  border: 1px solid #b7d8ef !important;
  border-radius: 14px !important;
  background: #dff1fb !important;

  text-align: center !important;
  box-shadow: 0 8px 22px rgba(0, 58, 115, 0.06) !important;
}

.prepay-total-card .prepay-pay-timer > span {
  display: block !important;
  margin: 0 0 12px !important;

  color: #0b75bd !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.prepay-total-card .prepay-pay-timer__numbers {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
}

.prepay-total-card .prepay-pay-timer__numbers strong {
  width: 62px !important;
  height: 52px !important;

  border-radius: 9px !important;
  background: #bdeeff !important;

  display: grid !important;
  place-items: center !important;

  color: #0b75bd !important;
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 900 !important;

  box-shadow: inset 0 0 0 1px rgba(11, 117, 189, 0.12) !important;
}

.prepay-total-card .prepay-pay-timer small {
  margin-top: 8px !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important;

  color: #0b75bd !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.prepay-total-card .prepay-pay-timer small span {
  display: block !important;
}

/* THANKS TEXT */

.prepay-total-card .prepay-thanks-box {
  width: 100% !important;
  padding: 16px !important;

  border: 1px solid #dce9f5 !important;
  border-radius: 14px !important;
  background: #fff !important;

  box-shadow: 0 8px 20px rgba(0, 58, 115, 0.04) !important;
}

.prepay-total-card .prepay-thanks-box p {
  margin: 0 0 9px !important;

  color: #173a63 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
}

.prepay-total-card .prepay-thanks-box p:last-child {
  margin-bottom: 0 !important;
}

/* CHECKBOX BLOCK */

.prepay-total-card .prepay-confirm-box {
  width: 100% !important;
  padding: 15px 16px !important;

  border: 1px solid #ffd0d2 !important;
  border-radius: 14px !important;
  background: #fff7f7 !important;

  display: grid !important;
  gap: 12px !important;
}

.prepay-total-card .prepay-confirm-check {
  width: 100% !important;
  margin: 0 !important;

  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: flex-start !important;

  color: #173a63 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;

  cursor: pointer !important;
}

.prepay-total-card .prepay-confirm-check input {
  width: 18px !important;
  height: 18px !important;
  margin: 1px 0 0 !important;

  accent-color: #0b75bd !important;
  flex: 0 0 auto !important;
}

.prepay-total-card .prepay-confirm-check span {
  display: block !important;
  min-width: 0 !important;
}

.prepay-total-card .prepay-confirm-check a {
  color: #0b75bd !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.prepay-total-card .prepay-confirm-check a:hover {
  color: #e61820 !important;
}

/* PAY BUTTON */

.prepay-total-card .prepay-pay {
  width: 100% !important;
  height: 54px !important;
  margin-top: 4px !important;

  border: 0 !important;
  border-radius: 11px !important;
  background: #e61820 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  color: #fff !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;

  cursor: pointer !important;
  box-shadow: 0 16px 30px rgba(230, 24, 32, 0.24) !important;
  transition: 0.22s ease !important;
}

.prepay-total-card .prepay-pay:hover {
  background: #2c4482 !important;
  transform: translateY(-1px) !important;
}

.prepay-total-card .prepay-pay:disabled {
  background: #aab8c5 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* SECURE */

.prepay-total-card .prepay-secure {
  margin-top: 14px !important;
  padding: 12px 14px !important;

  border-radius: 11px !important;
  background: #f3f9ff !important;

  display: grid !important;
  grid-template-columns: 24px 1fr !important;
  gap: 9px !important;
  align-items: center !important;
}

.prepay-total-card .prepay-secure img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  filter: brightness(0) saturate(100%) invert(33%) sepia(92%) saturate(1150%) hue-rotate(176deg) brightness(92%)
    contrast(96%) !important;
}

.prepay-total-card .prepay-secure p {
  margin: 0 !important;

  color: #55728f !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}

/* MOBILE */

@media (max-width: 640px) {
  .prepay-total-card .prepay-payment-bottom {
    padding: 14px !important;
  }

  .prepay-total-card .prepay-pay-timer__numbers strong {
    width: 54px !important;
    height: 46px !important;
    font-size: 25px !important;
  }

  .prepay-total-card .prepay-thanks-box p,
  .prepay-total-card .prepay-confirm-check {
    font-size: 11px !important;
  }
}

/* ===============================
   CABIN COUNTER STYLE FIX
   як на скріні
================================ */

.cabin-counter-row {
  margin-top: 14px !important;
  display: grid !important;
  justify-items: center !important;
  gap: 8px !important;
}

.cabin-counter-row p {
  margin: 0 !important;
  color: #173a63 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  text-align: center !important;
}

/* головний wrapper */
.cabin-counter {
  width: max-content !important;
  min-width: 250px !important;

  display: grid !important;
  grid-template-columns: 28px 1fr !important;
  align-items: center !important;
  gap: 16px !important;
}

/* іконка пасажира зліва */

/* приховуємо блок "Доступно" */
.cabin-counter div:nth-of-type(2) {
  display: none !important;
  border: none;
}

/* блок з мінусом, числом і плюсом */
.cabin-counter {
  position: relative;
}

/* кнопка мінус */
.cabin-counter button:first-child {
  grid-column: 2;
  grid-row: 1;

  justify-self: start !important;
  z-index: 2;
}

/* кнопка плюс */
.cabin-counter button:nth-child(2) {
  grid-column: 2;
  grid-row: 1;

  justify-self: end !important;
  z-index: 2;
}

/* центральне число */
.cabin-counter div:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;

  width: 174px !important;
  height: 44px !important;

  padding: 0 58px !important;

  border: 1px solid #d5e7f6 !important;
  border-radius: 10px !important;
  background: #fff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  box-shadow: 0 6px 16px rgba(0, 58, 115, 0.06) !important;
}

/* прибираємо текст "Вибрано" */
.cabin-counter div:nth-of-type(1) small {
  display: none !important;
}

/* саме число */
.cabin-counter div:nth-of-type(1) strong {
  color: #003b73 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

/* кнопки +/- */
/* .cabin-counter button {
  width: 36px !important;
  height: 36px !important;

  border: 0 !important;
  border-radius: 8px !important;
  background: #edf7ff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #0b75bd !important;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 900 !important;

  cursor: pointer !important;
  transition: 0.2s ease !important;
} */
.cabin-counter button {
  width: 36px !important;
  height: 36px !important;
  margin-left: -37px;
  margin-right: -10px;
  border: 0 !important;
  border-radius: 8px !important;
  background: #c9e3f8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #0b75bd !important;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  transition: 0.2s ease !important;
}
.cabin-counter button:hover {
  background: #0b75bd !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* якщо кнопка disabled */
.cabin-counter button:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* мобільна версія */
@media (max-width: 520px) {
  .cabin-counter {
    min-width: 230px !important;
    gap: 12px !important;
  }

  .cabin-counter div:nth-of-type(1) {
    width: 158px !important;
    height: 42px !important;
  }

  .cabin-counter button {
    width: 34px !important;
    height: 34px !important;
  }
}
.cabin-counter button:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
} /* ===============================
   CABIN COUNTER
   розстановка як на скріні
================================ */

.cabin-counter-row {
  margin-top: 14px !important;
  display: grid !important;
  justify-items: center !important;
  gap: 8px !important;
}

.cabin-counter-row p {
  margin: 0 !important;
  color: #173a63 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.cabin-counter {
  width: 100% !important;
  max-width: 220px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: 42px minmax(110px, 1fr) 42px !important;
  grid-template-rows: 52px auto !important;
  gap: 8px !important;
  align-items: center !important;
}

/* МІНУС */
.cabin-counter button:first-child {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin-left: -15px;
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #cbecff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #6ea5c8 !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 900 !important;

  cursor: pointer !important;
  transition: 0.2s ease !important;
}

/* ПЛЮС */
.cabin-counter button:nth-child(2) {
  grid-column: 3 !important;
  grid-row: 1 !important;

  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #cbecff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #0b75bd !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 900 !important;

  cursor: pointer !important;
  transition: 0.2s ease !important;
}

/* HOVER */
.cabin-counter button:hover:not(:disabled) {
  background: #cfe9f8 !important;
  transform: translateY(-1px);
}

/* DISABLED */
.cabin-counter button:disabled {
  opacity: 0.75 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  transform: none !important;
}

/* ВИБРАНО - центральний великий блок */
.cabin-counter div:nth-of-type(1) {
  grid-column: 2 !important;
  grid-row: 1 !important;

  width: 100% !important;
  height: 52px !important;
  padding: 0 14px !important;

  border: 1px solid #d5e7f6 !important;
  border-radius: 12px !important;
  background: #fff !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  box-shadow: 0 6px 16px rgba(0, 58, 115, 0.05) !important;
}

.cabin-counter div:nth-of-type(1) small {
  display: none !important;
}

.cabin-counter div:nth-of-type(1) strong {
  color: #003b73 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

/* ДОСТУПНО - нижній рядок */
.cabin-counter div:nth-of-type(2) {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;

  min-height: 18px !important;
}

.cabin-counter div:nth-of-type(2) small {
  color: #7b97b4 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.cabin-counter div:nth-of-type(2) strong {
  color: #0b75bd !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

@media (max-width: 520px) {
  .cabin-counter {
    max-width: 210px !important;
    grid-template-columns: 40px minmax(100px, 1fr) 40px !important;
  }

  .cabin-counter button:first-child,
  .cabin-counter button:nth-child(2) {
    width: 40px !important;
    height: 40px !important;
    font-size: 26px !important;
  }

  .cabin-counter div:nth-of-type(1) {
    height: 50px !important;
  }
} /* ===============================
   ROUTES DISPLAY LIKE CABIN PAGE
================================ */

.routes-result--booking {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;

  display: grid !important;
  gap: 12px !important;
}

.route-card--booking {
  width: 100% !important;
  min-height: 132px !important;
  padding: 16px 18px !important;

  border: 1px solid #b7d8ef !important;
  border-radius: 12px !important;
  background: #dff1fb !important;

  display: grid !important;
  grid-template-columns: 1fr 170px 1fr !important;
  gap: 18px !important;
  align-items: center !important;

  box-shadow: 0 12px 28px rgba(0, 58, 115, 0.1) !important;
}

/* LEFT / RIGHT DATE */

.route-card--booking .route-card__date span,
.route-card--booking .route-card__date small {
  display: block !important;

  color: #324e68 !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.route-card--booking .route-card__date strong {
  display: block !important;
  margin: 3px 0 !important;

  color: #003b73 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.route-card--booking .route-card__date p {
  margin: 3px 0 0 !important;

  color: #172b40 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.route-card--booking .route-card__date--right {
  text-align: right !important;
}

/* SHIP CENTER */

.route-card--booking .route-card__ship {
  text-align: center !important;
  min-width: 0 !important;
}

.route-card--booking .route-card__ship-icon {
  width: 52px !important;
  height: 32px !important;
  margin: 0 auto 3px !important;

  color: #2f485f !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.route-card--booking .route-card__ship-icon svg {
  width: 52px !important;
  height: auto !important;
}

.route-card--booking .route-card__ship > strong {
  display: block !important;
  margin: 0 0 8px !important;

  color: #2f485f !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

/* LINE */

.route-card--booking .route-card__line {
  width: 100% !important;
  max-width: 145px !important;
  height: 2px !important;
  margin: 0 auto 12px !important;

  background: #0069c9 !important;
  position: relative !important;
}

.route-card--booking .route-card__line::before,
.route-card--booking .route-card__line::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;

  width: 7px !important;
  height: 7px !important;

  border-radius: 50% !important;
  background: #0069c9 !important;

  transform: translateY(-50%) !important;
}

.route-card--booking .route-card__line::before {
  left: 0 !important;
}

.route-card--booking .route-card__line::after {
  right: 0 !important;
}

/* BUTTONS */

.route-card--booking .route-card__buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.route-card--booking .route-btn {
  width: 100% !important;
  height: 34px !important;

  border-radius: 6px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;

  cursor: pointer !important;
  transition: 0.2s ease !important;
}

.route-card--booking .route-btn--blue {
  border: 1px solid #0069c9 !important;
  background: #0069c9 !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(0, 105, 201, 0.18) !important;
}

.route-card--booking .route-btn--blue:hover {
  background: #2c4482 !important;
  border-color: #2c4482 !important;
  transform: translateY(-1px);
}

.route-card--booking .route-btn--outline {
  border: 1px solid #8cb9d8 !important;
  background: #fff !important;
  color: #0b4d7a !important;
}

.route-card--booking .route-btn--outline:hover {
  border-color: #0069c9 !important;
  color: #0069c9 !important;
  background: #edf7ff !important;
  transform: translateY(-1px);
}

/* MOBILE */

@media (max-width: 760px) {
  .route-card--booking {
    min-height: auto !important;
    padding: 16px !important;

    grid-template-columns: 1fr !important;
    gap: 14px !important;

    text-align: center !important;
  }

  .route-card--booking .route-card__date,
  .route-card--booking .route-card__date--right {
    text-align: center !important;
  }

  .route-card--booking .route-card__date strong {
    font-size: 21px !important;
  }

  .route-card--booking .route-card__line {
    max-width: 160px !important;
  }

  .route-card--booking .route-card__buttons {
    max-width: 360px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 460px) {
  .route-card--booking .route-card__buttons {
    grid-template-columns: 1fr !important;
  }

  .route-card--booking .route-btn {
    height: 38px !important;
  }
}

@media (max-width: 375px) {
  .route-card__buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===============================
   REGISTER FORM FIELDS FIX
================================ */

.register-field textarea {
  width: 100%;
  min-height: 98px;
  padding: 14px 15px;

  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background: #fff;

  color: #002f64;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;

  resize: vertical;
  outline: none;

  transition: 0.2s ease;
}

.register-field textarea::placeholder {
  color: #8da4bb;
  font-weight: 600;
}

.register-field textarea:focus {
  border-color: #0069c9;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.12);
}

.register-field select {
  width: 100%;
  height: 50px;
  padding: 0 42px 0 15px;

  border: 1px solid #cfe1f2;
  border-radius: 10px;
  background-color: #fff;

  color: #002f64;
  font-size: 14px;
  font-weight: 700;

  outline: none;
  cursor: pointer;

  appearance: none;

  background-image: linear-gradient(45deg, transparent 50%, #0b75bd 50%),
    linear-gradient(135deg, #0b75bd 50%, transparent 50%);
  background-position: calc(100% - 19px) 22px, calc(100% - 13px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;

  transition: 0.2s ease;
}

.register-field select:focus {
  border-color: #0069c9;
  background-color: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, 0.12);
}

.register-field input.is-error,
.register-field select.is-error,
.register-field textarea.is-error {
  border-color: #e61820 !important;
  background: #fff7f7 !important;
  box-shadow: 0 0 0 4px rgba(230, 24, 32, 0.1) !important;
}

.register-submit {
  margin-top: 4px;
}

.register-checkbox {
  margin-top: 4px;
} /* ===============================
   PASSENGER DESCRIPTION TOP FIX
   опис каюти / пасажира зверху
================================ */

.passenger-layout--edit {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  align-items: start !important;
}

/* блок описів зверху */
.passenger-layout--edit .passenger-side {
  order: 1 !important;

  width: 100% !important;

  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

/* форма нижче */
.passenger-layout--edit .passenger-main {
  order: 2 !important;
  width: 100% !important;
  min-width: 0 !important;

  display: grid !important;
  gap: 16px !important;
}

/* самі картки описів */
.passenger-side-card {
  padding: 20px 18px !important;

  border: 1px solid #b7d8ef !important;
  border-radius: 14px !important;
  background: #dff1fb !important;

  box-shadow: 0 14px 32px rgba(0, 58, 115, 0.08) !important;
}

.passenger-side-card h2 {
  margin: 0 0 14px !important;

  color: #003b73 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.passenger-cabin-desc,
.passenger-desc {
  min-height: 112px !important;
  padding: 15px 16px !important;

  border: 1px solid #9fcde8 !important;
  border-radius: 10px !important;
  background: #eef9ff !important;

  color: #173a63 !important;
}

.passenger-cabin-desc span,
.passenger-desc span {
  display: block !important;
  margin-bottom: 5px !important;

  color: #003b73 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.passenger-cabin-desc h3 {
  margin: 0 0 7px !important;

  color: #003b73 !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.passenger-cabin-desc p,
.passenger-desc p {
  margin: 4px 0 !important;

  color: #173a63 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

.passenger-desc b {
  color: #e61820 !important;
  font-weight: 900 !important;
}

/* щоб форма була красиво по центру */
.passenger-card {
  width: 100% !important;
}

/* адаптив */
@media (max-width: 760px) {
  .passenger-layout--edit .passenger-side {
    grid-template-columns: 1fr !important;
  }

  .passenger-side-card {
    padding: 18px 16px !important;
  }

  .passenger-side-card h2 {
    font-size: 19px !important;
  }
}
/* ===============================
   PASSENGER INFO TOP FIX
   як показано стрілками
================================ */

.passenger-layout--edit {
  display: block !important;
}

.passenger-layout--edit .passenger-side {
  display: none !important;
}

.passenger-layout--edit .passenger-main {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;

  display: grid !important;
  gap: 16px !important;
}

/* блоки над формою */
.passenger-info-top {
  width: 100% !important;

  display: grid !important;
  /* grid-template-columns: 1fr 1fr !important; */
  gap: 14px !important;
  align-items: stretch !important;
}

.passenger-info-note {
  padding: 14px 16px !important;

  border: 1px solid #d7a0a0 !important;
  border-radius: 4px !important;
  background: #fff !important;

  box-shadow: 0 8px 18px rgba(0, 58, 115, 0.08) !important;

  color: #173a63 !important;
}

.passenger-info-note span {
  display: block !important;
  margin-bottom: 4px !important;

  color: #003b73 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.passenger-info-note strong {
  display: block !important;
  margin-bottom: 4px !important;

  color: #003b73 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.passenger-info-note p {
  margin: 2px 0 !important;

  color: #173a63 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.passenger-info-note b {
  color: #e61820 !important;
  font-weight: 900 !important;
}

/* щоб вони стояли прямо над білою формою */
.passenger-card:first-of-type {
  margin-top: 0 !important;
}

/* мобільна версія */
@media (max-width: 760px) {
  .passenger-layout--edit .passenger-main {
    max-width: 100% !important;
  }

  .passenger-info-top {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .passenger-info-note {
    padding: 13px 14px !important;
  }
}

.errors {
  color: #d32f2f !important;
  margin-left: 2px;
}
