@import url("all.css");
@font-face {
  font-family: "Rosellinda";
  font-style: normal;
  font-display: swap;
  src: url("../webfonts/SVN-Rosellinda-Alyamore.otf") format("opentype");
}
@font-face {
  font-family: "SVN-Segoe-UI";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/SVN-Segoe-UI.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/Lato-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/Lato-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/PlayfairDisplay-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/PlayfairDisplay-Bold.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

.page-home {
  display: block;
}

.container {
  max-width: 1170px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  overflow: visible;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1500px;
}
.header__logo {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 50px;
  color: #FFFFFF;
  text-transform: capitalize;
  flex-shrink: 0;
}
.header__logo--asset {
  display: flex;
  align-items: center;
  width: 176px;
  height: 72px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-transform: none;
}
.header__logo--asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  overflow: visible;
}
.header__top {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__contact, .header__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.header__contact i, .header__lang i {
  color: #E9AF40;
}
.header__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}
.header__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.header__nav {
  width: 100%;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__nav-item {
  display: flex;
  align-items: center;
  position: relative;
}
.header__nav-item:has(.header__submenu)::before {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: -11px;
}
.header__nav-item:has(.header__submenu):hover > .header__submenu, .header__nav-item:has(.header__submenu):focus-within > .header__submenu, .header__nav-item:has(.header__submenu).is-open > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__nav-item:has(.header__submenu):hover > .header__nav-link .fa-chevron-down, .header__nav-item:has(.header__submenu):focus-within > .header__nav-link .fa-chevron-down, .header__nav-item:has(.header__submenu).is-open > .header__nav-link .fa-chevron-down {
  transform: rotate(180deg);
}
.header__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(8px);
  min-width: 130px;
  background: #FFFFFF;
  box-shadow: 2px 16px 9.5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.header__submenu li {
  border-bottom: 1px solid #f0f0f0;
}
.header__submenu li:last-child {
  border-bottom: 0;
}
.header__submenu-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  text-transform: none;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.header__submenu-link:hover, .header__submenu-link:focus-visible {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header__nav-link {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.header__nav-link:hover {
  color: #F8E46F;
}
.header__nav-link--active {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom-color: #F8E46F;
}
.header__nav-link--active i {
  color: #FFFFFF;
  -webkit-text-fill-color: currentColor;
}
.header__nav-link--icon-only {
  border-bottom: 0;
  padding-bottom: 0;
  background: none;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
  font: inherit;
}
.header__nav-link--has-icon .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.25s ease;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.header__cta:hover {
  opacity: 0.9;
  color: #1C1C1C;
}
.header__cta {
  height: 40px;
  text-transform: uppercase;
}
.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #FFFFFF;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .header__toggle {
    display: block;
  }
  .header__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    padding: 20px;
    align-items: stretch;
  }
  .header__right.is-open {
    display: flex;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .header__nav-item:has(.header__submenu) {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .header__submenu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    display: none;
  }
  .header__submenu li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .header__submenu-link {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
  }
  .header__submenu-link:hover, .header__submenu-link:focus-visible {
    color: #F8E46F;
    -webkit-text-fill-color: currentColor;
    background: none;
  }
  .header__nav-item:has(.header__submenu).is-open > .header__submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__inner {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.header--solid {
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #D9D9D9;
}
.header--solid .header__logo {
  color: #0B1D35;
}
.header--solid .header__contact,
.header--solid .header__lang {
  color: #121212;
}
.header--solid .header__contact:hover,
.header--solid .header__lang:hover {
  color: #E9AF40;
}
.header--solid .header__divider {
  background: rgba(0, 0, 0, 0.12);
}
.header--solid .header__line {
  background: #D9D9D9;
}
.header--solid .header__nav-link {
  color: #121212;
}
.header--solid .header__nav-link:hover {
  color: #E9AF40;
}
.header--solid .header__nav-link--active {
  color: #E9AF40;
  border-bottom-color: #E9AF40;
}
.header--solid .header__toggle {
  color: #121212;
}
@media (max-width: 1200px) {
  .header--solid .header__right {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #D9D9D9;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  .header--solid .header__nav-link {
    color: #121212;
  }
}

.header--bar-dark {
  position: relative;
  z-index: 100;
  background: #121212;
  padding: 16px 0;
  border-bottom: 0;
}
.header--bar-dark .header__inner {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.header--bar-dark .header__logo {
  color: #FFFFFF;
}
.header--bar-dark .header__logo--asset {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 176px;
  height: 72px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-transform: none;
}
.header--bar-dark .header__logo--asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header--bar-dark .header__nav-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  vertical-align: middle;
  transform: rotate(90deg);
}
.header--bar-dark .header__right {
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.header--bar-dark .header__nav-list {
  gap: 28px;
}
.header--bar-dark .header__nav-link {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.header--bar-dark .header__nav-link:hover:not(.header__nav-link--emphasized):not(.header__nav-link--icon-only) {
  color: #F8E46F;
  -webkit-text-fill-color: currentColor;
  background: none;
}
.header--bar-dark .header__nav-link--has-icon .header__nav-chevron {
  margin-left: 0;
}
.header--bar-dark .header__nav-link--emphasized {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom-color: #F8E46F;
}
.header--bar-dark .header__nav-link--emphasized:hover {
  opacity: 0.88;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header--bar-dark .header__nav-link--icon-only {
  border-bottom: 0;
  padding-bottom: 0;
  color: #FFFFFF;
}
.header--bar-dark .header__nav-link--icon-only:hover {
  color: #F8E46F;
}
.header--bar-dark .header__nav-link--icon-only:hover img {
  opacity: 0.85;
}
.header--bar-dark .header__nav-link--icon-only img {
  width: 20px;
  height: 20px;
  display: block;
}
.header--bar-dark .header__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}
.header--bar-dark .header__divider--asset {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
}
.header--bar-dark .header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 3px 16px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  border: 0;
  border-radius: 0;
  color: #121212;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header--bar-dark .header__cta:hover {
  opacity: 0.92;
  color: #121212;
}
.header--bar-dark .header__toggle {
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .header--bar-dark .header__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    padding: 20px;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  }
  .header--bar-dark .header__right.is-open {
    display: flex;
  }
  .header--bar-dark .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .header--bar-dark .header__nav-link {
    color: #FFFFFF;
  }
  .header--bar-dark .header__nav-link--emphasized {
    border-bottom-color: #F8E46F;
  }
  .header--bar-dark .header__divider {
    display: none;
  }
  .header--bar-dark .header__cta {
    align-self: flex-start;
  }
  .header--bar-dark .header__inner {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.inquire-page {
  padding: 40px 0 60px 0;
}
.inquire-page.customize-page {
  padding-top: 40px;
  padding-bottom: 60px;
}
.inquire-page.customize-page .customize-page__title {
  max-width: 520px;
  text-transform: capitalize;
}
.inquire-page.customize-page .inquire-form__heading {
  margin: 0;
}
.inquire-page.customize-page .customize-page__block {
  gap: 16px;
}
.inquire-page__breadcrumb {
  padding: 12px 0;
}
.inquire-page__breadcrumb-inner {
  margin: 0 auto;
}
.inquire-page__breadcrumb-list {
  --bs-breadcrumb-divider-color: #D9D9D9;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.inquire-page__breadcrumb-list a {
  color: #8C8C8C;
  text-decoration: none;
}
.inquire-page__breadcrumb-list a:hover {
  color: #E9AF40;
}
.inquire-page__breadcrumb-list .active {
  color: #121212;
}
.inquire-page__inner {
  margin: 0 auto;
}
.inquire-page__layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.inquire-page__main {
  flex: 1 1 0;
}
@media (max-width: 1200px) {
  .inquire-page__layout {
    flex-direction: column;
    align-items: stretch;
  }
  .inquire-page__main {
    max-width: none;
  }
}

.inquire-form {
  width: 100%;
  padding: 24px;
  background: #f3f4f3;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.inquire-form__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.inquire-form__heading {
  margin: 0;
  padding-left: 2.25rem;
  list-style-position: outside;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #121212;
}
.inquire-form__heading-item {
  padding-left: 0.25rem;
}
.inquire-form__grid {
  display: grid;
  gap: 16px;
  width: 100%;
}
.inquire-form__grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .inquire-form__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.inquire-form__grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .inquire-form__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.inquire-form__contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.inquire-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.inquire-form__label {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.inquire-form__label-muted {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-weight: 400;
  color: #8c8c8c;
}
.inquire-form__req {
  color: #dc1f26;
}
.inquire-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.inquire-form__input-wrap:focus-within {
  border-color: rgba(233, 175, 64, 0.65);
  box-shadow: 0 0 0 3px rgba(233, 175, 64, 0.2);
}
.inquire-form__input-icon {
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 16px;
  color: #8c8c8c;
}
.inquire-form__input {
  width: 100%;
  height: 44px;
  padding: 10px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.inquire-form__input::placeholder {
  color: #8c8c8c;
}
.inquire-form__input:focus {
  outline: 0;
  border-color: #E9AF40;
  box-shadow: none;
}
.inquire-form__input--has-icon {
  flex: 1;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.inquire-form__input--has-icon:focus {
  box-shadow: none;
}
.inquire-form__input--number {
  -moz-appearance: textfield;
  appearance: textfield;
}
.inquire-form__input--number::-webkit-outer-spin-button, .inquire-form__input--number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inquire-form__select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238c8c8c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.inquire-form__textarea {
  width: 100%;
  min-height: 96px;
  padding: 10px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #FFFFFF;
  resize: vertical;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.inquire-form__textarea::placeholder {
  color: #8c8c8c;
}
.inquire-form__textarea:focus {
  outline: 0;
  border-color: rgba(233, 175, 64, 0.65);
  box-shadow: 0 0 0 3px rgba(233, 175, 64, 0.2);
}
.inquire-form__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.inquire-form__hint-link {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #121212;
  text-decoration: none;
}
.inquire-form__hint-link:hover {
  color: #E9AF40;
  text-decoration: underline;
}
.inquire-form__hint-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E9AF40;
  font-size: 20px;
  line-height: 1;
}
.inquire-form__divider {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid #d9d9d9;
}
.inquire-form__actions {
  display: flex;
  justify-content: center;
  width: 100%;
}
.inquire-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 48px;
  padding: 8px 12px;
  border: 0;
  background: #E9AF40;
  color: #121212;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.inquire-form__submit:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}
.inquire-form__submit:active {
  transform: scale(0.98);
}
.inquire-form__submit:focus-visible {
  outline: 2px solid #121212;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .inquire-form {
    padding: 16px;
  }
}

.inquire-page-body {
  background: #FFFFFF;
}
.inquire-page-body .header--bar-dark {
  position: relative;
}

.customize-page.inquire-page .inquire-page__breadcrumb {
  margin-bottom: 0;
}
.customize-page__title {
  margin: 0 auto 24px;
  max-width: 960px;
  padding: 0 16px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0b1d35;
}
.customize-page__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.customize-page__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.customize-page__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.customize-page__block-title {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #121212;
}
.customize-page__card {
  padding: 24px;
  background: #f3f4f3;
  border-radius: 4px;
  width: 100%;
}
.customize-page__card--tour {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.customize-page__subsection {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.customize-page__subsection-title {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #121212;
}
.customize-page__dest-wrap {
  width: 100%;
}
.customize-page__dest-scroll {
  flex: 1;
  min-width: 0;
  max-height: 80px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 #ededed;
}
.customize-page__dest-scroll::-webkit-scrollbar {
  width: 3px;
}
.customize-page__dest-scroll::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 2px;
}
.customize-page__dest-scroll::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 2px;
}
.customize-page__dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .customize-page__dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.customize-page__inline-checks {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .customize-page__inline-checks {
    flex-wrap: wrap;
  }
}
.customize-page__inline-checks--wrap {
  flex-wrap: wrap;
  gap: 16px 32px;
}
.customize-page__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  cursor: pointer;
}
.customize-page__check input[type=checkbox] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #121212;
}
.customize-page__acc-types {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 12px;
  width: 100%;
}
@media (max-width: 1200px) {
  .customize-page__acc-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .customize-page__acc-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.customize-page__acc-row {
  margin-top: 4px;
}
.customize-page__meals-grid {
  display: grid;
  grid-template-columns: minmax(0, 242px) minmax(0, 1fr);
  gap: 24px 32px;
  width: 100%;
}
@media (max-width: 992px) {
  .customize-page__meals-grid {
    grid-template-columns: 1fr;
  }
}
.customize-page__meals-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.customize-page__meals-diet-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.customize-page .inquire-form__select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238c8c8c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.customize-page .inquire-form__input:focus,
.customize-page .inquire-form__textarea:focus,
.customize-page .inquire-form__select:focus,
.customize-page .inquire-form__input-wrap:focus-within {
  border-color: #E9AF40;
  box-shadow: none;
}
.customize-page .inquire-form__actions {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .customize-page__title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .customize-page__title {
    font-size: 28px;
    line-height: 36px;
  }
  .customize-page__card {
    padding: 16px;
  }
}

.inquire-summary {
  flex-shrink: 0;
  width: 380px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .inquire-summary {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
.inquire-summary__media {
  position: relative;
  width: 100%;
  aspect-ratio: 380/257.79;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.inquire-summary__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inquire-summary__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inquire-summary__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inquire-summary__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #121212;
}
.inquire-summary__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.inquire-summary__title-link:hover {
  color: #E9AF40;
}
.inquire-summary__guests {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.inquire-summary__rule {
  margin: 0;
  border: 0;
  border-top: 1px solid #d9d9d9;
}
.inquire-summary__date-block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.inquire-summary__date-icon {
  font-size: 16px;
  color: #8c8c8c;
  margin-top: 2px;
}
.inquire-summary__date-label {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8c8c8c;
}
.inquire-summary__date-value {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.inquire-summary__lines {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inquire-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.inquire-summary__line-label {
  margin: 0 0 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #8c8c8c;
}
.inquire-summary__line-detail {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.inquire-summary__line-total {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
  white-space: nowrap;
}
.inquire-summary__provisional {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.inquire-summary__provisional-label {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
}
.inquire-summary__provisional-value {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #E9AF40;
  white-space: nowrap;
}
@media (min-width: 1201px) {
  .inquire-summary {
    position: sticky;
    top: 96px;
  }
}

.header-search {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.header-search.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.header-search.is-open .header-search__panel {
  transform: translateY(0);
}
.header-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.header-search__panel {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: #FFFFFF;
  padding: 24px 0 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-12px);
  transition: transform 0.25s ease;
}
.header-search__form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.header-search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
}
.header-search__field i {
  flex-shrink: 0;
  color: #8c8c8c;
  font-size: 16px;
}
.header-search__input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.header-search__input::placeholder {
  color: #8c8c8c;
}
.header-search__input:focus {
  outline: 0;
}
.header-search__submit {
  flex-shrink: 0;
  min-width: 120px;
  height: 52px;
  padding: 0 24px;
  border: 0;
  background: #E9AF40;
  color: #121212;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: background 0.2s ease;
}
.header-search__submit:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}
@media (max-width: 992px) {
  .header-search__panel {
    padding: 20px 0 24px;
  }
  .header-search__form {
    flex-direction: column;
  }
  .header-search__submit {
    width: 100%;
  }
}

.hero {
  position: relative;
  min-height: 918px;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.8) 0%, rgba(28, 28, 28, 0) 17.54%);
  mix-blend-mode: multiply;
}
.hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 180px 0 120px;
  text-align: center;
}
.hero__text {
  margin-bottom: 32px;
}
.hero__subtitle {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 16px;
}
.hero__title {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 64px;
  text-transform: uppercase;
  margin: 0;
}
.hero__search {
  display: flex;
  align-items: stretch;
  max-width: 724px;
  margin: 0 auto;
  background: #FFFFFF;
  height: 72px;
}
.hero__search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 6px 16px;
  text-align: left;
}
.hero__search-label {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #8C8C8C;
  margin: 0;
}
.hero__search-input-wrap, .hero__search-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #121212;
}
.hero__search-input-wrap i, .hero__search-select-wrap i {
  color: #8C8C8C;
  font-size: 14px;
}
.hero__search-input, .hero__search-select {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #121212;
  outline: none;
  appearance: none;
}
.hero__search-sep {
  width: 1px;
  height: 56px;
  background: #D9D9D9;
  align-self: center;
}
.hero__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.hero__search-btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.hero__search-btn {
  height: 100%;
  padding: 0 24px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .hero {
    min-height: 700px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 44px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__search {
    flex-direction: column;
    height: auto;
  }
  .hero__search-sep {
    width: 100%;
    height: 1px;
  }
  .hero__search-btn {
    height: 56px;
  }
}

.about {
  position: relative;
  height: 794px;
  background: #FFFFFF;
  overflow: hidden;
}
.about__decor, .about__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about__mountain {
  position: absolute;
  left: 0;
  top: -36px;
  width: 676px;
  height: 676px;
  object-fit: cover;
}
.about__map-bg {
  position: absolute;
  left: calc(50% + 350.5px);
  top: -22px;
  transform: translateX(-50%);
  width: 853px;
  height: 915px;
  object-fit: cover;
}
.about__overlay {
  position: absolute;
  left: -76px;
  top: 281px;
  width: 898px;
  height: 599px;
  object-fit: cover;
  opacity: 0.15;
}
.about__watermark {
  position: absolute;
  left: calc(50% + 3.5px);
  top: 260px;
  transform: translateX(-50%);
  font-family: "Segoe UI";
  font-size: 164px;
  line-height: 164px;
  font-weight: 900;
  letter-spacing: 6.56px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  background-image: linear-gradient(90deg, rgba(2, 11, 5, 0.5) 0%, rgba(2, 11, 5, 0.5) 100%), url("../assets/images/about-vietnam-text.jpg");
  background-repeat: repeat, no-repeat;
  background-position: top left, 99.98% 21.61%;
  background-size: auto auto, 100.01% 393.13%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__map {
  position: absolute;
  left: 50%;
  top: 84px;
  transform: translateX(-50%);
  width: 496px;
  height: 648px;
  object-fit: contain;
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.15));
}
.about__content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.about__intro {
  position: absolute;
  left: calc(50% + 350px);
  top: 97.75px;
  transform: translateX(-50%);
  width: 470px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  margin: 0;
}
.about__heading {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #0B1D35;
  margin: 0;
}
.about__desc {
  position: absolute;
  left: calc(50% + 350px);
  top: 467.75px;
  transform: translateX(-50%);
  width: 470px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #434343;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__desc p {
  margin: 0;
}
@media (max-width: 1400px) {
  .about {
    height: auto;
    min-height: 794px;
    padding-bottom: 80px;
  }
  .about__mountain {
    width: min(676px, 42vw);
    height: auto;
    aspect-ratio: 1;
  }
  .about__map-bg {
    width: min(853px, 48vw);
    height: auto;
  }
  .about__overlay {
    width: min(898px, 55vw);
    height: auto;
    aspect-ratio: 898/599;
  }
  .about__watermark {
    font-size: clamp(72px, 10vw, 164px);
    line-height: 1;
  }
  .about__map {
    width: min(496px, 38vw);
    height: auto;
  }
  .about__intro, .about__desc {
    left: auto;
    right: 24px;
    transform: none;
    width: min(470px, 100% - 48px);
  }
}
@media (max-width: 1200px) {
  .about {
    min-height: auto;
    padding: 48px 0 64px;
  }
  .about__decor, .about__visual {
    position: relative;
    inset: auto;
    min-height: 360px;
  }
  .about__mountain, .about__map-bg, .about__overlay {
    opacity: 0.6;
  }
  .about__mountain {
    top: 0;
    width: 55%;
  }
  .about__map-bg {
    top: 0;
    left: auto;
    right: 0;
    transform: none;
    width: 50%;
  }
  .about__overlay {
    display: none;
  }
  .about__watermark {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(48px, 14vw, 96px);
  }
  .about__map {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(280px, 55vw);
  }
  .about__content {
    height: auto;
    padding: 0 24px;
  }
  .about__intro, .about__desc {
    position: static;
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
  }
  .about__intro {
    margin-bottom: 24px;
  }
}

.distinction {
  padding: 60px 0 80px;
  background: #f8f8f8;
}
.distinction__header {
  max-width: 900px;
  margin: 0 auto 32px;
}
.distinction__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  margin-bottom: 16px;
}
.distinction__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
}
.distinction__slider-wrap {
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 992px) {
  .distinction__slider-wrap {
    overflow: visible;
    max-width: none;
  }
}
.distinction__carousel .owl-stage-outer {
  overflow: visible;
}
.distinction__carousel .owl-item {
  opacity: 0.4;
  transition: opacity 0.45s ease;
}
.distinction__carousel .owl-item.is-focus {
  opacity: 1;
}
.distinction__carousel .owl-item.is-faded {
  opacity: 0.4;
}
.distinction__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.distinction__dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  margin: 0;
  background: #D9D9D9;
  position: relative;
  cursor: pointer;
}
.distinction__dots .owl-dot span {
  display: none;
}
.distinction__dots .owl-dot.active {
  background: transparent;
  border: 2px solid #E9AF40;
  width: 20px;
  height: 20px;
}
.distinction__dots .owl-dot.active::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #E9AF40;
}

.tour-card {
  width: 370px;
  max-width: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden;
  transition: all 1s;
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.tour-card__media {
  position: relative;
  aspect-ratio: 370/240;
  overflow: hidden;
}
.tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}
.tour-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
}
.tour-card__days {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #4CB6C8;
  margin: 0;
}
.tour-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #121212;
  margin: 0;
}
.tour-card__excerpt {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8C8C8C;
  margin: 0;
}
.tour-card__line {
  border: 0;
  border-top: 1px solid #F0F0F0;
  margin: 0;
}
.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tour-card__price-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #8C8C8C;
}
.tour-card__price-value {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #121212;
}
.tour-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.tour-card__btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.tour-card__btn {
  height: 40px;
}

