* {
  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: #653332;
  .navbar-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 120px;
    .navbar-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 880px;
      width: 100%;
      .navbar-links {
        display: flex;
        align-items: center;
        max-width: 300px;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        .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;
        filter: brightness(1000);
      }
      .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;
  .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);
          }
        }
      }
    }
  }
}
.eventsNav {
  background: #0f0d18;
}
.toursNav {
  background: #001a1a;
}
.beachNav {
  background: #fff2ec;
  .navbar-container {
    .navbar-main {
      .navbar-links {
        .nav-link {
          color: #333;
        }
      }
    }
    .language {
      .current-lang {
        span {
          color: #333;
        }
        img {
          filter: initial;
        }
      }
    }
    .hamburger {
      img {
        filter: initial;
      }
    }
  }
}
.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: 349px;
  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%;
    }
  }
}
.ourDestination-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .ourDestination-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 24px;
    .destination-card {
      width: 100%;
      height: 300px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 162px;
        min-width: 162px;
        transition: 0.25s ease-in-out;
      }
      &:hover {
        img {
          transform: scale(1.05);
        }
      }
    }
    .destination-card.hospitality {
      background: #653332;
    }
    .destination-card.beach {
      background: #fff2ec;
    }
    .destination-card.tours {
      background: #001a1a;
    }
    .destination-card.events {
      background: #0f0d18;
    }
  }
}
.explore-container {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .explore-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    gap: 24px;
    .explore-card {
      width: 100%;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      border: 1px solid #f8f8f8;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      .card-img {
        width: 100%;
        height: 280px;
        border-radius: 16px 16px 0 0;
        object-fit: cover;
      }
      .card-body {
        width: 100%;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: start;
        .card-title {
          font-weight: 500;
          font-size: 20px;
          line-height: 30px;
          color: #091a16;
          height: 60px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
        }
        .short-description {
          margin-top: 12px;
          width: 100%;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #666666;
          }
        }
      }
      .card-tag {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 1;
        padding: 8px 16px;
        border-radius: 100px;
        background: #fff;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        color: #091a16;
      }
    }
  }
}
.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;
      justify-content: space-between;
      gap: 60px;
      .footer-top-main {
        min-width: 280px;
        width: 280px;
        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: 800px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        .footer-section {
          width: 100%;
          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 {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 36px;
  padding-bottom: 36px;
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    p {
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      color: #fff;
    }
    img {
      min-width: 20px;
      width: 20px;
      height: 20px;
    }
  }
}
.about-banner {
  width: 100%;
  height: 560px;
  position: relative;
  border-bottom: 10px solid #d2a58e;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(31, 41, 55, 0.9) 0%,
      rgba(31, 41, 55, 0.7) 100%
    );
  }
  .banner-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    .banner-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #ffffff;
    }
    .banner-description {
      margin-top: 24px;
      width: 100%;
      font-weight: 400;
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      p {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
      }
    }
  }
}
.about-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .about-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    color: #091a16;
  }
  .about-description {
    width: 100%;
    margin-top: 24px;
    p,
    li {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #666666;
    }
    ul {
      padding-left: 18px;
    }
  }
  .about-boxes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
    .about-box {
      display: flex;
      flex-direction: column;
      align-items: start;
      padding: 24px;
      background: #f9fafb;
      border-radius: 16px;
      .box-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 14px;
        background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
        img {
          width: 32px;
          height: 32px;
        }
      }
      .box-title {
        margin-top: 24px;
        font-weight: 600;
        font-size: 32px;
        line-height: 40px;
        color: #091a16;
      }
      .box-description {
        width: 100%;
        margin-top: 16px;
        p,
        li {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #848484;
        }
        ul {
          padding-left: 18px;
        }
      }
    }
  }
}
.about-joinUs {
  margin-top: 40px;
  width: 100%;
  background: #fbf6f3;
  padding: 100px 0;
  .joinUs-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #848484;
    }
    .contactUs-link {
      max-width: 440px;
      width: 100%;
      color: #fff;
      margin-top: 24px;
      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;
      }
    }
  }
}
.blog-detail-image {
  width: 100%;
  position: relative;
  height: 600px;
  border-bottom: 10px solid #d2a58e;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 26, 0.5) 0%,
      rgba(26, 26, 26, 0.19) 50%,
      rgba(26, 26, 26, 0.19) 100%
    );
  }
}
.blog-detail {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto;
  .blog-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #091a16;
  }
  .description {
    width: 100%;
    margin-top: 24px;
    li,
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      color: #666666;
    }
    ul {
      padding-left: 18px;
    }
  }
  img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
}
.contact-banner {
  width: 100%;
  height: 560px;
  position: relative;
  border-bottom: 10px solid #d2a58e;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 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%
    );
  }
  .banner-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    .banner-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #ffffff;
    }
    .banner-description {
      margin-top: 16px;
      max-width: 580px;
      width: 100%;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
      }
    }
  }
}
.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto;
  .contact-main {
    width: 100%;
    gap: 24px;
    display: grid;
    grid-template-columns: 496px calc(100% - 520px);
    .contact-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      background: #fff;
      border: 1px solid rgba(92, 92, 92, 0.05);
      box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
      padding: 40px 24px;
      border-radius: 16px;
      .box-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 40px;
        color: #091a16;
      }
      .box-description {
        width: 100%;
        margin-top: 12px;
        li,
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #666666;
        }
        ul {
          padding-left: 18px;
        }
      }
      .contact-items {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        .contact-item {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          .item-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(230, 158, 108, 0.1);
            border-radius: 100px;
            img {
              width: 28px;
              height: 28px;
              min-width: 28px;
            }
          }
          .item-body {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 8px;
            .item-title {
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              color: #2c3e2f;
            }
            p,
            a {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #666666;
            }
          }
        }
      }
      .contact-socials {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        .contact-social-title {
          font-weight: 600;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
        }
        .social-items {
          width: 100%;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          gap: 16px;
          .social-item {
            width: 40px;
            height: 40px;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e69e6c;
            border-radius: 100px;
            img {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
      }
    }
    .contact-form {
      width: 100%;
      background: #fff;
      border: 1px solid rgba(92, 92, 92, 0.05);
      box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
      padding: 40px 24px;
      border-radius: 16px;
      .form-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        .form-item {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 16px;
          width: 100%;
          label {
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #848484;
            position: relative;
            sup {
              position: absolute;
              top: -4px;
            }
          }
          input,
          select,
          textarea {
            width: 100%;
            padding: 16px;
            background: #fbfbfb;
            border: 1px solid #f3f3f3;
            box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
            border-radius: 16px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #091a16;
            height: 58px;
            &::placeholder {
              color: #848484;
            }
          }
        }
        .formTextarea {
          grid-column: span 2;
          textarea {
            resize: none;
            height: 90px;
          }
        }
      }
      .sendForm {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        background: #e69e6c;
        border-radius: 100px;
        padding: 16px;
        transition: 0.3s ease-in-out;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
        &:hover {
          background: #a3704d;
        }
      }
    }
  }
  .map {
    height: 460px;
    width: 100%;
    border-radius: 16px;
    margin-top: 60px;
    iframe {
      width: 100%;
      height: 100%;
      border-radius: 16px;
    }
  }
}
.events-banner {
  width: 100%;
  height: 560px;
  position: relative;
  border-bottom: 10px solid #f2563d;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 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%
    );
  }
  .banner-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    .banner-tag {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #e69e6c;
    }
    .banner-title {
      margin-top: 12px;
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #ffffff;
    }
    .banner-description {
      margin-top: 16px;
      max-width: 580px;
      width: 100%;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
      }
    }
    .planLink {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      max-width: 250px;
      width: 100%;
      padding: 16px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.eventsType {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .eventsType-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .eventsType-cards {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 30px;
      gap: 24px;
      .eventsType-card {
        width: 100%;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        border: 1px solid #f8f8f8;
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
        .card-img {
          width: 100%;
          height: 280px;
          border-radius: 16px 16px 0 0;
          object-fit: cover;
        }
        .card-body {
          width: 100%;
          padding: 16px;
          display: flex;
          flex-direction: column;
          align-items: start;
          .card-title {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #091a16;
            height: 30px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
          }
          .short-description {
            margin-top: 12px;
            width: 100%;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
            }
          }
        }
      }
    }
  }
}
.eventsGallery-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .eventGallerySwiper {
    max-width: 100%;
    width: max-content;
    margin-top: 24px;
    .eventGalleryCategory {
      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;
    }
    .eventGalleryCategory.active {
      box-shadow: 0px 4px 5.7px 0px rgba(231, 226, 222, 1);
      color: #fff;
      background: #e69e6c;
    }
  }
  .eventGalleries {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .gallery-item {
      width: 100%;
      height: 360px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.3s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.2) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.05);
        }
      }
    }
  }
  .mobileGallerySlide {
    margin-top: 24px;
    width: 100%;
    display: none;
    .gallery-item {
      width: 100%;
      height: 280px;
      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%;
        border-radius: 16px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.2) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
    }
    .swiper-button-next,
    .swiper-button-prev {
      width: 32px;
      height: 32px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(2px);
      &::after {
        --swiper-navigation-size: 14px;
        color: #e69e6c;
      }
    }
  }
}
.ourClients {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .ourClients-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .ourClients-cards {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 30px;
      gap: 24px;
      .ourClient-card {
        width: 100%;
        border-radius: 16px;
        position: relative;
        background: #fff;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: start;
        .icon {
          width: 56px;
          height: 56px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          background: rgba(198, 168, 107, 0.1);
          img {
            width: 28px;
            height: 28px;
          }
        }
        .short-description {
          margin-top: 24px;
          width: 100%;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            font-style: italic;
            color: #0f2c26;
          }
        }
        .line {
          margin-top: 16px;
          width: 48px;
          height: 2px;
          background: #7f573b;
        }
        .card-owner {
          margin-top: 16px;
          font-weight: 600;
          font-size: 18px;
          line-height: 28px;
          color: #0f2c26;
        }
        .commentCategoryTime {
          margin-top: 8px;
          font-weight: 500;
          font-size: 14px;
          line-height: 18px;
          color: #a3704d;
        }
      }
    }
  }
}
.eventPlan {
  width: 100%;
  max-width: 1440px;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .event-form {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(92, 92, 92, 0.05);
    box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
    padding: 40px 24px;
    border-radius: 16px;
    margin-top: 30px;
    .form-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      .form-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        label {
          font-weight: 600;
          font-size: 14px;
          line-height: 18px;
          color: #848484;
          position: relative;
          sup {
            position: absolute;
            top: -4px;
          }
        }
        input,
        select,
        textarea {
          width: 100%;
          padding: 16px;
          background: #fbfbfb;
          border: 1px solid #f3f3f3;
          box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
          border-radius: 16px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
          height: 58px;
          &::placeholder {
            color: #848484;
          }
        }
      }
      .formTextarea {
        grid-column: span 2;
        textarea {
          resize: none;
          height: 90px;
        }
      }
    }
    .sendForm {
      max-width: 900px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 24px auto 0;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      padding: 16px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.tours-banner {
  width: 100%;
  height: 560px;
  position: relative;
  border-bottom: 10px solid #99cc33;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 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%
    );
  }
  .banner-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    .banner-tag {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #e69e6c;
    }
    .banner-title {
      margin-top: 12px;
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #ffffff;
    }
    .banner-description {
      margin-top: 16px;
      max-width: 580px;
      width: 100%;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
      }
    }
    .planLink {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      max-width: 250px;
      width: 100%;
      padding: 16px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.toursCategories-container {
  width: 100%;
  max-width: 1440px;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .toursCategories {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    .tourCategory {
      width: 100%;
      height: 330px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      .tour-category-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        filter: brightness(72%);
        transition: 0.3s ease-in-out;
      }
      &:hover {
        .tour-category-image {
          transform: scale(1.05);
        }
      }
      .category-title {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        color: #fff;
        padding: 24px 20px;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
      }
      .tour-logo {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 100px;
        z-index: 2;
      }
    }
  }
}
.tourPackages {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .tourPackages-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .tourPackagesSwiper {
      max-width: 100%;
      width: max-content;
      margin-top: 24px;
      .tourPackagesCategory {
        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;
      }
      .tourPackagesCategory.active {
        box-shadow: 0px 4px 5.7px 0px rgba(231, 226, 222, 1);
        color: #fff;
        background: #e69e6c;
      }
    }
    .allTourPackages {
      margin-top: 30px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      .tourPackage-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%
            );
          }
          .tour-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;
            span {
              font-weight: 600;
              font-size: 18px;
              line-height: 28px;
              color: #fff;
            }
            p {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #fff;
            }
          }
          .tourCategory {
            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;
          .tour-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;
            }
          }
          .tour-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;
              }
            }
          }
        }
      }
    }
  }
}
.bookAdventure {
  width: 100%;
  max-width: 1440px;
  margin: 40px auto;
  display: flex;
  align-items: start;
  gap: 24px;
  .bookAdventure-content {
    min-width: 496px;
    width: 496px;
    display: flex;
    flex-direction: column;
    align-items: start;
    .section-title {
      font-weight: 600;
      font-size: 36px;
      line-height: 42px;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      color: #848484;
    }
    .advantage-items {
      display: flex;
      flex-direction: column;
      align-items: start;
      width: 100%;
      margin-top: 24px;
      gap: 22px;
      .advantage-item {
        display: flex;
        align-items: start;
        width: 100%;
        gap: 16px;
        .icon {
          width: 48px;
          height: 48px;
          min-width: 48px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(230, 158, 108, 0.1);
          border-radius: 100px;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
        }
        .item-body {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 12px;
          .item-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 28px;
            color: #091a16;
          }
          .short-description {
            width: 100%;
            li,
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #848484;
            }
            ul {
              padding-left: 18px;
            }
          }
        }
      }
    }
  }

  .book-form {
    width: calc(100% - 520px);
    background: #fff;
    border: 1px solid rgba(92, 92, 92, 0.05);
    box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
    padding: 40px 24px;
    border-radius: 16px;
    .form-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      .form-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        label {
          font-weight: 600;
          font-size: 14px;
          line-height: 18px;
          color: #848484;
          position: relative;
          sup {
            position: absolute;
            top: -4px;
          }
        }
        input,
        select,
        textarea {
          width: 100%;
          padding: 16px;
          background: #fbfbfb;
          border: 1px solid #f3f3f3;
          box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
          border-radius: 16px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
          height: 58px;
          &::placeholder {
            color: #848484;
          }
        }
      }
      .formTextarea {
        grid-column: span 2;
        textarea {
          resize: none;
          height: 90px;
        }
      }
    }
    .sendForm {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      padding: 16px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.beach-banner {
  width: 100%;
  height: 560px;
  position: relative;
  border-bottom: 10px solid #d2a58e;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 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%
    );
  }
  .banner-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    .banner-tag {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #e69e6c;
    }
    .banner-title {
      margin-top: 12px;
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #ffffff;
    }
    .banner-description {
      margin-top: 16px;
      max-width: 580px;
      width: 100%;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
      }
    }
    .planLink {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      max-width: 250px;
      width: 100%;
      padding: 16px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.beachParadise {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .beachParadise-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .beach-advantages {
      width: 100%;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      .advantage-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
        .icon {
          width: 64px;
          height: 64px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 16px;
          background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
          img {
            width: 32px;
            height: 32px;
          }
        }
        .item-title {
          margin-top: 24px;
          font-weight: 600;
          font-size: 20px;
          line-height: 30px;
          color: #091a16;
        }
        .short-description {
          width: 100%;
          margin-top: 12px;
          p,
          li {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #848484;
          }
          ul {
            padding-left: 18px;
          }
        }
      }
    }
    .beach-statistics {
      width: 100%;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
      padding: 32px 80px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
      margin-top: 60px;
      .statistic-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        .statistic-title {
          font-weight: 700;
          font-size: 50px;
          line-height: 60px;
          color: #153e35;
        }
        p {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #848484;
        }
      }
    }
  }
}
.pricing-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .pricing-tabs {
    width: max-content;
    margin: 30px auto 0;
    padding: 8px 10px;
    background: #fdf5f0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    .pricing-tab {
      padding: 12px 36px;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      color: #d19062;
      border-radius: 100px;
      transition: 0.3s ease-in-out;
      background: transparent;
    }
    .pricing-tab.active {
      color: #fff;
      background: #e69e6c;
    }
  }
  .pricings {
    width: 100%;
    margin-top: 30px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    .pricing-item {
      display: flex;
      flex-direction: column;
      align-items: start;
      width: 100%;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0px 2px 7.7px 0px rgba(0, 0, 0, 0.1);
      background: #fff;
      position: relative;
      border: 1px solid transparent;
      .tag {
        display: none;
        padding: 12px 26px;
        border-radius: 0 16px 0 16px;
        color: #fff;
        background: #e69e6c;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        position: absolute;
        top: 0;
        right: 0;
      }
      .pricing-head {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        .icon {
          width: 64px;
          height: 64px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 16px;
          background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
          img {
            width: 28px;
            height: 28px;
          }
        }
        .pricing-name {
          font-weight: 700;
          font-size: 28px;
          line-height: 38px;
          color: #153e35;
        }
      }
      .dayOfPrice {
        margin-top: 40px;
        display: flex;
        align-items: center;
        gap: 4px;
        span {
          font-weight: 600;
          font-size: 48px;
          line-height: 54px;
          color: #44655d;
        }
        p {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #848484;
        }
      }
      .hourslyOfPrice {
        margin-top: 16px;
        display: flex;
        align-items: center;
        span,
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #848484;
        }
        span {
          margin-left: 4px;
        }
      }
      .pricingServices {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 16px;
        margin-top: 40px;
        .pricingServiceItem {
          display: flex;
          align-items: center;
          width: 100%;
          gap: 12px;
          img {
            min-width: 20px;
            width: 20px;
          }
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #44655d;
          }
        }
      }
    }
    .pricing-item.isPopular {
      border-color: #e69e6c;
      box-shadow: none;
      .tag {
        display: block;
      }
    }
  }
  .pricings.active {
    display: grid;
  }
}
.beachGallery-container {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 40px;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .beachGalleries {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .beachGallery-item {
      width: 100%;
      height: 280px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      .galleryImg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.3s ease-in-out;
      }
      .beachLogo {
        position: absolute;
        width: 100px;
        top: 24px;
        left: 24px;
        z-index: 2;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.2) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        .galleryImg {
          transform: scale(1.05);
        }
      }
    }
  }
  .mobilebeachGalleries {
    display: none;
    width: 100%;
    padding-bottom: 32px;
    margin-top: 24px;
    .beachGallery-item {
      width: 100%;
      height: 360px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      .galleryImg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.3s ease-in-out;
      }
      .beachLogo {
        position: absolute;
        width: 100px;
        top: 24px;
        left: 24px;
        z-index: 2;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.2) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        .galleryImg {
          transform: scale(1.05);
        }
      }
    }
    .swiper-pagination {
      width: 100%;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      .swiper-pagination-bullet {
        margin: 0;
        opacity: 1;
        transition: 0.3s ease-in-out;
        width: 8px;
        height: 8px;
        min-width: 8px;
        background: rgba(179, 179, 179, 0.4);
        border-radius: 100px;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        min-width: 24px;
        background: #e69e6c;
      }
    }
  }
}
.reviews {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .reviews-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .reviews-cards {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 30px;
      gap: 24px;
      .review-card {
        width: 100%;
        border-radius: 16px;
        position: relative;
        background: #fff;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: start;
        .icon {
          width: 56px;
          height: 56px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          background: rgba(198, 168, 107, 0.1);
          img {
            width: 28px;
            height: 28px;
          }
        }
        .short-description {
          margin-top: 24px;
          width: 100%;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            font-style: italic;
            color: #0f2c26;
          }
        }
        .line {
          margin-top: 16px;
          width: 48px;
          height: 2px;
          background: #7f573b;
        }
        .card-owner {
          margin-top: 16px;
          font-weight: 600;
          font-size: 18px;
          line-height: 28px;
          color: #0f2c26;
        }
        .commentTime {
          margin-top: 8px;
          font-weight: 500;
          font-size: 14px;
          line-height: 18px;
          color: #a3704d;
        }
      }
    }
  }
}
.bookBeach {
  width: 100%;
  max-width: 1440px;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .bookBeach-form {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(92, 92, 92, 0.05);
    box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
    padding: 40px 24px;
    border-radius: 16px;
    margin-top: 30px;
    .form-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      .form-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        label {
          font-weight: 600;
          font-size: 14px;
          line-height: 18px;
          color: #848484;
          position: relative;
          sup {
            position: absolute;
            top: -4px;
          }
        }
        input,
        select,
        textarea {
          width: 100%;
          padding: 16px;
          background: #fbfbfb;
          border: 1px solid #f3f3f3;
          box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
          border-radius: 16px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
          height: 58px;
          &::placeholder {
            color: #848484;
          }
        }
      }
      .formTextarea {
        grid-column: span 2;
        textarea {
          resize: none;
          height: 90px;
        }
      }
    }
    .sendForm {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 24px auto 0;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      padding: 16px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.blog-banner {
  width: 100%;
  height: 560px;
  position: relative;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 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%
    );
  }
  .banner-content {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    .banner-tag {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #e69e6c;
    }
    .banner-title {
      margin-top: 12px;
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #ffffff;
    }
    .banner-description {
      margin-top: 16px;
      max-width: 580px;
      width: 100%;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      p {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
      }
    }
    .planLink {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      max-width: 250px;
      width: 100%;
      padding: 16px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
      background: #e69e6c;
      border-radius: 100px;
      transition: 0.3s ease-in-out;
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      &:hover {
        background: #a3704d;
      }
    }
  }
}
.landAbout {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .landAbout-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .landAbout-boxes {
      width: 100%;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      .landAbout-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
        .icon {
          width: 64px;
          height: 64px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 16px;
          background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
          img {
            width: 32px;
            height: 32px;
          }
        }
        .item-title {
          margin-top: 24px;
          font-weight: 600;
          font-size: 20px;
          line-height: 30px;
          color: #091a16;
          text-align: center;
        }
        p {
          margin-top: 12px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #848484;
          text-align: center;
        }
      }
    }
    .landAbout-info {
      width: 100%;
      margin-top: 50px;
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 40px;
      .regionalHighlights {
        max-width: 600px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 32px;
        .regionalHighlights-title {
          font-weight: 600;
          font-size: 36px;
          line-height: 42px;
          color: #0c221d;
        }
        .regionalHighlights-items {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 24px;
          .regionalHighlight-item {
            width: 100%;
            display: flex;
            align-items: start;
            gap: 24px;
            .icon {
              width: 56px;
              height: 56px;
              min-width: 56px;
              display: flex;
              align-items: center;
              justify-content: center;
              background: rgba(230, 158, 108, 0.15);
              border-radius: 16px;
              img {
                width: 28px;
                height: 28px;
              }
            }
            .item-body {
              display: flex;
              flex-direction: column;
              align-items: start;
              width: 100%;
              gap: 8px;
              .item-title {
                font-weight: 600;
                font-size: 24px;
                line-height: 34px;
                color: #2c5f4f;
              }
              p {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: rgba(44, 95, 79, 0.7);
              }
            }
          }
        }
      }
      .geographyClimate {
        max-width: 520px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        background: #ffffff;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
        padding: 16px;
        .geographyClimate-title {
          font-weight: 600;
          font-size: 24px;
          line-height: 34px;
          color: #2c5f4f;
        }
        .description {
          margin-top: 16px;
          width: 100%;
          p,
          li {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgba(44, 95, 79, 0.7);
          }
          ul {
            padding-left: 18px;
          }
        }
        .averageTemperatures {
          margin-top: 24px;
          gap: 16px;
          width: 100%;
          flex-wrap: wrap;
          display: flex;
          align-items: start;
          .averageTemperatur {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 4px;
            .temp {
              font-weight: 700;
              font-size: 28px;
              line-height: 36px;
              color: #d97845;
            }
            span {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: rgba(44, 95, 79, 0.6);
            }
          }
        }
      }
    }
  }
}
.visitDestinations-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .visitDestinations {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .destination-card {
      width: 100%;
      height: 370px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.8) 0%,
          rgba(0, 0, 0, 0.3) 50%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      .cardImg {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        object-fit: cover;
        transition: 0.3s ease-in-out;
      }
      .card-body {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: end;
        border-radius: 16px;
        padding: 16px 24px;
        .destination-title {
          color: #fff;
          font-weight: 600;
          font-size: 24px;
          line-height: 34px;
        }
        .short-description {
          margin-top: 12px;
          height: 48px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          overflow: hidden;
          -webkit-box-orient: vertical;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #fff;
          }
        }
        .viewMap {
          margin-top: 24px;
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 16px;
          background: rgba(255, 255, 255, 0.15);
          border-radius: 8px;
          img {
            width: 24px;
            min-width: 24px;
            height: 24px;
          }
          p {
            font-weight: 600;
            font-size: 18px;
            line-height: 28px;
            color: #fff;
          }
        }
      }
      &:hover {
        .cardImg {
          transform: scale(1.05);
        }
      }
    }
  }
}
.tipsAdvice {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .tipsAdvice-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .seasons {
      width: 100%;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      .season-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 24px;
        border-radius: 16px;
        .card-title {
          font-weight: 700;
          font-size: 28px;
          line-height: 38px;
          color: #fff;
        }
        .card-months {
          margin-top: 6px;
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #fff;
        }
        .card-highlights {
          margin-top: 16px;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 4px;
          padding-bottom: 16px;
          border-bottom: 1px solid rgba(248, 248, 248, 0.5);
          .highlights-label {
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #fff;
          }
          .highlights-text {
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #ffffff;
          }
        }
        .card-temperature {
          margin-top: 12px;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 8px;
          .temperature-label {
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #fff;
          }
          .temperature-result {
            font-weight: 700;
            font-size: 20px;
            line-height: 30px;
            color: #ffffff;
          }
        }
      }
      .season-spring {
        background: linear-gradient(126.55deg, #05df72 1.02%, #00bc7d 100%);
      }
      .season-summer {
        background: linear-gradient(127.22deg, #fdc700 0%, #ff6900 100%);
      }
      .season-autumn {
        background: linear-gradient(127.22deg, #ff8904 0%, #fb2c36 100%);
      }
      .season-winter {
        background: linear-gradient(128.1deg, #51a2ff 0%, #00b8db 100%);
      }
    }
    .tipsAdvice-items {
      width: 100%;
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      .tipsAdvice-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        padding: 40px 24px;
        border-radius: 16px;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
        .icon {
          width: 64px;
          height: 64px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 16px;
          background: linear-gradient(180deg, #d9b094 0%, #d39265 100%);
          img {
            width: 28px;
            height: 28px;
          }
        }
        .item-title {
          margin-top: 24px;
          font-weight: 600;
          font-size: 24px;
          line-height: 34px;
          color: #091a16;
        }
        .short-description {
          width: 100%;
          margin-top: 16px;
          p,
          li {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #666666;
          }
          ul {
            padding-left: 18px;
          }
        }
      }
    }
  }
}
.eventsFestivals-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .events-cards {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .event-card {
      display: flex;
      flex-direction: column;
      align-items: start;
      width: 100%;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      background: #fff;
      .card-image {
        width: 100%;
        height: 240px;
        position: relative;
        border-radius: 16px 16px 0 0;
        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%;
          background: linear-gradient(
            0deg,
            rgba(26, 26, 26, 0.6) 0%,
            rgba(0, 0, 0, 0) 100%
          );
          z-index: 1;
        }
      }
      .card-body {
        width: 100%;
        padding: 16px 16px 30px;
        display: flex;
        flex-direction: column;
        align-items: start;
        .event-title {
          font-weight: 500;
          font-size: 20px;
          line-height: 30px;
          color: #091a16;
        }
        .short-description {
          margin-top: 12px;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          -webkit-line-clamp: 2;
          height: 48px;
          p,
          li {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #666666;
          }
          ul {
            padding-left: 18px;
          }
        }
        .event-date {
          display: flex;
          align-items: center;
          gap: 8px;
          margin-top: 24px;
          img {
            width: 16px;
            height: 16px;
            min-width: 16px;
          }
          p {
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #4e4e4e;
          }
        }
        .event-location {
          display: flex;
          align-items: center;
          gap: 8px;
          margin-top: 8px;
          img {
            width: 16px;
            height: 16px;
            min-width: 16px;
          }
          p {
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #4e4e4e;
          }
        }
      }
    }
  }
}
.storiesInsights {
  width: 100%;
  background: #fbf6f3;
  padding: 60px 0;
  .storiesInsights-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 54px;
      text-align: center;
      color: #091a16;
    }
    .section-subTitle {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #666666;
    }
    .storiesInsightSwiper {
      max-width: 100%;
      width: max-content;
      margin-top: 24px;
      .storiesInsightCategory {
        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;
      }
      .storiesInsightCategory.active {
        box-shadow: 0px 4px 5.7px 0px rgba(231, 226, 222, 1);
        color: #fff;
        background: #e69e6c;
      }
    }
    .allStoriesInsights {
      margin-top: 30px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      .story-card {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        border-radius: 16px;
        background: #fff;
        .card-image {
          width: 100%;
          height: 260px;
          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(0, 0, 0, 0.4) 0%,
              rgba(0, 0, 0, 0) 100%
            );
          }
        }
        .card-body {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          padding: 16px 16px 30px;
          border-radius: 0 0 16px 16px;
          .story-name {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #091a16;
          }
          .short-description {
            width: 100%;
            margin-top: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            overflow: hidden;
            height: 72px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #666666;
            }
          }
          .more {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            p {
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              text-decoration: underline;
              color: #e69e6c;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
          }
        }
      }
    }
  }
}
.visualJourney-container {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #091a16;
  }
  .section-subTitle {
    margin-top: 16px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #666666;
  }
  .visualJourneyGalleries {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .visualJourney-item {
      width: 100%;
      height: 280px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.3s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.2) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.05);
        }
      }
    }
  }
  .mobileVisualJourneyGalleries {
    display: none;
    width: 100%;
    padding-bottom: 32px;
    margin-top: 24px;
    .visualJourney-item {
      width: 100%;
      height: 360px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: 0.3s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.2) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      &:hover {
        img {
          transform: scale(1.05);
        }
      }
    }
    .swiper-pagination {
      width: 100%;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      .swiper-pagination-bullet {
        margin: 0;
        opacity: 1;
        transition: 0.3s ease-in-out;
        width: 8px;
        height: 8px;
        min-width: 8px;
        background: rgba(179, 179, 179, 0.4);
        border-radius: 100px;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        min-width: 24px;
        background: #e69e6c;
      }
    }
  }
}
@media only screen and (min-width: 1700px) {
  .about-banner {
    height: 660px;
  }
  .contact-banner {
    height: 660px;
  }
  .events-banner {
    height: 660px;
  }
  .tours-banner {
    height: 660px;
  }
  .beach-banner {
    height: 660px;
  }
  .blog-banner {
    height: 660px;
  }
}
@media only screen and (max-width: 1380px) {
  .navbar {
    .navbar-container {
      gap: 60px;
    }
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  .navbar {
    .navbar-container {
      .navbar-main {
        max-width: 780px;
      }
    }
  }
  .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;
        }
      }
    }
  }
  .ourDestination-container {
    margin: 36px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .ourDestination-cards {
      margin-top: 24px;
      gap: 20px;
      .destination-card {
        height: 270px;
        img {
          width: 152px;
          min-width: 152px;
        }
      }
    }
  }
  .explore-container {
    margin: 72px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .explore-cards {
      margin-top: 24px;
      gap: 20px;
      .explore-card {
        .card-img {
          height: 240px;
        }
      }
    }
  }
  .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: 40px;
        .footer-top-main {
          min-width: 280px;
          width: 280px;
        }
        .footer-sections {
          max-width: 600px;
          grid-template-columns: repeat(3, 1fr);
        }
      }
      .footer-contact {
        margin-top: 50px;
        gap: 16px;
      }
    }
  }
  .breadcrumb-container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .about-banner {
    height: 500px;
    .banner-content {
      .banner-title {
        font-size: 40px;
        line-height: 48px;
      }
      .banner-description {
        margin-top: 20px;
        font-size: 18px;
        line-height: 28px;
        p {
          font-size: 18px;
          line-height: 28px;
        }
      }
    }
  }
  .about-container {
    margin: 36px auto 0;
    .about-title {
      font-size: 36px;
      line-height: 48px;
    }
    .about-description {
      margin-top: 20px;
      p,
      li {
        font-size: 14px;
        line-height: 20px;
      }
    }
    .about-boxes {
      gap: 20px;
      margin-top: 76px;
      .about-box {
        .box-icon {
          width: 60px;
          height: 60px;
          img {
            width: 24px;
            height: 24px;
          }
        }
        .box-title {
          margin-top: 20px;
          font-size: 28px;
          line-height: 38px;
        }
        .box-description {
          p,
          li {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
  }
  .about-joinUs {
    margin-top: 36px;
    padding: 70px 0;
    .joinUs-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        font-size: 16px;
        line-height: 24px;
      }
      .contactUs-link {
        padding: 12px;
        max-width: 360px;
      }
    }
  }
  .blog-detail-image {
    height: 500px;
  }
  .blog-detail {
    margin: 36px auto;
    .blog-title {
      font-size: 24px;
      line-height: 32px;
    }
    .description {
      margin-top: 20px;
      li,
      p {
        font-size: 14px;
        line-height: 20px;
      }
    }
  }
  .contact-banner {
    height: 500px;
    .banner-content {
      .banner-title {
        font-size: 40px;
        line-height: 48px;
      }
      .banner-description {
        font-size: 16px;
        line-height: 24px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }
  }
  .contact-container {
    margin: 36px auto;
    .contact-main {
      gap: 20px;
      grid-template-columns: 396px calc(100% - 416px);
      .contact-form {
        .form-items {
          gap: 20px;
        }
        .sendForm {
          margin-top: 20px;
          padding: 12px;
        }
      }
    }
    .map {
      height: 330px;
      margin-top: 48px;
    }
  }
  .events-banner {
    height: 500px;
    .banner-content {
      .banner-tag {
        font-size: 14px;
        line-height: 18px;
      }
      .banner-title {
        font-size: 40px;
        line-height: 48px;
      }
      .banner-description {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .planLink {
        margin-top: 24px;
        max-width: 280px;
        padding: 12px;
      }
    }
  }
  .eventsType {
    padding: 48px 0;
    .eventsType-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .eventsType-cards {
        margin-top: 24px;
        gap: 20px;
        .eventsType-card {
          .card-img {
            height: 240px;
          }
        }
      }
    }
  }
  .eventsGallery-container {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .eventGallerySwiper {
      margin-top: 20px;
    }
    .eventGalleries {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .gallery-item {
        height: 240px;
      }
    }
  }
  .ourClients {
    padding: 48px 0;
    .ourClients-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .ourClients-cards {
        margin-top: 24px;
        gap: 20px;
      }
    }
  }
  .eventPlan {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .event-form {
      .form-items {
        gap: 20px;
      }
      .sendForm {
        margin-top: 20px;
        padding: 12px;
        max-width: 800px;
      }
    }
  }
  .tours-banner {
    height: 500px;
    .banner-content {
      .banner-tag {
        font-size: 14px;
        line-height: 18px;
      }
      .banner-title {
        font-size: 40px;
        line-height: 48px;
      }
      .banner-description {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .planLink {
        margin-top: 24px;
        max-width: 280px;
        padding: 12px;
      }
    }
  }
  .toursCategories-container {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .toursCategories {
      margin-top: 24px;
      gap: 20px;
      grid-template-columns: repeat(3, 1fr);
      .tourCategory {
        height: 380px;
      }
    }
  }
  .tourPackages {
    padding: 48px 0;
    .tourPackages-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .tourPackagesSwiper {
        margin-top: 20px;
      }
      .allTourPackages {
        margin-top: 24px;
        gap: 20px;
        .tourPackage-card {
          .card-image {
            height: 200px;
          }
        }
      }
    }
  }
  .bookAdventure {
    margin: 36px auto;
    .bookAdventure-content {
      min-width: 426px;
      width: 426px;
      .section-title {
        font-size: 30px;
        line-height: 36px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .advantage-items {
        margin-top: 20px;
        gap: 20px;
        .advantage-item {
          .icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            img {
              width: 22px;
              height: 22px;
              min-width: 22px;
            }
          }
          .item-body {
            gap: 8px;
            .item-title {
              font-size: 16px;
              line-height: 24px;
            }
            .short-description {
              li,
              p {
                font-size: 14px;
                line-height: 18px;
              }
            }
          }
        }
      }
    }

    .book-form {
      width: calc(100% - 450px);
      .form-items {
        gap: 20px;
      }
      .sendForm {
        margin-top: 20px;
        padding: 12px;
      }
    }
  }
  .beach-banner {
    height: 500px;
    .banner-content {
      .banner-tag {
        font-size: 14px;
        line-height: 18px;
      }
      .banner-title {
        font-size: 40px;
        line-height: 48px;
      }
      .banner-description {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .planLink {
        margin-top: 24px;
        max-width: 280px;
        padding: 12px;
      }
    }
  }
  .beachParadise {
    padding: 48px 0;
    .beachParadise-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .beach-advantages {
        margin-top: 24px;
        gap: 20px;
      }
      .beach-statistics {
        padding: 32px 40px;
        margin-top: 48px;
        .statistic-item {
          gap: 12px;
          .statistic-title {
            font-size: 36px;
            line-height: 44px;
          }
          p {
            font-size: 14px;
            line-height: 18px;
          }
        }
      }
    }
  }
  .pricing-container {
    margin: 36px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .pricing-tabs {
      margin: 24px auto 0;
    }
    .pricings {
      margin-top: 24px;
      gap: 20px;
    }
  }
  .beachGallery-container {
    margin: 72px auto 36px;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .beachGalleries {
      margin-top: 24px;
      gap: 20px;
      .beachGallery-item {
        height: 240px;
      }
    }
  }
  .reviews {
    padding: 48px 0;
    .reviews-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .reviews-cards {
        margin-top: 24px;
        gap: 20px;
      }
    }
  }
  .bookBeach {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .bookBeach-form {
      .form-items {
        gap: 20px;
      }
      .sendForm {
        margin-top: 20px;
        padding: 12px;
      }
    }
  }
  .blog-banner {
    height: 500px;
    .banner-content {
      .banner-tag {
        font-size: 14px;
        line-height: 18px;
      }
      .banner-title {
        font-size: 40px;
        line-height: 48px;
      }
      .banner-description {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
      .planLink {
        margin-top: 24px;
        max-width: 280px;
        padding: 12px;
      }
    }
  }
  .landAbout {
    padding: 48px 0;
    .landAbout-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .landAbout-boxes {
        margin-top: 24px;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .landAbout-info {
        margin-top: 40px;
        gap: 30px;
        .regionalHighlights {
          max-width: 500px;
          .regionalHighlights-title {
            font-size: 32px;
            line-height: 36px;
          }
          .regionalHighlights-items {
            .regionalHighlight-item {
              gap: 20px;
              .icon {
                width: 52px;
                height: 52px;
                min-width: 52px;
                img {
                  width: 26px;
                  height: 26px;
                }
              }
              .item-body {
                gap: 4px;
                .item-title {
                  font-size: 20px;
                  line-height: 30px;
                }
                p {
                  font-size: 14px;
                  line-height: 18px;
                }
              }
            }
          }
        }
        .geographyClimate {
          max-width: 460px;
        }
      }
    }
  }
  .visitDestinations-container {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .visitDestinations {
      margin-top: 24px;
      gap: 20px;
      .destination-card {
        height: 330px;
      }
    }
  }
  .tipsAdvice {
    padding: 48px 0;
    .tipsAdvice-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .seasons {
        margin-top: 24px;
        gap: 20px;
      }
      .tipsAdvice-items {
        margin-top: 40px;
        gap: 20px;
      }
    }
  }
  .eventsFestivals-container {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .events-cards {
      margin-top: 24px;
      gap: 20px;
      .event-card {
        .card-image {
          height: 200px;
        }
      }
    }
  }
  .storiesInsights {
    padding: 48px 0;
    .storiesInsights-container {
      .section-title {
        font-size: 36px;
        line-height: 48px;
      }
      .section-subTitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
      }
      .storiesInsightSwiper {
        margin-top: 20px;
      }
      .allStoriesInsights {
        margin-top: 24px;
        gap: 20px;
        .story-card {
          .card-image {
            height: 220px;
          }
        }
      }
    }
  }
  .visualJourney-container {
    margin: 36px auto;
    .section-title {
      font-size: 36px;
      line-height: 48px;
    }
    .section-subTitle {
      margin-top: 12px;
      font-size: 16px;
      line-height: 24px;
    }
    .visualJourneyGalleries {
      margin-top: 24px;
      gap: 20px;
      .visualJourney-item {
        height: 240px;
      }
    }
  }
}
@media only screen and (max-width: 1150px) {
  .navbar {
    .navbar-container {
      gap: 20px;
    }
  }
}
@media only screen and (max-width: 992px) {
  .navbar {
    .navbar-container {
      justify-content: start;
      gap: 12px;
      .navbar-main {
        max-width: 100%;
        .navbar-links {
          display: none;
        }
      }
      .hamburger {
        display: flex;
      }
    }
  }
  .mobile-menu-container {
    display: flex;
  }
  .mobile-menu-container.showedMobileMenu {
    display: flex;
  }
  .home-hero-section {
    height: calc(100svh - 84px);
  }
  .ourDestination-container {
    .ourDestination-cards {
      grid-template-columns: repeat(2, 1fr);
      .destination-card {
        height: 330px;
      }
    }
  }
  .explore-container {
    .explore-cards {
      .explore-card {
        .card-img {
          height: 160px;
        }
      }
    }
  }
  footer {
    .footer-container {
      .footer-top {
        flex-direction: column;
        .footer-sections {
          max-width: 100%;
        }
      }
    }
  }
  .breadcrumb-container {
    display: none;
  }
  .blog-detail-image {
    height: 400px;
  }
  .contact-container {
    .contact-main {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .eventsType {
    .eventsType-container {
      .eventsType-cards {
        .eventsType-card {
          .card-img {
            height: 160px;
          }
        }
      }
    }
  }
  .eventsGallery-container {
    .eventGalleries {
      grid-template-columns: repeat(2, 1fr);
      .gallery-item {
        height: 280px;
      }
    }
  }
  .ourClients {
    .ourClients-container {
      .ourClients-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
  .toursCategories-container {
    .toursCategories {
      .tourCategory {
        height: 330px;
      }
    }
  }
  .tourPackages {
    .tourPackages-container {
      .allTourPackages {
        grid-template-columns: repeat(2, 1fr);
        .tourPackage-card {
          .card-image {
            height: 220px;
          }
        }
      }
    }
  }
  .bookAdventure {
    flex-direction: column;
    .bookAdventure-content {
      min-width: 0;
      width: 100%;
    }
    .book-form {
      width: 100%;
    }
  }
  .beachParadise {
    .beachParadise-container {
      .beach-advantages {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  }
  .pricing-container {
    .pricings {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .beachGallery-container {
    .beachGalleries {
      grid-template-columns: repeat(2, 1fr);
      .beachGallery-item {
        height: 260px;
      }
    }
  }
  .reviews {
    .reviews-container {
      .reviews-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
  .landAbout {
    .landAbout-container {
      .landAbout-boxes {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
  .visitDestinations-container {
    .visitDestinations {
      grid-template-columns: repeat(2, 1fr);
      .destination-card {
        height: 370px;
      }
    }
  }
  .tipsAdvice {
    .tipsAdvice-container {
      .seasons {
        grid-template-columns: repeat(2, 1fr);
      }
      .tipsAdvice-items {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
  .eventsFestivals-container {
    .events-cards {
      grid-template-columns: repeat(2, 1fr);
      .event-card {
        .card-image {
          height: 260px;
        }
      }
    }
  }
  .visualJourney-container {
    .visualJourneyGalleries {
      grid-template-columns: repeat(2, 1fr);
      .visualJourney-item {
        height: 260px;
      }
    }
  }
  .storiesInsights {
    .storiesInsights-container {
      .allStoriesInsights {
        grid-template-columns: repeat(2, 1fr);
        .story-card {
          .card-image {
            height: 240px;
          }
        }
      }
    }
  }
}
@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;
        }
      }
    }
  }
  .ourDestination-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .ourDestination-cards {
      margin-top: 16px;
      gap: 16px;
      .destination-card {
        height: 270px;
        img {
          width: 142px;
          min-width: 142px;
        }
      }
    }
  }
  .explore-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .explore-cards {
      margin-top: 16px;
      gap: 16px;
      grid-template-columns: repeat(1, 1fr);
      .explore-card {
        .card-img {
          height: 320px;
        }
        .card-body {
          .card-title {
            height: auto;
            overflow: initial;
            display: block;
            -webkit-line-clamp: initial;
            -webkit-box-orient: initial;
          }
        }
      }
    }
  }
  .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 {
          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;
      }
    }
  }
  .about-banner {
    height: 440px;
    .banner-content {
      .banner-title {
        font-size: 32px;
        line-height: 40px;
      }
      .banner-description {
        margin-top: 16px;
        font-size: 16px;
        line-height: 24px;
        p {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }
  }
  .about-container {
    .about-title {
      font-size: 24px;
      line-height: 32px;
    }
    .about-description {
      margin-top: 16px;
    }
    .about-boxes {
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
      .about-box {
        .box-title {
          margin-top: 16px;
        }
      }
    }
  }
  .about-joinUs {
    padding: 36px 0;
    .joinUs-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .contactUs-link {
        margin-top: 24px;
        padding: 12px;
        max-width: 280px;
      }
    }
  }
  .blog-detail-image {
    height: 300px;
  }
  .blog-detail {
    .description {
      margin-top: 16px;
    }
  }
  .contact-banner {
    height: 440px;
    .banner-content {
      .banner-title {
        font-size: 32px;
        line-height: 40px;
      }
    }
  }
  .contact-container {
    .contact-main {
      gap: 16px;
      .contact-form {
        .form-items {
          gap: 16px;
        }
        .sendForm {
          margin-top: 16px;
        }
      }
    }
    .map {
      height: 200px;
      margin-top: 36px;
    }
  }
  .events-banner {
    height: 400px;
    .banner-content {
      .banner-title {
        font-size: 32px;
        line-height: 40px;
      }
    }
  }
  .eventsType {
    padding: 36px 0;
    .eventsType-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .eventsType-cards {
        margin-top: 16px;
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
        .eventsType-card {
          .card-img {
            height: 320px;
          }
          .card-body {
            .card-title {
              height: auto;
              overflow: initial;
              display: block;
              -webkit-line-clamp: initial;
              -webkit-box-orient: initial;
            }
          }
        }
      }
    }
  }
  .eventsGallery-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .eventGallerySwiper {
      margin-top: 16px;
    }
    .eventGalleries {
      display: none;
    }
    .mobileGallerySlide {
      display: flex;
    }
  }
  .ourClients {
    padding: 36px 0;
    .ourClients-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .ourClients-cards {
        margin-top: 16px;
        gap: 16px;
      }
    }
  }
  .eventPlan {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .event-form {
      .form-items {
        gap: 16px;
      }
      .sendForm {
        margin-top: 16px;
        max-width: 700px;
      }
    }
  }
  .tours-banner {
    height: 400px;
    .banner-content {
      .banner-title {
        font-size: 32px;
        line-height: 40px;
      }
    }
  }
  .toursCategories-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .toursCategories {
      margin-top: 16px;
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .tourPackages {
    padding: 36px 0;
    .tourPackages-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .tourPackagesSwiper {
        margin-top: 16px;
      }
      .allTourPackages {
        gap: 16px;
        .tourPackage-card {
          .card-image {
            height: 200px;
          }
        }
      }
    }
  }
  .bookAdventure {
    .bookAdventure-content {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .advantage-items {
        margin-top: 16px;
        gap: 16px;
        .advantage-item {
          .icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            img {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
      }
    }

    .book-form {
      .form-items {
        gap: 16px;
      }
      .sendForm {
        margin-top: 16px;
      }
    }
  }
  .beach-banner {
    height: 400px;
    .banner-content {
      .banner-title {
        font-size: 32px;
        line-height: 40px;
      }
    }
  }
  .beachParadise {
    padding: 36px 0;
    .beachParadise-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .beach-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .beach-statistics {
        padding: 32px 20px;
        margin-top: 36px;
        gap: 20px;
        .statistic-item {
          max-width: 90px;
          .statistic-title {
            font-size: 24px;
            line-height: 36px;
          }
          p {
            font-size: 10px;
            line-height: 12px;
          }
        }
      }
    }
  }
  .pricing-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .pricing-tabs {
      margin: 16px auto 0;
    }
    .pricings {
      gap: 16px;
    }
  }
  .beachGallery-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .beachGalleries {
      display: none;
    }
    .mobilebeachGalleries {
      display: flex;
    }
  }
  .reviews {
    padding: 36px 0;
    .reviews-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .reviews-cards {
        margin-top: 16px;
        gap: 16px;
      }
    }
  }
  .bookBeach {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .bookBeach-form {
      .form-items {
        gap: 16px;
      }
      .sendForm {
        margin-top: 16px;
      }
    }
  }
  .blog-banner {
    height: 400px;
    .banner-content {
      .banner-title {
        font-size: 32px;
        line-height: 40px;
      }
    }
  }
  .landAbout {
    padding: 36px 0;
    .landAbout-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .landAbout-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .landAbout-info {
        margin-top: 30px;
        gap: 30px;
        flex-direction: column;
        .regionalHighlights {
          max-width: 100%;
          .regionalHighlights-title {
            font-size: 28px;
          }
          .regionalHighlights-items {
            .regionalHighlight-item {
              gap: 16px;
            }
          }
        }
        .geographyClimate {
          max-width: 100%;
        }
      }
    }
  }
  .visitDestinations-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .visitDestinations {
      gap: 16px;
      .destination-card {
        height: 300px;
      }
    }
  }
  .tipsAdvice {
    padding: 36px 0;
    .tipsAdvice-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .seasons {
        gap: 16px;
      }
      .tipsAdvice-items {
        margin-top: 30px;
        gap: 16px;
      }
    }
  }
  .eventsFestivals-container {
    margin: 36px auto;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .events-cards {
      gap: 16px;
      .event-card {
        .card-image {
          height: 220px;
        }
      }
    }
  }
  .storiesInsights {
    padding: 36px 0;
    .storiesInsights-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .storiesInsightSwiper {
        margin-top: 16px;
      }
      .allStoriesInsights {
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
        .story-card {
          .card-image {
            height: 200px;
          }
        }
      }
    }
  }
  .visualJourney-container {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .visualJourneyGalleries {
      display: none;
    }
    .mobileVisualJourneyGalleries {
      display: flex;
    }
  }
}
@media only screen and (max-width: 575px) {
  .ourDestination-container {
    .ourDestination-cards {
      grid-template-columns: repeat(1, 1fr);
      .destination-card {
        height: 365px;
        img {
          width: 200px;
          min-width: 200px;
        }
      }
    }
  }
  .explore-container {
    .explore-cards {
      .explore-card {
        .card-img {
          height: 280px;
        }
      }
    }
  }
  .contact-container {
    .contact-main {
      .contact-form {
        .form-items {
          grid-template-columns: repeat(1, 1fr);
          .formTextarea {
            grid-column: span 1;
          }
        }
      }
    }
  }
  .eventsType {
    .eventsType-container {
      .eventsType-cards {
        .eventsType-card {
          .card-img {
            height: 280px;
          }
        }
      }
    }
  }
  .eventsGallery-container {
    .mobileGallerySlide {
      .gallery-item {
        height: 210px;
      }
    }
  }
  .ourClients {
    .ourClients-container {
      .ourClients-cards {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .eventPlan {
    .event-form {
      .form-items {
        grid-template-columns: repeat(1, 1fr);
        .formTextarea {
          grid-column: span 1;
        }
      }
    }
  }
  .toursCategories-container {
    .toursCategories {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .tourPackages {
    .tourPackages-container {
      .allTourPackages {
        grid-template-columns: repeat(1, 1fr);
        .tourPackage-card {
          .card-image {
            height: 240px;
          }
        }
      }
    }
  }
  .bookAdventure {
    .book-form {
      .form-items {
        grid-template-columns: repeat(1, 1fr);
        .formTextarea {
          grid-column: span 1;
        }
      }
    }
  }
  .blog-detail-image {
    height: 250px;
  }
  .beachParadise {
    .beachParadise-container {
      .beach-advantages {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .beachGallery-container {
    .mobilebeachGalleries {
      .beachGallery-item {
        height: 210px;
      }
    }
  }
  .reviews {
    .reviews-container {
      .reviews-cards {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .bookBeach {
    .bookBeach-form {
      .form-items {
        grid-template-columns: repeat(1, 1fr);
        .formTextarea {
          grid-column: span 1;
        }
      }
    }
  }
  .landAbout {
    .landAbout-container {
      .landAbout-boxes {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .visitDestinations-container {
    .visitDestinations {
      grid-template-columns: repeat(1, 1fr);
      .destination-card {
        height: 370px;
      }
    }
  }
  .tipsAdvice {
    .tipsAdvice-container {
      .seasons {
        grid-template-columns: repeat(1, 1fr);
      }
      .tipsAdvice-items {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .eventsFestivals-container {
    .events-cards {
      grid-template-columns: repeat(1, 1fr);
      .event-card {
        .card-image {
          height: 240px;
        }
      }
    }
  }
  .visualJourney-container {
    .mobileVisualJourneyGalleries {
      .visualJourney-item {
        height: 210px;
      }
    }
  }
  .storiesInsights {
    .storiesInsights-container {
      .allStoriesInsights {
        grid-template-columns: repeat(1, 1fr);
        .story-card {
          .card-image {
            height: 260px;
          }
        }
      }
    }
  }
}
