@charset "UTF-8";
@font-face {
  font-family: "TripNow Sylfaen";
  src: url("../fonts/bpg-glaho-sylfaen.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "TripNow 3D Unicode";
  src: url("../fonts/3d-unicode.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Twemoji Country Flags";
  src: url("../fonts/twemoji-country-flags.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --navy: #061d60;
  --blue: #0b4cac;
  --copper: #b75a17;
  --text: #07194f;
  --muted: #63708e;
  --border: #e1e5ed;
  --white: #fff;
  --shadow: 0 18px 50px rgba(5, 29, 89, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html[lang=ka] body, html[lang=ka] button, html[lang=ka] input, html[lang=ka] select, html[lang=ka] textarea {
  font-family: "TripNow Sylfaen", Sylfaen, "DM Sans", Arial, sans-serif;
}

html[lang=ka] h1, html[lang=ka] h2, html[lang=ka] h3 {
  font-family: "TripNow 3D Unicode", "TripNow Sylfaen", Sylfaen, sans-serif;
}

html[lang=ka] [lang=en] {
  font-family: "DM Sans", Arial, sans-serif !important;
}

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

button, input, select {
  font: inherit;
}

button {
  color: inherit;
}

.page-shell {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.55) 24%, rgba(255, 255, 255, 0.04) 60%, rgba(255, 255, 255, 0.76) 100%), url("../images/tripnow-hero.png") center 58%/cover no-repeat;
}

.navbar {
  position: relative;
  z-index: 30;
  height: 94px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: 86px;
  height: 78px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(21px, 2.7vw, 42px);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 14px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--copper);
  transition: right 0.2s;
}

.nav-links a:hover::after, .nav-links a.active::after {
  right: 0;
}

.nav-links a.active {
  color: var(--copper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 13px;
  font-weight: 700;
}

.phone {
  white-space: nowrap;
}

.phone span {
  margin-right: 5px;
  color: var(--copper);
  font-size: 18px;
}

.plan-trip {
  padding: 12px 19px;
  color: #fff;
  background: var(--copper);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(183, 90, 23, 0.22);
  transition: transform 0.2s;
}

.plan-trip:hover {
  transform: translateY(-2px);
}

.language-picker {
  position: relative;
}

.language-trigger {
  min-height: 38px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(6, 29, 96, 0.14);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.language-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(6, 29, 96, 0.3);
  background: rgba(6, 29, 96, 0.055);
}

.language-flag {
  width: 23px;
  height: 19px;
  flex: 0 0 23px;
  display: inline-grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Twemoji Country Flags", "Segoe UI Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
  box-shadow: none;
}

.language-flag--ru {
  color: inherit;
  background: transparent;
  font-size: 18px;
}

.language-code {
  min-width: 20px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
}

.language-chevron {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.language-trigger[aria-expanded=true] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + 8px);
  right: 0;
  width: 124px;
  padding: 6px;
  background: rgba(6, 29, 96, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(5, 29, 89, 0.2);
  backdrop-filter: blur(12px);
}

.language-menu button {
  width: 100%;
  min-height: 42px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.language-option-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.language-option-copy b {
  font-size: 10px;
  font-weight: 800;
}

.language-option-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.language-menu button[data-language=ge] .language-option-copy small {
  font-family: "TripNow Sylfaen", Sylfaen, sans-serif;
}

.language-menu button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
}

.hero-copy {
  padding-top: 35px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 3px;
  color: rgba(6, 29, 96, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--copper);
  font: 400 clamp(72px, 8vw, 112px)/1 "Nothing You Could Do", cursive;
  transform: rotate(-4deg);
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 225px;
  height: 8px;
  margin: -11px auto 7px;
  border-top: 3px solid currentColor;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-copy > p:last-child {
  margin: 0;
  font-size: 18px;
}

.search-panel {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 19%;
  min-height: 86px;
  padding: 12px 14px 12px 22px;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr auto;
  align-items: stretch;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
}

.search-control {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 27px;
  border-right: 1px solid var(--border);
}

.search-control:first-child {
  padding-left: 0;
}

.control-icon {
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  color: var(--navy);
}

.control-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-content {
  min-width: 0;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.control-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.search-control select {
  width: 100%;
  padding: 0 18px 0 0;
  border: 0;
  outline: 0;
  appearance: none;
  color: var(--text);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.destination-control .ts-wrapper {
  width: 100%;
}

.destination-control .ts-control {
  min-height: 24px;
  padding: 1px 22px 1px 0 !important;
  border: 0 !important;
  color: var(--text);
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 700;
  cursor: text;
}

.destination-control .ts-control input {
  min-width: 70px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.destination-control .ts-control input::placeholder {
  color: #909bb2;
}

.destination-control .ts-wrapper.single .ts-control::after {
  right: 3px;
  border-color: var(--text) transparent transparent;
}

.destination-control .ts-dropdown {
  top: calc(100% + 25px);
  left: -43px;
  width: calc(100% + 43px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  box-shadow: var(--shadow);
  font-size: 12px;
}

.destination-control .ts-dropdown-content {
  max-height: 390px;
  padding: 8px 0;
}

.destination-control .ts-dropdown .option {
  padding: 8px 18px;
}

.destination-control .ts-dropdown .active {
  color: var(--navy);
  background: #edf3fc;
}

.destination-option {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.destination-option-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.destination-option-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.destination-option-hotel .destination-option-icon {
  color: var(--copper);
}

.destination-selected-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.destination-selected-item > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.destination-control .optgroup + .optgroup {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid var(--border);
}

.destination-control .optgroup-header, .destination-group-title {
  padding: 7px 18px 6px;
  color: #8c96ab;
  background: #fff;
  font-size: 10px;
  font-weight: 600;
}

.destination-control .no-results {
  padding: 14px;
  color: var(--muted);
}

.date-summary, .travelers-summary {
  max-width: 100%;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-submit {
  align-self: center;
  height: 52px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.search-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.search-submit svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.popover {
  position: absolute;
  z-index: 40;
  top: calc(100% + 25px);
  width: 330px;
  padding: 17px;
  color: var(--text);
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.popover[hidden], .language-menu[hidden] {
  display: none;
}

.dates-popover {
  left: 12px;
  width: 620px;
  padding: 20px;
}

.calendar-selection {
  padding: 0 4px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.calendar-selection > div {
  padding: 9px 12px;
  background: #f6f8fc;
  border-radius: 9px;
}

.calendar-selection span:not(.calendar-arrow) {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.calendar-selection strong {
  font-size: 13px;
}

.calendar-arrow {
  color: #9aa6bf;
  font-size: 18px;
}

.calendar-clear {
  padding: 7px 2px;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.calendar-navigation {
  position: relative;
  padding-top: 16px;
}

.calendar-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.calendar-month h3 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 14px;
}

.calendar-weekdays, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-weekdays span {
  padding: 5px 0 8px;
  color: #929db5;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-days button, .calendar-blank {
  aspect-ratio: 1;
}

.calendar-days button {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.calendar-days button:hover:not(:disabled) {
  background: #e9f0fc;
}

.calendar-days button:disabled {
  color: #c9ceda;
  cursor: default;
}

.calendar-days button.in-range {
  border-radius: 0;
  background: #e9f0fc;
}

.calendar-days button.range-start, .calendar-days button.range-end {
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 700;
}

.calendar-days button.today:not(.range-start):not(.range-end)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 3px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--copper);
  border-radius: 50%;
}

.calendar-nav {
  position: absolute;
  z-index: 3;
  top: 14px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.calendar-nav:hover:not(:disabled) {
  border-color: #a9b6cf;
  background: #f6f8fc;
}

.calendar-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.calendar-prev {
  left: 0;
}

.calendar-next {
  right: 0;
}

.dates-popover .date-done {
  margin-top: 16px;
}

.date-error {
  margin: 12px 0 0;
  padding: 9px 11px;
  border: 1px solid #efb8b8;
  border-radius: 9px;
  color: #a52020;
  background: #fff4f4;
  font-size: 12px;
  font-weight: 700;
}

.dates-control.is-invalid .date-summary {
  color: #b52626;
}

.travelers-popover {
  right: 8px;
  width: 370px;
  max-height: min(520px, 100vh - 150px);
  overflow-y: auto;
}

.room-block + .room-block {
  margin-top: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.room-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.room-heading > strong {
  font-size: 14px;
}

.remove-room {
  padding: 3px 0;
  border: 0;
  color: #b14747;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.traveler-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}

.traveler-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.counter {
  display: flex;
  align-items: center;
  gap: 11px;
}

.counter button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.child-ages {
  margin: 8px 0 4px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: #f6f8fc;
  border-radius: 9px;
}

.child-ages label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.child-ages select {
  width: 53px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: #fff;
}

.add-room {
  width: 100%;
  margin: 13px 0 7px;
  padding: 10px;
  border: 1px dashed #9aa9c8;
  border-radius: 8px;
  color: var(--blue);
  background: #f8faff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.add-room span:first-child {
  margin-right: 5px;
  font-size: 16px;
}

.popover-done {
  grid-column: 1/-1;
  width: 100%;
  min-height: 38px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

main {
  padding: 0 0 70px;
}

.destinations {
  padding-top: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.section-title > span {
  width: 3px;
  height: 17px;
  background: var(--copper);
  border-radius: 2px;
}

.section-title h2, .offers-header h2 {
  margin: 0;
  font-size: 17px;
}

.destination-pills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 23px;
}

.destination-pills button {
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.destination-pills button:hover, .destination-pills button.selected {
  transform: translateY(-2px);
  border-color: #aab6d1;
  box-shadow: 0 8px 20px rgba(6, 29, 96, 0.08);
}

.destination-pills button > span:first-child {
  font-size: 24px;
}

.destination-pills button > .country-flag {
  font-family: "Twemoji Country Flags", "Segoe UI Emoji", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.category-bar {
  min-height: 75px;
  margin-top: 22px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  background: linear-gradient(100deg, #06409c, #0a53b7);
  border-radius: 16px;
}

.category-intro {
  width: 190px;
  flex: 0 0 auto;
  padding-left: 15px;
  font: italic 18px/1.4 Georgia, serif;
}

.paper-plane {
  float: right;
  font-size: 31px;
  transform: rotate(-12deg);
}

.category-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 11px;
}

.category-items a {
  min-height: 50px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--navy);
  background: #fff;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s;
}

.category-items a:hover {
  transform: translateY(-2px);
}

.category-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
}

.category-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offers {
  margin-top: 18px;
}

.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
}

.offers-header a {
  font-size: 12px;
  font-weight: 700;
}

.offers-header a span:last-child {
  margin-left: 7px;
  font-size: 20px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.offer-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 13px 30px rgba(6, 29, 96, 0.11);
}

.offer-photo {
  position: relative;
  height: 105px;
  background-image: url("../images/tripnow-hero.png");
  background-size: 460%;
}

.card-1 {
  background-position: 13% 72%;
}

.card-2 {
  background-position: 38% 67%;
}

.card-3 {
  background-position: 55% 58%;
  filter: saturate(0.72);
}

.card-4 {
  background-position: 72% 78%;
  filter: sepia(0.23) saturate(1.2);
}

.card-5 {
  background-position: 91% 64%;
}

.discount {
  position: absolute;
  top: 7px;
  left: 8px;
  padding: 4px 8px;
  color: #fff;
  background: var(--copper);
  border-radius: 999px;
  font-size: 12px;
}

.favorite {
  position: absolute;
  top: 5px;
  right: 8px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.favorite.active {
  color: #f15d66;
}

.offer-content {
  padding: 10px 12px 12px;
}

.offer-content h3 {
  min-height: 17px;
  margin: 0 0 8px;
  font-size: 13px;
}

.offer-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
}

.offer-meta > div {
  display: grid;
  gap: 5px;
  color: #455276;
  font-size: 9px;
  white-space: nowrap;
}

.offer-meta > strong {
  font-size: 18px;
  line-height: 1;
  text-align: right;
}

.offer-meta small {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 500;
}

footer {
  padding: 25px 0;
  color: #fff;
  background: var(--navy);
}

footer .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-brand {
  font: 24px Georgia, serif;
}

@media (max-width: 1120px) {
  .navbar {
    grid-template-columns: 120px 1fr auto;
    gap: 14px;
  }
  .nav-links {
    gap: 18px;
  }
  .phone {
    display: none;
  }
  .category-intro {
    display: none;
  }
}
/* Keep the 19% desktop composition, but protect short laptop screens. */
@media (min-width: 901px) and (max-height: 720px) {
  .hero {
    min-height: 680px;
  }
  .hero-copy {
    padding-top: 8px;
  }
  .hero-copy h1 {
    font-size: clamp(70px, 8vw, 92px);
  }
  .hero-copy > p:last-child {
    font-size: 16px;
  }
  .search-panel {
    bottom: clamp(42px, 8vh, 64px);
  }
}
@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 30px, 720px);
  }
  .hero {
    min-height: max(680px, 100svh);
    background-position: 62% 58%;
  }
  .navbar {
    height: 82px;
    grid-template-columns: 1fr auto auto;
  }
  .brand-logo {
    width: 70px;
    height: 64px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
  }
  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
  }
  .nav-links {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-actions {
    gap: 10px;
  }
  .plan-trip {
    padding: 10px 14px;
  }
  .hero-copy {
    padding-top: clamp(24px, 6vh, 45px);
  }
  .hero-copy h1 {
    font-size: clamp(70px, 12vw, 92px);
  }
  .search-panel {
    bottom: clamp(22px, 4vh, 42px);
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }
  .search-control {
    min-height: 66px;
    border-bottom: 1px solid var(--border);
  }
  .dates-control {
    border-right: 0;
  }
  .travelers-control {
    border-bottom: 0;
  }
  .search-submit {
    margin: 8px 5px 8px 18px;
  }
  .dates-popover {
    top: auto;
    right: 0;
    bottom: calc(100% + 12px);
    left: auto;
    width: min(620px, 200% - 12px);
  }
  .travelers-popover {
    top: auto;
    bottom: calc(100% + 12px);
  }
  .destination-pills {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .category-items {
    grid-template-columns: repeat(4, 1fr);
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-photo {
    height: 145px;
  }
}
@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 24px);
  }
  .hero {
    min-height: max(760px, 100svh);
    background-position: 68% center;
  }
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-actions {
    display: none;
  }
  .hero-copy {
    padding-top: clamp(22px, 5vh, 40px);
  }
  .hero-kicker {
    display: none;
  }
  .hero-copy h1 {
    font-size: 68px;
  }
  .hero-copy > p:last-child {
    font-size: 15px;
  }
  .search-panel {
    bottom: clamp(12px, 2.5vh, 22px);
    grid-template-columns: 1fr;
  }
  .search-control {
    min-height: 61px;
    padding: 0 10px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .search-control:first-child {
    padding-left: 10px;
  }
  .destination-control .ts-dropdown {
    top: calc(100% + 10px);
    left: -43px;
    width: calc(100% + 43px);
  }
  .destination-control .ts-dropdown-content {
    max-height: 250px;
  }
  .search-submit {
    width: 100%;
    margin: 11px 0 0;
  }
  .popover {
    top: auto;
    right: auto;
    bottom: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: min(520px, 100svh - 32px);
    overflow-y: auto;
  }
  .dates-popover {
    width: 100%;
    padding: 15px;
  }
  .calendar-selection {
    grid-template-columns: 1fr auto 1fr;
    gap: 7px;
  }
  .calendar-selection > div {
    padding: 8px;
  }
  .calendar-clear {
    grid-column: 1/-1;
    justify-self: end;
    margin: -5px 2px -8px;
  }
  .calendar-months {
    grid-template-columns: 1fr;
  }
  .second-month {
    display: none;
  }
  .destination-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .category-bar {
    overflow-x: auto;
  }
  .category-items {
    display: flex;
    width: max-content;
  }
  .category-items a {
    width: 125px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-photo {
    height: 180px;
    background-size: 300%;
  }
}
/* Landscape phones and very short tablets need scrollable vertical space. */
@media (max-width: 900px) and (max-height: 600px) {
  .hero {
    min-height: 720px;
  }
  .hero-copy {
    padding-top: 12px;
  }
  .search-panel {
    bottom: 22px;
  }
}
/* About page */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 0;
}

.site-header .navbar {
  height: 92px;
}

.about-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.nav-phone-icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -4px;
}

.about-page {
  padding: 0;
  overflow: hidden;
}

.about-intro {
  position: relative;
  min-height: 652px;
  padding: 136px 0 44px;
  background: linear-gradient(90deg, rgba(255, 250, 246, 0.9) 0%, rgba(255, 250, 246, 0.76) 36%, rgba(255, 250, 246, 0.34) 100%), url("../images/about/about-hero.png") center center/cover no-repeat;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.about-eyebrow {
  margin: 0 0 7px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1;
}

.about-title-line {
  width: 58px;
  height: 2px;
  margin: 17px 0 18px;
  display: block;
  background: var(--copper);
}

.about-lead {
  max-width: 430px;
  margin: 0;
  color: #23335e;
  font-size: 16px;
  line-height: 1.65;
}

.about-lead strong {
  color: var(--blue);
}

.about-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-stats article {
  min-height: 82px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 29, 96, 0.09);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(6, 29, 96, 0.06);
}

.stat-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-stats strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}

.about-stats small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.world-card {
  position: relative;
  min-height: 445px;
  padding: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 29, 96, 0.1);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(6, 29, 96, 0.12);
}

.world-map-image {
  width: 100%;
  height: 100%;
  max-height: 425px;
  display: block;
  object-fit: contain;
  border-radius: 17px;
}

.agents-section {
  padding-top: 34px;
  padding-bottom: 64px;
}

.agents-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.agents-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper));
}

.agents-heading span:last-child {
  background: linear-gradient(90deg, var(--copper), transparent);
}

.agents-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
}

.agents-subtitle {
  margin: 8px 0 25px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.agent-card {
  min-width: 0;
  min-height: 270px;
  padding: 10px;
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 12px 32px rgba(6, 29, 96, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 36px rgba(6, 29, 96, 0.11);
}

.agent-card > img {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
  border-radius: 11px;
}

.agent-content {
  min-width: 0;
  padding: 9px 8px 7px 0;
}

.agent-content h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.agent-role {
  min-height: 38px;
  margin: 7px 0 12px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.agent-content dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.agent-content dl > div {
  padding-top: 10px;
  border-top: 1px solid #edf0f5;
}

.agent-content dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.detail-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agent-content dd {
  margin: 4px 0 0 18px;
  color: #465372;
  font-size: 10px;
  line-height: 1.35;
}

.about-contact {
  padding: 62px 0;
  color: #fff;
  background: linear-gradient(115deg, #061d60 0%, #0b3e92 58%, #0b4cac 100%);
}

.about-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
}

.about-contact .about-eyebrow {
  color: #f5a35f;
}

.about-contact-copy h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-contact-copy > p:last-of-type {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.about-contact-details {
  margin-top: 29px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-contact-details > a, .about-contact-details > span {
  min-width: 0;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.about-contact-details svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: #f5a35f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-contact-details small, .about-contact-details strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-contact-details small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.about-contact-details strong {
  margin-top: 3px;
  font-size: 10px;
}

.about-contact-card {
  position: relative;
  min-height: 285px;
  padding: 34px;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
}

.about-contact-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  border: 34px solid #edf4ff;
  border-radius: 50%;
}

.about-contact-plane {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 26px;
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #d7e5fb;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(7deg);
}

.about-contact-card > span {
  position: relative;
  z-index: 1;
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-contact-card h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 20px 0 12px;
  font-size: 25px;
  line-height: 1.22;
}

.about-contact-card p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.about-contact-card > a {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 30px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--copper);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(183, 90, 23, 0.22);
}

.about-contact-card > a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1050px) {
  .about-layout {
    grid-template-columns: minmax(290px, 0.8fr) minmax(430px, 1.2fr);
    gap: 28px;
  }
  .world-card {
    min-height: 430px;
  }
  .agents-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }
  .agent-card {
    grid-template-columns: 210px 1fr;
    min-height: 230px;
  }
  .agent-card > img {
    min-height: 210px;
  }
  .about-contact-inner {
    grid-template-columns: 1fr 360px;
    gap: 35px;
  }
  .about-contact-details {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .site-header .navbar {
    height: 82px;
  }
  .about-intro {
    padding: 116px 0 34px;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-story {
    text-align: center;
  }
  .about-title-line {
    margin-inline: auto;
  }
  .about-lead {
    margin-inline: auto;
  }
  .world-card {
    min-height: 430px;
  }
  .about-contact-inner {
    grid-template-columns: 1fr;
  }
  .about-contact-copy {
    text-align: center;
  }
  .about-contact-copy h2, .about-contact-copy > p:last-of-type {
    margin-inline: auto;
  }
  .about-contact-details {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .about-contact-card {
    width: min(100%, 500px);
    margin-inline: auto;
  }
}
@media (max-width: 520px) {
  .about-story h1 {
    font-size: 46px;
  }
  .about-lead {
    font-size: 14px;
  }
  .about-stats {
    gap: 8px;
  }
  .about-stats article {
    min-height: 76px;
    padding: 10px;
    gap: 8px;
  }
  .stat-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .about-stats strong {
    font-size: 18px;
  }
  .world-card {
    min-height: 410px;
  }
  .agents-heading {
    gap: 10px;
  }
  .agents-heading h2 {
    font-size: 21px;
    white-space: nowrap;
  }
  .agent-card {
    grid-template-columns: 1fr;
  }
  .agent-card > img {
    height: 230px;
    min-height: 0;
  }
  .agent-content {
    padding: 5px 8px 10px;
  }
  .about-contact {
    padding: 45px 0;
  }
  .about-contact-details {
    grid-template-columns: 1fr;
  }
  .about-contact-card {
    min-height: 300px;
    padding: 28px;
  }
  .about-contact-card > a {
    left: 28px;
    bottom: 26px;
  }
}
/* Visa services page */
.visa-page {
  overflow: hidden;
  background: #fff;
}

.visa-hero {
  position: relative;
  min-height: 422px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.48) 42%, rgba(255, 255, 255, 0.06) 100%), url("../images/visa/visa-hero.png") center 56%/cover no-repeat;
}

.visa-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.28));
  pointer-events: none;
}

.visa-hero-inner {
  position: relative;
  height: 422px;
}

.visa-hero-copy {
  position: relative;
  z-index: 3;
  width: min(590px, 58%);
  padding: 134px 0 0 clamp(58px, 9vw, 120px);
}

.visa-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font: 700 clamp(54px, 5.5vw, 76px)/1 Georgia, serif;
  letter-spacing: -0.035em;
}

.visa-script {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 8px 0 0;
  color: var(--copper);
  font: 400 clamp(24px, 2.5vw, 34px)/1.2 "Nothing You Could Do", cursive;
}

.visa-script::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 105px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-3deg);
}

.visa-hero-note {
  margin: 23px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.visa-passport {
  position: absolute;
  z-index: 4;
  right: clamp(70px, 10vw, 120px);
  bottom: -18px;
  width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(-10px 18px 17px rgba(28, 9, 18, 0.25));
  pointer-events: none;
}

.visa-services {
  padding-top: 18px;
  padding-bottom: 27px;
}

.visa-services-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.visa-services-head h2, .visa-how h2, .visa-more-head h2 {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.visa-services-head h2::before, .visa-how h2::before, .visa-more-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 3px;
  height: 28px;
  background: var(--copper);
  border-radius: 2px;
}

.visa-tabs {
  display: flex;
  align-items: center;
  gap: 9px;
}

.visa-tab {
  padding: 10px 25px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.visa-tab:hover {
  transform: translateY(-1px);
}

.visa-tab.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(11, 76, 172, 0.18);
}

.visa-panel {
  padding-top: 9px;
}

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

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

.visa-card {
  min-width: 0;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
  border: 1px solid #dce1ea;
  border-radius: 13px;
  box-shadow: 0 7px 22px rgba(6, 29, 96, 0.055);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.visa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6, 29, 96, 0.12);
}

.visa-card-photo {
  position: relative;
  display: block;
  height: 125px;
  background-image: url("../images/visa/visa-destinations.png");
  background-repeat: no-repeat;
  background-size: 500% 300%;
}

.visa-card-photo > img:first-child {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visa-flag {
  position: absolute;
  left: 50%;
  bottom: -18px;
  min-width: 0;
  height: auto;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: initial;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: "Twemoji Country Flags", "Segoe UI Emoji", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.visa-card h3 {
  margin: 28px 8px 4px;
  font-size: 15px;
  line-height: 1.25;
}

.visa-card-title {
  display: block;
  margin: 28px 8px 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.visa-card strong {
  display: block;
  margin: 0 0 13px;
  color: #9c3d12;
  font-size: 15px;
}

.visa-photo--1 {
  background-position: 0 0;
}

.visa-photo--2 {
  background-position: 25% 0;
}

.visa-photo--3 {
  background-position: 50% 0;
}

.visa-photo--4 {
  background-position: 75% 0;
}

.visa-photo--5 {
  background-position: 100% 0;
}

.visa-photo--6 {
  background-position: 0 50%;
}

.visa-photo--7 {
  background-position: 25% 50%;
}

.visa-photo--8 {
  background-position: 50% 50%;
}

.visa-photo--9 {
  background-position: 75% 50%;
}

.visa-photo--10 {
  background-position: 100% 50%;
}

.visa-photo--11 {
  background-position: 0 100%;
}

.visa-photo--12 {
  background-position: 25% 100%;
}

.visa-photo--13 {
  background-position: 50% 100%;
}

.visa-photo--14 {
  background-position: 75% 100%;
}

.visa-photo--15 {
  background-position: 100% 100%;
}

.visa-how {
  padding: 21px 0 20px;
}

.visa-how h2 {
  font-size: 18px;
}

.visa-how h2::before {
  height: 23px;
}

.visa-steps {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.visa-step {
  min-height: 56px;
  padding: 5px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy);
  border-right: 1px dashed #bdc5d6;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.visa-step:last-child {
  border-right: 0;
}

.visa-step svg {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visa-more-head {
  margin: 4px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.visa-more-head h2 {
  font: 700 25px Georgia, serif;
}

.visa-more-head p {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
}

.visa-card-grid--more {
  row-gap: 17px;
}

.visa-card-grid--foreign {
  margin-top: 2px;
  row-gap: 17px;
}

.visa-how--foreign {
  margin-top: 20px;
}

.visa-contact {
  position: relative;
  min-height: 82px;
  margin-bottom: 18px;
  padding: 13px clamp(175px, 20vw, 255px) 13px clamp(235px, 23vw, 290px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  background: linear-gradient(90deg, #edf4ff, #e6efff);
  border-radius: 18px;
}

.visa-contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  text-align: center;
}

.visa-contact p {
  margin: 5px 0 0;
  color: #445276;
  font-size: 12px;
  text-align: center;
}

.visa-contact > a {
  position: relative;
  z-index: 2;
  padding: 12px 25px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 7px 20px rgba(11, 76, 172, 0.18);
}

.visa-luggage {
  position: absolute;
  left: 14px;
  bottom: 5px;
  font-size: 42px;
  letter-spacing: -17px;
  transform: rotate(-2deg);
}

.visa-route {
  position: absolute;
  right: 23px;
  bottom: 8px;
  color: #74a5df;
  font-size: 19px;
  letter-spacing: 4px;
}

.visa-footer {
  padding: 0;
  color: var(--navy);
  background: #fff;
  border-top: 1px solid #e8ebf1;
}

.visa-footer .visa-footer-grid {
  padding-top: 22px;
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.95fr 1fr;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.visa-footer-grid > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.visa-footer-grid h3 {
  margin: 0 0 7px;
  font-size: 12px;
}

.visa-footer-grid a, .visa-footer-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #415078;
  font-size: 10px;
}

.visa-footer-grid svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visa-footer-grid > .visa-footer-brand {
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.visa-footer-brand .brand-logo {
  width: 104px;
  height: 92px;
}

.visa-footer-brand p {
  max-width: 150px;
  margin: 0;
  color: var(--copper);
  font: 17px/1.35 "Nothing You Could Do", cursive;
}

.visa-footer .visa-footer-bottom {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #63708e;
  border-top: 1px solid #edf0f4;
  font-size: 9px;
}

.visa-footer-bottom span {
  display: flex;
  gap: 11px;
}

@media (max-width: 1080px) {
  .visa-hero-copy {
    padding-left: 25px;
  }
  .visa-passport {
    top: auto;
    right: 35px;
    bottom: -16px;
    width: 340px;
  }
  .visa-card-grid {
    gap: 11px;
  }
  .visa-card-photo {
    height: 112px;
  }
  .visa-contact {
    padding-left: 190px;
    padding-right: 190px;
  }
  .visa-route {
    display: none;
  }
}
@media (max-width: 900px) {
  .visa-hero {
    min-height: 402px;
    background-position: 55% center;
  }
  .visa-hero-inner {
    height: 402px;
  }
  .visa-hero-copy {
    width: 62%;
    padding-top: 127px;
  }
  .visa-hero-copy h1 {
    font-size: 52px;
  }
  .visa-passport {
    top: auto;
    right: -20px;
    bottom: -14px;
    width: 300px;
  }
  .visa-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .visa-card-photo {
    height: 140px;
  }
  .visa-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 0;
  }
  .visa-step:nth-child(3) {
    border-right: 0;
  }
  .visa-contact {
    padding-left: 150px;
    padding-right: 24px;
  }
  .visa-contact {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .visa-contact > a {
    position: absolute;
    right: 24px;
  }
  .visa-contact > div:not(.visa-luggage):not(.visa-route) {
    padding-right: 150px;
  }
  .visa-footer .visa-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .visa-hero {
    min-height: 442px;
    background-position: 52% center;
  }
  .visa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
  }
  .visa-hero-inner {
    height: 442px;
  }
  .visa-hero-copy {
    width: 100%;
    padding: 117px 0 0;
    text-align: center;
  }
  .visa-hero-copy h1 {
    font-size: 46px;
  }
  .visa-script {
    margin-inline: auto;
    font-size: 24px;
  }
  .visa-hero-note {
    margin-top: 19px;
  }
  .visa-passport {
    top: auto;
    right: 50%;
    bottom: -14px;
    width: 210px;
    transform: translateX(50%);
  }
  .visa-services-head {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }
  .visa-tabs {
    width: 100%;
  }
  .visa-tab {
    flex: 1;
    padding: 10px 12px;
    font-size: 12px;
  }
  .visa-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visa-card-photo {
    height: 125px;
  }
  .visa-steps {
    grid-template-columns: 1fr;
  }
  .visa-step {
    justify-content: flex-start;
    padding-left: 25%;
    border-right: 0;
    border-bottom: 1px dashed #bdc5d6;
  }
  .visa-step:last-child {
    border-bottom: 0;
  }
  .visa-more-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .visa-contact {
    min-height: 160px;
    padding: 18px 20px 18px 125px;
    align-items: stretch;
  }
  .visa-contact > div:not(.visa-luggage):not(.visa-route) {
    padding-right: 0;
  }
  .visa-contact h2, .visa-contact p {
    text-align: left;
  }
  .visa-contact > a {
    position: static;
    align-self: flex-start;
  }
  .visa-luggage {
    left: 2px;
    bottom: 38px;
    font-size: 35px;
  }
}
@media (max-width: 460px) {
  .visa-card-grid {
    grid-template-columns: 1fr;
  }
  .visa-card-photo {
    height: 165px;
  }
  .visa-tabs {
    flex-direction: column;
  }
  .visa-tab {
    width: 100%;
  }
  .visa-more-head h2 {
    font-size: 22px;
  }
  .visa-contact {
    padding-left: 105px;
  }
  .visa-footer .visa-footer-grid {
    grid-template-columns: 1fr;
  }
  .visa-footer .visa-footer-bottom {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
/* Tour results and hotel details */
.results-header {
  position: relative;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid #edf0f5;
}

.results-header .navbar {
  height: 88px;
}

.results-brand-cluster {
  display: flex;
  align-items: center;
  gap: 20px;
}

.results-brand-tagline {
  width: 82px;
  color: var(--copper);
  font: 12px/1.3 "Nothing You Could Do", cursive;
  transform: rotate(-2deg);
}

.offers-telegram {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
}

.offers-telegram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.results-page, .offer-detail-page {
  min-height: calc(100vh - 88px);
  padding: 18px 0 55px;
  background: #fbfcfe;
}

.offer-search-summary {
  min-height: 82px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1.35fr 1.3fr 0.85fr 0.75fr auto;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 5px 18px rgba(6, 29, 96, 0.035);
}

.offer-summary-item {
  min-width: 0;
  padding: 4px 19px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid #edf0f5;
}

.offer-summary-item > svg {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-summary-item > span:not(.summary-flag) {
  min-width: 0;
}

.offer-summary-item small, .offer-summary-item strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-summary-item small {
  color: var(--muted);
  font-size: 9px;
}

.offer-summary-item strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 13px;
}

.summary-flag {
  margin-left: auto;
  font-size: 20px;
}

.change-search-button {
  min-height: 48px;
  margin: 4px 0 4px 18px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(11, 76, 172, 0.17);
}

.change-search-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.results-shell {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr) 245px;
  align-items: start;
  gap: 18px;
}

.results-filters, .trip-option-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(6, 29, 96, 0.03);
}

.results-filters {
  overflow: hidden;
}

.filter-heading {
  min-height: 51px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-heading h2, .trip-option-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
}

.filter-collapse {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.filter-collapse svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  transition: transform 0.2s;
}

.results-filters.collapsed .filter-collapse svg {
  transform: rotate(-90deg);
}

.results-filters.collapsed .filter-content {
  display: none;
}

.filter-content {
  padding: 0 15px 15px;
}

.budget-filter {
  padding: 13px 0 18px;
  display: block;
  border-top: 1px solid #edf0f5;
}

.budget-filter > span:first-child {
  display: block;
  color: #3e4968;
  font-size: 10px;
}

.budget-filter strong {
  display: block;
  margin: 7px 0 13px;
  color: var(--blue);
  font-size: 13px;
}

.budget-filter input {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.hotel-name-filter {
  padding: 15px 0;
  display: grid;
  gap: 7px;
  border-top: 1px solid #edf0f5;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.hotel-name-filter input {
  width: 100%;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #dce2ee;
  border-radius: 7px;
  outline: 0;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.hotel-name-filter input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 49, 145, 0.08);
}

.hotel-name-filter small {
  color: #8790a5;
  font-size: 8px;
  font-weight: 500;
}

.budget-scale {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  color: #78829b;
}

.budget-scale small {
  font-size: 7px;
}

.filter-group {
  margin: 0;
  padding: 15px 0;
  display: grid;
  gap: 11px;
  border: 0;
  border-top: 1px solid #edf0f5;
}

.filter-group legend {
  width: 100%;
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.filter-group label {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: #37425e;
  font-size: 9px;
  cursor: pointer;
}

.filter-group input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--blue);
}

.filter-group label small {
  color: #8790a5;
  font-size: 8px;
}

.meal-filter-group label {
  grid-template-columns: 15px minmax(0, 1fr);
}

.meal-filter-group label span {
  line-height: 1.25;
}

.filter-stars b {
  color: #ffb400;
  font-size: 8px;
  letter-spacing: 1px;
}

.clear-filters {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.package-price-label {
  min-height: 33px;
  margin-bottom: 9px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #df3138;
  background: #fffafa;
  border: 1px solid #f1c7ca;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 500;
  text-align: center;
}

.package-price-label svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.results-list-head {
  min-height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.results-list-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.results-list-head h1 {
  margin: 0;
  color: var(--blue);
  font-size: 21px;
}

.live-search-state {
  padding: 4px 7px;
  color: #44705a;
  background: #e8f6ed;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.results-list-head label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 9px;
}

.results-list-head select {
  min-width: 135px;
  padding: 9px 30px 9px 11px;
  border: 1px solid var(--border);
  color: var(--navy);
  background: #fff;
  border-radius: 8px;
  outline: 0;
  font-size: 9px;
  font-weight: 600;
}

.results-notice {
  margin: 0 0 10px;
  padding: 9px 12px;
  color: #3e5470;
  background: #eef4ff;
  border: 1px solid #dce8fb;
  border-radius: 8px;
  font-size: 9px;
  line-height: 1.45;
}

.results-notice[data-tone=warning] {
  color: #80521b;
  background: #fff7e9;
  border-color: #f5dfb9;
}

.results-notice[data-tone=success] {
  color: #245c3c;
  background: #ebf8f0;
  border-color: #cfead9;
}

.hotel-results {
  display: grid;
  gap: 12px;
}

.hotel-result-card {
  min-height: 166px;
  padding: 8px;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 140px;
  gap: 15px;
  background: linear-gradient(100deg, #fff 0%, #fff 55%, #fff9f4 100%);
  border: 1px solid #eee5dd;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(6, 29, 96, 0.035);
}

.hotel-result-photo {
  min-height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 9px;
}

.hotel-result-content {
  min-width: 0;
  padding: 7px 0 2px;
}

.hotel-result-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-result-title h2 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #57230f;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-result-title span {
  color: #ffb000;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hotel-result-location {
  margin: 7px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #68728a;
  font-size: 8px;
}

.hotel-result-location svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
}

.hotel-result-tags, .detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.hotel-result-tags span, .detail-tags span {
  padding: 5px 7px;
  color: #594136;
  background: #fff9f2;
  border: 1px solid #f3e9df;
  border-radius: 5px;
  font-size: 7px;
}

.hotel-result-meta {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  color: #43506e;
  font-size: 8px;
}

.hotel-result-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-result-meta svg, .partial-payment svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partial-payment {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9d4c29;
  font-size: 8px;
}

.hotel-result-price {
  padding: 10px 6px 5px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hotel-result-price small {
  color: #6d7588;
  font-size: 8px;
}

.hotel-result-price strong {
  margin-top: 5px;
  color: #76280c;
  font-size: 20px;
}

.hotel-result-price > span {
  margin-top: 3px;
  color: var(--blue);
  font-size: 8px;
}

.hotel-result-price button {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #88400e, #6e260a);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.results-scroll-sentinel {
  width: 100%;
  height: 2px;
}

.results-scroll-sentinel[hidden] {
  display: none;
}

.empty-results {
  min-height: 180px;
  display: grid;
  place-content: center;
  gap: 8px;
  color: var(--navy);
  background: #fff;
  border: 1px dashed #cad2e0;
  border-radius: 12px;
  text-align: center;
}

.empty-results span {
  color: var(--muted);
  font-size: 10px;
}

.hotel-skeleton {
  grid-template-columns: 205px 1fr;
  overflow: hidden;
}

.hotel-skeleton i, .hotel-skeleton b, .hotel-skeleton span {
  display: block;
  background: linear-gradient(90deg, #eef1f5, #f8f9fb, #eef1f5);
  background-size: 200% 100%;
  animation: hotel-shimmer 1.3s infinite;
  border-radius: 8px;
}

.hotel-skeleton i {
  min-height: 150px;
}

.hotel-skeleton div {
  padding: 10px 0;
}

.hotel-skeleton b {
  width: 55%;
  height: 18px;
}

.hotel-skeleton span {
  width: 80%;
  height: 12px;
  margin-top: 14px;
}

.hotel-skeleton span:nth-child(3) {
  width: 65%;
}

@keyframes hotel-shimmer {
  to {
    background-position: -200% 0;
  }
}
.results-trip-options {
  display: grid;
  gap: 13px;
}

.trip-option-card {
  padding: 17px;
}

.trip-option-card h2 {
  font-size: 15px;
}

.airport-options {
  margin-top: 15px;
  display: grid;
  gap: 12px;
}

.airport-options label {
  min-height: 60px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.airport-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.airport-options i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid #cbd1dc;
  border-radius: 50%;
}

.airport-options label:has(input:checked) {
  border-color: var(--blue);
  background: #fbfdff;
}

.airport-options input:checked + span + i {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.airport-options input:checked + span + i::after {
  content: "✓";
  font-size: 10px;
  font-style: normal;
}

.duration-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.duration-card h2 {
  justify-self: start;
}

.duration-card output {
  margin-top: 22px;
  color: var(--blue);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.duration-card > span {
  margin-top: 5px;
  color: var(--navy);
  font-size: 10px;
}

.duration-controls {
  position: absolute;
  top: 86px;
  left: 17px;
  right: 17px;
  display: flex;
  justify-content: space-between;
}

.duration-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
}

.duration-card > p {
  max-width: 170px;
  margin: 19px 0 0;
  color: #5c6680;
  font-size: 9px;
  line-height: 1.5;
}

.duration-tip {
  width: 100%;
  margin-top: 15px;
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  background: #f4f6fc;
  border-radius: 7px;
  text-align: left;
  font-size: 9px;
}

.duration-tip svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
}

.search-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.search-modal[hidden] {
  display: none;
}

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 13, 48, 0.58);
  backdrop-filter: blur(4px);
}

.search-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  padding: 25px;
  overflow-y: auto;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.search-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.search-modal-head small {
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-modal-head h2 {
  margin: 3px 0 0;
  font-size: 27px;
}

.search-modal-head > button {
  width: 36px;
  height: 36px;
  border: 0;
  color: var(--navy);
  background: #f2f5fa;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

#results-search-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.modal-field {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.modal-field input, .modal-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  outline: 0;
}

.modal-destination {
  grid-column: span 3;
}

.modal-destination .ts-wrapper {
  width: 100%;
}

.modal-destination .ts-control {
  min-height: 44px;
  padding: 10px 12px !important;
  border-color: var(--border) !important;
  border-radius: 8px;
  box-shadow: none !important;
}

.modal-child-ages {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.modal-child-ages label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 9px;
}

.modal-child-ages select {
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.search-modal-actions {
  grid-column: 1/-1;
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.search-modal-actions button {
  min-height: 43px;
  padding: 0 19px;
  border: 1px solid var(--border);
  color: var(--navy);
  background: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.search-modal-actions button[type=submit] {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.search-modal-actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

body.modal-open {
  overflow: hidden;
}

/* Hotel detail */
.offer-detail-page {
  padding-top: 10px;
}

.detail-search-summary {
  min-height: 72px;
  grid-template-columns: 42px 1.25fr 1.25fr 0.8fr 0.7fr auto;
}

.detail-back {
  display: grid;
  place-items: center;
  color: var(--blue);
  border-right: 1px solid #edf0f5;
}

.detail-back svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.offer-breadcrumbs {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #68728a;
  font-size: 9px;
}

.offer-breadcrumbs strong {
  color: var(--navy);
}

.detail-layout {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: start;
  gap: 22px;
}

.hotel-detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: 22px;
}

.detail-main-photo {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: #e7edf5;
  border-radius: 10px;
}

.detail-main-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.best-seller {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #fff;
  background: #8f360d;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
}

.detail-main-photo button {
  position: absolute;
  top: 50%;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  color: var(--navy);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.2);
  font-size: 22px;
  cursor: pointer;
}

.detail-main-photo button[data-gallery-step="-1"] {
  left: 12px;
}

.detail-main-photo button[data-gallery-step="1"] {
  right: 12px;
}

.photo-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border-radius: 999px;
  font-size: 8px;
}

.detail-thumbnails {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.detail-thumbnails button {
  position: relative;
  height: 68px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: #e8edf4;
  border-radius: 7px;
  cursor: pointer;
}

.detail-thumbnails button.active {
  border-color: var(--blue);
}

.detail-thumbnails img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-thumbnails button > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #fff;
  background: rgba(6, 29, 96, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.detail-thumbnails button > span small {
  font-size: 8px;
}

.detail-hotel-info {
  min-width: 0;
}

.detail-hotel-info h1 {
  margin: 0;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.15;
}

.detail-stars {
  margin-top: 8px;
  color: #ffb000;
  font-size: 14px;
  letter-spacing: 3px;
}

.detail-location {
  margin: 8px 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #68728a;
  font-size: 8px;
}

.detail-location svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
}

.detail-rating {
  margin-top: 13px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #edf0f5;
}

.detail-rating > strong {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 15px;
}

.detail-rating span b, .detail-rating span small {
  display: block;
}

.detail-rating span b {
  font-size: 9px;
}

.detail-rating span small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.detail-rating i {
  margin-left: auto;
  font-style: normal;
}

.package-includes h2, .flight-information h2, .available-rooms > h2, .selected-trip-card h2 {
  margin: 13px 0 10px;
  color: var(--navy);
  font-size: 11px;
}

.package-includes > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.package-includes > div > span {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 21px;
  text-align: center;
}

.package-includes > div > span > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.package-includes small {
  color: #4d5873;
  font-size: 6px;
}

.flight-information {
  margin-top: 14px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.flight-information h2 {
  margin-top: 0;
}

.flight-legs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.flight-legs[hidden] {
  display: none;
}

.flight-legs article + article {
  padding-left: 13px;
  border-left: 1px solid #edf0f5;
}

.flight-legs header {
  display: flex;
  justify-content: space-between;
  color: #535e77;
  font-size: 6px;
}

.flight-legs header b {
  color: var(--navy);
}

.flight-legs article > div:not(.flight-leg-footer) {
  margin: 10px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.flight-legs article > div > strong {
  color: var(--navy);
  font-size: 8px;
}

.flight-legs article > div > span {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #69748d;
  font-size: 6px;
}

.flight-legs article > div > span i {
  width: 100%;
  height: 1px;
  background: #aab3c2;
}

.ground-transport-information {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f7ff;
  color: #535e77;
  font-size: 9px;
}

.ground-transport-information[hidden] {
  display: none;
}

.ground-transport-information strong {
  color: var(--navy);
  font-size: 12px;
}

.ground-transport-information span {
  color: var(--navy);
  font-weight: 700;
}

.flight-leg-footer {
  display: flex;
  justify-content: space-between;
  color: #59647b;
  font-size: 6px;
}

.detail-tabs {
  margin-top: 30px;
  display: flex;
  border-bottom: 1px solid #dfe4eb;
}

.detail-tabs a {
  position: relative;
  padding: 12px 18px;
  color: #3f4965;
  font-size: 9px;
  white-space: nowrap;
}

.detail-tabs a.active {
  color: var(--blue);
}

.detail-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--blue);
}

.available-rooms {
  margin-top: 18px;
}

.available-rooms > h2 {
  margin-left: 10px;
}

.room-offer {
  min-height: 145px;
  padding: 10px;
  display: grid;
  grid-template-columns: 200px 1fr 150px;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5d5c7;
  border-radius: 9px;
}

.room-offer > img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 7px;
}

.room-offer-info h3 {
  margin: 3px 0 10px;
  font-size: 12px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 13px;
  color: #424d68;
  font-size: 7px;
}

.room-features span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-features svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
}

.room-offer-info .detail-tags {
  margin-top: 13px;
}

.room-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.room-price small, .room-price span {
  color: #536079;
  font-size: 7px;
}

.room-price strong, .room-price b {
  color: #842e0d;
}

.room-price strong {
  margin: 3px 0 10px;
  font-size: 12px;
}

.room-price b {
  margin-top: 3px;
  font-size: 14px;
}

.room-price button {
  min-width: 100px;
  min-height: 34px;
  margin-top: auto;
  border: 0;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.room-price button.selected {
  background: #2e8b57;
}

.selected-trip-column {
  position: sticky;
  top: 15px;
  display: grid;
  gap: 15px;
}

.selected-trip-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(6, 29, 96, 0.04);
}

.selected-trip-card h2 {
  margin-top: 0;
  font-size: 13px;
}

.selected-trip-card ul {
  margin: 0;
  padding: 0 0 11px;
  display: grid;
  gap: 13px;
  border-bottom: 1px solid #edf0f5;
  list-style: none;
}

.selected-trip-card li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 8px;
}

.selected-trip-card li svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
}

.selected-trip-card li small {
  color: #66718b;
  font-size: 7px;
}

.price-summary {
  padding: 3px 0 12px;
  border-bottom: 1px solid #edf0f5;
}

.price-summary h3 {
  margin: 10px 0;
  font-size: 10px;
}

.price-summary p {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  color: #505b73;
  font-size: 8px;
}

.price-summary .total {
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
}

.price-summary .total strong {
  font-size: 15px;
}

.selected-trip-card > button {
  width: 100%;
  min-height: 39px;
  margin-top: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #92400f, #77280a);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.selected-trip-card > small {
  display: block;
  margin-top: 8px;
  color: #7b8498;
  font-size: 7px;
  text-align: center;
}

.booking-protection {
  padding: 16px;
  display: flex;
  gap: 11px;
  color: var(--navy);
  background: #f2f5ff;
  border-radius: 9px;
}

.booking-protection svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
}

.booking-protection strong, .booking-protection small {
  display: block;
}

.booking-protection strong {
  font-size: 8px;
}

.booking-protection small {
  margin-top: 5px;
  color: #55617b;
  font-size: 7px;
  line-height: 1.45;
}

.booking-toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 24px;
  padding: 12px 19px;
  transform: translateX(-50%);
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 11px;
}

.booking-toast[hidden] {
  display: none;
}

@media (max-width: 1120px) {
  .results-brand-tagline {
    display: none;
  }
  .results-shell {
    grid-template-columns: 205px minmax(0, 1fr);
  }
  .results-trip-options {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
  }
  .duration-card {
    min-height: 175px;
  }
  .hotel-result-card {
    grid-template-columns: 180px minmax(0, 1fr) 130px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .selected-trip-column {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .hotel-detail-overview {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (max-width: 900px) {
  .results-header .navbar {
    height: 82px;
  }
  .results-page, .offer-detail-page {
    min-height: calc(100vh - 82px);
  }
  .offer-search-summary {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .offer-summary-item {
    min-height: 62px;
    border-bottom: 1px solid #edf0f5;
  }
  .offer-summary-item:nth-of-type(2), .offer-summary-item:nth-of-type(4) {
    border-right: 0;
  }
  .change-search-button {
    grid-column: 1/-1;
    margin: 10px 0 0;
  }
  .detail-search-summary {
    grid-template-columns: 38px 1fr 1fr;
  }
  .detail-search-summary .detail-back {
    grid-row: span 2;
  }
  .detail-search-summary .change-search-button {
    grid-column: 2/-1;
  }
  .hotel-detail-overview {
    grid-template-columns: 1fr;
  }
  .detail-gallery {
    max-width: 680px;
  }
  .detail-hotel-info {
    padding: 0 4px;
  }
}
@media (max-width: 760px) {
  .results-shell {
    grid-template-columns: 1fr;
  }
  .results-filters {
    order: 0;
  }
  .results-list-column {
    order: 1;
  }
  .results-trip-options {
    grid-column: auto;
    grid-template-columns: 1fr;
    order: 2;
  }
  .hotel-result-card {
    grid-template-columns: 165px minmax(0, 1fr);
  }
  .hotel-result-price {
    grid-column: 1/-1;
    padding: 5px 4px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }
  .hotel-result-price small, .hotel-result-price > span {
    display: none;
  }
  .hotel-result-price strong {
    margin: 0;
  }
  .hotel-result-price button {
    width: 130px;
    margin: 0;
  }
  #results-search-form {
    grid-template-columns: 1fr 1fr;
  }
  .modal-destination {
    grid-column: span 2;
  }
  .modal-child-ages {
    grid-template-columns: repeat(2, 1fr);
  }
  .selected-trip-column {
    grid-template-columns: 1fr;
  }
  .room-offer {
    grid-template-columns: 155px 1fr;
  }
  .room-price {
    grid-column: 1/-1;
    padding-top: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    border-top: 1px solid #edf0f5;
  }
  .room-price span, .room-price b {
    display: none;
  }
  .room-price strong {
    margin: 2px 0;
  }
  .room-price button {
    margin: 0;
  }
  .detail-tabs {
    overflow-x: auto;
  }
}
@media (max-width: 540px) {
  .offer-search-summary {
    grid-template-columns: 1fr;
  }
  .offer-summary-item, .offer-summary-item:nth-of-type(2), .offer-summary-item:nth-of-type(4) {
    min-height: 58px;
    border-right: 0;
  }
  .detail-search-summary {
    grid-template-columns: 34px 1fr;
  }
  .detail-search-summary .detail-back {
    grid-row: span 4;
  }
  .detail-search-summary .change-search-button {
    grid-column: 1/-1;
  }
  .results-list-head {
    align-items: stretch;
    flex-direction: column;
  }
  .package-price-label {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 8px;
    text-align: left;
  }
  .results-list-head label {
    justify-content: space-between;
  }
  .results-list-head select {
    flex: 1;
  }
  .hotel-result-card {
    grid-template-columns: 1fr;
  }
  .hotel-result-photo {
    min-height: 190px;
  }
  .hotel-result-price {
    grid-column: auto;
  }
  .hotel-result-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .hotel-result-title h2 {
    white-space: normal;
  }
  .search-modal-card {
    padding: 19px;
  }
  #results-search-form {
    grid-template-columns: 1fr;
  }
  .modal-destination, .search-modal-actions, .modal-child-ages {
    grid-column: auto;
  }
  .modal-child-ages {
    grid-template-columns: 1fr 1fr;
  }
  .detail-main-photo {
    height: 235px;
  }
  .detail-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
  .detail-thumbnails button {
    height: 58px;
  }
  .detail-thumbnails button:last-child {
    display: none;
  }
  .flight-legs {
    grid-template-columns: 1fr;
  }
  .flight-legs article + article {
    padding: 12px 0 0;
    border-top: 1px solid #edf0f5;
    border-left: 0;
  }
  .package-includes > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-offer {
    grid-template-columns: 1fr;
  }
  .room-offer > img {
    height: 190px;
  }
}
/* Custom tours catalogue */
.tours-page {
  min-height: 100vh;
  padding: 0 0 64px;
  overflow-x: hidden;
  background: #fff;
}

.tours-hero {
  position: relative;
  min-height: 322px;
  padding-top: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.91) 28%, rgba(255, 255, 255, 0.48) 64%, rgba(255, 255, 255, 0.2) 100%), url("../images/tours/tours-hero.png") 70% 57%/cover no-repeat;
}

.tours-header .navbar {
  height: 82px;
}

.tours-hero-copy {
  padding-top: 72px;
  text-align: center;
}

.tours-hero-copy p {
  margin: 0 0 -5px;
  color: rgba(6, 29, 96, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tours-hero-copy h1 {
  margin: 0;
  color: var(--copper);
  font: 400 clamp(61px, 7vw, 84px)/1 "Nothing You Could Do", cursive;
  transform: rotate(-3deg);
}

.tours-hero-copy h1::after {
  content: "";
  display: block;
  width: 184px;
  height: 6px;
  margin: -4px auto 5px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-3deg);
}

.tours-hero-copy > span {
  font-size: 16px;
}

.tours-search-panel {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: -1px;
  min-height: 82px;
  padding: 10px 12px 10px 23px;
  display: grid;
  grid-template-columns: 1.08fr 0.95fr 1.06fr 0.62fr auto;
  align-items: stretch;
  transform: translate(-50%, 50%);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(6, 29, 96, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(6, 29, 96, 0.13);
  backdrop-filter: blur(10px);
}

.tours-search-control {
  position: relative;
  min-width: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.tours-search-control:first-child {
  padding-left: 0;
}

.tours-search-control > svg, .tours-filter-shortcut > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tours-search-control > span {
  min-width: 0;
  flex: 1;
}

.tours-search-control small, .tours-search-control button small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.tours-search-control select {
  width: 100%;
  padding: 0 17px 0 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  appearance: none;
  color: var(--text);
  background: linear-gradient(45deg, transparent 50%, var(--navy) 50%) calc(100% - 4px) 52%/5px 5px no-repeat, linear-gradient(135deg, var(--navy) 50%, transparent 50%) 100% 52%/5px 5px no-repeat;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  cursor: pointer;
}

.tours-search-destination .ts-wrapper {
  width: 100%;
}

.tours-search-destination .ts-control {
  min-height: 0;
  padding: 0 18px 0 0 !important;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.tours-search-destination .ts-wrapper.focus .ts-control {
  border: 0 !important;
  box-shadow: none !important;
}

.tours-search-destination .ts-control input {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

.tours-date-trigger, .tours-travelers-trigger {
  min-width: 0;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.tours-date-trigger strong, .tours-travelers-trigger strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tours-filter-shortcut {
  min-width: 100px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tours-filter-shortcut:hover {
  color: var(--copper);
}

.tours-search-submit {
  align-self: center;
  height: 50px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.tours-search-submit:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.tours-search-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.tours-mini-popover {
  position: absolute;
  z-index: 50;
  top: calc(100% + 17px);
  left: 7px;
  width: 295px;
  padding: 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.tours-mini-popover[hidden] {
  display: none;
}

.tours-date-popover {
  width: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tours-date-popover label {
  min-width: 0;
}

.tours-date-popover label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.tours-date-popover input {
  width: 100%;
  min-height: 39px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: #f8faff;
  font-size: 11px;
}

.tours-mini-popover > button {
  grid-column: 1/-1;
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.tours-travelers-popover {
  left: auto;
  right: 5px;
}

.tours-travelers-popover > div {
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.tours-travelers-popover > div + div {
  border-top: 1px solid #eef1f6;
}

.tours-travelers-popover strong {
  display: block;
  font-size: 12px;
}

.tours-travelers-popover small {
  margin-top: 2px;
  font-size: 9px;
}

.tours-travelers-popover .counter {
  flex: 0 0 auto;
}

.tours-travelers-popover > button {
  width: 100%;
  margin-top: 8px;
}

.tours-catalog {
  padding-top: 66px;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  align-items: start;
  gap: 27px;
}

.tours-filters {
  position: sticky;
  top: 18px;
  padding: 16px 13px 12px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(6, 29, 96, 0.04);
}

.tours-filters-title {
  padding: 0 4px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #edf0f5;
}

.tours-filters-title svg, .reset-tour-filters svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tours-filters-title h2 {
  margin: 0;
  font-size: 14px;
}

#close-tour-filters {
  display: none;
  margin-left: auto;
  padding: 2px;
  border: 0;
  background: transparent;
  font-size: 23px;
  cursor: pointer;
}

.tours-filter-field, .tours-budget-filter {
  margin: 13px 0 0;
  display: block;
}

.tours-filter-field > span, .tours-budget-filter > span, .tours-type-filter legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.tours-filter-field select {
  width: 100%;
  min-height: 40px;
  padding: 0 31px 0 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: #fff;
  font-size: 11px;
  cursor: pointer;
}

.tours-type-filter {
  min-width: 0;
  margin: 15px 0 0;
  padding: 14px 3px 0;
  border: 0;
  border-top: 1px solid #edf0f5;
}

.tours-type-filter label {
  min-height: 31px;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 4px;
  color: #3d4a69;
  font-size: 11px;
  cursor: pointer;
}

.tours-type-filter label svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tours-type-filter input {
  width: 14px;
  height: 14px;
  accent-color: var(--navy);
  cursor: pointer;
}

.tours-budget-filter {
  padding: 14px 3px 0;
  border-top: 1px solid #edf0f5;
}

.tours-budget-filter output {
  display: block;
  margin: -3px 0 8px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
}

.tours-budget-filter input {
  width: 100%;
  height: 4px;
  accent-color: var(--navy);
  cursor: pointer;
}

.tours-budget-filter small {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
}

.reset-tour-filters {
  width: 100%;
  min-height: 40px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #9ba9c5;
  border-radius: 9px;
  color: var(--navy);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.reset-tour-filters:hover {
  background: #f5f8fd;
}

.tours-list-column {
  min-width: 0;
}

.tours-list-head {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tours-list-head h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.tours-list-head label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}

.tours-list-head select {
  min-width: 145px;
  min-height: 36px;
  padding: 0 29px 0 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.custom-tour-list {
  display: grid;
  gap: 10px;
}

.custom-tour-card {
  min-height: 140px;
  padding: 0;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr) 135px;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 17px rgba(6, 29, 96, 0.035);
  transition: transform 0.2s, box-shadow 0.2s;
}

.custom-tour-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 27px rgba(6, 29, 96, 0.1);
}

.custom-tour-photo {
  position: relative;
  min-height: 140px;
  background-color: #e9eef8;
  background-repeat: no-repeat;
}

.tour-favorite {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 29px;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.tour-favorite.active {
  color: #c74843;
}

.custom-tour-info {
  min-width: 0;
  padding: 12px 18px;
}

.custom-tour-info h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 17px;
}

.custom-tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #596581;
  font-size: 10px;
}

.custom-tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-tour-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-tour-info p {
  margin: 9px 0 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.custom-tour-tags span {
  padding: 4px 8px;
  color: var(--navy);
  background: #f5f7fb;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}

.custom-tour-price {
  padding: 15px 13px 11px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.custom-tour-price small {
  color: var(--muted);
  font-size: 9px;
}

.custom-tour-price strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.custom-tour-price strong span {
  font-size: 11px;
}

.custom-tour-price > span {
  color: var(--muted);
  font-size: 9px;
}

.custom-tour-price button {
  width: 100%;
  min-height: 34px;
  margin-top: 10px;
  border: 1px solid var(--copper);
  border-radius: 999px;
  color: var(--copper);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.custom-tour-price button:hover {
  color: #fff;
  background: var(--copper);
}

.custom-tour-empty {
  min-height: 220px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  border: 1px dashed #bcc6d9;
  border-radius: 13px;
  text-align: center;
}

.custom-tour-empty[hidden], .tour-toast[hidden] {
  display: none;
}

.custom-tour-empty strong {
  color: var(--navy);
}

.tour-toast {
  position: fixed;
  z-index: 140;
  left: 50%;
  bottom: 24px;
  min-width: 260px;
  padding: 12px 20px;
  transform: translateX(-50%);
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1020px) {
  .tours-search-panel {
    grid-template-columns: 1fr 0.9fr 1fr auto;
  }
  .tours-filter-shortcut {
    display: none;
  }
  .custom-tour-card {
    grid-template-columns: 190px minmax(0, 1fr) 125px;
  }
}
@media (max-width: 900px) {
  .tours-hero {
    min-height: 414px;
    background-position: 68% center;
  }
  .tours-hero-copy {
    padding-top: 92px;
  }
  .tours-search-panel {
    bottom: 20px;
    padding: 9px 12px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transform: translateX(-50%);
  }
  .tours-search-control {
    min-height: 58px;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
  }
  .tours-search-control:first-child {
    padding-left: 16px;
  }
  .tours-travelers-control {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }
  .tours-filter-shortcut {
    min-height: 58px;
    display: flex;
    border-right: 0;
    border-bottom: 0;
  }
  .tours-search-submit {
    grid-column: 1/-1;
    width: 100%;
    height: 43px;
    margin-top: 9px;
    border-radius: 10px;
  }
  .tours-catalog {
    padding-top: 28px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
  }
  .custom-tour-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .custom-tour-price {
    grid-column: 1/-1;
    padding: 8px 13px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    border-top: 1px solid #eef1f6;
  }
  .custom-tour-price > span {
    margin-right: auto;
  }
  .custom-tour-price button {
    width: 115px;
    margin: 0 0 0 7px;
  }
}
@media (max-width: 760px) {
  .tours-hero {
    min-height: 430px;
  }
  .tours-catalog {
    grid-template-columns: 1fr;
  }
  .tours-filters {
    position: fixed;
    z-index: 120;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(340px, 88vw);
    padding: 19px 17px;
    overflow-y: auto;
    transform: translateX(-105%);
    border-radius: 0 16px 16px 0;
    box-shadow: 20px 0 60px rgba(6, 29, 96, 0.2);
    transition: transform 0.25s;
  }
  .tours-filters.open {
    transform: translateX(0);
  }
  .tour-filters-open::after {
    content: "";
    position: fixed;
    z-index: 110;
    inset: 0;
    background: rgba(2, 13, 48, 0.45);
  }
  #close-tour-filters {
    display: block;
  }
  .tours-filter-field > span, .tours-budget-filter > span, .tours-type-filter legend {
    font-size: 12px;
  }
  .tours-type-filter label {
    min-height: 37px;
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .tours-hero {
    min-height: 625px;
    background-position: 73% center;
  }
  .tours-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
  }
  .tours-hero-copy {
    position: relative;
    padding-top: 105px;
  }
  .tours-hero-copy h1 {
    font-size: 61px;
  }
  .tours-hero-copy > span {
    font-size: 13px;
  }
  .tours-search-panel {
    bottom: 16px;
    grid-template-columns: 1fr;
  }
  .tours-search-control, .tours-search-control:first-child {
    min-height: 58px;
    padding: 0 13px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .tours-filter-shortcut {
    min-height: 49px;
    border-bottom: 1px solid var(--border);
  }
  .tours-search-submit {
    grid-column: auto;
  }
  .tours-mini-popover, .tours-date-popover {
    position: fixed;
    z-index: 150;
    top: 50%;
    left: 12px;
    right: 12px;
    width: auto;
    transform: translateY(-50%);
  }
  .tours-list-head {
    padding-bottom: 9px;
    align-items: stretch;
    flex-direction: column;
  }
  .tours-list-head label {
    justify-content: space-between;
  }
  .tours-list-head select {
    flex: 1;
  }
  .custom-tour-card {
    grid-template-columns: 1fr;
  }
  .custom-tour-photo {
    min-height: 190px;
  }
  .custom-tour-info {
    padding: 14px;
  }
  .custom-tour-info p {
    white-space: normal;
  }
  .custom-tour-price {
    grid-column: auto;
  }
  .custom-tour-price strong {
    font-size: 17px;
  }
}
/* Custom tour details */
.tour-detail-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(183, 90, 23, 0.55);
}

.tour-detail-header .navbar {
  height: 82px;
}

.custom-tour-detail {
  padding: 0 0 55px;
  background: #fbfcff;
}

.tour-detail-hero {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  background: #fff;
}

.tour-detail-photo {
  position: absolute;
  inset: 0 0 0 30%;
  background-color: #eef2f8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 29%, rgba(255, 255, 255, 0.78) 43%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0) 100%);
}

.tour-detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 22px;
}

.back-to-tours {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.back-to-tours svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-detail-hero-content h1 {
  width: max-content;
  max-width: 47%;
  margin: 10px 0 7px;
  color: var(--copper);
  font: 400 clamp(47px, 5.5vw, 68px)/1 "Nothing You Could Do", cursive;
  transform: rotate(-2deg);
}

.tour-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  color: var(--navy);
  font-size: 11px;
}

.tour-detail-meta > span {
  display: flex;
  align-items: center;
}

.tour-detail-meta svg {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-detail-hero-content > p {
  max-width: 470px;
  margin: 12px 0 10px;
  color: #56627f;
  font-size: 11px;
}

.tour-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-detail-tags > span {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}

.tour-detail-tags svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-booking-summary {
  position: relative;
  z-index: 4;
  min-height: 88px;
  margin-top: -1px;
  padding: 12px 16px 12px 21px;
  display: grid;
  grid-template-columns: 0.95fr 0.92fr 0.85fr 1.35fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e9ecf3;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(6, 29, 96, 0.08);
}

.tour-booking-summary > div {
  min-width: 0;
  padding: 0 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid #e7eaf1;
}

.tour-booking-summary > div:first-child {
  padding-left: 0;
}

.tour-booking-summary > div > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-booking-summary small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.tour-booking-summary strong {
  display: block;
  overflow: hidden;
  color: var(--navy);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-booking-summary .tour-booking-price {
  padding-right: 0;
  justify-content: space-between;
  gap: 15px;
  border-right: 0;
}

.tour-booking-price > span strong {
  font-size: 23px;
}

.tour-booking-price strong em {
  font-size: 11px;
  font-style: normal;
}

.tour-booking-price button {
  min-width: 145px;
  min-height: 45px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--copper);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(183, 90, 23, 0.18);
  transition: transform 0.2s, background 0.2s;
}

.tour-booking-price button:hover {
  transform: translateY(-2px);
  background: #9f4710;
}

.tour-included {
  min-height: 70px;
  margin-top: 14px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid #edf0f6;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff, #f5f7fd);
  box-shadow: 0 6px 18px rgba(6, 29, 96, 0.035);
}

.tour-included h2 {
  min-width: 155px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

.tour-included > div {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.tour-included > div > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
}

.tour-included svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-detail-content {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 13px;
}

.tour-flight-card, .tour-hotels-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e8ebf2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 21px rgba(6, 29, 96, 0.04);
}

.tour-flight-card > h2, .tour-hotels-card > header {
  min-height: 48px;
  margin: 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #edf0f5;
}

.tour-flight-card h2, .tour-hotels-card h2 {
  color: var(--navy);
  font-size: 14px;
}

.tour-flight-card h2 {
  gap: 8px;
}

.tour-flight-card h2 svg, .tour-hotels-card h2 svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-flight-leg {
  min-height: 118px;
  padding: 14px 12px;
  display: grid;
  grid-template-columns: 70px 1fr 1.15fr 1fr 72px;
  align-items: center;
  gap: 8px;
}

.tour-flight-leg + .tour-flight-leg {
  border-top: 1px solid #edf0f5;
}

.flight-kind {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.flight-kind strong {
  padding: 4px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 8px;
}

.flight-kind span {
  color: var(--muted);
  font-size: 8px;
}

.flight-airport strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.flight-airport b {
  display: block;
  margin: 2px 0 6px;
  font-size: 10px;
}

.flight-airport small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
}

.flight-route {
  text-align: center;
}

.flight-route > small {
  color: var(--muted);
  font-size: 8px;
}

.flight-route i {
  position: relative;
  height: 1px;
  margin: 10px 4px 7px;
  display: block;
  background: repeating-linear-gradient(90deg, var(--navy) 0 3px, transparent 3px 6px);
}

.flight-route i::before, .flight-route i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: #fff;
}

.flight-route i::before {
  left: -2px;
}

.flight-route i::after {
  right: -2px;
}

.flight-route span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--muted);
  font-size: 8px;
}

.flight-route svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.flight-airline {
  align-self: stretch;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #edf0f5;
}

.flight-airline small {
  margin: 3px 0;
  color: var(--muted);
  font-size: 7.5px;
}

.flight-airline strong {
  margin-bottom: 5px;
  color: #d87331;
  font-size: 13px;
}

.flight-airline span {
  font-size: 8px;
}

.local-times {
  min-height: 40px;
  margin: 0;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  border-top: 1px solid #edf0f5;
  font-size: 8px;
}

.local-times svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
}

.tour-hotels-card > header {
  justify-content: space-between;
}

.tour-hotels-card header h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-hotels-card header > small {
  color: var(--muted);
  font-size: 8px;
}

.tour-hotel-grid {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.tour-hotel-option {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e4e7ee;
  border-radius: 10px;
  background: #fff;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.tour-hotel-option:hover, .tour-hotel-option.selected {
  transform: translateY(-2px);
  border-color: rgba(183, 90, 23, 0.58);
  box-shadow: 0 9px 20px rgba(6, 29, 96, 0.09);
}

.tour-hotel-photo {
  position: relative;
  height: 98px;
  background-color: #eef2f8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hotel-photo-one {
  background-position: 0 8%;
}

.hotel-photo-two {
  background-position: 14% 10%;
  filter: saturate(0.8) brightness(1.08);
}

.hotel-photo-three {
  background-position: 27% 8%;
  filter: saturate(1.12) contrast(0.94);
}

.tour-hotel-photo > span {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 4px 7px;
  color: #fff;
  background: var(--copper);
  border-radius: 999px;
  font-size: 6px;
  font-weight: 700;
}

.tour-hotel-photo > button {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 24px;
  height: 24px;
  padding: 3px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  filter: none;
}

.tour-hotel-photo > button svg {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.7;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.35));
}

.tour-hotel-photo > button.active svg {
  fill: #d94c50;
  stroke: #fff;
}

.tour-hotel-body {
  padding: 8px;
}

.tour-hotel-body h3 {
  min-height: 31px;
  margin: 0;
  color: #1d2340;
  font-size: 12px;
  line-height: 1.25;
}

.tour-hotel-stars {
  margin: 2px 0;
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 1px;
}

.tour-hotel-body > p {
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 8px;
}

.tour-hotel-body > p svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.tour-hotel-features {
  min-height: 27px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 3px 7px;
  color: #555f78;
  font-size: 7.5px;
}

.tour-hotel-price {
  margin-top: 7px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.tour-hotel-price small, .tour-hotel-price > span {
  color: var(--muted);
  font-size: 7.5px;
}

.tour-hotel-price strong {
  color: var(--navy);
  font-size: 16px;
}

.select-tour-hotel {
  width: 100%;
  min-height: 32px;
  margin-top: 8px;
  border: 1px solid var(--copper);
  border-radius: 999px;
  color: var(--copper);
  background: #fff;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.tour-hotel-option.selected .select-tour-hotel, .select-tour-hotel:hover {
  color: #fff;
  background: var(--copper);
}

.tour-detail-toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 24px;
  min-width: 280px;
  padding: 12px 20px;
  transform: translateX(-50%);
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 11px;
  text-align: center;
}

.tour-detail-toast[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .tour-booking-summary {
    grid-template-columns: repeat(3, 1fr);
  }
  .tour-booking-summary .tour-booking-price {
    grid-column: 1/-1;
    min-height: 58px;
    padding: 8px 0 0;
    border-top: 1px solid #e7eaf1;
  }
  .tour-booking-summary > div:nth-child(3) {
    border-right: 0;
  }
  .tour-included {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .tour-included h2 {
    min-width: 0;
  }
  .tour-included > div {
    width: 100%;
  }
  .tour-detail-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .tour-detail-photo {
    left: 18%;
    opacity: 0.82;
  }
  .tour-detail-shade {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 32%, rgba(255, 255, 255, 0.56) 62%, rgba(255, 255, 255, 0.05) 100%);
  }
  .tour-detail-hero-content h1 {
    max-width: 62%;
  }
  .tour-included > div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .tour-detail-hero {
    min-height: 310px;
  }
  .tour-detail-photo {
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.43;
  }
  .tour-detail-shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66));
  }
  .tour-detail-hero-content {
    padding-top: 20px;
  }
  .tour-detail-hero-content h1 {
    max-width: 100%;
    margin-top: 18px;
    font-size: 51px;
  }
  .tour-detail-hero-content > p {
    font-size: 10px;
    line-height: 1.5;
  }
  .tour-booking-summary {
    grid-template-columns: 1fr 1fr;
  }
  .tour-booking-summary > div {
    min-height: 57px;
    padding: 0 10px;
  }
  .tour-booking-summary > div:nth-child(2) {
    border-right: 0;
  }
  .tour-booking-summary > div:nth-child(3) {
    border-top: 1px solid #e7eaf1;
  }
  .tour-booking-summary .tour-booking-price {
    grid-column: 1/-1;
  }
  .tour-included > div {
    grid-template-columns: 1fr 1fr;
  }
  .tour-flight-leg {
    grid-template-columns: 58px 1fr 0.9fr 1fr;
  }
  .flight-airline {
    grid-column: 2/-1;
    padding: 6px 0 0;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #edf0f5;
    border-left: 0;
  }
  .flight-airline strong {
    margin: 0 auto 0 0;
  }
  .tour-hotel-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .tour-detail-header .navbar {
    height: 74px;
    grid-template-columns: 1fr auto;
  }
  .tour-detail-header .menu-toggle {
    z-index: 35;
    display: grid;
    justify-self: end;
    background: #f5f7fb;
  }
  .tour-detail-header .nav-actions {
    display: none;
  }
  .tour-detail-hero {
    min-height: 370px;
  }
  .tour-detail-hero-content h1 {
    font-size: 45px;
  }
  .tour-detail-meta {
    gap: 12px;
  }
  .tour-detail-tags {
    max-width: 310px;
  }
  .tour-booking-summary {
    margin-top: 10px;
    grid-template-columns: 1fr;
  }
  .tour-booking-summary > div, .tour-booking-summary > div:first-child {
    min-height: 58px;
    padding: 0 4px;
    border-right: 0;
    border-bottom: 1px solid #e7eaf1;
  }
  .tour-booking-summary > div:nth-child(3) {
    border-top: 0;
  }
  .tour-booking-summary .tour-booking-price {
    grid-column: auto;
    padding: 12px 4px;
    flex-wrap: wrap;
    border-top: 0;
    border-bottom: 0;
  }
  .tour-booking-price > span {
    width: 100%;
  }
  .tour-booking-price button {
    width: 100%;
    min-width: 0;
  }
  .tour-included > div {
    grid-template-columns: 1fr;
  }
  .tour-flight-leg {
    grid-template-columns: 48px 1fr 1fr;
    gap: 7px;
  }
  .flight-route {
    grid-column: 2/-1;
    grid-row: 2;
  }
  .flight-airline {
    grid-column: 2/-1;
  }
  .tour-hotel-grid {
    grid-template-columns: 1fr;
  }
  .tour-hotel-photo {
    height: 155px;
    background-size: cover;
  }
  .tour-hotel-body h3 {
    min-height: 0;
    font-size: 13px;
  }
  .tour-hotel-features, .tour-hotel-body > p, .tour-hotel-price small, .tour-hotel-price > span {
    font-size: 8px;
  }
}
.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 15, 58, 0.62);
  backdrop-filter: blur(5px);
}

.contact-modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 38px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(4, 24, 82, 0.28);
  color: #071e68;
}

.contact-modal-card h2 {
  margin: 7px 0 10px;
  font-size: clamp(30px, 5vw, 44px);
}

.contact-modal-card > p {
  margin: 0 0 24px;
  color: #64708c;
  line-height: 1.6;
}

.contact-modal-kicker {
  color: #bd550b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f9;
  color: #071e68;
  font-size: 25px;
  cursor: pointer;
}

.contact-modal-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-modal-details a,
.contact-modal-details > span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #e2e7f1;
  border-radius: 12px;
  color: #071e68;
  text-decoration: none;
}

.contact-modal-details small {
  color: #78839d;
}

@media (max-width: 560px) {
  .contact-modal-card {
    padding: 30px 22px 22px;
  }
  .contact-modal-details {
    grid-template-columns: 1fr;
  }
}
/* Country-to-destination step for region-based live searches. */
.country-destination-picker {
  padding: 34px 0 70px;
}

.country-destination-heading small {
  color: #b95710;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.country-destination-heading h1 {
  color: #071e67;
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 8px 0 6px;
}

.country-destination-heading p {
  color: #64708d;
  margin: 0;
}

.country-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.country-destination-card {
  background: #fff;
  border: 1px solid #dce3f0;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(3, 25, 87, 0.08);
  color: inherit;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.country-destination-card:hover {
  border-color: #b95710;
  box-shadow: 0 18px 38px rgba(3, 25, 87, 0.14);
  transform: translateY(-4px);
}

.country-destination-photo {
  background-position: center;
  background-size: cover;
  display: block;
  height: 190px;
}

.country-destination-card--empty .country-destination-photo {
  background: linear-gradient(135deg, #dbe9ff, #f8e2d2);
  position: relative;
}

.country-destination-card--empty .country-destination-photo::after {
  color: #0b2b7c;
  content: "✈";
  font-size: 3rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.country-destination-copy {
  display: block;
  padding: 18px 20px 20px;
}

.country-destination-copy strong {
  color: #071e67;
  display: block;
  font-size: 1.25rem;
}

.country-destination-copy small {
  color: #75809a;
  display: block;
  margin-top: 5px;
  text-transform: capitalize;
}

.country-destination-copy i {
  color: #9e4108;
  display: flex;
  font-style: normal;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 17px;
}

.country-picker-loading {
  align-items: center;
  color: #071e67;
  display: flex;
  gap: 12px;
  grid-column: 1/-1;
  padding: 50px 0;
}

.country-picker-loading span {
  animation: country-picker-spin 0.8s linear infinite;
  border: 3px solid #dce3f0;
  border-top-color: #b95710;
  border-radius: 50%;
  height: 28px;
  width: 28px;
}

@keyframes country-picker-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .country-destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 580px) {
  .country-destination-grid {
    grid-template-columns: 1fr;
  }
  .country-destination-photo {
    height: 170px;
  }
}
/* Larger, more legible live-search and hotel-offer experience. */
.offer-summary-item small {
  font-size: 11px;
}

.offer-summary-item strong {
  font-size: 15px;
}

.filter-heading h2, .trip-option-card h2 {
  font-size: 16px;
}

.budget-filter > span:first-child, .hotel-name-filter {
  font-size: 12px;
}

.budget-filter strong {
  font-size: 15px;
}

.hotel-name-filter small, .budget-scale small {
  font-size: 9px;
}

.filter-group legend {
  font-size: 13px;
}

.filter-group label {
  font-size: 11px;
}

.filter-stars b {
  font-size: 10px;
}

.clear-filters {
  min-height: 43px;
  font-size: 12px;
}

.package-price-label, .results-notice {
  font-size: 11px;
}

.results-list-head h1 {
  font-size: 25px;
}

.live-search-state, .results-list-head label, .results-list-head select {
  font-size: 11px;
}

.hotel-result-title h2 {
  font-size: 19px;
}

.hotel-result-title span {
  font-size: 13px;
}

.hotel-result-location {
  font-size: 10.5px;
}

.hotel-result-tags span, .detail-tags span {
  font-size: 9.5px;
}

.hotel-result-meta, .partial-payment {
  font-size: 10px;
}

.hotel-result-price small, .hotel-result-price > span {
  font-size: 10px;
}

.hotel-result-price strong {
  font-size: 23px;
}

.hotel-result-price button {
  min-height: 44px;
  font-size: 12px;
}

.airport-options label, .duration-card > span {
  font-size: 12px;
}

.duration-card > p, .duration-tip {
  font-size: 11px;
}

.offer-breadcrumbs {
  font-size: 11px;
}

.detail-location {
  font-size: 11px;
}

.detail-rating span b {
  font-size: 11px;
}

.detail-rating span small {
  font-size: 10px;
}

.package-includes h2, .flight-information h2, .available-rooms > h2, .selected-trip-card h2 {
  font-size: 14px;
}

.package-includes small {
  font-size: 9px;
}

.flight-legs header, .flight-leg-footer {
  font-size: 8.5px;
}

.flight-legs article > div > strong {
  font-size: 10.5px;
}

.flight-legs article > div > span {
  font-size: 8.5px;
}

.detail-tabs a {
  font-size: 11.5px;
}

.room-offer-info h3 {
  font-size: 15px;
}

.room-features {
  font-size: 10px;
}

.room-price small, .room-price span {
  font-size: 9.5px;
}

.room-price strong {
  font-size: 15px;
}

.room-price b {
  font-size: 18px;
}

.room-price button {
  min-height: 40px;
  font-size: 11px;
}

.selected-trip-card h2 {
  font-size: 16px;
}

.selected-trip-card li {
  font-size: 10.5px;
}

.selected-trip-card li small {
  font-size: 9px;
}

.price-summary h3 {
  font-size: 13px;
}

.price-summary p {
  font-size: 10.5px;
}

.price-summary .total strong {
  font-size: 19px;
}

.selected-trip-card > button {
  min-height: 46px;
  font-size: 12px;
}

.selected-trip-card > small, .booking-protection strong {
  font-size: 9.5px;
}

.booking-protection small {
  font-size: 9px;
}

@media (min-width: 901px) {
  .hotel-result-card {
    min-height: 194px;
    grid-template-columns: 230px minmax(0, 1fr) 155px;
    gap: 18px;
    padding: 10px;
  }
  .hotel-result-photo {
    min-height: 174px;
  }
  .detail-main-photo {
    height: 335px;
  }
  .detail-thumbnails button {
    height: 78px;
  }
  .detail-hotel-info h1 {
    font-size: 31px;
  }
  .selected-trip-card {
    padding: 22px;
  }
}
@media (min-width: 1121px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
  }
  .hotel-detail-overview {
    grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
    gap: 26px;
  }
}
@media (min-width: 1300px) {
  .results-header .page-shell, .results-page .page-shell, .offer-detail-page .page-shell {
    width: min(1340px, 100% - 48px);
  }
  .results-shell {
    grid-template-columns: 245px minmax(0, 1fr) 270px;
    gap: 20px;
  }
}
/* Final 110% scale for the two live booking views. */
.offer-search-summary {
  min-height: 90px;
}

.offer-summary-item small {
  font-size: 12px;
}

.offer-summary-item strong {
  font-size: 16.5px;
}

.change-search-button {
  min-height: 53px;
  font-size: 14px;
}

.filter-heading h2, .trip-option-card h2 {
  font-size: 17.5px;
}

.budget-filter > span:first-child, .hotel-name-filter {
  font-size: 13px;
}

.budget-filter strong {
  font-size: 16.5px;
}

.hotel-name-filter small, .budget-scale small {
  font-size: 10px;
}

.filter-group legend {
  font-size: 14px;
}

.filter-group label {
  font-size: 12px;
}

.clear-filters {
  min-height: 47px;
  font-size: 13px;
}

.package-price-label, .results-notice {
  font-size: 12px;
}

.results-list-head h1 {
  font-size: 27px;
}

.live-search-state, .results-list-head label, .results-list-head select {
  font-size: 12px;
}

.hotel-result-card[data-offer-id] {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.hotel-result-card[data-offer-id]:hover {
  transform: translateY(-3px);
  border-color: #d7bba8;
  box-shadow: 0 14px 34px rgba(6, 29, 96, 0.1);
}

.hotel-result-card[data-offer-id]:focus-visible {
  outline: 3px solid rgba(11, 76, 172, 0.25);
  outline-offset: 3px;
}

.hotel-result-card.opening {
  opacity: 0.72;
  cursor: wait;
}

.hotel-result-title h2 {
  font-size: 21px;
}

.hotel-result-title span {
  font-size: 14px;
}

.hotel-result-location {
  font-size: 11.5px;
}

.hotel-result-tags span, .detail-tags span {
  font-size: 10.5px;
}

.hotel-result-meta, .partial-payment {
  font-size: 11px;
}

.hotel-result-price small, .hotel-result-price > span {
  font-size: 11px;
}

.hotel-result-price strong {
  font-size: 25px;
}

.hotel-result-price button {
  min-height: 48px;
  font-size: 13px;
  pointer-events: none;
}

.airport-options label, .duration-card > span {
  font-size: 13px;
}

.duration-card > p, .duration-tip {
  font-size: 12px;
}

.offer-breadcrumbs {
  font-size: 12px;
}

.detail-hotel-info h1 {
  font-size: 34px;
}

.detail-room-selection {
  margin: 8px 0 2px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: #68728a;
}

.detail-room-selection span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.detail-room-selection strong {
  color: #6f2b0e;
  font-size: 14px;
}

.detail-location {
  font-size: 12px;
}

.package-includes h2, .flight-information h2, .selected-trip-card h2 {
  font-size: 15.5px;
}

.package-includes small {
  font-size: 10px;
}

.flight-legs header, .flight-leg-footer {
  font-size: 9.5px;
}

.flight-legs article > div > strong {
  font-size: 11.5px;
}

.flight-legs article > div > span {
  font-size: 9.5px;
}

.detail-tabs a {
  font-size: 12.5px;
}

.selected-trip-card h2 {
  font-size: 17.5px;
}

.selected-trip-card li {
  font-size: 11.5px;
}

.selected-trip-card li small {
  font-size: 10px;
}

.price-summary h3 {
  font-size: 14px;
}

.price-summary p {
  font-size: 11.5px;
}

.price-summary .total strong {
  font-size: 21px;
}

.selected-trip-card > button {
  min-height: 50px;
  font-size: 13px;
}

.selected-trip-card > small, .booking-protection strong {
  font-size: 10.5px;
}

.booking-protection small {
  font-size: 10px;
}

@media (min-width: 901px) {
  .hotel-result-card {
    min-height: 214px;
    grid-template-columns: 250px minmax(0, 1fr) 170px;
    gap: 20px;
    padding: 11px;
  }
  .hotel-result-photo {
    min-height: 192px;
  }
  .detail-main-photo {
    height: 370px;
  }
  .detail-thumbnails button {
    height: 86px;
  }
}
@media (min-width: 1121px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 29px;
  }
}
@media (min-width: 901px) and (max-width: 1299px) {
  .results-shell {
    grid-template-columns: 225px minmax(0, 1fr);
  }
  .results-trip-options {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .results-header .page-shell, .results-page .page-shell, .offer-detail-page .page-shell {
    width: min(1470px, 100% - 48px);
  }
  .results-shell {
    grid-template-columns: 265px minmax(0, 1fr) 295px;
    gap: 22px;
  }
}
/* One shared public navbar across every public route. */
.unified-public-header {
  z-index: 70;
  background: transparent;
  border-bottom: 0;
}

.unified-public-header .public-navbar.page-shell {
  width: min(1380px, 100% - 48px);
  height: 94px;
  grid-template-columns: 170px 1fr auto;
  gap: 22px;
}

.unified-public-header .nav-links {
  min-width: 0;
  gap: clamp(16px, 2.2vw, 34px);
}

.unified-public-header .nav-actions {
  min-width: 0;
  gap: 13px;
}

.unified-public-header .brand-logo {
  width: 86px;
  height: 78px;
}

.unified-public-header .phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.unified-public-header .nav-phone-icon {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: 0;
}

.unified-public-header .nav-facebook {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0b4cac;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.unified-public-header .nav-facebook:hover {
  transform: translateY(-2px);
  background: #083b89;
}

.unified-public-header .nav-facebook svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1380px) {
  html[lang=ka] .unified-public-header .phone,
  html[lang=ru] .unified-public-header .phone {
    display: none;
  }
}
@media (max-width: 1240px) {
  .unified-public-header .phone {
    display: none;
  }
}
@media (max-width: 1120px) {
  .unified-public-header .public-navbar.page-shell {
    grid-template-columns: 120px 1fr auto;
    gap: 14px;
  }
  .unified-public-header .nav-links {
    gap: 12px;
    font-size: 13px;
  }
  .unified-public-header .plan-trip {
    padding-inline: 14px;
  }
  .unified-public-header .phone {
    display: none;
  }
}
@media (max-width: 1050px) {
  .unified-public-header .public-navbar.page-shell {
    grid-template-columns: 1fr auto auto;
  }
  .unified-public-header .menu-toggle {
    display: grid;
    justify-self: end;
  }
  .unified-public-header .nav-links {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .unified-public-header .nav-links.open {
    display: flex;
  }
  .unified-public-header .nav-links a {
    padding: 12px;
  }
  .unified-public-header .nav-links a::after {
    display: none;
  }
  .unified-public-header .plan-trip {
    display: none;
  }
}
@media (max-width: 900px) {
  .unified-public-header .public-navbar.page-shell {
    width: min(100% - 30px, 720px);
    height: 82px;
    grid-template-columns: 1fr auto auto;
  }
  .unified-public-header .brand-logo {
    width: 70px;
    height: 64px;
  }
}
@media (max-width: 680px) {
  .unified-public-header .public-navbar.page-shell {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
  }
}
/* Final state for an unavailable hotel search. */
.hotel-unavailable-state {
  min-height: 480px;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hotel-unavailable-state[hidden] {
  display: none;
}

.hotel-offer-loading-shell.is-unavailable #hotel-loading-skeleton,
.hotel-offer-loading-shell.is-unavailable #hotel-loading-animation,
#hotel-loading-skeleton[hidden],
#hotel-loading-animation[hidden] {
  display: none !important;
  visibility: hidden !important;
}

.hotel-unavailable-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: #b95710;
  background: #fff3ea;
  border-radius: 50%;
}

.hotel-unavailable-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hotel-unavailable-state > small {
  color: #b95710;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hotel-unavailable-state h1 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 43px);
}

.hotel-unavailable-state p {
  max-width: 620px;
  margin: 0;
  color: #68728a;
  font-size: 16px;
  line-height: 1.65;
}

.hotel-unavailable-state p strong {
  color: var(--navy);
}

.hotel-unavailable-dates {
  margin-top: 10px;
  color: #485774;
  font-weight: 700;
}

.hotel-unavailable-state > div {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-unavailable-state button, .hotel-unavailable-state a {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hotel-unavailable-state button {
  color: #fff;
  background: var(--navy);
  border: 0;
}

.hotel-unavailable-state a {
  color: var(--navy);
  background: #fff;
  border: 1px solid #ccd4e2;
}

.contact-modal-details .contact-social-link {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
}

.contact-modal-details .contact-social-link > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-social-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-social-link--whatsapp {
  color: #087c4c !important;
  background: #f2fbf6;
}

.contact-social-link--facebook {
  color: #0b4cac !important;
  background: #f2f6fd;
}

/* Shared public footer. */
.public-footer {
  margin-top: 50px;
}

.public-footer .visa-footer-grid {
  padding-top: 34px;
  padding-bottom: 32px;
}

.public-footer-bottom-wrap {
  width: 100%;
  background: var(--navy);
}

.public-footer .visa-footer-bottom {
  min-height: 52px;
  color: #fff;
  border-top: 0;
}

.public-footer .visa-footer-bottom a, .public-footer .visa-footer-bottom span {
  color: rgba(255, 255, 255, 0.88);
}

.public-footer .visa-footer-bottom > span:last-child {
  align-items: center;
}

.visa-footer-grid svg.public-footer-facebook {
  fill: currentColor;
  stroke: none;
}

.visa-footer-grid svg.public-footer-whatsapp {
  fill: #25d366;
  stroke: none;
}

/* Visa service details */
body.visa-modal-open {
  overflow: hidden;
}

.visa-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 26px;
}

.visa-detail-modal[hidden],
.visa-detail-section[hidden],
.visa-detail-note[hidden],
.visa-fee-box > div[hidden] {
  display: none;
}

.visa-detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(5, 17, 48, 0.62);
  cursor: default;
}

.visa-detail-dialog {
  position: relative;
  width: min(1110px, 100%);
  max-height: min(89vh, 760px);
  overflow: auto;
  overscroll-behavior: contain;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(7, 35, 105, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 18, 66, 0.28);
  scrollbar-width: thin;
}

.visa-detail-close {
  position: absolute;
  top: 16px;
  right: 19px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #0c1838;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.visa-detail-close:hover,
.visa-detail-close:focus-visible {
  color: var(--copper);
  background: #f5f7fb;
  outline: none;
}

.visa-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
  padding: 25px 34px 30px;
}

.visa-detail-left,
.visa-detail-right {
  min-width: 0;
}

.visa-detail-visual {
  position: relative;
  height: 208px;
  margin-bottom: 33px;
  overflow: visible;
  background: #eef3fb;
  border-radius: 16px;
}

.visa-detail-visual > img:first-child {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.visa-detail-flag {
  position: absolute;
  left: 18px;
  bottom: -24px;
  min-width: 78px;
  min-height: 54px;
  display: grid;
  place-items: center;
}

.visa-detail-flag-image {
  width: auto;
  max-width: 94px;
  height: 62px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(0, 20, 60, 0.18));
}

.visa-detail-flag-emoji {
  font-family: "Twemoji Country Flags", "Segoe UI Emoji", sans-serif;
  font-size: 62px;
  line-height: 1;
  filter: drop-shadow(0 4px 5px rgba(0, 20, 60, 0.18));
}

.visa-detail-left > h2 {
  margin: 0 0 4px 12px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
}

.visa-detail-type {
  display: block;
  margin: 0 12px 13px;
  font-size: 17px;
}

.visa-detail-description {
  max-width: 47ch;
  margin: 0 12px 20px;
  color: #263554;
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-line;
}

.visa-detail-section {
  padding: 17px 0 18px;
  border-top: 1px solid #dfe4ec;
}

.visa-detail-left .visa-detail-section {
  margin: 0 7px;
}

.visa-detail-right .visa-detail-section:first-child {
  padding-top: 5px;
  border-top: 0;
}

.visa-detail-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 1.25;
}

.visa-detail-section h3 svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visa-fee-box {
  overflow: hidden;
  background: #f7f8fa;
  border: 1px solid #dfe3e9;
  border-radius: 10px;
}

.visa-fee-box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 48px;
  padding: 9px 18px;
}

.visa-fee-box > div + div {
  border-top: 1px solid #dfe3e9;
}

.visa-fee-box span {
  color: #34415b;
  font-size: 14px;
}

.visa-fee-box strong {
  flex: 0 0 auto;
  color: #0a1430;
  font-size: 17px;
}

.visa-detail-footnote {
  margin: 9px 3px 0;
  color: #65718a;
  font-size: 12px;
  font-style: italic;
  line-height: 1.45;
  white-space: pre-line;
}

.visa-validity-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.visa-validity-option {
  min-height: 67px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d6dce6;
  border-radius: 8px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.visa-validity-option.selected {
  border-color: var(--copper);
  box-shadow: inset 0 0 0 1px var(--copper), 0 4px 12px rgba(159, 67, 20, 0.08);
}

.visa-validity-radio {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
  border: 2px solid #a1a9b8;
  border-radius: 50%;
}

.visa-validity-option.selected .visa-validity-radio {
  border: 4px solid var(--copper);
}

.visa-validity-option strong,
.visa-validity-option small {
  display: block;
}

.visa-validity-option strong {
  font-size: 12px;
  line-height: 1.3;
}

.visa-validity-option small {
  margin-top: 4px;
  color: #5d6880;
  font-size: 10px;
}

.visa-detail-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 15px;
  color: #253552;
  background: #edf5ff;
  border: 1px solid #cfe0f5;
  border-radius: 8px;
}

.visa-detail-note > span {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: grid;
  place-items: center;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  font-weight: 700;
}

.visa-detail-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-line;
}

.visa-document-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visa-document-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #25324d;
  font-size: 13px;
  line-height: 1.35;
}

.visa-document-list li > span {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.visa-processing-time {
  display: inline-flex;
  padding: 8px 18px;
  color: #16724f;
  background: #eaf8f1;
  border: 1px solid #cdebdc;
  border-radius: 7px;
  font-size: 15px;
}

@media (max-width: 820px) {
  .visa-detail-modal {
    padding: 14px;
  }

  .visa-detail-dialog {
    max-height: calc(100vh - 28px);
    border-radius: 17px;
  }

  .visa-detail-layout {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 20px;
  }

  .visa-detail-right .visa-detail-section:first-child {
    padding-top: 18px;
    border-top: 1px solid #dfe4ec;
  }
}

@media (max-width: 520px) {
  .visa-detail-modal {
    padding: 0;
  }

  .visa-detail-dialog {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .visa-detail-layout {
    padding: 15px;
  }

  .visa-detail-close {
    top: 9px;
    right: 9px;
  }

  .visa-detail-visual {
    height: 180px;
  }

  .visa-validity-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .public-footer .visa-footer-bottom {
    padding-block: 14px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