.private-tours {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.private-tours__bg {
  position: absolute;
  inset: 0;
}
.private-tours__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.private-tours__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #121212 17.55%, rgba(18, 18, 18, 0.4) 100%);
}
.private-tours__inner {
  position: relative;
  z-index: 2;
}
.private-tours__header {
  max-width: 900px;
  margin: 0 auto 60px;
}
.private-tours__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.private-tours__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #BFBFBF;
}
.private-tours__slider-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 704px;
  overflow: hidden;
}
.private-tours__carousel .owl-stage-outer {
  overflow: hidden;
}
.private-tours__carousel .owl-stage {
  display: flex;
  align-items: center;
  transition-timing-function: ease-in-out !important;
}
.private-tours__carousel .owl-item {
  width: 970px;
}
.private-tours__carousel .owl-item:not(.center):not(:has(+ .owl-item.center)):not(.owl-item.center + .owl-item) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.private-card {
  width: 970px;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}
.private-card__featured {
  position: relative;
  display: block;
  overflow: hidden;
  height: 632px;
  border: 1px solid transparent;
  transition: height 0.55s ease-in-out, border-color 0.55s ease-in-out;
}
.private-card__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 496px;
  overflow: hidden;
  background: #121212;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}
.private-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.58);
  opacity: 1;
  transition: opacity 0.55s ease-in-out;
  pointer-events: none;
}
.private-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.private-card__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 496px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 48px;
  text-align: center;
  background: transparent;
  opacity: 0;
  transition: opacity 0.55s ease-in-out, background 0.55s ease-in-out, gap 0.55s ease-in-out;
}
.private-card__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}
.private-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  margin: 0;
  white-space: nowrap;
  transition: color 0.55s ease-in-out;
}
.private-card__desc, .private-card__link {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.55s ease-in-out, max-height 0.55s ease-in-out;
}
.private-card__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  margin: 0;
}
.private-card__link {
  display: inline-flex;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #E9AF40;
  border-bottom: 1px solid #E9AF40;
  padding-bottom: 2px;
  text-decoration: none;
}
.private-card__link:hover {
  color: #E9AF40;
  opacity: 0.85;
}

