@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Book.woff") format("woff"), url("../fonts/CircularStd-Book.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --normal-color: #0F0F0F;
  --primary-color: #C6A96B;
  --second-color: #2A2A2A;
  --hover-color: #16a34a;
  --accent-color: #16a34a;
  --bg-color: #F5F5F3;
  --grey-color: #a1a1a1;
  --normal-font: "Inter", sans-serif;
  --primary-font: "Playfair Display", sans-serif;
  --second-font: "CircularStd", "Arial", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

ul::-webkit-scrollbar-track,
div::-webkit-scrollbar-track {
  border-radius: 5px;
}

ul::-webkit-scrollbar,
div::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

ul::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
  font-family: fontawesome;
}

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

ol,
ul {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--normal-font);
  color: var(--normal-color);
  font-size: 1.4rem;
  line-height: 1.5;
  background-color: #fcf7f6;
}

.ov-hidden {
  overflow: hidden;
}

.container {
  max-width: 1360px;
}

.row-collapse {
  margin-left: 0;
  margin-right: 0;
}

.row-collapse > div[class~=col],
.row-collapse > div[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-small {
  margin-left: -10px;
  margin-right: -10px;
}

.row-small > div[class~=col],
.row-small > div[class^=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-family: var(--second-font);
}

a {
  color: var(--normal-color);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
a:hover {
  color: var(--hover-color);
}

.tb-space {
  padding: 70px 0;
}

.tb-space-top {
  padding-top: 70px;
}

.tb-space-bottom {
  padding-bottom: 70px;
}

.tb-space-sm {
  padding: 40px 0;
}

.tb-space-sm-top {
  padding-top: 40px;
}

.tb-space-sm-bot {
  padding-bottom: 40px;
}

@media (max-width: 767.98px) {
  .tb-space {
    padding: 40px 0;
  }

  .tb-space-top {
    padding-top: 40px;
  }

  .tb-space-bottom {
    padding-bottom: 40px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.form-control {
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.custom-form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

select {
  appearance: none;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}

.rating-star {
  color: #ffc120;
  line-height: 1;
}

.rating i {
  color: #fbbf24 !important;
}

.section-heading {
  position: relative;
  margin-bottom: 4rem;
}
.section-heading .sectitle {
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-color);
}
.section-heading .subtitle {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .section-heading .sectitle {
    font-size: 3rem;
  }
}

.btn {
  padding: 0.8rem 1.4rem;
  font-size: 1.4rem;
  border-radius: 0.8rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--second-color);
  color: var(--second-color);
  font-weight: 600;
}
.btn-outline:hover {
  background-color: var(--second-color);
  color: #fff;
}

.btn-link {
  padding: 4px 0;
  color: var(--normal-color);
  border: 0;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.btn-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--second-color);
  transition: width 0.3s ease;
}
.btn-link:hover {
  color: var(--normal-color);
}
.btn-link:hover::after {
  width: 100%;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: relative;
  top: 0;
  background-color: var(--bg-color);
  z-index: 1050;
}
.header-main-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .logo {
  display: block;
  text-align: center;
}
.header-main .logo img {
  height: 100px;
}
.header-main .gr-cta-book {
  text-align: right;
}
.header-main .gr-cta-book .item {
  display: inline-block;
  border: 0;
  background: var(--primary-color);
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 8px;
  color: #fff;
}
.header-main .gr-cta-book .item:hover {
  background-color: var(--hover-color);
}
.header-main .gr-cta-book .languages {
  outline: 0;
}
@media (max-width: 767.98px) {
  .header-main .gr-cta-book .btn {
    display: none;
  }
}
.header-menu .close-menu-mobile {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header-menu .close-menu-mobile {
    display: block;
  }
}
.header-menu .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-menu .menu li a {
  display: block;
  padding: 10px 15px;
  font-weight: 600;
  position: relative;
}
.header-menu .menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--second-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header-menu .menu li a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
  }
  .header-menu .menu {
    display: block;
    margin-top: 50px;
  }
  .header-menu .menu li a {
    color: #fff;
  }
}
.header .menu-toggle {
  display: block;
  font-size: 2.4rem;
}
@media (min-width: 1025px) {
  .header .menu-toggle {
    display: none;
  }
}

