* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Albert Sans", sans-serif;
  scroll-behavior: smooth;
  outline: none;
}
.p-lr {
  padding-left: 108px;
  padding-right: 108px;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
body {
  background: #fff;
}
.navbar {
  width: 100%;
  padding: 24px 0;
  box-shadow: 0px 3px 7.4px 0px rgba(145, 145, 145, 0.19);
  background: #101010;
  .navbar-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    .navbar-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 940px;
      gap: 40px;
      .navbar-links {
        display: flex;
        align-items: center;
        max-width: 420px;
        justify-content: space-between;
        gap: 36px;
        .nav-link {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
        }
      }
      .nav-logo {
        width: 118px;
        min-width: 118px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
    .language {
      display: flex;
      flex-direction: column;
      align-items: start;
      position: relative;
      .current-lang {
        display: flex;
        align-items: center;
        gap: 4px;
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
        }
        img {
          width: 22px;
          height: 22px;
          min-width: 22px;
          transition: 0.3s ease-in-out;
          filter: brightness(100);
        }
      }
      .other-languages {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        position: absolute;
        z-index: 13;
        left: 0;
        top: 36px;
        padding: 8px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
        gap: 8px;
        transition: 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        .lang-item {
          font-size: 16px;
          line-height: 24px;
          color: #0c221d;
          font-weight: 400;
          width: 100%;
          &:first-child {
            padding-bottom: 8px;
            border-bottom: 1px solid #f2f2f2;
          }
        }
      }
    }
    .language.active {
      .current-lang {
        img {
          transform: rotate(180deg);
        }
      }
      .other-languages {
        top: 26px;
        opacity: 1;
        visibility: visible;
      }
    }
    .hamburger {
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      min-width: 32px;
      width: 32px;
      height: 32px;
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: 0.3s ease-in-out;
      }
      .hamburgerIcon {
        transform: scale(1);
      }
      .closeIcon {
        transform: scale(0);
      }
    }
    .hamburger.active {
      .hamburgerIcon {
        transform: scale(0);
      }
      .closeIcon {
        transform: scale(1);
      }
    }
  }
}
.home-navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  .navbar-container {
    .language {
      .other-languages {
        background: transparent;
        border: 1px solid #fff;
        .lang-item {
          color: #fff;
          &:first-child {
            border-color: rgba(255, 255, 255, 0.4);
          }
        }
      }
    }
  }
}
.mobile-menu-container {
  position: absolute;
  top: 84px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #fff;
  z-index: 12;
  padding: 20px;
  display: none;
  flex-direction: column;
  align-items: start;
  transition: 0.3s ease-in-out;
  border-top: 1px solid #f8f8f8;
  opacity: 0;
  visibility: hidden;
  .mobile-menu-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .mobile-link {
      padding: 10px 12px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #091a16;
    }
  }
}
.mobile-menu-container.showedMobileMenu {
  display: none;
  opacity: 1;
  visibility: visible;
  height: 305px;
  overflow: initial;
}
@keyframes fadeIn {
  from {
    transform: translateX(-50%) scale(1);
  }
  to {
    transform: translateX(-50%) scale(1.2);
  }
}
.home-hero-section {
  width: 100%;
  position: relative;
  height: 100vh;
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
  }
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    .hero-title {
      font-weight: 600;
      font-size: 50px;
      line-height: 60px;
      text-align: center;
      color: #fff;
    }
    .hero-subTitle {
      margin-top: 12px;
      font-weight: 400;
      font-size: 24px;
      line-height: 36px;
      text-align: center;
      color: #fff;
    }
    .hero-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 36px;
      .hero-link1 {
        background: #e69e6c;
        color: #fff;
        border-radius: 100px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        padding: 16px 32px;
        border: 1px solid #e69e6c;
        transition: 0.3s ease-in-out;
        &:hover {
          background: #a3704d;
          border-color: #a3704d;
        }
      }
      .hero-link2 {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 100px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        padding: 16px 45px;
        transition: 0.3s ease-in-out;
        &:hover {
          background: #fff;
          color: #e69e6c;
        }
      }
    }
  }
  .nextSection {
    position: absolute;
    bottom: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%) scale(1);
    animation: fadeIn 1s ease-in-out infinite;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.home-about {
  width: 100%;
  padding: 60px 0;
  background: #fbf6f3;
  .home-about-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    .home-about-content {
      max-width: 500px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .home-about-title {
        font-weight: 600;
        font-size: 48px;
        line-height: 54px;
        color: #091a16;
      }
      .content {
        margin-top: 16px;
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #666666;
        p,
        li {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #666666;
        }
        ul {
          padding-left: 18px;
        }
      }
    }
    .home-about-image {
      max-width: 524px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: 24px;
      padding: 0 24px 24px 0;
      img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        object-fit: cover;
        position: relative;
        z-index: 1;
      }
      &::after {
        content: "";
        position: absolute;
        background: rgba(198, 168, 107, 0.2);
        width: 192px;
        height: 192px;
        border-radius: 24px;
        bottom: 0;
        right: 0;
        z-index: 0;
      }
    }
  }
}
.home-rooms-cottages-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .home-rooms-cottages-description {
    margin-top: 16px;
    max-width: 800px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .home-rooms-cottages {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .room-card {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      border: 1px solid #f8f8f8;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      .card-image {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px 16px 0 0;
        width: 100%;
        height: 300px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px 16px 0 0;
          object-fit: cover;
        }
      }
      .card-body {
        padding: 16px 16px 24px;
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        .room-name {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
        }
        .room-properties {
          display: flex;
          align-items: center;
          margin-top: 16px;
          gap: 16px;
          width: 100%;
          .property-item {
            display: flex;
            align-items: center;
            gap: 4px;
            img {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
            p {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #666666;
            }
          }
        }
        .room-tags {
          width: 100%;
          margin-top: 16px;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          gap: 8px;
          .tag-item {
            font-weight: 400;
            font-size: 12px;
            line-height: 14px;
            color: #848484;
            border-radius: 4px;
            background: #f8f8f8;
            padding: 4px 6px;
          }
        }
        .card-body-bottom {
          margin-top: 24px;
          display: flex;
          align-items: center;
          width: 100%;
          justify-content: space-between;
          padding-top: 8px;
          border-top: 1px solid #e5e5e5;
          .room-price {
            display: flex;
            align-items: center;
            gap: 4px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #e69e6c;
            }
            span {
              font-weight: 400;
              font-size: 12px;
              line-height: 14px;
              color: #848484;
            }
          }
          .more {
            display: flex;
            align-items: center;
            gap: 8px;
            p {
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              color: #e69e6c;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
          }
        }
      }
    }
  }
  .view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    padding: 16px;
    max-width: 370px;
    width: 100%;
    margin: 30px auto 0;
    background: #e69e6c;
    transition: 0.3s ease-in-out;
    p {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
    }
    img {
      min-width: 24px;
      width: 24px;
      height: 24px;
    }
    &:hover {
      background: #a3704d;
    }
  }
}
.home-beachpool-container {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  .beachpool-images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    .beachpool-image-large {
      width: 100%;
      height: 468px;
      border-radius: 16px;
      img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        object-fit: cover;
      }
    }
    .beachpool-image-mini {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      .mini-image-item {
        width: 100%;
        height: 222px;
        border-radius: 16px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px;
          object-fit: cover;
        }
      }
    }
  }
  .home-beachpool-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .tag {
      padding: 8px 18px;
      border-radius: 100px;
      color: #e69e6c;
      background: rgba(230, 158, 108, 0.1);
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
    }
    .home-beachpool-title {
      margin-top: 20px;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #091a16;
    }
    .short-description {
      margin-top: 12px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #666666;
      }
    }
    .home-beachpool-advantages {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      margin-top: 20px;
      gap: 16px;
      .advantage-item {
        width: 100%;
        display: flex;
        align-items: start;
        gap: 16px;
        .item-icon {
          width: 56px;
          height: 56px;
          min-width: 56px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #faf8f3;
          border-radius: 14px;
          img {
            width: 28px;
            height: 28px;
            min-width: 28px;
          }
        }
        .item-body {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 10px;
          .item-title {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #091a16;
          }
          .item-description {
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #666666;
          }
        }
      }
    }
    .quickLink {
      margin-top: 24px;
      gap: 8px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      padding: 16px;
      background: #e69e6c;
      transition: 0.3s ease-in-out;
      p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
      }
      img {
        min-width: 24px;
        width: 24px;
        height: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.home-foodcuisine-section {
  margin-top: 40px;
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .home-foodcuisine-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    .foodcuisine-images {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 24px;
      .foodcuisine-image-large {
        width: 100%;
        height: 268px;
        border-radius: 16px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px;
          object-fit: cover;
        }
      }
      .foodcuisine-image-mini {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 100%;
        .mini-image-item {
          width: 100%;
          height: 272px;
          border-radius: 16px;
          img {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            object-fit: cover;
          }
        }
      }
    }
    .home-foodcuisine-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .tag {
        padding: 8px 18px;
        border-radius: 100px;
        color: #e69e6c;
        background: rgba(230, 158, 108, 0.1);
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
      }
      .home-foodcuisine-title {
        margin-top: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #091a16;
      }
      .short-description {
        margin-top: 12px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #666666;
        }
      }
      .home-foodcuisine-advantages {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-top: 20px;
        gap: 16px;
        .advantage-item {
          width: 100%;
          display: flex;
          align-items: start;
          gap: 16px;
          .item-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #faf8f3;

            border-radius: 14px;
            img {
              width: 28px;
              height: 28px;
              min-width: 28px;
            }
          }
          .item-body {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 10px;
            .item-title {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #091a16;
            }
            .item-description {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #666666;
            }
          }
        }
      }
      .quickLink {
        margin-top: 24px;
        gap: 8px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        padding: 16px;
        background: #e69e6c;
        transition: 0.3s ease-in-out;
        p {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
        }
        img {
          min-width: 24px;
          width: 24px;
          height: 24px;
        }
        &:hover {
          background: #a3704d;
        }
      }
    }
  }
}
.homeContactBanner-container {
  margin-top: 80px;
  width: 100%;
  height: 600px;
  position: relative;
  img {
    width: 100%;
    height: 100%;
    filter: brightness(30%);
    object-fit: cover;
  }
  .banner-content {
    max-width: 780px;
    width: 100%;
    padding: 20px 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #fff;
    }
    .section-subTitle {
      margin-top: 20px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
    }
    .contactUs-link {
      max-width: 440px;
      width: 100%;
      color: #fff;
      margin-top: 40px;
      padding: 16px;
      border-radius: 100px;
      background: #e69e6c;
      text-align: center;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      transition: 0.3s ease-in-out;
      &:hover {
        background: #a3704d;
      }
    }
  }
}
footer {
  width: 100%;
  background: #153e35;
  padding: 64px 0;
  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    .footer-top {
      width: 100%;
      display: flex;
      align-items: start;
      gap: 110px;
      .footer-top-main {
        min-width: 320px;
        width: 320px;
        display: flex;
        flex-direction: column;
        align-items: start;
        .footer-logo {
          min-width: 118px;
          width: 188px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
          }
        }
        .footer-description {
          width: 100%;
          margin-top: 16px;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgba(255, 255, 255, 0.7);
          }
        }
        .footer-socials {
          margin-top: 16px;
          display: flex;
          align-items: center;
          gap: 16px;
          flex-wrap: wrap;
          .social-item {
            min-width: 40px;
            width: 40px;
            height: 40px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            img {
              width: 20px;
              height: 20px;
              object-fit: contain;
            }
          }
        }
      }
      .footer-sections {
        max-width: 500px;
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 30px;
        .footer-section {
          width: 100%;
          max-width: 200px;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 16px;
          .footer-section-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 28px;
            color: #ffffff;
          }
          .footer-section-links {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 12px;
            .footer-section-link {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: rgba(255, 255, 255, 0.7);
            }
          }
        }
      }
    }
    .footer-contact {
      margin-top: 70px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 24px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      .footer-contact-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 10px;
        .item-title {
          font-weight: 600;
          font-size: 18px;
          line-height: 28px;
          color: #fff;
        }
        a,
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.7);
        }
      }
    }
    .footer-bottom {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 16px;
      .allRightReserved {
        width: auto;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.7);
        }
      }
      .footer-messages {
        display: flex;
        align-items: center;
        gap: 16px;
        .messageLink {
          display: flex;
          align-items: center;
          gap: 8px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.7);
          img {
            min-width: 16px;
            width: 16px;
            height: 16px;
          }
        }
      }
    }
  }
}
.breadcrumb-container {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
  background: #fff;
  .breadcrumb {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    .breadcrumb-item {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      color: #091a16;
    }
    .icon {
      width: 20px;
      height: 20px;
      min-width: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.page-hero {
  width: 100%;
  height: 560px;
  position: relative;
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 26, 0.6) 0%,
      rgba(26, 26, 26, 0.4) 50%,
      rgba(26, 26, 26, 0.7) 100%
    );
  }
  .hero-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    .small-title {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 3%;
      text-align: center;
      color: #e69e6c;
    }
    .hero-title {
      margin-top: 12px;
      font-weight: 600;
      font-size: 50px;
      line-height: 60px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      max-width: 1030px;
    }
    .hero-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 100px;
      padding: 16px;
      margin-top: 36px;
      background: #e69e6c;
      transition: 0.3s ease-in-out;
      p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
      }
      img {
        min-width: 24px;
        width: 24px;
        height: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.hotel-rooms-container {
  background: #fbf6f3;
  padding: 60px 0;
  .hotel-rooms {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hotel-rooms-filter {
      width: 100%;
      background: #ffffff;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      padding: 24px;
      .filter-head {
        display: flex;
        align-items: center;
        gap: 8px;
        .icon {
          width: 20px;
          height: 20px;
          min-width: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
            height: 100%;
          }
        }
        .filter-title {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
        }
      }
      .filter-items {
        width: 100%;
        margin-top: 30px;
        display: flex;
        align-items: end;
        gap: 24px;
        .filter-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
          label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #666666;
            img {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
          }
        }
        .filter-select {
          max-width: 330px;
          min-width: 250px;
          width: 100%;
          select {
            width: 100%;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 12px;
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            color: #666666;
          }
        }
        .filter-range {
          max-width: 380px;
          width: 100%;
          .range-inputs {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
            input {
              width: 100%;
              border: 1px solid #eaeaea;
              border-radius: 8px;
              padding: 11px 12px;
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
              min-width: 150px;
            }
            span {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
            }
          }
        }
        .filter-guests {
          max-width: 194px;
          width: 100%;
          input {
            width: 100%;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 11px 12px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #666666;
          }
        }
        .submitFilter {
          max-width: 200px;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          padding: 12px;
          background: #e69e6c;
          transition: 0.3s ease-in-out;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          &:hover {
            background: #a3704d;
          }
        }
      }
    }
    .all-rooms-cottages {
      width: 100%;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      .room-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        border: 1px solid #f8f8f8;
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
        border-radius: 16px;
        .card-image {
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 16px 16px 0 0;
          width: 100%;
          height: 300px;
          img {
            width: 100%;
            height: 100%;
            border-radius: 16px 16px 0 0;
            object-fit: cover;
          }
        }
        .card-body {
          padding: 16px 16px 24px;
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          .room-name {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #091a16;
          }
          .room-properties {
            display: flex;
            align-items: center;
            margin-top: 16px;
            gap: 16px;
            width: 100%;
            .property-item {
              display: flex;
              align-items: center;
              gap: 4px;
              img {
                width: 16px;
                height: 16px;
                min-width: 16px;
              }
              p {
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                color: #666666;
              }
            }
          }
          .room-tags {
            width: 100%;
            margin-top: 16px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            .tag-item {
              font-weight: 400;
              font-size: 12px;
              line-height: 14px;
              color: #848484;
              border-radius: 4px;
              background: #f8f8f8;
              padding: 4px 6px;
            }
          }
          .card-body-bottom {
            margin-top: 24px;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
            padding-top: 8px;
            border-top: 1px solid #e5e5e5;
            .room-price {
              display: flex;
              align-items: center;
              gap: 4px;
              p {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #e69e6c;
              }
              span {
                font-weight: 400;
                font-size: 12px;
                line-height: 14px;
                color: #848484;
              }
            }
            .more {
              display: flex;
              align-items: center;
              gap: 8px;
              p {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #e69e6c;
              }
              img {
                width: 24px;
                height: 24px;
                min-width: 24px;
              }
            }
          }
        }
      }
    }
  }
}
.hotel-service-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .hotel-service-description {
    margin-top: 16px;
    max-width: 510px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .hotel-services {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 24px;
    .hotel-service-item {
      background: #ffffff;
      box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      padding: 24px 16px;
      .icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
        border-radius: 16px;
        img {
          width: 32px;
          height: 32px;
        }
      }
      .hotel-service-title {
        margin-top: 24px;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #091a16;
      }
      .description {
        margin-top: 12px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #848484;
        }
      }
    }
  }
}
.reserve-room {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .reserve-room-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .reserve-form {
    width: 100%;
    margin-top: 30px;
    background: #ffffff;
    border: 1px solid rgba(92, 92, 92, 0.05);
    box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
    border-radius: 20px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    .form-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .form-item {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      label {
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        color: #848484;
      }
      input,
      select,
      textarea {
        width: 100%;
        background: #fbfbfb;
        box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
        border: 1px solid #f3f3f3;
        border-radius: 16px;
        padding: 16px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #091a16;
        &::placeholder {
          color: #848484;
        }
      }
      select {
        height: 58px;
      }
      textarea {
        height: 90px;
        resize: none;
      }
      .error-msg {
        margin-top: -10px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: red;
      }
    }
    .submitReserve {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 100px;
      padding: 16px;
      max-width: 900px;
      width: 100%;
      margin: 0 auto;
      background: #e69e6c;
      transition: 0.3s ease-in-out;
      p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
      }
      img {
        min-width: 24px;
        width: 24px;
        height: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.availability-calendar-container {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .availability-calendar-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .room-types {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    .room-type-btn {
      padding: 16px 36px;
      background: #ffffff;
      border: 1px solid #eaeaea;
      border-radius: 12px;
      width: max-content;
      max-width: 100%;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #0f2c26;
    }
    .room-type-btn.active {
      border-color: #627e78;
      background: #627e78;
      color: #fff;
    }
  }
  .calendar-card {
    max-width: 816px;
    margin: 30px auto 0;
    width: 100%;
    background: #faf8f3;
    box-shadow: 0px 2px 9.8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 36px;
    .calendar-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      .nav-btn {
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 100px;
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
      .month-label {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #091a16;
      }
    }
    .calendar-grid {
      margin-top: 40px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 16px 12px;
      .day-header {
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        color: #666666;
      }
      .day-cell {
        aspect-ratio: 1;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        color: #2c3e2f;
        cursor: pointer;
        transition:
          transform 0.15s,
          box-shadow 0.15s;
        position: relative;
        background: transparent;
      }
      .day-cell.empty {
        cursor: default;
      }
      .day-cell.past {
        background: #f9fafb;
        color: #d1d5dc;
        cursor: default;
        pointer-events: none;
      }
      .day-cell.available {
        background: #fff;
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 16px rgba(107, 140, 199, 0.2);
        }
      }
      .day-cell.booked {
        background: #fef2f2;
        color: #ff6467;
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 16px rgba(224, 112, 112, 0.18);
        }
      }
      .day-cell.available.today {
        outline: 1px solid #6b8cc7;
        outline-offset: -1px;
      }
      .day-cell.booked.today {
        outline: 1px solid #e85a5d;
        outline-offset: -1px;
      }
    }
    .calendar-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      padding-top: 16px;
      margin-top: 40px;
      border-top: 1px solid #eaeaea;
      .legend-item {
        display: flex;
        align-items: center;
        gap: 8px;
        .legend-dot {
          width: 24px;
          min-width: 24px;
          height: 24px;
          border-radius: 10px;
        }
        .legend-dot.available {
          background: #fff;
        }
        .legend-dot.booked {
          background: #fef2f2;
        }
        span {
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #666666;
        }
      }
    }
  }
  .tooltip {
    position: fixed;
    background: #091a16;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 2;
    white-space: nowrap;
  }
  .tooltip.visible {
    opacity: 1;
  }
}
.related-rooms {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .related-room-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .all-rooms-cottages {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .room-card {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      border: 1px solid #f8f8f8;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      .card-image {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px 16px 0 0;
        width: 100%;
        height: 300px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px 16px 0 0;
          object-fit: cover;
        }
      }
      .card-body {
        padding: 16px 16px 24px;
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        .room-name {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
        }
        .room-properties {
          display: flex;
          align-items: center;
          margin-top: 16px;
          gap: 16px;
          width: 100%;
          .property-item {
            display: flex;
            align-items: center;
            gap: 4px;
            img {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
            p {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #666666;
            }
          }
        }
        .room-tags {
          width: 100%;
          margin-top: 16px;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          gap: 8px;
          .tag-item {
            font-weight: 400;
            font-size: 12px;
            line-height: 14px;
            color: #848484;
            border-radius: 4px;
            background: #f8f8f8;
            padding: 4px 6px;
          }
        }
        .card-body-bottom {
          margin-top: 24px;
          display: flex;
          align-items: center;
          width: 100%;
          justify-content: space-between;
          padding-top: 8px;
          border-top: 1px solid #e5e5e5;
          .room-price {
            display: flex;
            align-items: center;
            gap: 4px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #e69e6c;
            }
            span {
              font-weight: 400;
              font-size: 12px;
              line-height: 14px;
              color: #848484;
            }
          }
          .more {
            display: flex;
            align-items: center;
            gap: 8px;
            p {
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              color: #e69e6c;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
          }
        }
      }
    }
  }
}
.hotel-detail-hero {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  .image-slides {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 24px;
    margin: 0;
    .room-image-slide {
      width: calc(100% - 312px);
      height: 400px;
      border-radius: 16px;
      .room-image-item {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px;
          object-fit: cover;
        }
      }
      .swiper-buttons {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 32px;
        right: 32px;
        z-index: 2;
        gap: 10px;
        .swiper-button-prev,
        .swiper-button-next {
          width: 52px;
          height: 52px;
          min-width: 52px;
          border-radius: 100px;
          position: initial;
          margin: 0;
          background: #ffffff;
          border: 1px solid #f8f8f8;
          box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.05);
          &::after {
            color: #44655d;
            font-size: 14px;
          }
        }
        .swiper-button-disabled {
          opacity: 1;
          background: rgba(255, 255, 255, 0.5);
          &::after {
            color: #fff;
          }
        }
      }
      .swiper-pagination {
        display: none;
        align-items: center;
        gap: 4px;
        justify-content: center;
        bottom: 0;
        .swiper-pagination-bullet {
          opacity: 1;
          width: 8px;
          height: 8px;
          border-radius: 100px;
          background: rgba(179, 179, 179, 0.4);
          transition: 0.3s ease-in-out;
          margin: 0;
        }
        .swiper-pagination-bullet-active {
          width: 24px;
          background: #e69e6c;
        }
      }
    }
    .room-otherImage-slide {
      width: 288px;
      min-width: 288px;
      height: 400px;
      border-radius: 16px;
      margin: 0;

      .room-image-item {
        width: 100%;
        height: 188px;
        border-radius: 16px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px;
          object-fit: cover;
        }
      }
      .swiper-slide-thumb-active {
        border: 2px solid #091a16;
      }
    }
  }
  .properties {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
    .propert-item {
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid #93a6a2;
      border-radius: 100px;
      padding: 12px 36px;
      img {
        width: 20px;
        height: 20px;
        min-width: 20px;
      }
      p {
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #333333;
      }
    }
  }
}
.cottage-gallery {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .cottage-gallery-description {
    margin-top: 16px;
    max-width: 510px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .cottage-image-slide {
    margin-top: 30px;
    width: 100%;
    height: 530px;
    border-radius: 16px;
    .cottage-image-item {
      width: 100%;
      height: 100%;
      border-radius: 16px;
      position: relative;
      img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        object-fit: cover;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.6) 0%,
          rgba(0, 0, 0, 0.1) 50%,
          rgba(0, 0, 0, 0) 100%
        );
      }
    }
    .swiper-button-prev,
    .swiper-button-next {
      width: 56px;
      height: 56px;
      min-width: 56px;
      border-radius: 100px;
      margin: 0;
      background: #ffffff;
      border: 1px solid #f8f8f8;
      box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.05);
      bottom: 0;
      top: 50%;
      transform: translateY(-50%);
      &::after {
        color: #2c3e2f;

        font-size: 16px;
      }
      &::before {
        font-weight: 700 !important;
      }
    }
    .swiper-button-prev {
      left: 24px;
    }
    .swiper-button-next {
      right: 24px;
    }
    .swiper-button-disabled {
      opacity: 1;
      background: rgba(255, 255, 255, 0.5);
      &::after {
        color: #fff;
      }
    }
    .swiper-pagination {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      bottom: 24px;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.5);
        transition: 0.3s ease-in-out;
        margin: 0;
      }
      .swiper-pagination-bullet-active {
        width: 48px;
        background: #fff;
      }
    }
  }
  .cottage-otherImage-slide {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
    margin: 0;
    margin-top: 30px;
    .cottage-image-item {
      width: 188px;
      height: 144px;
      border-radius: 16px;
      img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        object-fit: cover;
        filter: brightness(80%);
      }
    }
    .swiper-slide-thumb-active {
      border: 2px solid #091a16;
    }
  }
}
.our-cottages {
  margin-top: 40px;
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .our-cottages-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .our-cottages-description {
      margin-top: 16px;
      max-width: 650px;
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: #666666;
      }
    }
    .our-cottages-list {
      width: 100%;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      .cottage-item {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px 48px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        .cottage-item-info {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          .cottage-name {
            font-weight: 400;
            font-size: 20px;
            line-height: 30px;
            color: #091a16;
          }
          .cottage-description {
            margin-top: 16px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
            }
          }
          .cottage-properties {
            margin-top: 24px;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            .property-item {
              width: 100%;
              display: flex;
              align-items: center;
              gap: 12px;
              background: #faf8f3;
              padding: 16px;
              border-radius: 8px;
              img {
                width: 20px;
                height: 20px;
                min-width: 20px;
              }
              .item-body {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
                p {
                  font-weight: 400;
                  font-size: 12px;
                  line-height: 14px;
                  color: #666666;
                }
                span {
                  font-weight: 400;
                  font-size: 14px;
                  line-height: 18px;
                  color: #333333;
                }
              }
            }
          }
          .cottage-price {
            width: 100%;
            margin-top: 24px;
            padding-top: 24px;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #666666;
            display: flex;
            align-items: center;
            gap: 10px;
            border-top: 1px solid #eaeaea;
            p {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #666666;
              span {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #e69e6c;
              }
            }
          }
        }
        .cottage-include-service {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          .include-service-title {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #091a16;
          }
          .include-services {
            margin-top: 16px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            width: 100%;
            .include-service-item {
              display: flex;
              align-items: center;
              gap: 12px;
              border-radius: 8px;
              padding: 16px;
              background: #faf8f3;
              width: 100%;
              img {
                width: 20px;
                height: 20px;
                min-width: 20px;
              }
              p {
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                color: #333333;
              }
            }
          }
        }
      }
    }
  }
}
.our-activities {
  background: #fbf6f3;
  padding: 60px 0;
  width: 100%;
  .our-activities-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .our-activities-description {
      margin-top: 16px;
      max-width: 650px;
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: #666666;
      }
    }
    .activity-items {
      width: 100%;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      .activity-item {
        width: 100%;
        height: 380px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        .activity-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 16px;
          transition: 0.25s ease-in-out;
        }
        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          border-radius: 16px;
          width: 100%;
          height: 100%;
          z-index: 1;
          background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%
          );
        }
        .item-body {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 2;
          border-radius: 16px;
          padding: 24px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          .item-body-head {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
            .icon {
              width: 56px;
              height: 56px;
              min-width: 56px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 12px;
              background: #e69e6c;
              img {
                width: 28px;
                height: 28px;
              }
            }
            .age-type {
              background: rgba(255, 255, 255, 0.5);
              border: 1px solid rgba(255, 255, 255, 0.3);
              padding: 10px 16px;
              font-weight: 400;
              font-size: 12px;
              line-height: 14px;
              border-radius: 100px;
              color: #fff;
            }
          }
          .item-title {
            margin-top: auto;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #ffffff;
          }
          .description {
            width: 100%;
            margin-top: 12px;
            ul {
              padding-left: 18px;
            }
            p,
            li {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: rgba(255, 255, 255, 0.9);
            }
          }
        }
        &:hover {
          .activity-img {
            transform: scale(1.1);
          }
        }
      }
    }
  }
}
.moments-joy-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .moments-joy-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .moments-joy-images {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .joy-image {
      width: 100%;
      height: 280px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.8) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
  }
  .moments-joy-images-slide {
    margin-top: 24px;
    width: 100%;
    border-radius: 16px;
    padding-bottom: 32px;
    display: none;
    .joy-image {
      width: 100%;
      height: 210px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.8) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
    .swiper-pagination {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      bottom: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        background: rgba(179, 179, 179, 0.4);
        transition: 0.3s ease-in-out;
        margin: 0;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        background: #e69e6c;
      }
    }
  }
}
.guest-experience-container {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .guest-experience-description {
    margin-top: 16px;
    max-width: 680px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .guest-experience-slide {
    position: initial;
    margin: 30px auto 0;
    width: 100%;
    max-width: 984px;
    border-radius: 16px;
    padding: 4px 4px 32px;
    .experience-item {
      width: 100%;
      border: 1px solid #f8f8f8;
      box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      background: #fff;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
      .item-image {
        width: 100%;
        height: 660px;
        border-radius: 16px 0 0 16px;
        position: relative;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px 0 0 16px;
          object-fit: cover;
        }
        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0) 100%
          );
          z-index: 2;
          border-radius: 16px 0 0 16px;
        }
      }
      .item-body {
        width: 100%;
        padding: 36px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .icon {
          width: 64px;
          height: 64px;
          min-width: 64px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #e69e6c;
          border-radius: 12px;
          img {
            width: 32px;
            height: 32px;
          }
        }
        .ratings {
          display: flex;
          align-items: center;
          margin-top: 24px;
          gap: 4px;
          .rating-img {
            width: 20px;
            height: 20px;
            min-width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
        }
        .comment {
          width: 100%;
          margin-top: 24px;
          ul {
            padding-left: 18px;
          }
          p,
          li,
          span {
            font-weight: 400;
            font-style: Italic;
            font-size: 18px;
            line-height: 28px;
            color: #2c3e2f;
          }
        }
        .comment-owner {
          margin-top: 12px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #2c3e2f;
        }
      }
    }
    .swiper-pagination {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      bottom: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        background: rgba(179, 179, 179, 0.4);
        transition: 0.3s ease-in-out;
        margin: 0;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        background: #e69e6c;
      }
    }
    .swiper-button-prev,
    .swiper-button-next {
      width: 64px;
      height: 64px;
      min-width: 64px;
      border-radius: 100px;
      margin: 0;
      background: #ffffff;
      border: 1px solid #f8f8f8;
      box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.05);
      bottom: 0;
      top: 53%;
      &::after {
        color: #2c3e2f;
        font-size: 16px;
      }
      &::before {
        font-weight: 700 !important;
      }
    }
    .swiper-button-prev {
      left: 108px;
    }
    .swiper-button-next {
      right: 108px;
    }
  }
}
.ourMenu {
  background: #fbf6f3;
  padding: 60px 0;
  width: 100%;
  .ourMenu-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .ourMenu-description {
      margin-top: 16px;
      max-width: 650px;
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: #666666;
      }
    }
    .menuCategorySwiper {
      max-width: 100%;
      width: max-content;
      margin-top: 30px;
      .menuCategory-item {
        cursor: pointer;
        padding: 12px 28px;
        border-radius: 100px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #7f573b;
        background: #fdf5f0;
        min-width: 90px;
        text-align: center;
        width: max-content;
      }
      .menuCategory-item.active {
        box-shadow: 0px 4px 5.7px 0px #e7e2de;
        color: #fff;
        background: #e69e6c;
      }
    }
    .allOurMenu {
      margin-top: 30px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      .ourMenu-card {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
        background: #fff;
        .card-image {
          width: 100%;
          height: 280px;
          border-radius: 16px 16px 0 0;
          position: relative;
          overflow: hidden;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
            transition: 0.25s ease-in-out;
          }
          .menu-price {
            display: flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 100px;
            background: #fff;
            width: max-content;
            position: absolute;
            z-index: 2;
            top: 16px;
            right: 16px;
            font-weight: 400;
            font-size: 16px;
            line-height: 14px;
            color: #e69e6c;
          }
          &:hover {
            img {
              transform: scale(1.1);
            }
          }
        }
        .card-body {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          padding: 16px 16px 30px;
          .menu-name {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #091a16;
          }
          .short-description {
            width: 100%;
            margin-top: 12px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
            }
          }
        }
      }
    }
  }
}
.specialOffers-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .specialOffers-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .specialOffers {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    .specialOffer-card {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      background: #fff;
      .card-image {
        width: 100%;
        height: 280px;
        border-radius: 16px 16px 0 0;
        position: relative;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 16px 16px 0 0;
          transition: 0.25s ease-in-out;
        }
        &:hover {
          img {
            transform: scale(1.1);
          }
        }
      }
      .card-body {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 16px 30px;
        .menu-name {
          font-weight: 500;
          font-size: 20px;
          line-height: 30px;
          color: #091a16;
        }
        .short-description {
          width: 100%;
          margin-top: 12px;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #666666;
          }
        }
      }
    }
  }
}
.cateringEvent-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .cateringEvent-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .cateringEvents {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .cateringEvent-card {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      height: 490px;
      box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
        transition: 0.25s ease-in-out;
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.7) 0%,
          rgba(0, 0, 0, 0) 50%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      .card-body {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: end;
        padding: 24px;
        .cateringEvent-name {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
        }
        .short-description {
          width: 100%;
          margin-top: 6px;
          p {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: rgba(255, 255, 255, 0.8);
          }
        }
      }
    }
  }
}
.tourEventTypes-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .tourEventTypes-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .tourEventTypes {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    .tourEventType-card {
      width: 100%;
      height: 330px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
        filter: brightness(72%);
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
      .type-name {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 100%;
        padding: 24px 20px;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #fff;
      }
    }
  }
}
.upcomingEventsTours {
  background: #fbf6f3;
  padding: 60px 0;
  width: 100%;
  .upcomingEventsTours-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .upcomingEventsTours-description {
      margin-top: 16px;
      max-width: 650px;
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: #666666;
      }
    }
    .upcomingEventsToursSwiper {
      max-width: 100%;
      width: max-content;
      margin-top: 30px;
      .upcomingEventsTours-item {
        cursor: pointer;
        padding: 12px 28px;
        border-radius: 100px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #7f573b;
        background: #fdf5f0;
        min-width: 90px;
        text-align: center;
        width: max-content;
      }
      .upcomingEventsTours-item.active {
        box-shadow: 0px 4px 5.7px 0px #e7e2de;
        color: #fff;
        background: #e69e6c;
      }
    }
    .allUpcomingEventsTours {
      margin-top: 30px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      .upcomingEvent-card {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
        background: #fff;
        .card-image {
          width: 100%;
          height: 240px;
          border-radius: 16px 16px 0 0;
          position: relative;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
          }
          &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 16px 16px 0 0;
            z-index: 1;
            background: linear-gradient(
              0deg,
              rgba(26, 26, 26, 0.6) 0%,
              rgba(0, 0, 0, 0) 100%
            );
          }
          .card-price {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 100px;
            background: #d19062;
            width: max-content;
            position: absolute;
            z-index: 2;
            bottom: 16px;
            left: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #fff;
            span {
              font-weight: 600;
              font-size: 18px;
              line-height: 28px;
              color: #fff;
            }
          }
          .cardCategory {
            padding: 8px 12px;
            border-radius: 100px;
            background: #fff;
            width: max-content;
            position: absolute;
            z-index: 2;
            top: 16px;
            right: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #2d4a3e;
          }
        }
        .card-body {
          padding: 16px 16px 30px;
          border-radius: 0 0 16px 16px;
          .card-name {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #091a16;
          }
          .short-description {
            width: 100%;
            margin-top: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            overflow: hidden;
            -webkit-box-orient: vertical;
            height: 48px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
            }
          }
          .card-details {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 8px;
            width: 100%;
            .detail-item {
              display: flex;
              align-items: center;
              width: 100%;
              gap: 8px;
              img {
                width: 16px;
                min-width: 16px;
              }
              p {
                font-weight: 400;
                font-size: 14px;
                line-height: 21px;
                color: #4e4e4e;
              }
            }
          }
        }
      }
    }
  }
}
.custom-private-tours {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  .private-tours-content {
    width: 100%;
    .section-title {
      font-weight: 500;
      font-size: 24px;
      line-height: 34px;
      color: #091a16;
    }
    .private-tours-description {
      margin-top: 16px;
      width: 100%;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #848484;
      }
    }
    .private-tours-properties {
      margin-top: 24px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      .property-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        .icon {
          width: 40px;
          height: 40px;
          min-width: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 12px;
          background: rgba(230, 158, 108, 0.2);
          img {
            width: 20px;
            height: 20px;
          }
        }
        .item-body {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
          width: 100%;
          .property-name {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #4e4e4e;
          }
          .property-description {
            ul {
              padding-left: 18px;
            }
            p,
            li {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #a9a9a9;
            }
          }
        }
      }
    }
    .request-link {
      display: flex;
      width: max-content;
      margin-top: 24px;
      border-radius: 100px;
      padding: 16px 30px;
      background: #e69e6c;
      transition: 0.3s ease-in-out;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      &:hover {
        background: #a3704d;
      }
    }
  }
  .private-tours-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    position: relative;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
    }
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      border-radius: 16px;
      background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0) 100%
      );
    }
  }
}
.beach-gallery-container {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .beach-gallery-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .beach-gallery-images {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .gallery-image {
      width: 100%;
      height: 280px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.8) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
  }
  .beach-gallery-images-slide {
    margin-top: 24px;
    width: 100%;
    border-radius: 16px;
    padding-bottom: 32px;
    display: none;
    .gallery-image {
      width: 100%;
      height: 210px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.8) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
    .swiper-pagination {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      bottom: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        background: rgba(179, 179, 179, 0.4);
        transition: 0.3s ease-in-out;
        margin: 0;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        background: #e69e6c;
      }
    }
  }
}
.opening-hours-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .opening-hours-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .opening-hours-items {
    width: 100%;
    max-width: 980px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .opening-hours-item {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
      background: #ffffff;
      box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
      border-radius: 16px;
      padding: 24px;
      .icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
        img {
          width: 32px;
          height: 32px;
        }
      }
      .item-title {
        margin-top: 24px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #091a16;
      }
      .item-clock {
        margin-top: 6px;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        color: #44655d;
      }
    }
  }
  .warning-text {
    margin-top: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #666666;
  }
}
.private-beach {
  width: 100%;
  padding: 60px 0;
  background: #fbf6f3;
  .private-beach-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    .private-beach-images {
      max-width: 590px;
      width: 100%;
      height: 340px;
      border-radius: 16px;
      box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
      position: relative;
      .large-image {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px;
          object-fit: cover;
        }
      }
      .small-images {
        position: absolute;
        bottom: -24px;
        right: -20px;
        display: flex;
        align-items: center;
        gap: 12px;
        .small-image-item {
          width: 142px;
          height: 142px;
          border-radius: 16px;
          border: 4px solid #fff;
          img {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            object-fit: cover;
          }
        }
      }
    }
    .private-beach-content {
      max-width: 540px;
      width: 100%;
      .section-title {
        font-weight: 500;
        font-size: 24px;
        line-height: 34px;
        color: #091a16;
      }
      .private-beach-description {
        margin-top: 16px;
        width: 100%;
        ul {
          padding-left: 18px;
        }
        p,
        li {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #666666;
        }
      }
      .private-beach-properties {
        margin-top: 44px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        .property-item {
          padding: 18px 16px;
          background: #ffffff;
          border-radius: 8px;
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          .icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
            img {
              width: 24px;
              height: 24px;
            }
          }
          .item-body {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            width: 100%;
            .property-name {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #091a16;
            }
            .property-description {
              ul {
                padding-left: 18px;
              }
              p,
              li {
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                color: #666666;
              }
            }
          }
        }
      }
    }
  }
}
.infinity-pool-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .infinity-pool-description {
    margin-top: 16px;
    max-width: 650px;
    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
  }
  .infinity-pool-boxes {
    width: 100%;
    max-width: 1024px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    .infinity-pool-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
      background: #fbf6f3;
      box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      padding: 36px 16px;
      .icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
        img {
          width: 32px;
          height: 32px;
        }
      }
      .item-title {
        margin-top: 12px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #091a16;
      }
    }
  }
  .infinity-pool-gallery {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
    .infinity-pool-gallery-item {
      width: 100%;
      height: 330px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
      &:first-child {
        grid-column: span 3;
        height: 530px;
        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 2;
          border-radius: 16px;
          background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0) 100%
          );
        }
      }
    }
  }
  .infinity-pool-gallery-images-slide {
    margin-top: 24px;
    width: 100%;
    border-radius: 16px;
    padding-bottom: 32px;
    display: none;
    .infinity-pool-gallery-item {
      width: 100%;
      height: 210px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.6) 0%,
          rgba(0, 0, 0, 0.1) 50%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
    .swiper-pagination {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      bottom: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        background: rgba(179, 179, 179, 0.4);
        transition: 0.3s ease-in-out;
        margin: 0;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        background: #e69e6c;
      }
    }
  }
}
@media only screen and (min-width: 1700px) {
}
@media only screen and (max-width: 1370px) {
  .navbar {
    .navbar-container {
      .navbar-main {
        max-width: 900px;
      }
    }
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  .navbar {
    .navbar-container {
      gap: 20px;
      .navbar-main {
        max-width: 880px;
        gap: 20px;
        .navbar-links {
          gap: 24px;
        }
      }
    }
  }
  .home-hero-section {
    .hero-content {
      .hero-title {
        font-size: 40px;
        line-height: 48px;
      }
      .hero-subTitle {
        margin-top: 8px;
        font-size: 20px;
        line-height: 32px;
      }
      .hero-links {
        gap: 12px;
        margin-top: 26px;
        .hero-link1 {
          padding: 12px 24px;
        }
        .hero-link2 {
          padding: 12px 30px;
        }
      }
    }
  }
  .home-about {
    padding: 48px 0;
    .home-about-container {
      gap: 40px;
      .home-about-content {
        max-width: 450px;
        .home-about-title {
          font-size: 36px;
          line-height: 48px;
        }
        .content {
          font-size: 16px;
          line-height: 24px;
          p,
          li {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
      .home-about-image {
        max-width: 480px;
        padding: 0 20px 20px 0;
        &::after {
          width: 162px;
          height: 162px;
        }
      }
    }
  }
  .home-rooms-cottages-container {
    margin: 36px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .home-rooms-cottages-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .home-rooms-cottages {
      margin-top: 24px;
      gap: 20px;
      .room-card {
        .card-image {
          height: 240px;
        }
      }
    }
    .view-all {
      padding: 12px;
      max-width: 320px;
      margin: 24px auto 0;
    }
  }
  .home-beachpool-container {
    margin: 72px auto 0;
    gap: 20px;
    .beachpool-images {
      gap: 20px;
      .beachpool-image-large {
        height: 428px;
      }
      .beachpool-image-mini {
        gap: 20px;
        .mini-image-item {
          height: 204px;
        }
      }
    }
    .home-beachpool-content {
      .tag {
        padding: 6px 14px;
        font-size: 14px;
        line-height: 20px;
      }
      .home-beachpool-title {
        margin-top: 16px;
      }
      .short-description {
        margin-top: 10px;
        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .home-beachpool-advantages {
        margin-top: 16px;
        gap: 16px;
        .advantage-item {
          gap: 14px;
          .item-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
          }
          .item-body {
            gap: 8px;
          }
        }
      }
      .quickLink {
        margin-top: 20px;
        padding: 12px;
      }
    }
  }
  .home-foodcuisine-section {
    margin-top: 36px;
    padding: 48px 0;
    .home-foodcuisine-container {
      gap: 20px;
      .foodcuisine-images {
        gap: 20px;
        .foodcuisine-image-large {
          height: 238px;
        }
        .foodcuisine-image-mini {
          gap: 20px;
          .mini-image-item {
            height: 242px;
          }
        }
      }
      .home-foodcuisine-content {
        .tag {
          padding: 6px 14px;
          font-size: 14px;
          line-height: 20px;
        }
        .home-foodcuisine-title {
          margin-top: 16px;
        }
        .short-description {
          margin-top: 10px;
          p {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .home-foodcuisine-advantages {
          margin-top: 16px;
          gap: 16px;
          .advantage-item {
            gap: 14px;
            .item-icon {
              width: 48px;
              height: 48px;
              min-width: 48px;
              img {
                width: 24px;
                height: 24px;
                min-width: 24px;
              }
            }
            .item-body {
              gap: 8px;
            }
          }
        }
        .quickLink {
          margin-top: 20px;
          padding: 12px;
        }
      }
    }
  }
  .homeContactBanner-container {
    margin-top: 72px;
    height: 550px;
    .banner-content {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        font-size: 16px;
        line-height: 24px;
      }
      .contactUs-link {
        margin-top: 32px;
        padding: 12px;
        max-width: 360px;
      }
    }
  }
  footer {
    .footer-container {
      .footer-top {
        gap: 80px;
      }
      .footer-contact {
        margin-top: 50px;
        gap: 16px;
      }
    }
  }
  .breadcrumb-container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .page-hero {
    height: 460px;
    .hero-content {
      .small-title {
        font-size: 14px;
        line-height: 18px;
      }
      .hero-title {
        font-size: 40px;
        line-height: 50px;
        max-width: 930px;
      }
      .hero-link {
        padding: 12px 16px;
        margin-top: 30px;
      }
    }
  }
  .hotel-rooms-container {
    padding: 48px 0;
    .hotel-rooms {
      .hotel-rooms-filter {
        .filter-items {
          margin-top: 30px;
          gap: 20px;
          .filter-select {
            max-width: 280px;
            min-width: 200px;
          }
          .filter-range {
            max-width: 360px;
            .range-inputs {
              input {
                min-width: 100px;
              }
            }
          }
          .filter-guests {
            max-width: 194px;
            min-width: 130px;
          }
          .submitFilter {
            max-width: 200px;
          }
        }
      }
      .all-rooms-cottages {
        margin-top: 24px;
        gap: 20px;
        .room-card {
          .card-image {
            height: 240px;
          }
        }
      }
    }
  }
  .hotel-service-container {
    margin: 36px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .hotel-service-description {
      margin-top: 12px;
      max-width: 450px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .hotel-services {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 24px;
      gap: 20px;
    }
  }
  .reserve-room {
    margin: 72px auto 36px;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .reserve-room-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .reserve-form {
      margin-top: 24px;
      gap: 20px;
      .form-items {
        gap: 20px;
      }
      .submitReserve {
        max-width: 700px;
        padding: 12px;
      }
    }
  }
  .related-rooms {
    margin: 72px auto 36px;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .related-room-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .all-rooms-cottages {
      margin-top: 24px;
      gap: 20px;
      .room-card {
        .card-image {
          height: 240px;
        }
      }
    }
  }
  .availability-calendar-container {
    margin: 72px auto 36px;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .availability-calendar-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .room-types {
      gap: 20px;
      margin-top: 24px;
      .room-type-btn {
        padding: 12px 30px;
        font-size: 15px;
        line-height: 22px;
      }
    }
    .calendar-card {
      max-width: 716px;
      margin: 24px auto 0;
      padding: 30px;
      .calendar-grid {
        margin-top: 30px;
        grid-template-columns: repeat(7, 1fr);
        gap: 16px 8px;
      }
      .calendar-footer {
        margin-top: 30px;
      }
    }
    .tooltip {
      padding: 4px 10px;
    }
  }
  .hotel-detail-hero {
    .image-slides {
      gap: 24px;
      .room-image-slide {
        width: calc(100% - 272px);
        height: 360px;
        .swiper-buttons {
          bottom: 28px;
          right: 28px;
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            min-width: 42px;
            &::after {
              font-size: 12px;
            }
          }
        }
      }
      .room-otherImage-slide {
        width: 248px;
        min-width: 248px;
        height: 360px;
        .room-image-item {
          width: 100%;
          height: 168px;
        }
      }
    }
    .properties {
      gap: 20px;
      margin-top: 30px;
      .propert-item {
        gap: 10px;
        padding: 10px 30px;
      }
    }
  }
  .cottage-gallery {
    margin: 36px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .cottage-gallery-description {
      margin-top: 12px;
      max-width: 450px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .cottage-image-slide {
      margin-top: 24px;
      height: 450px;
      .swiper-button-prev,
      .swiper-button-next {
        width: 52px;
        height: 52px;
        min-width: 52px;
        &::after {
          font-size: 14px;
        }
      }
      .swiper-button-prev {
        left: 20px;
      }
      .swiper-button-next {
        right: 20px;
      }
      .swiper-pagination {
        gap: 10px;
        bottom: 20px;
        .swiper-pagination-bullet-active {
          width: 40px;
        }
      }
    }
    .cottage-otherImage-slide {
      margin-top: 24px;
      .cottage-image-item {
        width: 168px;
        height: 134px;
      }
    }
  }
  .our-cottages {
    margin-top: 36px;
    padding: 48px 0;
    .our-cottages-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .our-cottages-description {
        margin-top: 12px;
        max-width: 600px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .our-cottages-list {
        margin-top: 24px;
        gap: 24px;
        .cottage-item {
          padding: 32px 40px;
          gap: 32px;
          .cottage-item-info {
            .cottage-name {
              font-size: 18px;
              line-height: 28px;
            }
            .cottage-description {
              margin-top: 12px;
              p {
                font-size: 14px;
                line-height: 18px;
              }
            }
            .cottage-properties {
              margin-top: 20px;
              gap: 20px;
            }
            .cottage-price {
              margin-top: 20px;
              padding-top: 20px;
            }
          }
          .cottage-include-service {
            .include-services {
              gap: 20px;
            }
          }
        }
      }
    }
  }
  .our-activities {
    padding: 48px 0;
    .our-activities-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .our-activities-description {
        margin-top: 12px;
        max-width: 600px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .activity-items {
        margin-top: 24px;
        grid-template-columns: repeat(3, 1fr);
        .activity-item {
          height: 420px;
        }
      }
    }
  }
  .moments-joy-container {
    margin: 48px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .moments-joy-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .moments-joy-images {
      margin-top: 24px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .joy-image {
        height: 240px;
      }
    }
  }
  .guest-experience-container {
    margin: 96px auto 48px;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .guest-experience-description {
      margin-top: 12px;
      max-width: 620px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .guest-experience-slide {
      margin: 24px auto 0;
      width: 100%;
      max-width: 824px;
      .experience-item {
        .item-image {
          height: 560px;
        }
        .item-body {
          padding: 30px;
          .ratings {
            margin-top: 20px;
          }
          .comment {
            margin-top: 20px;
          }
        }
      }
      .swiper-button-prev,
      .swiper-button-next {
        width: 52px;
        height: 52px;
        min-width: 52px;
        &::after {
          font-size: 14px;
        }
      }
      .swiper-button-prev {
        left: 60px;
      }
      .swiper-button-next {
        right: 60px;
      }
    }
  }
  .ourMenu {
    padding: 48px 0;
    .ourMenu-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .ourMenu-description {
        margin-top: 12px;
        max-width: 600px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .menuCategorySwiper {
        margin-top: 24px;
        .menuCategory-item {
          padding: 10px 24px;
        }
      }
      .allOurMenu {
        margin-top: 24px;
        gap: 20px;
        .ourMenu-card {
          .card-image {
            height: 240px;
          }
        }
      }
    }
  }
  .specialOffers-container {
    margin: 48px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .specialOffers-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .specialOffers {
      margin-top: 24px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .specialOffer-card {
        .card-image {
          height: 320px;
        }
      }
    }
  }
  .cateringEvent-container {
    margin: 48px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .cateringEvent-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .cateringEvents {
      margin-top: 24px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .cateringEvent-card {
        height: 440px;
      }
    }
  }
  .tourEventTypes-container {
    margin: 48px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .tourEventTypes-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .tourEventTypes {
      margin-top: 24px;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      .tourEventType-card {
        height: 350px;
      }
    }
  }
  .upcomingEventsTours {
    padding: 48px 0;
    .upcomingEventsTours-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .upcomingEventsTours-description {
        margin-top: 12px;
        max-width: 600px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .upcomingEventsToursSwiper {
        margin-top: 24px;
        .upcomingEventsTours-item {
          padding: 10px 24px;
        }
      }
      .allUpcomingEventsTours {
        margin-top: 24px;
        gap: 20px;
        .upcomingEvent-card {
          .card-image {
            height: 200px;
          }
        }
      }
    }
  }
  .custom-private-tours {
    margin: 36px auto 0;
    grid-template-columns: repeat(2, 1fr);
    .private-tours-content {
      .request-link {
        padding: 12px 24px;
      }
    }
    .private-tours-image {
      height: 350px;
    }
  }
  .beach-gallery-container {
    margin: 72px auto 36px;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .beach-gallery-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .beach-gallery-images {
      margin-top: 24px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .gallery-image {
        height: 240px;
      }
    }
  }
  .opening-hours-container {
    margin: 48px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .opening-hours-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .opening-hours-items {
      max-width: 880px;
      margin: 24px auto 0;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .warning-text {
      margin-top: 24px;
    }
  }
  .private-beach {
    padding: 48px 0;
    .private-beach-container {
      .private-beach-images {
        max-width: 520px;
        height: 340px;
        .small-images {
          bottom: -20px;
          right: -16px;
          .small-image-item {
            width: 122px;
            height: 122px;
          }
        }
      }
      .private-beach-content {
        max-width: 500px;
        .private-beach-description {
          p,
          li {
            font-size: 16px;
            line-height: 24px;
          }
        }
        .private-beach-properties {
          margin-top: 34px;
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          .property-item {
            padding: 16px;
          }
        }
      }
    }
  }
  .infinity-pool-container {
    margin: 48px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .infinity-pool-description {
      margin-top: 12px;
      max-width: 600px;
      p {
        font-size: 16px;
        line-height: 24px;
      }
    }
    .infinity-pool-boxes {
      max-width: 924px;
      margin: 24px auto 0;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .infinity-pool-gallery {
      margin-top: 24px;
      gap: 24px 20px;
      .infinity-pool-gallery-item {
        height: 280px;
        &:first-child {
          grid-column: span 3;
          height: 450px;
        }
      }
    }
  }
}
@media only screen and (max-width: 1150px) {
  .navbar {
    background: #fff;
    .navbar-container {
      justify-content: start;
      gap: 12px;
      .navbar-main {
        max-width: 100%;
        .navbar-links {
          display: none;
        }
        .nav-logo {
          filter: brightness(0);
        }
      }
      .hamburger {
        display: flex;
      }
      .language {
        .current-lang {
          display: flex;
          align-items: center;
          gap: 4px;
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #4e4e4e;
          }
          img {
            filter: none;
          }
        }
        .other-languages {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          position: absolute;
          z-index: 13;
          left: 0;
          top: 36px;
          padding: 8px;
          background: #fff;
          border-radius: 4px;
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
          gap: 8px;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          .lang-item {
            font-size: 16px;
            line-height: 24px;
            color: #0c221d;
            font-weight: 400;
            width: 100%;
            &:first-child {
              padding-bottom: 8px;
              border-bottom: 1px solid #f2f2f2;
            }
          }
        }
      }
    }
  }
  .mobile-menu-container {
    display: flex;
  }
  .mobile-menu-container.showedMobileMenu {
    display: flex;
  }
}
@media only screen and (max-width: 992px) {
  .home-hero-section {
    height: calc(100svh - 84px);
  }
  .home-rooms-cottages-container {
    .home-rooms-cottages {
      grid-template-columns: repeat(2, 1fr);
      .room-card {
        .card-image {
          height: 270px;
        }
      }
    }
  }
  .home-beachpool-container {
    .beachpool-images {
      .beachpool-image-large {
        height: 348px;
      }
      .beachpool-image-mini {
        .mini-image-item {
          height: 164px;
        }
      }
    }
  }
  .home-foodcuisine-section {
    .home-foodcuisine-container {
      .foodcuisine-images {
        .foodcuisine-image-large {
          height: 198px;
        }
        .foodcuisine-image-mini {
          .mini-image-item {
            height: 202px;
          }
        }
      }
    }
  }
  footer {
    .footer-container {
      .footer-top {
        justify-content: space-between;
        gap: 40px;
        .footer-sections {
          max-width: 100%;
          gap: 20px;
        }
      }
    }
  }
  .breadcrumb-container {
    display: none;
  }
  .hotel-rooms-container {
    .hotel-rooms {
      .hotel-rooms-filter {
        .filter-items {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          margin-top: 30px;
          gap: 20px;
          .filter-select {
            max-width: 100%;
            min-width: 0;
          }
          .filter-range {
            max-width: 100%;
            .range-inputs {
              input {
                min-width: 0;
              }
            }
          }
          .filter-guests {
            max-width: 100%;
            min-width: 0;
          }
          .submitFilter {
            max-width: 100%;
          }
        }
      }
      .all-rooms-cottages {
        grid-template-columns: repeat(2, 1fr);
        .room-card {
          .card-image {
            height: 270px;
          }
        }
      }
    }
  }
  .related-rooms {
    .all-rooms-cottages {
      grid-template-columns: repeat(2, 1fr);
      .room-card {
        .card-image {
          height: 270px;
        }
      }
    }
  }
  .hotel-detail-hero {
    margin-top: 36px;
    .image-slides {
      .room-image-slide {
        width: 100%;
        height: 492px;
        padding-bottom: 32px;
        .swiper-buttons {
          display: none;
        }
        .swiper-pagination {
          display: flex;
        }
      }
      .room-otherImage-slide {
        display: none;
      }
    }
  }
  .our-cottages {
    .our-cottages-container {
      .our-cottages-list {
        .cottage-item {
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }
  }
  .our-activities {
    .our-activities-container {
      .activity-items {
        grid-template-columns: repeat(2, 1fr);
        .activity-item {
          height: 460px;
        }
      }
    }
  }
  .moments-joy-container {
    .moments-joy-images {
      grid-template-columns: repeat(2, 1fr);
      .joy-image {
        height: 280px;
      }
    }
  }
  .guest-experience-container {
    .guest-experience-slide {
      max-width: 644px;
      .experience-item {
        .item-image {
          height: 500px;
        }
      }
    }
  }
  .ourMenu {
    .ourMenu-container {
      .allOurMenu {
        grid-template-columns: repeat(2, 1fr);
        .ourMenu-card {
          .card-image {
            height: 260px;
          }
        }
      }
    }
  }
  .specialOffers-container {
    .specialOffers {
      .specialOffer-card {
        .card-image {
          height: 280px;
        }
      }
    }
  }
  .cateringEvent-container {
    .cateringEvents {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .tourEventTypes-container {
    .tourEventTypes {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .upcomingEventsTours {
    .upcomingEventsTours-container {
      .allUpcomingEventsTours {
        grid-template-columns: repeat(2, 1fr);
        .upcomingEvent-card {
          .card-image {
            height: 240px;
          }
        }
      }
    }
  }
  .custom-private-tours {
    .private-tours-image {
      height: 300px;
    }
  }
  .beach-gallery-container {
    .beach-gallery-images {
      grid-template-columns: repeat(2, 1fr);
      .gallery-image {
        height: 280px;
      }
    }
  }
  .private-beach {
    .private-beach-container {
      flex-direction: column;
      gap: 70px;
      .private-beach-images {
        max-width: 100%;
        height: 380px;
      }
      .private-beach-content {
        max-width: 100%;
      }
    }
  }
  .infinity-pool-container {
    .infinity-pool-boxes {
      max-width: 724px;
      grid-template-columns: repeat(2, 1fr);
    }
    .infinity-pool-gallery {
      grid-template-columns: repeat(2, 1fr);
      .infinity-pool-gallery-item {
        height: 320px;
        &:first-child {
          grid-column: span 2;
          height: 400px;
        }
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero-section {
    .hero-content {
      .hero-title {
        font-size: 32px;
        line-height: 40px;
      }
      .hero-subTitle {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
      }
      .hero-links {
        margin-top: 16px;
        flex-direction: column;
        max-width: 290px;
        width: 100%;
        .hero-link1 {
          width: 100%;
          padding: 12px;
          text-align: center;
        }
        .hero-link2 {
          text-align: center;
          width: 100%;
          padding: 12px;
        }
      }
    }
  }
  .home-about {
    padding: 36px 0;
    .home-about-container {
      flex-direction: column;
      align-items: flex-start;
      .home-about-content {
        max-width: 100%;
        .home-about-title {
          font-size: 24px;
          line-height: 32px;
        }
      }
      .home-about-image {
        max-width: 100%;
        padding: 0 16px 16px 0;
        &::after {
          width: 132px;
          height: 132px;
        }
      }
    }
  }
  .home-rooms-cottages-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .home-rooms-cottages-description {
      max-width: 100%;
    }
    .home-rooms-cottages {
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
      .room-card {
        .card-image {
          height: 240px;
        }
      }
    }
    .view-all {
      max-width: 100%;
    }
  }
  .home-beachpool-container {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
    .beachpool-images {
      gap: 16px;
      .beachpool-image-large {
        height: 448px;
      }
      .beachpool-image-mini {
        gap: 16px;
        .mini-image-item {
          height: 216px;
        }
      }
    }
  }
  .home-foodcuisine-section {
    padding: 36px 0;
    .home-foodcuisine-container {
      gap: 24px;
      grid-template-columns: repeat(1, 1fr);
      .foodcuisine-images {
        gap: 16px;
        .foodcuisine-image-large {
          height: 278px;
        }
        .foodcuisine-image-mini {
          gap: 16px;
          .mini-image-item {
            height: 282px;
          }
        }
      }
    }
  }
  .homeContactBanner-container {
    height: 500px;
    .banner-content {
      max-width: 100%;
      padding: 20px;
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .contactUs-link {
        margin-top: 24px;
        padding: 12px;
        max-width: 280px;
      }
    }
  }
  footer {
    .footer-container {
      .footer-top {
        gap: 24px;
        flex-direction: column;

        .footer-top-main {
          min-width: 0;
          width: 100%;
          max-width: 350px;
        }
        .footer-sections {
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          gap: 24px;
        }
      }
      .footer-contact {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
      }
      .footer-bottom {
        margin-top: 30px;
        flex-direction: column;
        align-items: start;
      }
    }
  }
  .page-hero {
    height: 440px;
    .hero-content {
      .hero-title {
        font-size: 32px;
        line-height: 40px;
      }
      .hero-link {
        margin-top: 24px;
      }
    }
  }
  .hotel-rooms-container {
    padding: 36px 0;
    .hotel-rooms {
      .hotel-rooms-filter {
        .filter-items {
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
        }
        .all-rooms-cottages {
          gap: 16px;
          grid-template-columns: repeat(2, 1fr);
          .room-card {
            .card-image {
              height: 240px;
            }
          }
        }
      }
    }
  }
  .hotel-service-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .hotel-service-description {
      max-width: 100%;
    }
    .hotel-services {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
  .reserve-room {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .reserve-room-description {
      max-width: 100%;
    }
    .reserve-form {
      .submitReserve {
        max-width: 100%;
      }
    }
  }
  .related-rooms {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .related-room-description {
      max-width: 100%;
    }
    .all-rooms-cottages {
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
      .room-card {
        .card-image {
          height: 240px;
        }
      }
    }
  }
  .availability-calendar-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .availability-calendar-description {
      max-width: 100%;
    }
    .room-types {
      gap: 16px;
      .room-type-btn {
        padding: 10px 24px;
        font-size: 14px;
        line-height: 20px;
      }
    }
    .calendar-card {
      max-width: 100%;
      padding: 24px;
      .calendar-grid {
        gap: 16px 6px;
      }
    }
  }
  .hotel-detail-hero {
    .image-slides {
      .room-image-slide {
        height: 452px;
      }
    }
    .properties {
      gap: 16px;
      margin-top: 28px;
      .propert-item {
        padding: 10px 24px;
      }
    }
  }
  .cottage-gallery {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .cottage-gallery-description {
      max-width: 100%;
    }
    .cottage-image-slide {
      margin-top: 24px;
      height: 482px;
      padding-bottom: 32px;
      .swiper-button-prev,
      .swiper-button-next {
        display: none;
      }
      .swiper-pagination {
        gap: 4px;
        bottom: 0;
        .swiper-pagination-bullet {
          background: rgba(179, 179, 179, 0.4);
        }
        .swiper-pagination-bullet-active {
          width: 24px;
          background: #e69e6c;
        }
      }
    }
    .cottage-otherImage-slide {
      display: none;
    }
  }
  .our-cottages {
    padding: 36px 0;
    .our-cottages-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .our-cottages-description {
        max-width: 100%;
      }
      .our-cottages-list {
        .cottage-item {
          padding: 32px 24px;
          gap: 24px;
          .cottage-item-info {
            .cottage-properties {
              margin-top: 16px;
              gap: 16px;
            }
            .cottage-price {
              margin-top: 16px;
              padding-top: 16px;
            }
          }
          .cottage-include-service {
            .include-services {
              gap: 16px;
              .include-service-item {
                p {
                  font-size: 12px;
                  line-height: 14px;
                }
              }
            }
          }
        }
      }
    }
  }
  .our-activities {
    padding: 36px 0;
    .our-activities-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .our-activities-description {
        max-width: 100%;
      }
      .activity-items {
        .activity-item {
          height: 420px;
        }
      }
    }
  }
  .moments-joy-container {
    margin: 36px auto;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .moments-joy-description {
      max-width: 100%;
    }
    .moments-joy-images {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      .joy-image {
        height: 200px;
      }
    }
  }
  .guest-experience-container {
    margin: 72px auto 36px;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .guest-experience-description {
      max-width: 100%;
    }
    .guest-experience-slide {
      max-width: 100%;
      padding: 60px 4px 32px;
      position: relative;
      .experience-item {
        .item-image {
          height: 550px;
        }
        .item-body {
          padding: 24px;
          .ratings {
            margin-top: 16px;
          }
          .comment {
            margin-top: 16px;
          }
        }
      }
      .swiper-button-prev,
      .swiper-button-next {
        width: 40px;
        height: 40px;
        min-width: 40px;
        top: 0;
      }
      .swiper-button-prev {
        left: auto;
        right: 52px;
      }
      .swiper-button-next {
        right: 0;
      }
    }
  }
  .ourMenu {
    padding: 36px 0;
    .ourMenu-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .ourMenu-description {
        max-width: 100%;
      }
      .allOurMenu {
        gap: 16px;
        .ourMenu-card {
          .card-image {
            height: 220px;
          }
        }
      }
    }
  }
  .specialOffers-container {
    margin: 36px auto;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .specialOffers-description {
      max-width: 100%;
    }
    .specialOffers {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
  .cateringEvent-container {
    margin: 36px auto;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .cateringEvent-description {
      max-width: 100%;
    }
    .cateringEvents {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      .cateringEvent-card {
        height: 400px;
      }
    }
  }
  .tourEventTypes-container {
    margin: 36px auto;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .tourEventTypes-description {
      max-width: 100%;
    }
    .tourEventTypes {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      .tourEventType-card {
        height: 340px;
      }
    }
  }
  .upcomingEventsTours {
    padding: 36px 0;
    .upcomingEventsTours-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .upcomingEventsTours-description {
        max-width: 100%;
      }
      .allUpcomingEventsTours {
        gap: 16px;
        .upcomingEvent-card {
          .card-image {
            height: 200px;
          }
        }
      }
    }
  }
  .custom-private-tours {
    grid-template-columns: repeat(1, 1fr);
    .private-tours-image {
      height: 340px;
    }
  }
  .beach-gallery-container {
    margin: 36px auto;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .beach-gallery-description {
      max-width: 100%;
    }
    .beach-gallery-images {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      .gallery-image {
        height: 200px;
      }
    }
  }
  .opening-hours-container {
    margin: 36px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .opening-hours-description {
      max-width: 100%;
    }
    .opening-hours-items {
      max-width: 100%;
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }
  }
  .private-beach {
    padding: 36px 0;
    .private-beach-container {
      .private-beach-images {
        height: 340px;
        .small-images {
          bottom: -40px;
          right: 0;
          .small-image-item {
            width: 100px;
            height: 100px;
          }
        }
      }
      .private-beach-content {
        .private-beach-properties {
          margin-top: 24px;
          grid-template-columns: repeat(1, 1fr);
          gap: 16px;
        }
      }
    }
  }
  .infinity-pool-container {
    margin: 36px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .infinity-pool-description {
      max-width: 100%;
    }
    .infinity-pool-boxes {
      max-width: 100%;
      gap: 16px;
    }
    .infinity-pool-gallery {
      .infinity-pool-gallery-item {
        height: 240px;
        &:first-child {
          grid-column: span 2;
          height: 350px;
        }
      }
    }
  }
}
@media only screen and (max-width: 575px) {
  .home-about {
    .home-about-container {
      .home-about-image {
        &::after {
          width: 120px;
          height: 120px;
        }
      }
    }
  }
  .home-rooms-cottages-container {
    .home-rooms-cottages {
      grid-template-columns: repeat(1, 1fr);
      .room-card {
        .card-image {
          height: auto;
        }
      }
    }
  }
  .home-beachpool-container {
    .beachpool-images {
      grid-template-columns: repeat(1, 1fr);
      .beachpool-image-large {
        height: 222px;
      }
      .beachpool-image-mini {
        .mini-image-item {
          height: 222px;
        }
      }
    }
  }
  .home-foodcuisine-section {
    .home-foodcuisine-container {
      .foodcuisine-images {
        .foodcuisine-image-large {
          height: 268px;
        }
        .foodcuisine-image-mini {
          grid-template-columns: repeat(1, 1fr);
          .mini-image-item {
            height: 268px;
          }
        }
      }
    }
  }
  .hotel-rooms-container {
    .hotel-rooms {
      .hotel-rooms-filter {
        .filter-items {
          grid-template-columns: repeat(1, 1fr);
        }
      }
      .all-rooms-cottages {
        grid-template-columns: repeat(1, 1fr);
        .room-card {
          .card-image {
            height: auto;
          }
        }
      }
    }
  }
  .hotel-service-container {
    .hotel-services {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .reserve-room {
    .reserve-form {
      .form-items {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .related-rooms {
    .all-rooms-cottages {
      grid-template-columns: repeat(1, 1fr);
      .room-card {
        .card-image {
          height: auto;
        }
      }
    }
  }
  .hotel-detail-hero {
    .image-slides {
      .room-image-slide {
        height: 242px;
      }
    }
  }
  .cottage-gallery {
    .cottage-image-slide {
      height: 242px;
    }
  }
  .our-activities {
    .our-activities-container {
      .activity-items {
        grid-template-columns: repeat(1, 1fr);
        .activity-item {
          height: 360px;
        }
      }
    }
  }
  .moments-joy-container {
    .moments-joy-images {
      display: none;
    }
    .moments-joy-images-slide {
      display: flex;
    }
  }
  .guest-experience-container {
    .guest-experience-slide {
      padding: 60px 4px 32px;
      .experience-item {
        grid-template-columns: repeat(1, 1fr);
        .item-image {
          height: 310px;
          border-radius: 16px 16px 0 0;
          img {
            border-radius: 16px 16px 0 0;
            &::after {
              border-radius: 16px 16px 0 0;
            }
          }
        }
        .item-body {
          padding: 24px;
          border-radius: 0 0 16px 16px;
        }
      }
    }
  }
  .ourMenu {
    .ourMenu-container {
      .allOurMenu {
        grid-template-columns: repeat(1, 1fr);
        .ourMenu-card {
          .card-image {
            height: 280px;
          }
        }
      }
    }
  }
  .specialOffers-container {
    .specialOffers {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .cateringEvent-container {
    .cateringEvents {
      grid-template-columns: repeat(1, 1fr);
      .cateringEvent-card {
        height: 400px;
      }
    }
  }
  .tourEventTypes-container {
    .tourEventTypes {
      grid-template-columns: repeat(1, 1fr);
      .tourEventType-card {
        height: 330px;
      }
    }
  }
  .upcomingEventsTours {
    .upcomingEventsTours-container {
      .allUpcomingEventsTours {
        grid-template-columns: repeat(1, 1fr);
        .upcomingEvent-card {
          .card-image {
            height: 240px;
          }
          .card-body {
            .short-description {
              display: block;
              -webkit-line-clamp: initial;
              overflow: initial;
              -webkit-box-orient: initial;
              height: auto;
            }
          }
        }
      }
    }
  }
  .custom-private-tours {
    .private-tours-image {
      height: 220px;
    }
  }
  .beach-gallery-container {
    .beach-gallery-images {
      display: none;
    }
    .beach-gallery-images-slide {
      display: flex;
    }
  }
  .infinity-pool-container {
    .infinity-pool-boxes {
      grid-template-columns: repeat(1, 1fr);
    }
    .infinity-pool-gallery {
      display: none;
    }
    .infinity-pool-gallery-images-slide{
      display: flex;
    }
  }
}