.private-tours__carousel .owl-item:has(+ .owl-item.center) .private-card__featured,
.private-tours__carousel .owl-item.center + .owl-item .private-card__featured {
  height: 632px;
  border-color: #FFFFFF;
}
.private-tours__carousel .owl-item:has(+ .owl-item.center) .private-card__media,
.private-tours__carousel .owl-item:has(+ .owl-item.center) .private-card__body,
.private-tours__carousel .owl-item.center + .owl-item .private-card__media,
.private-tours__carousel .owl-item.center + .owl-item .private-card__body {
  opacity: 0;
  pointer-events: none;
}
.private-tours__carousel .owl-item:has(+ .owl-item.center) .private-card__body,
.private-tours__carousel .owl-item:has(+ .owl-item.center) .private-card__intro,
.private-tours__carousel .owl-item:has(+ .owl-item.center) .private-card__title {
  align-items: flex-end;
  text-align: right;
}
.private-tours__carousel .owl-item.center + .owl-item .private-card__body,
.private-tours__carousel .owl-item.center + .owl-item .private-card__intro,
.private-tours__carousel .owl-item.center + .owl-item .private-card__title {
  align-items: flex-start;
  text-align: left;
}
.private-tours__carousel .owl-item.center .private-card__featured {
  height: 704px;
  border-color: transparent;
}
.private-tours__carousel .owl-item.center .private-card__media {
  opacity: 1;
}
.private-tours__carousel .owl-item.center .private-card__media::after {
  opacity: 0;
}
.private-tours__carousel .owl-item.center .private-card__body {
  opacity: 1;
  gap: 32px;
  background: #FFFFFF;
}
.private-tours__carousel .owl-item.center .private-card__title {
  color: #121212;
  white-space: normal;
}
.private-tours__carousel .owl-item.center .private-card__desc {
  opacity: 1;
  max-height: 140px;
}
.private-tours__carousel .owl-item.center .private-card__link {
  opacity: 1;
  max-height: 32px;
}

@media (max-width: 1200px) {
  .private-tours__carousel .owl-item {
    width: auto;
    height: auto;
  }
  .private-card {
    width: 100%;
    max-width: 520px;
  }
  .private-tours__carousel .owl-item:not(.center):not(.is-focus) .private-card__featured {
    height: 420px;
  }
  .private-tours__carousel .owl-item:not(.center):not(.is-focus) .private-card__body {
    padding: 0 32px;
  }
}
.booking {
  position: relative;
  background: #121212;
  padding: 70px 0;
  overflow: hidden;
}
.booking__deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 27%;
  pointer-events: none;
}
.booking__leaves {
  position: absolute;
  right: 0%;
  top: 0;
  width: 14%;
  pointer-events: none;
}
.booking__inner {
  position: relative;
  z-index: 2;
}
.booking__photo {
  position: relative;
  overflow: hidden;
  border: 16px solid #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.booking__photo:hover .booking__photo-img {
  transform: scale(1.05);
}
.booking__photo-img {
  width: 100%;
  display: block;
  aspect-ratio: 451/500;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.booking__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.booking__subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.booking__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.booking__step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.booking__step:last-child {
  border-bottom: 0;
}
.booking__step:hover .booking__step-num,
.booking__step:hover .booking__step-title {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.booking__step-num {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  flex: 0 0 74px;
}
.booking__step-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.booking__step-content p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}

#go-to-top {
  position: fixed;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9;
}
#go-to-top.active {
  transform: rotate(180deg);
}

.destinations {
  position: relative;
  min-height: 876px;
  color: #FFFFFF;
  overflow: hidden;
}
.destinations__stage {
  position: relative;
  min-height: 876px;
}
.destinations__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}
.destinations__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transform-origin: center center;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  will-change: opacity, transform;
  filter: brightness(0.92);
}
.destinations__bg-img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  filter: brightness(1);
}
.destinations__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(230.34deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.destinations__inner {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0 0 24px;
}
.destinations__layout {
  display: grid;
  grid-template-columns: 280px minmax(320px, 545px) 1fr;
  gap: 32px 48px;
  align-items: center;
  min-height: 876px;
  padding: 60px 0;
}
.destinations__map-wrap {
  position: relative;
  width: 411.914px;
  height: 597.055px;
}
.destinations__map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
  pointer-events: none;
}
.destinations__pin {
  position: absolute;
  top: -15px;
  left: 84px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #E9AF40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  font-size: 22px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}
.destinations__content {
  max-width: 545px;
}
.destinations__label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.destinations__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 72px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  padding-bottom: 32px;
  margin-bottom: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.destinations__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  max-width: 545px;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.destinations__content.is-changing .destinations__title,
.destinations__content.is-changing .destinations__desc {
  opacity: 0;
  transform: translateY(8px);
}
.destinations__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.destinations__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.destinations__btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.destinations__btn {
  height: 40px;
}
.destinations__nav {
  display: flex;
  gap: 16px;
}
.destinations__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.destinations__nav-btn--active, .destinations__nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.destinations__slider-wrap {
  justify-self: end;
  width: 100%;
  max-width: 866px;
  overflow: hidden;
}
.destinations__carousel .owl-stage-outer {
  overflow: hidden;
}
.destinations__carousel .owl-stage {
  display: flex;
  justify-content: flex-end;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1) !important;
}
.destinations__carousel .owl-item {
  width: 280px;
}
.destinations__carousel .owl-item.is-dest-hidden {
  display: none !important;
  width: 0 !important;
  margin: 0 !important;
}
@media (max-width: 1400px) {
  .destinations__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0;
  }
  .destinations__map-wrap {
    display: none;
  }
  .destinations__content {
    max-width: none;
  }
  .destinations__slider-wrap {
    justify-self: stretch;
    max-width: none;
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .destinations {
    min-height: auto;
  }
  .destinations__stage {
    min-height: auto;
  }
  .destinations__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .destinations__bg-img {
    transition-duration: 0.01ms;
    transform: scale(1);
  }
  .destinations__bg-img.is-active {
    transform: scale(1);
  }
  .destinations__title, .destinations__desc {
    transition-duration: 0.01ms;
  }
}

.dest-card {
  position: relative;
  display: block;
  width: 280px;
  height: 364px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.88%, #000 100%);
  pointer-events: none;
}
.dest-card__name {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  text-transform: uppercase;
  width: calc(100% - 32px);
  pointer-events: none;
}
.dest-card:hover {
  transform: translateY(-4px);
}