.banner {
  position: relative;
}
.banner-slider .item {
  position: relative;
}
.banner-slider .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}
.banner-slider .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .banner-slider .item img {
    height: 70vh;
  }
}
@media (max-width: 767.98px) {
  .banner-slider .item img {
    height: 50vh;
  }
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}
.banner-content .hero-tag {
  color: #fff;
}
.banner-content .title {
  font-size: 6rem;
  font-family: var(--primary-font);
  margin-bottom: 10px;
}
.banner-content .desc {
  font-size: 1.6rem;
}
.banner-content .hero-cta {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.banner-content .hero-cta .btn-outline {
  border-color: #fff;
  color: #fff;
}
.banner-hero__form,
.banner .reservations {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 80%;
  z-index: 50;
  transition: all 0.3s ease;
}
.banner-hero__form .mobile-search-head,
.banner .reservations .mobile-search-head {
  display: none;
}
.banner-hero__form .field:not(:first-child),
.banner-hero__form .gr-btn,
.banner .reservations .field:not(:first-child),
.banner .reservations .gr-btn {
  display: flex !important;
}
@media (max-width: 767.98px) {
  .banner-hero__form.fixed .field:not(:first-child),
.banner-hero__form.fixed .gr-btn,
.banner .reservations.fixed .field:not(:first-child),
.banner .reservations.fixed .gr-btn {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .banner-hero__form.expand .field:not(:first-child),
.banner-hero__form.expand .gr-btn,
.banner .reservations.expand .field:not(:first-child),
.banner .reservations.expand .gr-btn {
    display: flex !important;
  }
}

.search-container {
  position: sticky;
  top: 10px;
  z-index: 100;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.search-container .search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* Dropdown Guests */
}
.search-container .search-row .field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-right: 1px solid #eee;
  position: relative;
}
.search-container .search-row .field:last-child {
  border-right: none;
}
.search-container .search-row .field i {
  color: #9ca3af;
  font-size: 16px;
}
.search-container .search-row .field-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}
.search-container .search-row .field-content .label {
  font-size: 11px;
  color: #9ca3af;
}
.search-container .search-row .field input {
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
}
@media (max-width: 767.98px) {
  .search-container .search-row .field {
    flex-wrap: wrap;
  }
}
.search-container .search-row .gr-btn {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .search-container .search-row .gr-btn {
    width: 100%;
  }
}
.search-container .search-row .search-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  margin-left: 10px;
  white-space: nowrap;
}
.search-container .search-row .search-btn:hover {
  background: var(--hover-color);
}
.search-container .search-row .btn-longstay {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  margin-left: 10px;
  white-space: nowrap;
}
.search-container .search-row .btn-longstay:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.search-container .search-row .guest-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 260px;
  padding: 15px;
  display: none;
}
.search-container .search-row .guest-dropdown.active {
  display: block;
}
.search-container .search-row .guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-container .search-row .guest-row + .guest-row {
  margin-top: 10px;
}
.search-container .search-row .counter {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-container .search-row .counter button {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.search-container .search-row .counter .num {
  min-width: 20px;
  text-align: center;
}
.search-container .search-row .suggest-box {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 50;
}
.search-container .search-row .suggest-box .suggest-item {
  padding: 10px;
  cursor: pointer;
}
.search-container .search-row .suggest-box .suggest-item:hover {
  background: #f3f4f6;
}
@media (max-width: 767.98px) {
  .search-container .search-row .search-row {
    flex-direction: column;
  }
  .search-container .search-row .field {
    border-right: none;
    border-bottom: 1px solid #eee;
    flex: 100% !important;
  }
  .search-container .search-row .search-btn {
    margin: 10px 0 0;
    width: 100%;
  }
  .search-container .search-row .btn-longstay {
    margin: 10px 0 0;
    width: 100%;
  }
}
.search-container .extra-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .search-container .extra-row {
    gap: 10px;
  }
}
.search-container .corp-btn {
  background: #f3f4f6;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
.search-container .note {
  color: #6b7280;
  font-size: 13px;
}

.reservations .mobile-search-head {
  display: none;
}
.reservations.fixed {
  position: fixed;
  top: 0px;
  bottom: auto;
  /* header */
  left: 0;
  right: 0;
  transform: translate(0);
  width: 100%;
  max-width: 100%;
  z-index: 999;
  transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
  box-shadow: 0 3px 5px -2px rgba(30, 33, 38, 0.15);
}
.reservations.fixed .search-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 14px 14px;
}
.reservations.expand {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: var(--bg-color);
  max-width: 100%;
}
.reservations.expand .mobile-search-head {
  position: relative;
  background-color: white;
  font-size: 13px;
  user-select: none;
  text-align: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}
.reservations.expand .mobile-search-head i {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservations.expand .search-container {
  border-radius: 0;
  flex-direction: column;
  box-shadow: none !important;
  padding: 40px 20px;
  background-color: transparent;
}
.reservations.expand .search-container .search-row {
  gap: 40px;
}
.reservations.expand .search-container .search-row .guest-dropdown {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: block;
  top: 0;
  width: 100%;
  box-shadow: none;
  padding: 0;
}
.reservations.off-screen {
  transform: translateY(-105%);
}
.reservations.show {
  transform: translate(0);
}
@media (max-width: 767.98px) {
  .reservations {
    /* ẨN bớt field */
    /* field location full width */
    /* input gọn lại */
  }
  .reservations .search-container {
    padding: 8px 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .reservations .field:not(:first-child),
.reservations .gr-btn {
    display: none !important;
  }
  .reservations .field:first-child {
    flex: 1;
    border: none;
  }
  .reservations input {
    font-size: 13px;
  }
  .reservations.expand .field, .reservations.expand .field:not(:first-child), .reservations.expand .gr-btn {
    display: flex !important;
    border: 0;
  }
  .reservations.expand .field {
    background-color: #fff;
  }
}

.about {
  display: block;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
}
.about-content__inner {
  background-color: #fff;
  max-width: 390px;
  padding: 20px;
  margin: auto;
}
@media (max-width: 767.98px) {
  .about-content__inner {
    padding: 15px;
  }
}
.about-content__title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .about-content__title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.about-content__desc {
  margin-bottom: 30px;
}
.about-content .gr-btn .btn {
  width: 100%;
}
.about-story .box-content .title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.about-story .box-content .desc {
  font-size: 1.6rem;
}
.about-signature .signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-signature .signature-grid .item {
  text-align: center;
}
.about-signature .signature-grid .item .title {
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--primary-color);
  font-weight: 600;
}
.about-signature .signature-grid .item .desc {
  font-size: 16px;
  color: #555;
}
@media (max-width: 767.98px) {
  .about-signature .signature-grid {
    grid-template-columns: 1fr;
  }
}
.about-stats {
  background-color: var(--primary-color);
  padding: 60px 0;
}
.about-stats .stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .about-stats .stats-grid .item {
    width: calc(50% - 10px);
  }
  .about-stats .stats-grid .item .item-top {
    margin-bottom: 10px;
  }
}
.about-stats .stats-grid .item-top {
  font-size: 55px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}
.about-stats .stats-grid .item-text {
  font-size: 16px;
  color: #fff;
}
.about-experience .exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991.98px) {
  .about-experience .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-experience .exp-card {
  text-align: center;
}
.about-experience .exp-card .box-image {
  position: relative;
  overflow: hidden;
}
.about-experience .exp-card .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
  transition: all 0.3s ease;
}
.about-experience .exp-card .title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 10px;
}
.about-experience .exp-card:hover .box-image img {
  transform: scale(1.1);
}
.about-cta {
  position: relative;
}
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.about-cta .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.about-cta-wrap {
  position: relative;
  padding: 120px 0;
  z-index: 1;
  color: #fff;
  text-align: center;
}
.about-cta-wrap .title {
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-cta-wrap .btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 1.6rem;
}
.about-page-video {
  padding: 40px 0;
}
.about-page-video .video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
}
.about-page-video .video-wrapper .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-page-video .video-wrapper .head-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 15px;
  text-align: center;
  min-height: 380px;
  background-color: rgba(0, 0, 0, 0.25);
}
.about-page-video .video-wrapper .head-box .title {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}
.about-page-video .video-wrapper .head-box .desc {
  color: #fff;
  font-size: 1.6rem;
}
.about-page-video .video-wrapper .head-box .play-button {
  margin-top: 20px;
  font-size: 31px;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
  width: 70px;
  height: 70px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-page-video .video-wrapper .head-box .play-button:hover {
  opacity: 1;
}

.hotels-home-slider .item {
  margin-bottom: 20px;
}
.hotels-page .hotels-block {
  position: relative;
  margin-bottom: 60px;
}
.hotels-page .hotels-block:last-child {
  margin-bottom: 0;
}
.hotels-page .hotels-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.hotels-page .hotels-block-head__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0;
}
.hotels-page .hotels-block-head__icon {
  display: inline-block;
  vertical-align: middle;
  background-color: white;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
}
.hotels-page .hotels-block-head__icon i,
.hotels-page .hotels-block-head__icon svg {
  display: inline-block;
  vertical-align: baseline;
  max-width: 37px;
  max-height: 27px;
  margin-bottom: -4px;
  font-size: 2.3rem;
}
@media (min-width: 768px) {
  .hotels-page .hotels-block-head {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
  .hotels-page .hotels-block-head__icon {
    width: 66px;
    height: 66px;
    line-height: 66px;
    margin-right: 17px;
  }
  .hotels-page .hotels-block-head__icon i,
.hotels-page .hotels-block-head__icon svg {
    max-width: 47px;
    max-height: 37px;
    margin-bottom: -8px;
  }
}
.hotels-page .hotels-block-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hotels-page .hotels-block-list .card-hotel .card-inner .box-content .hotel-meta {
  margin-bottom: 20px;
}
.hotels-page .hotels-block-list .card-hotel .card-inner .box-content .hotel-desc {
  display: none;
}
@media (max-width: 767.98px) {
  .hotels-page .hotels-block-list .card-hotel.card-horizontal .card-inner {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .hotels-page .hotels-block-list {
    grid-template-columns: 1fr;
  }
}
.hotels-detail-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.hotels-detail-wrap {
  display: block;
}
.hotels-detail-wrap .title-head {
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hotels-detail-wrap .title-head {
    margin-bottom: 35px;
    font-size: 3rem;
  }
}
.hotels-detail__title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hotels-detail__title {
    font-size: 6rem;
    margin-bottom: 14px;
  }
}
.hotels-detail__meta {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 30px;
}
.hotels-detail__meta i {
  color: #000;
}
@media (min-width: 768px) {
  .hotels-detail__meta {
    font-size: 1.6rem;
  }
}
.hotels-detail__description {
  position: relative;
  margin-bottom: 10px;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}
.hotels-detail__description-outer {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .hotels-detail__description-outer {
    margin-bottom: 40px;
  }
}
.hotels-detail-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.6rem;
}
.hotels-detail-amenities-list li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hotels-detail-amenities-list li .icon img {
  max-width: 30px;
  height: auto;
}
@media (min-width: 768px) {
  .hotels-detail-amenities-list {
    gap: 25px 20px;
  }
  .hotels-detail-amenities-list li {
    width: calc(33.3333333333% - 20px);
  }
}
.hotels-detail-block {
  scroll-margin-top: 120px;
}
.hotels-detail .block-overview {
  padding: 40px 0 60px;
}
.hotels-detail .block-overview .featured-price {
  padding: 25px 20px 20px;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
}
.hotels-detail .block-overview .featured-price-block {
  margin-bottom: 20px;
}
.hotels-detail .block-overview .featured-price .room-rate-price {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hotels-detail .block-overview .featured-price .room-rate-price span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.hotels-detail .block-overview .featured-price .room-rate-price span:first-child {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
.hotels-detail .block-overview .featured-price .room-rate-price span.price-value {
  line-height: 1;
  font-weight: 700;
  margin: 0 6px;
  color: var(--normal-color);
  font-size: 3rem;
}
@media (min-width: 768px) {
  .hotels-detail .block-overview .featured-price .room-rate-price span.price-value {
    font-size: 5rem;
  }
}
.hotels-detail .block-overview .featured-price .room-rate-member {
  font-size: 1.8rem;
  color: #8d8d8d;
  line-height: 1.2;
}
.hotels-detail .block-overview .featured-price .room-rate-member .underline {
  color: var(--primary-color);
  text-decoration: double;
  text-decoration: underline;
}
.hotels-detail .block-overview .featured-price-bookbtn {
  width: 100%;
  font-size: 1.6rem;
  padding: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.hotels-detail .block-overview .block-message {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background-color: #fff;
  margin-bottom: 16px;
  font-size: 13px;
}
.hotels-detail .block-overview .block-message__column {
  display: flex;
  align-items: center;
}
.hotels-detail .block-overview .block-message__column svg {
  margin-right: 8px;
  flex-shrink: 0;
}
.hotels-detail .block-overview .block-message__text {
  color: var(--normal-color);
}
@media (min-width: 768px) {
  .hotels-detail .block-overview .block-message {
    font-size: 14px;
    margin-top: 16px;
  }
}
.hotels-detail .block-rooms-item:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #eee;
}
@media (min-width: 768px) {
  .hotels-detail .block-rooms-item:not(:last-child) {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }
}
.hotels-detail .block-rooms-image {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
}
.hotels-detail .block-rooms-slider .box-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.hotels-detail .block-rooms-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}
.hotels-detail .block-rooms-meta {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}
.hotels-detail .block-rooms__tags .smart-tag li {
  display: inline-block;
  margin-right: 8px;
  background-color: rgba(241, 216, 209, 0.3);
  border-radius: 4px;
  margin-top: 8px;
  color: var(--normal-color);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 8px;
  padding-top: 7px;
}
.hotels-detail .block-rooms__tags .smart-tag li img {
  display: inline-block;
  max-width: 20px;
  margin-right: 4px;
}
.hotels-detail .block-rooms__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hotels-detail .block-rooms__title {
    font-size: 2.8rem;
  }
}
.hotels-detail .block-rooms__desc {
  -webkit-line-clamp: 6;
  line-clamp: 6;
  font-size: 1.6rem;
}
.hotels-detail .block-rooms-ratepicker {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}
.hotels-detail .block-rooms-ratepicker__submit {
  display: block;
}
.hotels-detail .block-rooms-ratepicker__submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.6rem;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .hotels-detail .block-rooms-ratepicker__submit .btn {
    font-size: 1.8rem;
  }
}
.hotels-detail .block-rooms-price {
  text-align: center;
}
.hotels-detail .block-rooms-price .price-value {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  margin-right: 8px;
}
.hotels-detail .block-rooms-price .price-value del {
  color: var(--normal-color);
}
.hotels-detail .block-rooms-price .price-value span {
  color: var(--primary-color);
  font-weight: 700;
}
.hotels-detail .block-rooms-price .price-value del:empty + span {
  color: var(--normal-color);
}
@media (min-width: 768px) {
  .hotels-detail .block-rooms-price .price-value {
    font-size: 3.4rem;
  }
}
.hotels-detail .block-rooms .btn-popup-amenities-room {
  position: relative;
  color: var(--normal-color);
  font-weight: 600;
  margin-left: 16px;
  margin-top: 10px;
  border: 0;
  background-color: transparent;
}
.hotels-detail .block-rooms .btn-popup-amenities-room:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  transform: scaleX(1);
  transform-origin: left;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--normal-color);
}
.hotels-detail .block-rooms .btn-popup-amenities-room:after {
  content: "+";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -16px;
  margin-right: 10px;
}
.hotels-detail .block-rooms .btn-popup-amenities-room:hover::before {
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transform: scaleX(0);
  transform-origin: right;
}
.hotels-detail .block-rooms .popup-amenities-room .modal-head,
.hotels-detail .block-rooms .popup-amenities-room .modal-body {
  padding: 20px;
}
.hotels-detail .block-rooms .popup-amenities-room .popup-amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 10px;
}
.hotels-detail .block-rooms .popup-amenities-room .popup-amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hotels-detail .block-rooms .popup-amenities-room .popup-amenities-list li .icon img {
  max-width: 20px;
  height: auto;
}
@media (max-width: 767.98px) {
  .hotels-detail .block-rooms .popup-amenities-room .popup-amenities-list {
    grid-template-columns: 1fr;
  }
}
.hotels-detail .block-faqs {
  padding: 40px 0;
}
.hotels-detail .block-faqs-head .title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .hotels-detail .block-faqs-head .title {
    font-size: 4rem;
  }
}
.hotels-detail .block-faqs-head .desc {
  max-width: 280px;
  font-size: 14px;
  color: #595959;
  margin-bottom: 30px;
  display: none;
}
@media (min-width: 768px) {
  .hotels-detail .block-faqs-head .desc {
    display: block;
  }
}
.hotels-detail .block-faqs-list {
  background-color: #fff;
}
.hotels-detail .block-faqs-item {
  padding: 0.6rem 0;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}