.journey {
  padding: 60px 0;
  background: #ECEFF1;
}
.journey__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.journey__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.journey__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  max-width: 770px;
}
.journey__nav {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.journey__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 29, 53, 0.3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #0B1D35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.journey__nav-btn:hover {
  background: #FFFFFF;
}
.journey__nav-btn--prev {
  opacity: 0.5;
}
.journey__nav-btn--prev:hover {
  opacity: 0.85;
}
.journey__slider-wrap {
  overflow: hidden;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .journey__slider-wrap {
    overflow: visible;
  }
}
@media (max-width: 992px) {
  .journey__carousel .owl-stage-outer {
    overflow: visible;
  }
}
.journey__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.journey__more:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.journey__more {
  height: 40px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
}
@media (max-width: 992px) {
  .journey__top {
    flex-direction: column;
  }
}

.blog-card {
  background: #FFFFFF;
  height: 100%;
}
.blog-card:hover img {
  transform: scale(1.1);
}
.blog-card:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.blog-card__image {
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  aspect-ratio: 370/240;
  object-fit: cover;
  transition: all 0.8s;
}
.blog-card__body {
  padding: 16px 20px;
}
.blog-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #121212;
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8C8C8C;
  margin-bottom: 12px;
}
.blog-card__line {
  border: 0;
  border-top: 1px solid #F0F0F0;
  margin: 0 0 12px;
}
.blog-card__link {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #E9AF40;
  border-bottom: 1px solid #E9AF40;
  display: inline-block;
}

.footer__main {
  background: #121212;
  padding: 40px 0 24px;
  color: #FFFFFF;
}
.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer__newsletter-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 400px;
}
.footer__newsletter-input {
  flex: 1;
  height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer__newsletter-input::placeholder {
  color: #656565;
}
.footer__newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.footer__newsletter-btn:hover {
  opacity: 0.9;
  color: #1C1C1C;
}
.footer__newsletter-btn {
  height: 40px;
  padding: 12px 24px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.footer__divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 28px;
}
.footer__logo {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 50px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  margin-bottom: 32px;
}
.footer__contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact-item i {
  color: #E9AF40;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact-item a:hover {
  color: #F8E46F;
}
.footer__col-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.footer__links li {
  margin-bottom: 12px;
}
.footer__links a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}
.footer__links a:hover {
  color: #F8E46F;
}
.footer__social {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E9AF40;
  transition: background 0.25s ease;
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #F8E46F;
}
.footer__social-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #F8E46F;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
  color: #F8E46F;
  cursor: pointer;
  margin-top: auto;
}
.footer__top span {
  display: none;
}
.footer__bar {
  background: #1C1C1C;
  padding: 12px 0;
  text-align: center;
}
.footer__bar p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8C8C8C;
}
@media (max-width: 1200px) {
  .footer__social-col {
    align-items: flex-start;
    margin-top: 32px;
  }
}

.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.8) 0%, rgba(28, 28, 28, 0.24) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.page-hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 0 24px;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 480px;
  }
  .page-hero__title {
    font-size: 36px;
  }
}

.list-tour {
  padding: 60px 0;
  background: #f8f8f8;
}
.list-tour__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.list-tour__intro {
  text-align: center;
  max-width: 900px;
}
.list-tour__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.list-tour__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  margin: 0;
}

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.tour-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 3px 24px;
  border: 0;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #121212;
  background: #F0F0F0;
  transition: background 0.2s ease, color 0.2s ease;
}
.tour-tabs__btn:hover {
  background: rgb(229.8, 229.8, 229.8);
}
.tour-tabs__btn.is-active {
  background: #E9AF40;
  color: #1C1C1C;
}

.tour-filters {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  padding: 16px;
  background: #F0F0F0;
}
.tour-filters__field {
  flex: 1 1 140px;
  min-width: 0;
  background: #FFFFFF;
  padding: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tour-filters__select {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  background-color: transparent;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #121212;
  appearance: none;
  padding-right: 28px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23121212' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.tour-filters__submit {
  flex: 0 0 auto;
  min-height: 56px;
  padding: 3px 24px;
  border: 0;
  cursor: pointer;
  background: #E9AF40;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: background 0.2s ease;
}
.tour-filters__submit:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}
@media (max-width: 992px) {
  .tour-filters__submit {
    width: 100%;
  }
}

.tour-detail-hero {
  position: relative;
  min-height: 600px;
  color: #FFFFFF;
  overflow: hidden;
}
.tour-detail-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tour-detail-hero__picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tour-detail-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.55s ease;
}
.tour-detail-hero__bg-img.is-leaving {
  opacity: 0;
  transform: scale(1.05);
}
.tour-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.tour-detail-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.8) 0%, rgba(28, 28, 28, 0.24) 22%, rgba(28, 28, 28, 0.24) 65%, rgba(28, 28, 28, 0.8) 84%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.tour-detail-hero__gallery {
  position: absolute;
  right: 20px;
  top: 96px;
  z-index: 3;
  width: 140px;
  padding: 12px 10px;
  border-radius: 14px;
}
@media (max-width: 992px) {
  .tour-detail-hero__gallery {
    display: none;
  }
}
.tour-detail-hero__marquee {
  height: 404px;
  overflow: hidden;
  border-radius: 10px;
}
.tour-detail-hero__marquee-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  animation: tour-detail-hero-marquee-up 32s linear infinite;
  will-change: transform;
}
.tour-detail-hero__marquee-track.is-paused {
  animation-play-state: paused;
}
.tour-detail-hero__marquee:hover .tour-detail-hero__marquee-track {
  animation-play-state: paused;
}
.tour-detail-hero__marquee-set {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.tour-detail-hero__marquee-item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 78px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  opacity: 0.92;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}
.tour-detail-hero__marquee-item:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 0 0 2px rgba(233, 175, 64, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.tour-detail-hero__marquee-item:focus-visible {
  outline: 2px solid #E9AF40;
  outline-offset: 2px;
}
.tour-detail-hero__marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  pointer-events: none;
}
.tour-detail-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
}
.tour-detail-hero__breadcrumb {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
}
.tour-detail-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.tour-detail-hero__breadcrumb a:hover {
  color: #F8E46F;
}
.tour-detail-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 6px;
}
.tour-detail-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 8px;
}
.tour-detail-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}
.tour-detail-hero__days {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #4CB6C8;
  margin: 0;
}
.tour-detail-hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 46px;
  text-transform: capitalize;
  color: #FFFFFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}
@media (max-width: 768px) {
  .tour-detail-hero__title {
    font-size: 28px;
    line-height: 36px;
  }
}

@keyframes tour-detail-hero-marquee-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tour-detail-hero__marquee-track {
    animation: none !important;
  }
}
.tour-subnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(46, 46, 46, 0.98);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tour-subnav__inner {
  min-height: 72px;
}
.tour-subnav__tabs {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.tour-subnav__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  min-height: 72px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #BFBFBF;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tour-subnav__tab i {
  font-size: 18px;
  opacity: 0.9;
}
.tour-subnav__tab:hover {
  color: #FFFFFF;
}
.tour-subnav__tab.is-active {
  color: #E9AF40;
  border-bottom-color: #F8E46F;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0) 0%, rgba(197, 160, 89, 0.2) 100%);
}
.tour-subnav__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tour-subnav__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  color: #FFFFFF;
}
.tour-subnav__price-label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.tour-subnav__price-value {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  color: #E9AF40;
  text-transform: uppercase;
}
.tour-subnav__price-unit {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #BFBFBF;
}
.tour-subnav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.tour-subnav__cta:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.tour-subnav__cta {
  height: 40px;
  text-transform: none;
}

.tour-detail-page {
  background: #f3f4f3;
}

.tour-detail-card {
  background: #FFFFFF;
  padding: 32px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
}
.tour-detail-card--pad-sm {
  padding: 24px;
}
.tour-detail-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #0B1D35;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.tour-detail-card__title--center {
  text-align: center;
}
.tour-detail-card__subtitle {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #E9AF40;
  margin: 0 0 16px;
}
.tour-detail-card__text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #434343;
  text-align: justify;
  margin: 0 0 16px;
}
.tour-detail-card__text:last-child {
  margin-bottom: 0;
}
.tour-detail-card__rule {
  border: 0;
  border-top: 1px solid #D9D9D9;
  margin: 24px 0;
}

.tour-detail-map {
  position: sticky;
  top: 88px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.tour-detail-map__media {
  position: relative;
  display: block;
  height: 325px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.tour-detail-map__media:focus-visible {
  outline: 2px solid #E9AF40;
  outline-offset: 2px;
}
.tour-detail-map__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-detail-map__caption {
  background: #121212;
  color: #FFFFFF;
  text-align: center;
  padding: 16px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
}
@media (max-width: 1200px) {
  .tour-detail-map {
    position: relative;
    top: auto;
  }
}

.tour-detail-highlights__title {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.tour-detail-highlights__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #142838;
}
.tour-detail-highlights__list li + li {
  margin-top: 12px;
}

.tour-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tour-journey__item {
  border-bottom: 1px solid #D9D9D9;
}
.tour-journey__item:last-child {
  border-bottom: 0;
}
.tour-journey__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 0;
  background: #F0F0F0;
  cursor: pointer;
  text-align: left;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
  transition: background 0.3s ease, color 0.3s ease;
}
.tour-journey__head:hover {
  background: rgb(232.35, 232.35, 232.35);
}
.tour-journey__item.is-open .tour-journey__head {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  color: #FFFFFF;
}
.tour-journey__item.is-open .tour-journey__head i {
  color: #000000;
}
.tour-journey__panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 16px;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.tour-journey__item.is-open .tour-journey__panel {
  grid-template-rows: 1fr;
  padding: 16px 16px 8px;
}
.tour-journey__list {
  margin: 0;
  padding-left: 1.25rem;
  overflow: hidden;
  min-height: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.tour-journey__list li + li {
  margin-top: 12px;
}
.tour-journey__icon {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tour-journey__item.is-open .tour-journey__icon {
  transform: rotate(180deg);
}
.tour-journey__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.tour-journey__book-btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.tour-journey__book-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .tour-journey__panel, .tour-journey__icon, .tour-journey__head {
    transition-duration: 0.16s;
  }
}

.tour-info__col-title {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
  margin: 0 0 12px;
}
.tour-info__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #434343;
}
.tour-info__list li + li {
  margin-top: 8px;
}

.tour-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 24px;
  background: #f3f4f3;
  border-radius: 8px;
  margin-bottom: 24px;
}
.tour-reviews-summary__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.tour-reviews-summary__rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.08));
}
.tour-reviews-summary__laurel {
  position: relative;
  flex-shrink: 0;
  width: 47px;
  height: 72px;
  overflow: hidden;
  pointer-events: none;
}
.tour-reviews-summary__laurel--mirror {
  transform: scaleX(-1);
}
.tour-reviews-summary__laurel-img {
  position: absolute;
  left: -5.62%;
  top: 0;
  width: 112.92%;
  height: 112.92%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.tour-reviews-summary__score {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 64px;
  color: #E9AF40;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(233, 175, 64, 0.35);
}
.tour-reviews-summary__stars {
  color: #E9AF40;
  font-size: 14px;
  letter-spacing: 2px;
}
.tour-reviews-summary__count {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
  width: 100%;
  text-align: center;
}
.tour-reviews-summary__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 3px 16px;
  border: 0;
  background: #E9AF40;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tour-reviews-summary__btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}

.tour-reviews-list {
  margin: 0;
  padding: 0;
}
.tour-reviews-list__item + .tour-reviews-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #D9D9D9;
}
.tour-reviews-list__item--interactive {
  cursor: pointer;
  border-radius: 8px;
  margin-left: -8px;
  margin-right: -8px;
  padding-left: 8px;
  padding-right: 8px;
  transition: background 0.2s ease;
}
.tour-reviews-list__item--interactive:hover {
  background: rgba(0, 0, 0, 0.03);
}
.tour-reviews-list__item--interactive:focus-visible {
  outline: 2px solid #E9AF40;
  outline-offset: 2px;
}