.hotels-detail .block-faqs-item__title {
  position: relative;
  user-select: none;
  padding: 10px 20px;
  padding-right: 50px;
  cursor: pointer;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.hotels-detail .block-faqs-item__title::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "\f106";
  font-family: fontawesome;
  display: block;
  margin-top: -1rem;
  width: 2rem;
  height: 2rem;
  transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}
.hotels-detail .block-faqs-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hotels-detail .block-faqs-item__inner {
  padding: 10px 20px;
  color: #848484;
}
.hotels-detail .block-faqs-item.active .block-faqs-item__title::after {
  content: "\f107";
}
@media (min-width: 768px) {
  .hotels-detail .block-faqs-item {
    padding: 1.5rem 0;
  }
  .hotels-detail .block-faqs-item__title {
    font-size: 1.8rem;
  }
}
.hotels-detail .block-nearby {
  padding: 40px 0;
}

.expandable-block {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
  will-change: max-height;
}
.expandable-block.opened, .expandable-block.opening {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.expandable-block.has-toggle:not(.opened):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(252, 247, 246, 0) 0%, rgba(252, 247, 246, 0.85) 71.15%, #fcf7f6 100%);
}

.expandable-readmore {
  position: relative;
  line-height: 1.5;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0;
  transition: margin cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
  display: none;
}
.expandable-readmore span {
  position: relative;
  display: inline-block;
  z-index: 5;
  user-select: none;
  color: #1e2126;
  border-bottom: 1px solid #1e2126;
}
@media (min-width: 768px) {
  .expandable-readmore {
    font-size: 1.5rem;
  }
}