.tour-review__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tour-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F0F0F0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #595959;
}
.tour-review__name {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
}
.tour-review__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tour-review__stars {
  color: #E9AF40;
  font-size: 12px;
  letter-spacing: 1px;
}
.tour-review__date {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #262626;
}
.tour-review__text {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #434343;
}

.review-submit-modal .modal-dialog {
  max-width: 640px;
  margin: 1rem auto;
}
.review-submit-modal__sheet.modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}
.review-submit-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 32px;
  background: #FFFFFF;
}
.review-submit-modal__title {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #232323;
}
.review-submit-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #262626;
  transition: opacity 0.2s ease;
}
.review-submit-modal__close:hover {
  opacity: 0.75;
}
.review-submit-modal__close:focus-visible {
  outline: 2px solid #E9AF40;
  outline-offset: 2px;
}
.review-submit-modal__close-text {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.review-submit-modal__close-icon {
  font-size: 18px;
  line-height: 1;
}
.review-submit-modal__body.modal-body {
  padding: 24px 32px 32px;
  background: #FFFFFF;
}
.review-submit-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}
.review-submit-modal__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}
.review-submit-modal__lead {
  margin: 0;
  max-width: 36rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
}
.review-submit-modal__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.review-submit-modal__star {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #d8d8d8;
  line-height: 1;
  transition: color 0.2s ease, transform 0.15s ease;
}
.review-submit-modal__star i {
  font-size: 20px;
  vertical-align: top;
}
.review-submit-modal__star.is-on {
  color: #E9AF40;
}
.review-submit-modal__star:hover {
  transform: scale(1.08);
}
.review-submit-modal__star:focus-visible {
  outline: 2px solid #E9AF40;
  outline-offset: 2px;
  border-radius: 2px;
}
.review-submit-modal__rule {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid #d8d8d8;
  opacity: 1;
}
.review-submit-modal__row {
  width: 100%;
  align-self: stretch;
}
.review-submit-modal__field {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-submit-modal__label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
}
.review-submit-modal__req {
  color: #dc1f26;
}
.review-submit-modal__input, .review-submit-modal__textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.review-submit-modal__input::placeholder, .review-submit-modal__textarea::placeholder {
  color: #8c8c8c;
}
.review-submit-modal__input:focus, .review-submit-modal__textarea:focus {
  outline: 0;
  border-color: rgba(233, 175, 64, 0.65);
  box-shadow: 0 0 0 3px rgba(233, 175, 64, 0.2);
}
.review-submit-modal__input {
  height: 44px;
}
.review-submit-modal__textarea {
  min-height: 96px;
  resize: vertical;
}
.review-submit-modal__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 48px;
  padding: 8px 12px;
  border: 0;
  background: #E9AF40;
  color: #121212;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.review-submit-modal__send:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}
.review-submit-modal__send:active {
  transform: scale(0.98);
}
.review-submit-modal__send:focus-visible {
  outline: 2px solid #121212;
  outline-offset: 2px;
}

.similar-tour {
  background: #f8f8f8;
}
.similar-tour__header {
  margin: 0;
}
.similar-tour__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.similar-tour__desc {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
}
.similar-tour__slider-outer {
  max-width: 100%;
}
.similar-tour__slider-wrap {
  overflow: hidden;
}
.similar-tour .tour-card {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: opacity 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.similar-tour .tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.similar-tour .tour-card .tour-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.similar-tour .tour-card .tour-card__footer {
  margin-top: auto;
}
.similar-tour .tour-card .tour-card__btn {
  text-transform: uppercase;
}
.similar-tour__carousel .owl-item {
  display: flex;
  height: auto;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.similar-tour__carousel .owl-item > * {
  width: 100%;
}
.similar-tour__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.similar-tour__dots .owl-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  margin: 0;
  background: #E9AF40;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.25s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.similar-tour__dots .owl-dot span {
  display: none;
}
.similar-tour__dots .owl-dot.active {
  width: 20px;
  height: 20px;
  opacity: 1;
  background: transparent;
  border: 2px solid #E9AF40;
  position: relative;
}
.similar-tour__dots .owl-dot.active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E9AF40;
}

.destinations-page .page-hero .header__nav-link--active {
  color: #F8E46F;
}

.dest-intro {
  padding: 60px 0;
  background: #FFFFFF;
}
.dest-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dest-intro__head {
  text-align: center;
  margin: 0 auto;
}
.dest-intro__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
}
.dest-intro__title-accent {
  margin: 8px 0 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-transform: uppercase;
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dest-intro__text {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  text-align: justify;
}

.dest-heritage {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
}
.dest-heritage__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.dest-heritage__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.6) 0%, rgba(18, 18, 18, 0.3) 83.1%);
  pointer-events: none;
}
.dest-heritage__inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 482px);
  gap: 32px;
  align-items: center;
}
.dest-heritage__script {
  margin: 0 0 16px;
  font-family: "Rosellinda", cursive;
  font-size: 80px;
  line-height: 80px;
  color: #FFFFFF;
}
.dest-heritage__heading {
  margin: 0;
  max-width: 566px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  mix-blend-mode: overlay;
}
.dest-heritage__heading-line {
  display: block;
  margin: 0;
  line-height: 64px;
}
.dest-heritage__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dest-heritage__right p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}
.dest-heritage__left {
  height: 100%;
}
.dest-heritage__features {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0;
}
.dest-heritage__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 116px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}
.dest-heritage__cta-text {
  margin: 8px 0 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}
.dest-heritage__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.dest-heritage__btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.dest-heritage__btn {
  align-self: flex-start;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .dest-heritage {
    min-height: auto;
  }
  .dest-heritage__panel {
    width: 100%;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, rgba(18, 18, 18, 0.65) 55%, rgba(18, 18, 18, 0.85) 100%);
  }
  .dest-heritage__inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .dest-heritage__script {
    font-size: 56px;
    line-height: 56px;
  }
  .dest-heritage__heading {
    font-size: 40px;
    line-height: 0;
  }
  .dest-heritage__heading-line {
    line-height: 48px;
  }
}