.card-hotel {
  position: relative;
  border-radius: 0px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  overflow: hidden;
}
.card-hotel .card-inner .box-image {
  position: relative;
  overflow: hidden;
}
.card-hotel .card-inner .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: all 0.3s ease;
}
.card-hotel .card-inner .box-image .badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e11d48;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
}
.card-hotel .card-inner .box-image .badge-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c8a96a;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
}
.card-hotel .card-inner .box-content {
  padding: 20px;
}
.card-hotel .card-inner .box-content .hotel-name {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.card-hotel .card-inner .box-content .hotel-meta {
  font-size: 13px;
  color: #666;
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.card-hotel .card-inner .box-content .hotel-meta i {
  color: #000;
}
.card-hotel .card-inner .box-content .hotel-desc {
  margin-bottom: 10px;
}
.card-hotel .card-inner .box-content .hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.card-hotel .card-inner .box-content .hotel-amenities .item-ame {
  font-size: 12px;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-hotel .card-inner .box-content .hotel-amenities .item-ame i {
  font-size: 14px;
}
.card-hotel .card-inner .box-content .hotel-benefit {
  font-size: 12px;
  color: #059669;
  margin-bottom: 10px;
}
.card-hotel .card-inner .box-content .hotel-price {
  margin-bottom: 10px;
}
.card-hotel .card-inner .box-content .hotel-price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}
.card-hotel .card-inner .box-content .hotel-price .new {
  font-size: 18px;
  font-weight: bold;
  color: #111;
}
.card-hotel .card-inner .box-content .hotel-price .per {
  font-size: 12px;
  color: #666;
}
.card-hotel .card-inner .box-content .gr-btn {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.card-hotel .card-inner .box-content .gr-btn .btn {
  margin-top: 10px;
  width: calc(50% - 5px);
}
.card-hotel .card-inner:hover .box-image img {
  transform: scale(1.1);
}
.card-hotel.card-horizontal .card-inner {
  display: flex;
  flex-wrap: wrap;
}
.card-hotel.card-horizontal .card-inner .box-image {
  flex: 1;
  aspect-ratio: 16/9;
}
.card-hotel.card-horizontal .card-inner .box-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.usp-section {
  position: relative;
  background: var(--bg-color);
}
.usp-section .usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767.98px) {
  .usp-section .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.usp-section .usp-item {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid #eee;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
}
.usp-section .usp-item .icon {
  font-size: 3.6rem;
  margin-bottom: 20px;
}
.usp-section .usp-item .title {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.usp-section .usp-item .desc {
  font-size: 1.3rem;
  color: #777;
}
.usp-section .usp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-rows: 240px;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .destination-grid {
    display: flex;
    overflow-x: auto;
  }
}
.destination-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  display: block;
}
.destination-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.destination-item.big {
  grid-row: span 2;
}
.destination-item .box-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}
.destination-item .box-content .title {
  font-size: 2.8rem;
  margin-bottom: 6px;
}
.destination-item .box-content .gr-btn {
  margin-top: 6px;
}
.destination-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 767.98px) {
  .destination-item {
    min-width: 80%;
    height: 200px;
  }
}
.destination-page .top-bar {
  background-color: #fff;
  padding: 10px 0;
  margin-bottom: 25px;
}
.destination-page .top-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.destination-page .top-bar-head-title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 0;
}
.destination-page .top-bar-head-subtitle {
  font-size: 1.4rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.destination-page .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.destination-page .filters select {
  padding: 8px 10px;
  background: rgba(241, 216, 209, 0.5);
  border-color: transparent;
  cursor: pointer;
}
.destination-page .dest-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  height: calc(100vh - 120px);
}
.destination-page .dest-wrap .dest-wrap-hotel-list {
  overflow-y: auto;
  padding: 20px;
}
.destination-page .dest-wrap .dest-wrap-hotel-list .item {
  margin-bottom: 20px;
}
.destination-page .dest-wrap .maps {
  height: 100%;
  position: sticky;
  top: 0;
}
.destination-page .dest-wrap .maps iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .destination-page .dest-wrap {
    grid-template-columns: 1fr;
  }
  .destination-page .dest-wrap .maps iframe {
    height: 450px;
  }
}