.dest-delicacies {
  padding: 60px 0;
  background: #FFFFFF;
  overflow: visible;
}
.dest-delicacies__inner {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: visible;
}
@media (min-width: 1200px) {
  .dest-delicacies__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.dest-delicacies__stage {
  position: relative;
  width: 100%;
  max-width: 1170px;
  min-height: 522px;
  margin: 0 auto;
}
.dest-delicacies__intro {
  position: relative;
  z-index: 3;
  max-width: 570px;
}
.dest-delicacies__title {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
}
.dest-delicacies__desc {
  margin: 0 0 32px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  text-align: justify;
}
.dest-delicacies__chip-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dest-delicacies__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.dest-delicacies__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  border-radius: 4px;
  background: #f3f3f3;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #595959;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.dest-delicacies__chip::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("../assets/chip.svg") center/contain no-repeat;
}
.dest-delicacies__chip.is-active {
  background: #FFFFFF;
  color: #E9AF40;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.dest-delicacies__chip.is-active::before {
  background-image: url("../assets/Capa_1.svg");
}
.dest-delicacies__route {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.dest-delicacies__path {
  position: absolute;
  left: -155px;
  top: 186px;
  display: block;
  overflow: visible;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .dest-delicacies__path {
    left: calc(-155px - max(0px, (100vw - 1170px) / 2 - 155px));
  }
}
.dest-delicacies__food-list {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: auto;
}
.dest-delicacies__food {
  position: absolute;
  z-index: 1;
  width: 82px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.dest-delicacies__food.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dest-delicacies__food img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}
.dest-delicacies__food.is-active .dest-delicacies__food-btn {
  color: #E9AF40;
}
.dest-delicacies__food.is-active .dest-delicacies__food-btn img {
  box-shadow: 0 0 0 3px rgba(233, 175, 64, 0.35), 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}
.dest-delicacies__food--1 {
  left: 0;
  top: 399px;
}
.dest-delicacies__food--2 {
  left: 155px;
  top: 442px;
}
.dest-delicacies__food--3 {
  left: 314px;
  top: 410px;
}
.dest-delicacies__food--4 {
  left: 468px;
  top: 346px;
}
.dest-delicacies__food-btn {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: inherit;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.dest-delicacies__food-btn img {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.dest-delicacies__food-btn:hover {
  color: #E9AF40;
}
.dest-delicacies__food-btn:hover img {
  transform: translateY(-3px);
}
.dest-delicacies__featured {
  position: absolute;
  top: 39px;
  right: -5px;
  z-index: 4;
}
.dest-delicacies__plate {
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.dest-delicacies__plate.is-changing {
  opacity: 0;
  transform: scale(0.98);
}
.dest-delicacies__plate-badge {
  position: absolute;
  top: -25px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  z-index: 2;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
}
.dest-delicacies__plate-badge img {
  width: 69px;
  height: 48px;
  object-fit: cover;
  border-radius: 2px;
  background: #d9d9d9;
  transition: opacity 0.2s ease;
}
.dest-delicacies__plate-badge.is-changing img,
.dest-delicacies__plate-badge.is-changing span {
  opacity: 0;
}
@media (max-width: 1200px) {
  .dest-delicacies {
    overflow: hidden;
  }
  .dest-delicacies__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dest-delicacies__stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .dest-delicacies__intro, .dest-delicacies__featured, .dest-delicacies__route {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }
  .dest-delicacies__intro {
    max-width: none;
    order: 1;
  }
  .dest-delicacies__featured {
    width: 100%;
    max-width: 521px;
    margin: 0 auto;
    order: 2;
  }
  .dest-delicacies__plate {
    width: 100%;
  }
  .dest-delicacies__route {
    order: 3;
    min-height: 280px;
  }
  .dest-delicacies__path {
    left: -13.25%;
    top: 41.76%;
    width: 74.66%;
    height: auto;
  }
  .dest-delicacies__food--1 {
    left: 0;
    top: 68.39%;
    transform: translateY(-100%);
  }
  .dest-delicacies__food--2 {
    left: 13.25%;
    top: 78.93%;
    transform: translate(-50%, -100%);
  }
  .dest-delicacies__food--3 {
    left: 26.84%;
    top: 71.07%;
    transform: translate(-50%, -100%);
  }
  .dest-delicacies__food--4 {
    left: 40%;
    top: 58.81%;
    transform: translate(-50%, -100%);
  }
  .dest-delicacies__plate-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

.dest-top {
  background: #FFFFFF;
}
.dest-top__inner {
  position: relative;
  width: 100%;
  height: 660px;
  margin: 0 auto;
}
.dest-top__bg-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -27px;
  height: 756px;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.dest-top__hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 43%;
  height: 530px;
  border-bottom-right-radius: 246px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.dest-top__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.dest-top__map-deco {
  position: absolute;
  left: 22.78%;
  top: -102px;
  width: 484px;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 2;
}
.dest-top__map-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-42%);
  top: 58px;
  width: 613.333px;
  height: 801.333px;
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.15));
  pointer-events: none;
  z-index: 2;
}
.dest-top__map {
  width: 100%;
  height: auto;
  display: block;
}
.dest-top__map-label {
  position: absolute;
  width: auto;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.25s ease;
  z-index: 1;
}
.dest-top__map-label img {
  width: 32px;
  height: auto;
  filter: grayscale(1) saturate(0) brightness(0.72);
  opacity: 0.75;
  transform: scale(0.9);
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.dest-top__map-label span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-6px);
  transition: max-width 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.dest-top__map-label.is-active {
  transform: translateY(-2px);
  z-index: 3;
}
.dest-top__map-label.is-active img {
  filter: none;
  opacity: 1;
  transform: scale(1);
}
.dest-top__map-label.is-active span {
  max-width: 180px;
  opacity: 1;
  transform: translateX(0);
}
.dest-top__map-label--ha-noi {
  left: 164px;
  top: 102px;
}
.dest-top__map-label--ninh-binh {
  left: 148px;
  top: 133px;
}
.dest-top__map-label--ha-giang {
  left: 123px;
  top: 7px;
}
.dest-top__map-label--sapa {
  left: 70px;
  top: 36px;
}
.dest-top__map-label--da-nang {
  left: 279px;
  top: 366px;
}
.dest-top__map-label--hue {
  left: 215px;
  top: 307px;
}
.dest-top__map-label--quang-binh {
  left: 173px;
  top: 255px;
}
.dest-top__title {
  position: absolute;
  left: 22px;
  top: 120.5px;
  margin: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  max-width: 505px;
  pointer-events: none;
}
.dest-top__title-line {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 96px;
  color: #FFFFFF;
  text-transform: capitalize;
}
.dest-top__card-wrap {
  position: absolute;
  left: 60.93%;
  top: 0;
  width: 370px;
  z-index: 4;
}
.dest-top__cards {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.dest-top__card {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px) scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
  visibility: hidden;
  will-change: opacity, transform;
  z-index: 1;
}
.dest-top__card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
  visibility: visible;
  z-index: 2;
}
.dest-top.is-moving-prev .dest-top__card {
  transform: translateX(-28px) scale(0.985);
}
.dest-top.is-moving-prev .dest-top__card.is-active {
  transform: translateX(0) scale(1);
}
.dest-top__card-media {
  position: relative;
  height: 310px;
  overflow: hidden;
  flex-shrink: 0;
}
.dest-top__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.dest-top__card.is-active .dest-top__card-img {
  transform: scale(1);
}
.dest-top__card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dest-top__card-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #121212;
}
.dest-top__card-desc {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8C8C8C;
}
.dest-top__card-line {
  border: 0;
  border-top: 1px solid #F0F0F0;
  margin: 0;
}
.dest-top__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.dest-top__card-btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.dest-top__card-btn {
  align-self: flex-start;
  text-transform: uppercase;
}
.dest-top__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.dest-top__nav-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #0B1D35;
  border-radius: 49px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.dest-top__nav-btn img {
  width: 20px;
  height: 20px;
  display: block;
}
.dest-top__nav-btn--prev img {
  transform: scaleX(-1);
}
.dest-top__nav-btn--next, .dest-top__nav-btn.is-active {
  background: #FFFFFF;
}
.dest-top__nav-btn:hover {
  background: #FFFFFF;
}
@media (max-width: 1400px) {
  .dest-top__inner {
    height: auto;
    min-height: 610px;
  }
  .dest-top__title-line {
    font-size: clamp(48px, 5.5vw, 80px);
    line-height: 1.2;
  }
  .dest-top__map-panel {
    left: 36%;
    width: min(460px, 38vw);
  }
  .dest-top__map-deco {
    left: 18%;
    width: min(484px, 40vw);
  }
  .dest-top__card-wrap {
    left: auto;
    right: 16px;
  }
}
@media (max-width: 1200px) {
  .dest-top__inner {
    min-height: auto;
    padding: 60px 16px 40px;
  }
  .dest-top__bg-layer, .dest-top__hero, .dest-top__map-deco, .dest-top__map-panel {
    display: none;
  }
  .dest-top__title {
    position: relative;
    left: auto;
    top: auto;
    max-width: none;
    margin: 0 0 24px;
    align-items: center;
  }
  .dest-top__title-line {
    color: #0B1D35;
    text-align: center;
  }
  .dest-top__card-wrap {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
}

.dest-collage {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
.dest-collage img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.dest-explore {
  padding: 60px 0 !important;
  background: #F8F8F8;
  overflow: hidden;
}
.dest-explore__title {
  text-transform: capitalize;
}
.dest-explore__header {
  max-width: 900px;
  margin: 0 auto;
}
.dest-explore__desc {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.dest-explore .row.mb-4 {
  margin-bottom: 32px !important;
}
.dest-explore .similar-tour__slider-outer {
  overflow: hidden;
}
.dest-explore .similar-tour__slider-wrap {
  overflow: visible;
}
.dest-explore .tour-card {
  width: 370px;
  height: 517px;
  margin: 0;
  box-shadow: none;
}
.dest-explore .tour-card:hover {
  transform: none;
  box-shadow: none;
}
.dest-explore .tour-card__media {
  height: 240px;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.dest-explore .tour-card__body {
  min-height: 277px;
}
.dest-explore .tour-card__badge {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.dest-explore .tour-card__days {
  color: #4CB6C8;
}
.dest-explore .tour-card__footer {
  width: 100%;
}
.dest-explore .dest-explore__carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.dest-explore .dest-explore__carousel .owl-item {
  opacity: 0.4;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.dest-explore .dest-explore__carousel .owl-item.center, .dest-explore .dest-explore__carousel .owl-item.is-near {
  opacity: 1;
}
.dest-explore .d-flex.justify-content-center.mt-4 {
  margin-top: 32px !important;
}
@media (max-width: 1200px) {
  .dest-explore .tour-card {
    width: min(370px, 100vw - 48px);
  }
  .dest-explore .dest-explore__carousel .owl-item {
    opacity: 1;
  }
}

.about-page .page-hero .header__nav-link--active {
  color: #F8E46F;
}

.about-philosophy {
  position: relative;
  padding: 60px 0;
  background: #FFFFFF;
  overflow: hidden;
}
.about-philosophy__leaf {
  position: absolute;
  top: -11px;
  right: 0;
  width: 222px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.about-philosophy__inner {
  position: relative;
  z-index: 2;
}
.about-philosophy__head {
  text-align: center;
  margin-bottom: 40px;
}
.about-philosophy__title {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
}
.about-philosophy__subtitle {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
}
.about-philosophy__body {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about-philosophy__media {
  flex: 0 0 540px;
  max-width: 540px;
}
.about-philosophy__media img {
  display: block;
  width: 100%;
  height: 501px;
  object-fit: cover;
}
.about-philosophy__text {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-philosophy__item-title {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #0B1D35;
  text-transform: capitalize;
}
.about-philosophy__item p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
@media (max-width: 1200px) {
  .about-philosophy__body {
    flex-direction: column;
  }
  .about-philosophy__media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .about-philosophy__media img {
    height: auto;
    aspect-ratio: 540/501;
  }
  .about-philosophy__text {
    padding-left: 0;
  }
}

.about-why {
  position: relative;
  padding: 40px 0;
  background: #2e2e2e;
  overflow: hidden;
}
.about-why__topline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 3;
}
.about-why__pattern {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  mix-blend-mode: luminosity;
  opacity: 0.2;
  pointer-events: none;
}
.about-why__pattern img {
  width: 520px;
  height: 508px;
  object-fit: cover;
  flex-shrink: 0;
}
.about-why__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-why__title {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #FFFFFF;
  text-transform: capitalize;
}
.about-why__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}
.about-why__card {
  flex: 1 1 0;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.about-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(233, 175, 64, 0.1);
  position: relative;
}
.about-why__icon::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(233, 175, 64, 0.7);
  width: 50px;
  height: 50px;
}
.about-why__icon img {
  width: 27.586px;
  height: 30.462px;
  object-fit: contain;
}
.about-why__icon:hover::before {
  background-color: rgba(233, 175, 64, 0.7);
}
.about-why__icon:hover img {
  filter: brightness(0) invert(1);
}
.about-why__card-title {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
}
.about-why__card-desc {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.about-why__divider {
  flex-shrink: 0;
  width: 1px;
  height: 148px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 1200px) {
  .about-why__grid {
    flex-direction: column;
    gap: 32px;
  }
  .about-why__divider {
    width: 148px;
    height: 1px;
  }
  .about-why__card {
    max-width: 100%;
  }
}

.about-inspired {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  background: #FFFFFF;
  border-radius: 48px 48px 0 0;
  margin-top: -1px;
  overflow: hidden;
}
.about-inspired__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1170px;
  margin: 0 auto 40px;
  padding: 0 15px;
}
.about-inspired__title {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-transform: capitalize;
}
.about-inspired__desc {
  margin: 0;
  max-width: 583px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #434343;
}
.about-inspired__tag {
  color: #c5a059;
}
.about-inspired__social-label {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #8C8C8C;
  text-transform: uppercase;
}
.about-inspired__social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.about-inspired__social-link {
  display: block;
  width: 40px;
  height: 40px;
}
.about-inspired__social-link img {
  display: block;
  width: 100%;
  height: 100%;
}
.about-inspired__slider-outer {
  width: 100%;
  overflow: hidden;
}
.about-inspired__slider-wrap {
  overflow: hidden;
}
.about-inspired__carousel .owl-item {
  width: 230px;
}
.about-inspired__card {
  position: relative;
  width: 230px;
  height: 288px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.about-inspired__card:hover img {
  transform-origin: top;
  transform: scale(1.5);
}
.about-inspired__card:hover .ig-name {
  visibility: visible;
  opacity: 1;
}
.about-inspired__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}
.about-inspired__card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}
.about-inspired__card-badge i {
  color: #fff;
}
@media (max-width: 992px) {
  .about-inspired {
    border-radius: 32px 32px 0 0;
  }
  .about-inspired__head {
    flex-direction: column;
  }
}

.about-inspired__card-info {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.about-inspired__card-info .ig-name {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s;
}

.conference-page .header__nav-link--active {
  color: #F8E46F;
}

.conf-intro {
  padding: 60px 0;
  background: #FFFFFF;
}
.conf-intro__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1170px;
  margin: 0 auto;
}
.conf-intro__media {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}
.conf-intro__media img {
  width: 100%;
  height: 501px;
  object-fit: cover;
  display: block;
}
.conf-intro__content {
  flex: 1;
  min-width: 0;
  padding-left: 32px;
}
.conf-intro__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  margin: 0 0 40px;
  text-transform: capitalize;
}
.conf-intro__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 32px;
}
.conf-intro__text p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  margin: 0;
}
@media (max-width: 1200px) {
  .conf-intro__inner {
    flex-direction: column;
  }
  .conf-intro__media, .conf-intro__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .conf-intro__media img {
    height: 320px;
  }
  .conf-intro__text {
    padding-left: 0;
  }
  .conf-intro__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}

.conf-support {
  padding: 60px 0;
  background: #f8fafc;
}
.conf-support__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-align: center;
  margin: 0 0 40px;
  text-transform: capitalize;
}
.conf-support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1170px;
  margin: 0 auto;
}
.conf-support__card {
  position: relative;
  height: 448px;
  overflow: hidden;
}
.conf-support__card:hover .conf-support__card-content {
  bottom: 24px;
}
.conf-support__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.conf-support__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.88%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
.conf-support__card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12.55px);
  -webkit-backdrop-filter: blur(12.55px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
}
.conf-support__card-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .conf-support__grid {
    grid-template-columns: 1fr;
  }
  .conf-support__card {
    height: 360px;
  }
  .conf-support__title {
    font-size: 32px;
  }
}