.card-offer {
  position: relative;
  border-radius: 0px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  overflow: hidden;
}
.card-offer .card-inner {
  position: relative;
}
.card-offer .card-inner .box-image {
  position: relative;
  overflow: hidden;
}
.card-offer .card-inner .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
  transition: all 0.3s ease;
}
.card-offer .card-inner .box-content {
  padding: 20px;
}
.card-offer .card-inner .box-content .tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 6px;
}
.card-offer .card-inner .box-content .title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.card-offer .card-inner .box-content .desc {
  font-size: 13px;
  opacity: 0.9;
}
.card-offer .card-inner .box-content .benefit {
  font-size: 12px;
  margin: 10px 0 0;
  line-height: 1.6;
}
.card-offer .card-inner .box-content .benefit ul li {
  display: inline-block;
}
.card-offer .card-inner .box-content .deal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.card-offer .card-inner .box-content .deal-bottom .price {
  font-size: 14px;
}
.card-offer .card-inner .box-content .deal-bottom .price strong {
  font-size: 18px;
  color: #fff;
}
.card-offer.card-inline .box-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.services {
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--normal-color);
  backdrop-filter: blur(10px);
  z-index: 0;
}
.services-wrap {
  position: relative;
}
.services-wrap-list {
  box-shadow: 0px 44px 24.3px -19px rgba(0, 0, 0, 0.25);
  background-color: #f0f0f0;
  border-radius: 16px;
  padding: 60px;
}
.services-inner {
  margin-bottom: 50px;
}
.services-inner .box-content .title {
  font-size: 3.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.services-inner .box-content .desc {
  font-size: 1.8rem;
  color: #fff;
}
@media (max-width: 767.98px) {
  .services-inner .box-content {
    margin-bottom: 20px;
  }
}
.services-inner .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  aspect-ratio: 6/4;
}
.services-list .item .box-image {
  text-align: center;
  margin-bottom: 20px;
}
.services-list .item .box-image img {
  width: 120px;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 3px solid var(--primary-color);
}
.services-list .item .box-content {
  text-align: center;
}
.services-list .item .box-content .title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .services-list .item {
    margin-bottom: 30px;
  }
}