.conf-support__card-content {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -140px;
  transition: all 0.8s ease-in-out;
}

.conf-support__card-text {
  color: #D9D9D9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 8px;
}

.conf-cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}
.conf-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.conf-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conf-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 53, 0.5);
}
.conf-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1096px;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.conf-cta__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  margin: 0;
  text-transform: capitalize;
}
.conf-cta__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 600px;
  margin: 0;
}
.conf-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 3px 16px;
  background: #e9af40;
  color: #121212;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease;
}
.conf-cta__btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #121212;
}
@media (max-width: 992px) {
  .conf-cta__title {
    font-size: 28px;
    line-height: 1.2;
  }
}

.conf-events {
  padding: 60px 0;
  background: #ECEFF1;
}
.conf-events__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  text-align: center;
  margin: 0 0 40px;
  text-transform: capitalize;
}
.conf-events__slider-wrap {
  overflow: hidden;
  margin-bottom: 24px;
}
.conf-events__carousel .owl-item {
  padding: 0 8px;
}
.conf-events__progress {
  height: 6px;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1170px;
  margin: 0 auto;
}
.conf-events__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: #c5a059;
  border-radius: 10px;
  transition: width 0.35s ease;
}

.icon-conf-event-card__media {
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #000;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}
.icon-conf-event-card__media i {
  position: relative;
  zx-index: 2;
}
.icon-conf-event-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.conf-event-card {
  background: #FFFFFF;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}
.conf-event-card:hover .icon-conf-event-card__media {
  transform: scale(1);
}
.conf-event-card:hover img {
  transform: scale(1.2);
}
.conf-event-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.conf-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease-in-out;
}
.conf-event-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.conf-event-card__body {
  padding: 16px 8px;
  text-align: center;
}
.conf-event-card__name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0B1D35;
  margin: 0 0 4px;
}
.conf-event-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: #9ca3af;
}
.conf-event-card__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}

.conf-quote {
  padding: 60px 0;
  background: #FFFFFF;
}
.conf-quote__wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.conf-quote__card {
  display: flex;
  min-height: 644px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.conf-quote__aside {
  position: relative;
  flex: 0 0 332px;
  max-width: 332px;
  background: #121212;
  color: #FFFFFF;
  overflow: hidden;
}
.conf-quote__leaf {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: auto;
  pointer-events: none;
  object-fit: cover;
  object-position: top right;
}
.conf-quote__aside-content {
  position: relative;
  z-index: 1;
  padding: 184px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conf-quote__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  margin: 0;
  text-transform: capitalize;
}
.conf-quote__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #d9d9d9;
  margin: 0;
}
.conf-quote__contact {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conf-quote__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.conf-quote__contact-item a {
  color: inherit;
  text-decoration: none;
}
.conf-quote__contact-item a:hover {
  color: #F8E46F;
}
.conf-quote__contact-item i {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.conf-quote__form {
  flex: 1;
  min-width: 0;
  padding: 40px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.conf-quote__row {
  display: flex;
  gap: 16px;
}
.conf-quote__row .conf-quote__field {
  flex: 1;
  min-width: 0;
}
.conf-quote__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.conf-quote__label {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #595959;
  margin: 0;
}
.conf-quote__label--sm {
  font-size: 12px;
  line-height: 20px;
}
.conf-quote__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  background: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  border-radius: 0;
}
.conf-quote__input::placeholder {
  color: #8c8c8c;
}
.conf-quote__input:focus {
  outline: none;
  border-color: #c5a059;
}
.conf-quote__input--phone {
  border: 0;
  flex: 1;
  min-width: 0;
  padding-left: 8px;
}
.conf-quote__input--date {
  padding-right: 40px;
}
.conf-quote__textarea {
  min-height: 80px;
  resize: vertical;
}
.conf-quote__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23262626' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.conf-quote__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid #d9d9d9;
  min-height: 48px;
}
.conf-quote__phone-code {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  background: #f8fafc;
  border-right: 1px solid #d9d9d9;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #262626;
  flex-shrink: 0;
}
.conf-quote__date-wrap {
  position: relative;
}
.conf-quote__date-wrap .conf-quote__date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #595959;
  pointer-events: none;
}
.conf-quote__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 3px 16px;
  border: 0;
  background: #e9af40;
  color: #121212;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}
.conf-quote__submit:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}
@media (max-width: 1200px) {
  .conf-quote__card {
    flex-direction: column;
    min-height: 0;
  }
  .conf-quote__aside {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .conf-quote__aside-content {
    padding: 48px 24px 32px;
  }
  .conf-quote__leaf {
    width: 180px;
  }
  .conf-quote__form {
    padding: 24px;
  }
  .conf-quote__row {
    flex-direction: column;
    gap: 24px;
  }
}

.mice-page .header__nav-link--active {
  color: #F8E46F;
}

.mice-intro {
  padding: 60px 0;
  background: #FFFFFF;
}
.mice-intro__inner {
  max-width: 1096px;
  margin: 0 auto;
  text-align: center;
}
.mice-intro__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  margin-bottom: 24px;
}
.mice-intro__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mice-intro__text p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  margin: 0;
}
@media (max-width: 992px) {
  .mice-intro {
    padding: 40px 0;
  }
}

.mice-service {
  display: flex;
  min-height: 500px;
}
.mice-service__media {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
}
.mice-service__media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}
.mice-service__panel {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 64px;
  gap: 16px;
}
.mice-service__panel--dark {
  background: #121212;
  color: #f5f5f5;
}
.mice-service__panel--light {
  background: #fafafa;
  color: #0B1D35;
}
.mice-service__panel--slate {
  background: #f8fafc;
  color: #0B1D35;
}
.mice-service__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
  text-transform: capitalize;
}
.mice-service__title--gradient {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mice-service__line {
  display: block;
  width: 48px;
  height: 4px;
  background: #E9AF40;
}
.mice-service__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  max-width: 480px;
}
.mice-service__panel--dark .mice-service__desc {
  color: #f5f5f5;
}
.mice-service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #E9AF40;
  border: 0;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.mice-service__btn:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
  color: #1C1C1C;
}
.mice-service__btn {
  align-self: flex-start;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  padding: 8px 16px;
}
.mice-service--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .mice-service {
    flex-direction: column;
    min-height: 0;
  }
  .mice-service--reverse {
    flex-direction: column;
  }
  .mice-service__media, .mice-service__panel {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mice-service__media img {
    min-height: 280px;
  }
  .mice-service__panel {
    padding: 32px 24px;
  }
  .mice-service__title {
    font-size: 28px;
  }
}