.longstay-home {
  position: relative;
}
.longstay-home .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.longstay-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--normal-color), transparent);
  z-index: 1;
}
.longstay-home-wrap {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}
.longstay-home-wrap-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.longstay-home-wrap-inner .tag {
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
}
.longstay-home-wrap-inner .title {
  font-size: 3.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
.longstay-home-wrap-inner .desc {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  max-width: 600px;
}
.longstay-home-wrap-inner .usp {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: #fff;
}
.longstay-home-wrap-inner .gr-btn {
  display: flex;
  gap: 15px;
}
.longstay-home-wrap-inner .gr-btn .btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 1.6rem;
}
.longstay-home-wrap-inner .gr-btn .btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.longstay-home-wrap-inner .gr-btn .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.longstay-value {
  position: relative;
  background-color: #fff;
}
.longstay-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.longstay-value-grid .item-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.longstay-value-grid .item-desc {
  color: #059669;
}
@media (max-width: 767.98px) {
  .longstay-value-grid {
    grid-template-columns: 1fr;
  }
}
.longstay-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.longstay-packages-grid .package-card {
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
}
.longstay-packages-grid .package-card.highlight {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}
.longstay-packages-grid .package-card .badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 10px;
}
.longstay-packages-grid .package-card .price {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0;
}
.longstay-packages-grid .package-card .benefit {
  margin-bottom: 20px;
}
.longstay-packages-grid .package-card:hover {
  transform: translateY(-5px);
}
.longstay-packages-grid .package-card:hover.highlight {
  transform: scale(1.05) translateY(-5px);
}
@media (max-width: 767.98px) {
  .longstay-packages-grid {
    grid-template-columns: 1fr;
  }
  .longstay-packages-grid .package-card {
    border: 2px solid var(--primary-color);
    transform: scale(1);
    padding: 30px 15px;
  }
  .longstay-packages-grid .package-card.highlight {
    transform: scale(1);
  }
}
.longstay-saving {
  background: #111;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.longstay-saving .saving-box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.longstay-saving .saving-box .box-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  width: 280px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.longstay-saving .saving-box .box-item-normal {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.longstay-saving .saving-box .box-item-longstay {
  border: 1px solid #c8a96a;
  box-shadow: 0 0 30px rgba(200, 169, 106, 0.3);
}
.longstay-saving .saving-box .box-title {
  font-size: 16px;
  opacity: 0.8;
}
.longstay-saving .saving-box .box-price {
  font-size: 28px;
  font-weight: 600;
}
.longstay-saving .saving-box .box-forlong {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.longstay-saving .saving-box .box-forlong-label {
  color: #aaa;
}
.longstay-saving .saving-box .box-forlong-num {
  font-size: 2.2rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .longstay-saving .saving-box {
    flex-direction: column;
    gap: 20px;
  }
}
.longstay-saving .vs {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.longstay-saving .saving-note {
  margin-top: 20px;
  color: var(--primary-color);
}
.longstay-saving .saving-highlight {
  margin-top: 60px;
  background: linear-gradient(90deg, rgba(0, 255, 100, 0.1), rgba(0, 0, 0, 0));
  padding: 25px 30px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.longstay-saving .saving-highlight .left {
  text-align: left;
}
.longstay-saving .saving-highlight .save-numsale {
  font-size: 36px;
  color: #00ff99;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.longstay-saving .saving-highlight .badge {
  background: #00ff99;
  color: #000;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 5px;
}
.longstay-saving .saving-highlight .saving-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #ccc;
}
.longstay-saving .saving-highlight .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.longstay-amenities-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.longstay-amenities-grid .box-text {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
  .longstay-amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .longstay-amenities-grid {
    grid-template-columns: 1fr;
  }
}
.longstay-faqs .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.longstay-faqs .faq-item-title {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
  padding-right: 20px;
  font-size: 1.8rem;
}
.longstay-faqs .faq-item-title:after {
  content: "\f107";
  position: absolute;
  top: 3px;
  right: 0;
  font-family: fontawesome;
  z-index: 1;
  transition: all 0.3s ease;
}
.longstay-faqs .faq-item-title.active:after {
  content: "\f106";
}
@media (max-width: 767.98px) {
  .longstay-faqs .faq-item-title {
    font-size: 1.6rem;
  }
}
.longstay-faqs .faq-item-desc {
  display: none;
  color: var(--gray-color);
  margin-top: 10px;
}
.longstay-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 14px 20px;
  border-radius: 40px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 70;
}
.longstay-sticky .btn {
  padding: 8px 16px;
  font-size: 14px;
}
.longstay-book {
  background-color: var(--primary-color);
}
.longstay-book-content {
  position: relative;
  color: #fff;
}
.longstay-book-content .title-head {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}
@media (min-width: 992px) {
  .longstay-book-content .title-head {
    font-size: 4rem;
  }
}
.longstay-book-content .desc {
  margin: 10px 0 20px;
}
@media (max-width: 767.98px) {
  .longstay-book-content {
    margin-bottom: 30px;
  }
}
.longstay-book-form {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.03);
}
@media (min-width: 768px) {
  .longstay-book-form {
    padding: 50px;
  }
}
.longstay-book-form .form-head-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 10px 0 20px;
}
.longstay-book-form .custom-form-label {
  font-weight: 500;
}
.longstay-book-form .form-control {
  font-size: 1.4rem;
  height: 40px;
}
.longstay-book-form .btn-form-submit {
  padding: 14px 20px;
  width: 100%;
  font-weight: 600;
  font-size: 1.6rem;
}