.mice-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
}
.mice-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mice-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mice-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.4) 55%, rgba(18, 18, 18, 0.2) 100%);
}
.mice-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 0;
}
.mice-cta__tag {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 12px;
  background: #FFFFFF;
  color: #E9AF40;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mice-cta__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 24px;
  text-transform: capitalize;
}
.mice-cta__quote {
  margin: 0 0 32px;
  padding: 0 0 0 20px;
  border-left: 4px solid #E9AF40;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}
.mice-cta__quote p {
  margin: 0;
}
.mice-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid #E9AF40;
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.mice-cta__btn:hover {
  background: #E9AF40;
  color: #1C1C1C;
}
@media (max-width: 992px) {
  .mice-cta {
    min-height: 360px;
  }
  .mice-cta__inner {
    padding: 40px 0;
  }
  .mice-cta__title {
    font-size: 32px;
  }
}

.mice-blog {
  padding: 60px 0;
  background: #ECEFF1;
}
.mice-blog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.mice-blog__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  margin: 0;
  text-transform: uppercase;
}
.mice-blog__nav {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.mice-blog__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 29, 53, 0.3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #0B1D35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.mice-blog__nav-btn:hover {
  background: #FFFFFF;
}
.mice-blog__nav-btn--prev {
  opacity: 0.5;
}
.mice-blog__nav-btn--prev:hover {
  opacity: 0.85;
}
.mice-blog__slider-wrap {
  overflow: hidden;
}
.mice-blog__carousel.owl-carousel {
  display: block;
}
.mice-blog__carousel .owl-stage-outer {
  overflow: hidden;
}
.mice-blog__carousel .owl-item {
  display: flex;
}
.mice-blog__carousel .owl-item .blog-card {
  width: 100%;
  flex: 1;
}

.travel-guide-page .page-hero .header__nav-link--emphasized {
  background: linear-gradient(-90deg, #F8E46F 0%, #8B5B27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom-color: #F8E46F;
}

.blog-page {
  padding: 60px 0;
  background: #ECEFF1;
}
.blog-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1170px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.blog-filters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 3px 24px;
  border: 0;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #121212;
  background: #FFFFFF;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-filters__btn:hover {
  background: rgb(247.35, 247.35, 247.35);
  color: #121212;
}
.blog-filters__btn.is-active {
  background: #E9AF40;
  color: #1C1C1C;
}
.blog-filters__btn.is-active:hover {
  color: #1C1C1C;
}

.blog-featured-row {
  display: flex;
  gap: 30px;
  width: 100%;
  align-items: stretch;
}
.blog-featured-row .blog-card {
  flex: 0 0 362px;
}
@media (max-width: 1200px) {
  .blog-featured-row {
    flex-direction: column;
  }
  .blog-featured-row .blog-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.blog-featured {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 456px;
  overflow: hidden;
  background: #000000;
}
.blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.blog-featured__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 1;
}
.blog-featured__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.blog-featured__excerpt {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f5f5f5;
  margin: 0 0 12px;
  max-width: 640px;
}
.blog-featured__link {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #E9AF40;
  border-bottom: 1px solid #E9AF40;
  display: inline-block;
  text-decoration: none;
}
.blog-featured__link:hover {
  opacity: 0.88;
}
@media (max-width: 1200px) {
  .blog-featured {
    height: 360px;
  }
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.blog-grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1200px) {
  .blog-grid__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid__row {
    grid-template-columns: 1fr;
  }
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 0;
  cursor: pointer;
  background: #FFFFFF;
  color: #121212;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-pagination__btn:hover:not(:disabled) {
  background: rgb(244.8, 244.8, 244.8);
}
.blog-pagination__btn.is-active {
  background: #E9AF40;
  color: #1C1C1C;
}
.blog-pagination__btn--arrow {
  padding: 0;
  width: 32px;
}
.blog-pagination__ellipsis {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #121212;
  padding: 0 4px;
}

.blog-detail-page .page-hero--article {
  justify-content: flex-start;
  padding-bottom: 0;
}
.blog-detail-page .page-hero--article .header {
  position: absolute;
}
.blog-detail-page .page-hero__article {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1170px;
  margin: auto auto 0;
  padding: 180px 24px 48px;
  text-align: center;
}
.blog-detail-page .page-hero__title {
  font-size: 42px;
  line-height: 50px;
  text-transform: none;
  max-width: 1170px;
  margin: 0 auto 16px;
}
.blog-detail-page .page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.blog-detail-page .page-hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E9AF40;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .blog-detail-page .page-hero__article {
    padding-top: 140px;
  }
  .blog-detail-page .page-hero__title {
    font-size: 28px;
    line-height: 1.25;
  }
}

.blog-breadcrumb {
  background: #121212;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
}
.blog-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 1170px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.blog-breadcrumb a:hover {
  color: #FFFFFF;
}
.blog-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}
.blog-breadcrumb__current {
  color: #E9AF40;
}

.blog-detail {
  padding: 40px 0 60px;
  background: #FFFFFF;
}
.blog-detail__inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .blog-detail__inner {
    flex-direction: column;
  }
}

.blog-article {
  flex: 1;
  min-width: 0;
  max-width: 893px;
  padding-right: 32px;
}
.blog-article img {
  max-width: 100%;
  height: auto;
}
.blog-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #F0F0F0;
}
.blog-article__tags-label {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #121212;
}
.blog-article__tag {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #E9AF40;
  text-decoration: none;
}
.blog-article__tag:hover {
  text-decoration: underline;
}
.blog-article__tag-sep {
  color: #8C8C8C;
}

.blog-sidebar {
  flex: 0 0 277px;
  max-width: 277px;
  position: sticky;
  top: 24px;
}
@media (max-width: 1200px) {
  .blog-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
    width: 100%;
  }
}
.blog-sidebar__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #121212;
  margin: 0 0 24px;
  text-transform: capitalize;
}
.blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}

.blog-sidebar-tour {
  display: block;
  overflow: hidden;
  background: #ECEFF1;
  text-decoration: none;
  color: #121212;
  transition: box-shadow 0.25s ease;
}
.blog-sidebar-tour:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.blog-sidebar-tour:hover .blog-sidebar-tour__title {
  color: #E9AF40;
}
.blog-sidebar-tour:hover .blog-sidebar-tour__img {
  transform: scale(1.03);
}
.blog-sidebar-tour__img {
  width: 100%;
  aspect-ratio: 370/240;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-sidebar-tour__body {
  padding: 16px 20px;
}
.blog-sidebar-tour__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
  transition: color 0.2s ease;
}

.blog-related {
  padding: 60px 0;
  background: #ECEFF1;
}
.blog-related__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-related__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  margin: 0;
  text-transform: capitalize;
}
.blog-related__nav {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.blog-related__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 29, 53, 0.3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #0B1D35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.blog-related__nav-btn:hover {
  background: #FFFFFF;
}
.blog-related__nav-btn--prev {
  opacity: 0.5;
}
.blog-related__nav-btn--prev:hover {
  opacity: 0.85;
}
.blog-related__slider-wrap {
  overflow: hidden;
}
@media (max-width: 992px) {
  .blog-related__slider-wrap {
    overflow: visible;
  }
}
@media (max-width: 992px) {
  .blog-related__carousel .owl-stage-outer {
    overflow: visible;
  }
}

.contact-page .page-hero--contact {
  justify-content: flex-start;
}
.contact-page .page-hero--contact .header {
  position: absolute;
}
.contact-page .page-hero__contact {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1170px;
  margin: auto;
  padding: 200px 24px 56px;
  text-align: center;
}
.contact-page .page-hero__title {
  font-size: 48px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 auto 16px;
  max-width: 1170px;
}
.contact-page .page-hero__subtitle {
  margin: 0 auto;
  max-width: 580px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .contact-page .page-hero__contact {
    padding-top: 150px;
  }
  .contact-page .page-hero__title {
    font-size: 32px;
  }
  .contact-page .page-hero__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

.contact-section {
  padding: 60px 0;
  background: #ECEFF1;
}
.contact-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1170px;
}
.contact-section__intro {
  text-align: center;
  max-width: 900px;
}
.contact-section__title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #0B1D35;
  margin: 0 0 16px;
  text-transform: capitalize;
}
.contact-section__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595959;
  margin: 0;
}

.contact-card {
  display: flex;
  gap: 30px;
  width: 100%;
  padding: 24px;
  background: #FFFFFF;
}
.contact-card__map {
  flex: 0 0 546px;
  max-width: 546px;
  min-height: 556px;
  overflow: hidden;
}
.contact-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-card__map-img {
  width: 100%;
  height: 100%;
  min-height: 556px;
  object-fit: cover;
  display: block;
}
.contact-card__panel {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}
.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.contact-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.contact-card__info-item i {
  width: 24px;
  flex-shrink: 0;
  color: #E9AF40;
  margin-top: 2px;
}
.contact-card__info-item a {
  color: inherit;
  text-decoration: none;
}
.contact-card__info-item a:hover {
  color: #E9AF40;
}
.contact-card__form-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #262626;
  margin: 0;
}
@media (max-width: 1200px) {
  .contact-card {
    flex-direction: column;
  }
  .contact-card__map {
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 320px;
  }
  .contact-card__map-img {
    min-height: 320px;
  }
  .contact-card__panel {
    padding: 0;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.contact-form__row {
  display: flex;
  gap: 16px;
}
.contact-form__row .contact-form__field {
  flex: 1;
  min-width: 0;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__label {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  margin: 0;
}
.contact-form__req {
  color: #dc1f26;
}
.contact-form__input {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #D9D9D9;
  background: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  border-radius: 0;
}
.contact-form__input::placeholder {
  color: #8C8C8C;
}
.contact-form__input:focus {
  outline: none;
  border-color: #E9AF40;
}
.contact-form__textarea {
  min-height: 80px;
  resize: vertical;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  min-height: 40px;
  padding: 3px 16px;
  border: 0;
  background: #E9AF40;
  color: #1C1C1C;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}
.contact-form__submit:hover {
  background: rgb(230.3661971831, 165.4225352113, 41.1338028169);
}
@media (max-width: 768px) {
  .contact-form__row {
    flex-direction: column;
  }
  .contact-form__submit {
    width: 100%;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  top: 0 !important;
  position: relative;
  overflow-x: hidden;
}

.food-effect {
  -webkit-mask: url("../assets/destinations/bg-effect.png") center/contain no-repeat;
  mask: url("../assets/destinations/bg-effect.png") center/contain no-repeat;
  overflow: hidden;
}
.food-effect img {
  width: 521px;
  height: 435px;
  object-fit: cover;
}