.box-contact-list .box-contact-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.box-contact-list .box-contact-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.box-contact-list .box-contact-item a {
  color: #fff;
  display: block;
  padding: 12px 0;
  font-size: 18px;
}
.box-contact-list .box-contact-item a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: rgba(241, 216, 209, 0.1);
  color: #f1d8d1;
  width: 30px;
  height: 30px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 1.1rem;
  padding: 5px;
  margin-right: 10px;
  text-align: center;
}

.card-blog {
  position: relative;
  border-radius: 0px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  overflow: hidden;
}
.card-blog .card-inner {
  position: relative;
  background-color: var(--primary-color);
  padding: 20px;
}
.card-blog .card-inner .box-image {
  position: relative;
  overflow: hidden;
}
.card-blog .card-inner .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
  transition: all 0.3s ease;
}
.card-blog .card-inner .box-content {
  padding: 20px 0 0;
}
.card-blog .card-inner .box-content .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}
.card-blog .card-inner .box-content .title a {
  color: inherit;
}
.card-blog .card-inner .box-content .desc {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.card-blog .card-inner .box-content .gr-btn {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.card-blog .card-inner .box-content .gr-btn .btn-link {
  color: #fff;
}
.card-blog .card-inner .box-content .gr-btn .btn-link::after {
  background-color: #fff;
}
.card-blog .card-inner:hover .box-image img {
  transform: scale(1.1);
}

.lux-utility {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767.98px) {
  .lux-utility {
    gap: 40px;
  }
}

.lux-item {
  display: flex;
  align-items: center;
}
.lux-item.reverse {
  flex-direction: row-reverse;
}
.lux-item .lux-media {
  flex: 1;
  overflow: hidden;
  border-radius: 0px;
}
.lux-item .lux-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.5s ease;
}
.lux-item .lux-content {
  flex: 1;
  padding: 60px;
}
.lux-item .lux-content .tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c8a96a;
  text-transform: uppercase;
}
.lux-item .lux-content .title {
  font-size: 36px;
  font-weight: 600;
  margin: 10px 0 15px;
}
.lux-item .lux-content .desc {
  color: #666;
  margin-bottom: 20px;
  max-width: 400px;
}
.lux-item:hover img {
  transform: scale(1.15);
}
@media (max-width: 767.98px) {
  .lux-item {
    flex-direction: column !important;
    gap: 20px;
  }
  .lux-item .lux-media {
    width: 100%;
  }
  .lux-item .lux-media img {
    height: 240px;
  }
  .lux-item .lux-content {
    padding: 0;
  }
  .lux-item .lux-content h2 {
    font-size: 24px;
  }
}

.reviews .section-heading .score {
  font-size: 16px;
  font-weight: bold;
}
.reviews-slider .item {
  display: block;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 16px;
}
.reviews-slider .item .rating-star {
  margin-bottom: 10px;
}
.reviews-slider .item .item-desc {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}
.reviews-slider .item .item-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-slider .item .item-author img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.reviews-slider .item .item-author strong {
  font-size: 14px;
}
.reviews-slider .item .item-author .locate {
  font-size: 12px;
  color: #777;
}
.reviews-slider .item .ota {
  margin-top: 20px;
}
.reviews-slider .item .ota img {
  width: auto;
  height: 22px;
  margin-left: auto;
}

.career-section {
  /* JOB ITEM */
}
.career-section .career-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .career-section .career-wrap {
    grid-template-columns: 1fr;
  }
}
.career-section .career-cta {
  background: linear-gradient(135deg, #C6A96B, #0f0f0f);
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.career-section .career-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/pattern-stars.png");
  opacity: 0.1;
}
.career-section .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.career-section .cta-content .title {
  font-size: 28px;
  margin-bottom: 10px;
}
.career-section .btn-apply {
  margin-top: 15px;
  padding: 12px 24px;
  background: #fff;
  color: #2b0a6d;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}
.career-section .btn-apply:hover {
  transform: scale(1.05);
}
.career-section .career-list {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
}
.career-section .career-list .title-head {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}
@media (max-width: 767.98px) {
  .career-section .career-list {
    padding: 0;
  }
}
.career-section .job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
  gap: 10px;
}
.career-section .job-item:hover {
  background: #f9fafb;
  transform: translateX(5px);
}
.career-section .job-info span {
  display: block;
  font-size: 13px;
  color: #6b7280;
}
.career-section .job-meta {
  text-align: right;
}
.career-section .job-meta span {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.career-section .job-meta .btn-action {
  padding: 6px 14px;
  border: 1px solid #2b0a6d;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.career-section .job-meta .btn-action:hover {
  background: #2b0a6d;
  color: #fff;
}

.ourhotels-location-wrap .item .item-head {
  font-size: 2.4rem;
  font-weight: 600;
}
.ourhotels-location-wrap .item .item-list a {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f0f0;
  border-radius: 10px;
  margin: 6px 6px 0 0;
  transition: 0.3s;
}
.ourhotels-location-wrap .item .item-list a:hover {
  background: var(--primary-color);
  color: #fff;
}
@media (max-width: 767.98px) {
  .ourhotels-location-wrap .item {
    margin-bottom: 10px;
  }
  .ourhotels-location-wrap .item .item-list a {
    margin: 6px 6px 6px 0;
  }
}

.jump-bar {
  position: relative;
  background-color: #fff;
  transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}
.jump-bar-wrap {
  position: relative;
  display: flex;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .jump-bar-wrap {
    padding: 8px 0;
  }
}
.jump-bar-links {
  white-space: nowrap;
}
.jump-bar-links li {
  display: inline-block;
  vertical-align: middle;
  margin: 0.1rem 0;
  padding: 8px;
  white-space: nowrap;
  font-size: 1rem;
  border-radius: 20px;
  transition: background-color 300ms;
  user-select: none;
}
.jump-bar-links li a {
  cursor: pointer;
  transition: color cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
  font-size: 1.3rem;
  color: #a1a1a1;
}
.jump-bar-links li a:hover, .jump-bar-links li a.active {
  color: #1e2126;
}
.jump-bar-links li:first-child {
  padding-left: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .jump-bar-links li {
    margin: 0 4px;
    padding: 16px 8px;
  }
}
.jump-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1200;
  border-top: 1px solid #e4e4e4;
  box-shadow: 0 3px 5px -2px rgba(30, 33, 38, 0.15);
}
.jump-bar.off-screen {
  transform: translateY(-100%);
}

.amenities-page {
  /* FILTER */
  /* CARD */
  /* BANNER */
  /* DETAIL */
  /* CTA */
}
.amenities-page .amenities-hero {
  position: relative;
  height: 80vh;
}
.amenities-page .amenities-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amenities-page .amenities-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.amenities-page .hero-content {
  position: absolute;
  bottom: 80px;
  color: #fff;
}
.amenities-page .hero-content h1 {
  font-size: 56px;
  font-weight: 700;
}
.amenities-page .btn-primary {
  background: #c8a96a;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
}
.amenities-page .amenities-filter {
  text-align: center;
  margin: 60px 0;
}
.amenities-page .amenities-filter button {
  margin: 5px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: #fff;
}
.amenities-page .amenities-filter .active {
  background: #c8a96a;
  color: #fff;
}
.amenities-page .amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.amenities-page .amenity-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}
.amenities-page .amenity-card:hover img {
  transform: scale(1.08);
}
.amenities-page .amenity-card .content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.amenities-page .amenity-card .link {
  color: #fff;
}
.amenities-page .amenities-banner {
  position: relative;
  margin: 100px 0;
}
.amenities-page .amenities-banner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.amenities-page .amenities-banner .content {
  position: absolute;
  bottom: 60px;
  left: 10%;
  color: #fff;
}
.amenities-page .amenities-detail {
  margin: 80px auto;
}
.amenities-page .amenities-detail img {
  width: 100%;
  border-radius: 12px;
}
.amenities-page .amenities-detail .row {
  margin-bottom: 60px;
}
.amenities-page .amenities-detail .reverse {
  flex-direction: row-reverse;
}
.amenities-page .amenities-cta {
  text-align: center;
  padding: 100px 20px;
  background: #111;
  color: #fff;
}

.contact-heading .title-head {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact-heading .title-head {
    font-size: 4rem;
  }
}
.contact-heading .desc {
  margin-bottom: 40px;
}
.contact .box-contact-list .box-contact-item {
  border: 0;
}
.contact .box-contact-list .box-contact-item a {
  color: var(--normal-color);
}
.contact .box-contact-list .box-contact-item a .icon {
  background-color: var(--primary-color);
  color: #fff;
}

.footer {
  background: var(--second-color);
  color: #fff;
}
.footer-main {
  padding: 60px 0;
}
.footer-col .footer-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col .footer-desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--primary-color);
}
@media (max-width: 991.98px) {
  .footer-col {
    margin-bottom: 30px;
  }
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social li {
  margin: 0 !important;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--primary-color);
  color: #fff !important;
  transform: translateY(-2px);
}
.footer-form {
  display: flex;
  flex-wrap: wrap;
}
.footer-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  flex: 1;
}
.footer-form button {
  border-radius: 4px;
}
.footer-bottom {
  padding: 15px 0;
}
.footer-bottom__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom__links ul li {
  display: inline-block;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}
.footer-bottom__links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.footer-bottom__links ul li a:hover {
  color: var(--primary-color);
}
.footer-bottom__links ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.backtotop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1023;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}
.backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-fixed {
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 1023;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-fixed .item {
  display: block;
}
.social-fixed .item img {
  width: 40px;
}

/*# sourceMappingURL=style.css.map */
