@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: Asbigan;
  src: url(/assets/load/font/asbigan-regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

button,
.btn {
  cursor: pointer;
  transition: 0.25s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100svw;
  background-color: #f5f5f5;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.cc-container {
  width: 100svw;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #000;

  & .cc {
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 0 auto;
    background-color: #fff;
    color: #000;
    font-size: 0.8rem;

    & h4 {
      font-weight: 400;
      margin: 0;
      padding: 0;
    }

    & span#cc {
      display: flex;
      flex-direction: row;
      gap: 20px;

      & a {
        color: #000;
        text-decoration: none;

        &:hover {
          color: #006f76;
        }
      }
    }

    & span#cc-dropdown {
      display: none;
      position: relative;

      & #cc-dropdown-icon {
        font-size: 1.5rem;
        cursor: pointer;
        font-weight: bold;
        padding: 0 10px;
      }

      & #cc-dropdown-content {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        flex-direction: column;
        min-width: 150px;
        z-index: 1000;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);

        & a {
          padding: 12px 16px;
          text-decoration: none;
          color: black;
          display: block;
        }
        & a:hover {
          background-color: #ddd;
        }
      }

      /* This class is added by JS */
      & #cc-dropdown-content.show {
        display: flex;
      }
    }
  }
}

.nav-container {
  width: 100svw;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #006f76;
  color: #fff;

  & nav {
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 0 auto;
    background-color: #006f76;
    color: #fff;
    font-size: 1rem;
    position: relative;

    & .logo {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 20px;

      & img {
        width: auto;
        height: 56px;
      }

      & h2 {
        font-family: Asbigan;
        margin: 10px 0 5px;
        padding: 0;
        font-size: 2rem;
        font-weight: 500;
      }
    }

    & div.nav {
      display: flex;
      justify-content: left;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      margin: 0;
      padding: 0;
    }

    & .links {
      display: flex;
      gap: 60px;
      align-items: center;

      & ul {
        display: flex;
        gap: 40px;
        padding: 0;
        margin: 0;
        & li {
          list-style: none;
        }
        & a {
          color: #fff;
          text-decoration: none;
        }
        & a:hover {
          color: #c5ebf4;
        }
      }
    }

    /* General Button Style */
    & button {
      font-family: Asbigan, serif;
      padding: 12px 30px;
      background-color: #fff;
      color: #006f76;
      border: 1px solid #fff;
      border-radius: 40px;
      cursor: pointer;
      font-weight: 500;
      &:hover {
        background-color: #006f76;
        color: #fff;
      }
    }

    /* Mobile Hamburger Menu Logic */
    & .links-dropdown {
      display: none; /* Hidden on desktop */

      & #links-dropdown-icon {
        cursor: pointer;
        display: block;

        & .bar1,
        .bar2,
        .bar3 {
          width: 35px;
          height: 5px;
          background-color: #fff; /* Changed to white */
          margin: 6px 0;
          transition: 0.4s;
        }
        &.change .bar1 {
          transform: translate(0, 11px) rotate(-45deg);
        }
        &.change .bar2 {
          opacity: 0;
        }
        &.change .bar3 {
          transform: translate(0, -11px) rotate(45deg);
        }
      }

      /* The actual dropdown menu */
      & #links-dropdown-content {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Push below header */
        left: 0;
        width: 100%;
        background-color: #006f76;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;

        & ul {
          display: flex;
          flex-direction: column;
          gap: 20px;
          text-align: center;
          padding: 20px 0;
          & li {
            list-style: none;
          }
          & a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2rem;
          }
        }
      }

      /* This class is added by JS */
      & #links-dropdown-content.show {
        display: flex;
      }
    }
  }
}

main {
  width: 100svw;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #000;
}

.main {
  width: 75%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
  margin: 0 auto;
  background-color: #fff;
  color: #000;
  gap: 80px;

  & .main1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0;
    margin: 0;
    color: #000;
    gap: 32px;

    & h1 {
      font-family: Asbigan;
      font-size: 3.6rem;
      font-weight: 500;
      margin: 0;
      padding: 0;
      line-height: 1.2;
    }

    & p {
      font-size: 1.2rem;
      font-weight: 300;
      margin: 0;
      padding: 0;
    }

    & span form {
      background-color: #f2f2f2;
      align-items: center;
      padding: 8px;
      border-radius: 50px;
      display: flex;
      flex-direction: row;
      gap: 40px;

      & input {
        display: flex;
        flex-direction: row;
        width: 250px;
        font-size: 0.8rem;
        font-weight: 400;
        padding: 16px 40px;
        margin: 0 0 0 8px;
        background-color: #f2f2f2;
        color: #000;
        border: none;
        border-radius: 40px;
      }

      & button {
        font-family: Asbigan;
        font-size: 1rem;
        font-weight: 500;
        padding: 16px 40px;
        background-color: #006f76;
        color: #fff;
        border: #006f76 1px solid;
        border-radius: 40px;
        cursor: pointer;

        &:hover {
          background-color: #f2f2f2;
          color: #006f76;
          border: #006f76 1px solid;
        }

        &:active {
          background-color: #006f76;
          color: #fff;
          border: #006f76 1px solid;
        }
      }
    }
  }

  & .main2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: 0;
    margin: 0;
    color: #000;
    gap: 28px;

    & .mainimage {
      width: 90%;
      display: flex;
      flex-direction: row;
      justify-content: right;
      align-items: end;
      padding: 0;
      margin: 0;
      color: #000;
      gap: 28px;

      & img {
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 40px;
        margin: 0;
        padding: 0;

        &.one {
          max-width: 40%;
        }

        &.two {
          max-width: 55%;
        }
      }
    }

    & .maintext {
      position: relative;
      top: -125px;
      right: 15px;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: right;
      align-items: end;
      padding: 0;
      margin: 0;
      color: #000;
      gap: 28px;

      & .trip-count {
        border-radius: 40px;
        padding: 4px 40px;
        color: #000;
        background-color: #f2f2f2;
        font-size: 1rem;
        font-weight: 400;
      }

      & .quote-box {
        border-radius: 40px;
        background-color: #006f76;
        width: 350px;
        display: flex;
        flex-direction: column;
        justify-content: right;
        align-items: end;
        padding: 0;
        margin: 0;
        color: #000;

        & p {
          font-family: Asbigan;
          padding: 28px;
          color: #fff;
          font-size: 1.3rem;
          font-weight: 500;
          text-align: center;
        }
      }
    }
  }
}

.divider {
  width: 100svw;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: none;
  color: #fff;

  & span {
    display: none;
  }
}

/* ABOUT */

.about-container {
  width: 100svw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #006f76;
  color: #fff;
  gap: 40px;

  & .about {
    width: 75%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin: 0;
    color: #fff;
    gap: 80px;

    & div {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start;
      padding: 0;
      margin: 0;
      gap: 20px;

      &.about1 {
        & h2 {
          width: 90%;
          font-family: Asbigan;
          font-size: 2.5rem;
          font-weight: 400;
        }
      }

      &.about2 {
        & p {
          font-size: 1.2rem;
          font-weight: 300;
        }

        & ul {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          padding: 0;
          margin: 0;
          color: #fff;
          width: 100%;
          gap: 60px;

          & li {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0;
            margin: 0;
            color: #fff;
            gap: 0px;

            & h3 {
              font-family: Asbigan;
              font-size: 2.4rem;
              line-height: 1.2;
              font-weight: 400;
              margin: 0;
              padding: 0;
            }

            & p {
              text-align: center;
              font-size: 1.2rem;
              font-weight: 300;
              margin: 0;
              padding: 0;
            }
          }
        }
      }
    }
  }
}

.travel-blocks {
  background-image: url(/assets/images/logos/logobg.png);
  background-size: 700px auto;
  background-position: calc(100% + 300px) calc(100% + 250px);
  background-repeat: no-repeat;
  width: 100vw;
  padding: 120px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  gap: 120px;

  & .travel-row {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 160px;

    &.reverse {
      flex-direction: row-reverse;
    }
  }

  & .travel-image {
    position: relative;
    width: 450px;

    &:hover {
      & img {
        transform: rotate(5deg);
      }

      & .shape {
        transform: rotate(-5deg);
      }
    }

    & img {
      width: 100%;
      border-radius: 36px;
      position: relative;
      z-index: 2;
      transition: all 0.5s ease;
    }

    & .shape {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #c5ebf4;
      border-radius: 40px;
      top: 35px;
      left: -35px;
      z-index: 1;
      transition: all 0.5s ease;
    }
  }

  & .travel-content {
    max-width: 550px;

    & h2 {
      font-family: Asbigan;
      font-size: 2.6rem;
      font-weight: 500;
      color: #006f76;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    & p {
      line-height: 1.6;
      margin-bottom: 25px;
      font-size: 1.2rem;
      font-weight: 300;
    }

    & .btn {
      padding: 16px 40px;
      background: #006f76;
      color: #fff;
      border: #006f76 1px solid;
      text-decoration: none;
      border-radius: 30px;
      display: inline-block;
      font-size: 15px;

      &:hover {
        background: #ffffff00;
        color: #006f76;
        border: #006f76 1px solid;
      }
    }
  }
}

.why-choose-container {
  width: 100svw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #f2f2f2;
  color: #000;

  & .why-choose {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    margin: 0 auto;
    color: #000;
    gap: 40px;

    & h2 {
      font-family: Asbigan;
      text-align: center;
      font-size: 2.6rem;
      font-weight: 500;
      color: #006f76;
      margin: 0;
      padding: 0;
      line-height: 1.3;
    }

    & p.sub {
      text-align: center;
      max-width: 600px;
      line-height: 1.6;
      margin: 0 auto 10px;
      padding: 0;
      font-size: 1.2rem;
      font-weight: 300;
    }
  }

  & .features-grid {
    display: grid;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;

    & .feature-card {
      background: #fff;
      padding: 25px;
      border-radius: 14px;

      &.active {
        background: #006f76;
        color: #fff;

        & img {
          filter: brightness(100000);
        }

        & h3 {
          color: #fff;
        }

        & p {
          color: #fff;
        }
      }

      & h3 {
        font-family: Asbigan;
        font-size: 1.4rem;
        margin: 12px 0;
        font-weight: 500;
      }

      & p {
        color: #555;
      }
    }
  }
}

/* TESTIMONIALS */

.testimonials-container {
  width: 100svw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #000;

  & .testimonials {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    margin: 0 auto;
    color: #000;

    & .tag {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 10px;
      padding: 0;
      font-size: 1rem;
      font-weight: 300;
    }

    & h2 {
      font-family: Asbigan;
      text-align: center;
      font-size: 2.6rem;
      font-weight: 500;
      color: #006f76;
      margin: 0;
      padding: 0;
      line-height: 1.2;
    }

    & .testi-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
      justify-content: center;
      gap: 30px;

      & div:nth-child(3) {
        transform: translateX(calc(50% + 15px));
        justify-self: center;
      }

      & .testi-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: #f2f2f2;
        padding: 40px;
        border-radius: 20px;
        text-align: left;
        gap: 8px;

        & h3 {
          font-family: Asbigan;
          font-size: 1.6rem;
          margin: 12px 0 0;
          font-weight: 500;
        }

        & p {
          margin: 0;
        }

        & .stars {
          color: #006f76;
          font-size: 1.5rem;
        }
      }
    }
  }
}

.testi-button {
  margin: 40px 0 0;
  text-align: center;

  & .btn {
    padding: 16px 40px;
    background: #006f76;
    color: #fff;
    border: #006f76 1px solid;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    font-size: 15px;

    &:hover {
      background: #ffffff00;
      color: #006f76;
      border: #006f76 1px solid;
    }
  }
}

/* FAQ */

.faq-container {
  background-color: #f2f2f2;
  width: 100svw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  color: #000;

  & .faq {
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    padding: 80px 0;
    margin: 0 auto;
    color: #000;
    gap: 80px;

    & .faq-side {
      width: 50%;
      text-align: left;
      margin: 0 auto;

      & h2 {
        font-family: Asbigan;
        font-size: 2.6rem;
        font-weight: 500;
        color: #006f76;
        margin: 0;
        padding: 24px 0 0;
        line-height: 1.2;
      }

      & .subfaq {
        text-align: left;
        font-size: 1.2rem;
        font-weight: 300;

        a {
          color: #006f76;
          text-decoration: none;

          &:hover {
            text-decoration: underline;
          }
        }
      }
    }

    & .faq-grid {
      width: 50%;
    }
  }
}

.faq-item {
  border-bottom: 1px solid #555;
  padding: 12px 0;

  & .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    & h4 {
      font-size: 1rem;
      font-weight: 500;
    }
  }

  & .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-icon {
  font-size: 20px;
  transition: 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* BLOG SECTION */

.blog-container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background: #fff;
  color: #000;

  & .blog {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    margin: 0 auto;
    background: #fff;
    color: #000;

    & .blog-header {
      display: flex;
      flex-direction: row;
      text-align: left;
      width: 100%;
      justify-content: space-between;
      align-items: start;
      margin-bottom: 40px;

      & h2 {
        font-family: Asbigan;
        font-size: 2.6rem;
        font-weight: 500;
        color: #006f76;
        margin: 0;
        padding: 24px 0 0;
        line-height: 1.2;
        width: 50%;
        text-align: left;
      }

      & p {
        width: 50%;
        text-align: left;
        font-size: 1.2rem;
        font-weight: 300;
      }
    }

    & .blog-wrapper {
      display: flex;
      justify-content: space-between;
      gap: 40px;

      & .blog-card {
        width: 31%;
        background: #f2f2f2;
        padding: 16px;
        border-radius: 16px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;

        &:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          color: #000;
        }

        & img {
          width: 100%;
          height: 250px;
          border-radius: 8px;
          object-fit: cover;

          &.position {
            object-position: calc(100%) calc(100% + 50px);
          }
        }

        & h3 {
          font-family: Asbigan;
          font-size: 1.4rem;
          font-weight: 500;
        }

        & p {
          font-size: 1rem;
          font-weight: 300;
        }
      }
    }
  }
}

/* CTA SECTION */

.cta-container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background: #006f76;
  color: #fff;

  & .cta-section {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;

    & h2 {
      font-family: Asbigan;
      font-size: 2.2rem;
      font-weight: 500;
      margin: 0;
    }

    & p {
      font-size: 1rem;
      font-weight: 300;
      max-width: 600px;
      margin-bottom: 25px;
    }

    & .cta-form {
      background-color: #f2f2f2;
      align-items: center;
      padding: 8px;
      border-radius: 50px;
      display: flex;
      flex-direction: row;
      gap: 40px;

      & input {
        display: flex;
        flex-direction: row;
        width: 250px;
        font-size: 0.8rem;
        font-weight: 400;
        padding: 16px 40px;
        margin: 0 0 0 8px;
        background-color: #f2f2f2;
        color: #000;
        border: none;
        border-radius: 40px;
      }

      & button {
        font-family: Asbigan;
        font-size: 1rem;
        font-weight: 500;
        padding: 16px 40px;
        background-color: #006f76;
        color: #fff;
        border: #006f76 1px solid;
        border-radius: 40px;
        cursor: pointer;

        &:hover {
          background: #ffffff00;
          color: #006f76;
          border: #006f76 1px solid;
        }
      }
    }
  }
}

/* FOOTER */

.footer-container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background: #fff;
  color: #000;

  & .footer {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 80px 0 0;
    margin: 0 auto;
    background: #fff;
    color: #000;
    gap: 24px;

    & .footer-logo {
      width: 200px;
      height: auto;
      margin: 0;
      padding: 0;
    }

    & .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding: 20px 0;
      font-size: 12px;
      color: #555;
      border-top: 1px solid #555;
    }
  }
}

.footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
  padding: 0;
  width: 100%;

  & .footer-brand {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding: 0;
    margin: 0;
    color: #000;
    gap: 20px;

    & p {
      font-size: 1rem;
      font-weight: 300;
    }

    & .footer-socials a {
      margin-right: 20px;
      color: #006f76;

      & img {
        width: auto;
        height: 28px;
      }
    }
  }

  & .footer-contact {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding: 0;
    margin: 0;
    color: #000;
    gap: 12px;

    & h3 {
      font-family: Asbigan;
      font-size: 1.4rem;
      font-weight: 500;
      margin: 0 0 10px;
      padding: 0;
    }

    & p {
      display: grid;
      grid-template-columns: 0.5fr 1fr;
      gap: 10px;
      font-size: 1rem;
      font-weight: 300;
      margin: 0;
      padding: 0;

      & strong {
        font-weight: 600;
      }

      & a {
        color: #000;
        text-decoration: none;

        &:hover {
          color: #006f76;
          text-decoration: underline;
        }
      }
    }

    & .footer-btn {
      width: fit-content;
      padding: 16px 40px;
      margin: 10px 0 0;
      background: #006f76;
      color: #fff;
      border: #006f76 1px solid;
      text-decoration: none;
      border-radius: 30px;
      display: inline-block;
      font-size: 15px;

      &:hover {
        background: #ffffff00;
        color: #006f76;
        border: #006f76 1px solid;
      }
    }
  }
}

/* RESPONSIVE */
@media (max-width: 1500px) {
  .cc-container {
    & .cc {
      width: 90%;
    }
  }

  .nav-container {
    & nav {
      width: 90%;
    }
  }

  .main {
    width: 90%;
  }

  .about-container {
    & .about {
      width: 90%;
    }
  }

  .travel-blocks {
    & .travel-row {
      width: 90%;
    }
  }

  .why-choose-container {
    & .why-choose {
      width: 90%;
    }
  }

  .testimonials-container {
    & .testimonials {
      width: 90%;
    }
  }

  .faq-container {
    & .faq {
      width: 90%;
    }
  }

  .blog-container {
    & .blog {
      width: 90%;
    }
  }

  .cta-container {
    & .cta-section {
      width: 90%;
    }
  }

  .footer-container {
    & .footer {
      width: 90%;
    }
  }
}

@media (max-width: 1200px) {
  .nav-container {
    & nav {
      & .logo {
        & h2 {
          font-size: 1.7rem;
        }
      }
    }
  }

  .main {
    flex-direction: column;
    padding: 80px 0 20px;

    & .main1 {
      width: 75%;
      align-items: center;

      & h1 {
        text-align: center;
      }

      & p {
        text-align: center;
      }
    }

    & .main2 {
      width: 70%;
      display: flex;
      justify-content: center;

      & .mainimage {
        width: 100%;
      }

      & .maintext {
        text-align: center;

        & .quote-box {
          width: 300px;
        }
      }
    }
  }

  .about-container {
    & .about {
      flex-direction: column;
      text-align: center;
      gap: 40px;
      justify-content: center;
      padding: 80px 0;

      & div {
        width: 75%;

        &.about1 {
          & h2 {
            width: 100%;
            margin: 0;
          }
        }

        &.about2 {
          border-top: #fff 1px solid;
          padding-top: 40px;

          & p {
            width: 100%;
          }
        }
      }
    }
  }

  .travel-blocks {
    background-size: 450px auto;
    background-position: calc(100% + 200px) calc(100% + 180px);

    & .travel-row {
      width: 85%;
    }

    & .travel-content {
      max-width: 450px;
    }
  }
}

@media (max-width: 1050px) {
  .form-row {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 950px) {
  .nav-container {
    & nav {
      & .links {
        & ul {
          display: none;
        }
      }

      & .links-dropdown {
        display: inline;
      }
    }
  }

  .nav-container {
    & nav {
      & .links-dropdown {
        & button {
          display: none;
        }
      }
    }
  }

  .travel-blocks {
    & .travel-row {
      flex-direction: column;
      text-align: center;
      gap: 80px;

      &.reverse {
        flex-direction: column;
      }
    }
  }

  .travel-image {
    width: 90%;
    max-width: 420px;
  }

  .travel-content {
    max-width: 90%;
  }

  .travel-image .shape {
    left: -20px;
    top: 25px;
  }
}

@media (max-width: 850px) {
  .main {
    & .main2 {
      width: 80%;
    }
  }

  .testimonials-container {
    & .testimonials {
      & .testi-grid {
        & div:nth-child(3) {
          transform: none;
        }

        & .testi-card {
          width: 75%;
          margin: 0 auto;
        }
      }
    }
  }

  .faq-container {
    & .faq {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 20px;

      & .faq-side {
        width: 90%;
      }

      & .faq-grid {
        width: 90%;
      }
    }
  }

  .blog-container {
    & .blog {
      & .blog-header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;

        & h2 {
          width: 90%;
          text-align: center;
        }

        & p {
          width: 90%;
          text-align: center;
        }
      }

      & .blog-wrapper {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;

        & .blog-card {
          width: 75%;
        }
      }
    }
  }

  .footer-grid {
    gap: 40px;

    & .footer-brand {
      width: 40%;
    }

    & .footer-contact {
      width: 50%;
    }
  }
}

@media (max-width: 700px) {
  .nav-container {
    & nav {
      & .logo {
        & h2 {
          display: none;
        }
      }
    }
  }

  .main {
    & .main2 {
      width: 90%;
    }
  }

  .footer-grid {
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 40px;

    & .footer-brand {
      width: 90%;
    }

    & .footer-contact {
      width: 90%;
    }
  }
}

@media (max-width: 600px) {
  .main {
    & .main1 {
      width: 100%;

      & h1 {
        font-size: 2.5rem;

        & br {
          display: none;
        }
      }
    }

    & .main2 {
      width: 100%;

      & .maintext {
        top: -180px;
      }
    }
  }
}

@media (max-width: 550px) {
  .cc-container {
    & .cc {
      & span#cc {
        display: none;
      }

      & span#cc-dropdown {
        display: inline;
      }
    }
  }

  .nav-container {
    & nav {
      & div.nav {
        gap: 0px;
      }
      & span {
        & button {
          display: none;
        }
      }
    }
  }

  .nav-container {
    & nav {
      & .links-dropdown {
        & a {
          text-decoration: none;
        }
        & button {
          display: flex;
        }
      }
    }
  }

  .main {
    & .main1 {
      & span {
        width: 90%;

        & form {
          flex-direction: column;
          border-radius: 32px;
          width: 100%;
          gap: 12px;

          & button {
            width: 100%;
          }

          & input {
            width: 100%;
            margin: 0;
            text-align: center;
            border: #555 1px solid;
          }
        }
      }
    }

    & .main2 {
      & .maintext {
        flex-direction: column;
        position: initial;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto 40px;

        & .trip-count {
          width: 100%;
        }

        & .quote-box {
          width: 100%;
        }
      }
    }
  }

  .about-container {
    & .about {
      & div {
        width: 100%;

        &.about2 {
          & ul {
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
          }
        }
      }
    }
  }

  .travel-blocks {
    & .travel-image {
      width: 250px;
    }
  }

  .testimonials-container {
    & .testimonials {
      & .testi-grid {
        & .testi-card {
          width: 100%;
        }
      }
    }
  }

  .blog-container {
    & .blog {
      & .blog-wrapper {
        & .blog-card {
          width: 100%;
        }
      }
    }
  }

  .why-choose-container {
    & .why-choose {
      & h2 {
        & br {
          display: none;
        }
      }
    }
  }

  .cta-container {
    & .cta-section {
      & .cta-form {
        flex-direction: column;
        border-radius: 32px;
        width: 90%;
        gap: 12px;

        & button {
          width: 100%;
        }

        & input {
          width: 100%;
          margin: 0;
          text-align: center;
          border: #555 1px solid;
        }
      }
    }
  }

  .footer-container {
    & .footer {
      & .footer-logo {
        margin: 0 auto;
      }
    }
  }

  .footer-grid {
    align-items: center;

    & .footer-brand {
      width: 90%;
      align-items: center;
      text-align: center;
    }

    & .footer-contact {
      width: 90%;
      align-items: center;
    }
  }
}

@media (max-width: 400px) {
  .booking-container {
    width: 90%;
  }

  .gallery-container {
    width: 90%;
  }

  .why-choose-container {
    & .features-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }
}

.page-header {
  width: 75%;
  margin: 0 auto;
  padding: 60px 0 40px;
  text-align: center;
}
.page-header h1 {
  font-family: Asbigan;
  font-size: 3.5rem;
  color: #006f76;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* BOOKINGS FORM STYLES */
.booking-container {
  width: 75%;
  max-width: 800px;
  margin: 0 auto 80px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 30px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #006f76;
}
.submit-btn {
  background-color: #006f76;
  color: #fff;
  font-family: Asbigan;
  font-size: 1.2rem;
  padding: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}
.submit-btn:hover {
  background-color: #006f76;
}

/* GALLERY GRID STYLES */
.gallery-container {
  width: 75%;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 350px;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Cards inside Gallery */
.blog-item {
  background-color: #f2f2f2;
  padding: 30px;
  display: flex;
  align-items: center;
}
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog-content .tag {
  background: #006f76;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  width: fit-content;
}
.blog-content h3 {
  font-family: Asbigan;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
}
.blog-content p {
  font-size: 0.9rem;
  margin: 0;
  color: #555;
}
.blog-content a {
  color: #006f76;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cc,
  .nav-container nav,
  .main,
  .about,
  .travel-row,
  .footer {
    width: 90%;
  }
  .travel-row,
  .travel-row.reverse,
  .faq,
  .footer-grid,
  .form-row {
    flex-direction: column;
    gap: 30px;
  }
  .travel-image,
  .travel-content {
    width: 100%;
  }
  .main {
    padding-top: 40px;
  }
  .main .main1,
  .main .main2 {
    width: 100%;
  }
  .main .main2 .maintext {
    top: -60px;
  }
}

/* PACKAGES PAGE STYLES */

/* Hero Section */
.pkg-hero {
  width: 100svw;
  height: 60vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/assets/images/content/1761292810671.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.pkg-hero-content h1 {
  font-family: Asbigan;
  font-size: 4rem;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.pkg-hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.pkg-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary {
  background-color: #006f76;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #fff;
  color: #006f76;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #006f76;
  padding: 13px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #fff;
  color: #006f76;
  border: 2px solid #006f76;
}

/* Brand Promise Section */
.brand-promise {
  padding: 80px 0;
  background-color: #fff;
}

.promise-container {
  width: 75%;
  margin: 0 auto;
}

.promise-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.promise-text h2 {
  font-family: Asbigan;
  font-size: 2.5rem;
  color: #006f76;
  margin-bottom: 10px;
}

.promise-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.p-card {
  flex: 1;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.p-card:hover {
  transform: translateY(-10px);
}

.p-card img {
  height: 60px;
  margin-bottom: 20px;
}

.p-card h3 {
  font-family: Asbigan;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

/* Group Trips Section */
.packages-section {
  padding: 100px 0;
}
.bg-light {
  background-color: #f2f2f2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: Asbigan;
  font-size: 3rem;
  color: #006f76;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.pkg-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pkg-image {
  position: relative;
  height: 200px;
}

.pkg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #c5ebf4;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.pkg-details {
  padding: 25px;
}

.pkg-details h3 {
  font-family: Asbigan;
  font-size: 1.8rem;
  color: #006f76;
  margin-bottom: 10px;
}

.pkg-date {
  color: #555;
  font-weight: 600;
  margin-bottom: 15px;
}

.pkg-details p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.pkg-btn {
  display: inline-block;
  background-color: #006f76;
  border: 2px solid #006f76;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.pkg-btn:hover {
  background-color: #f2f2f2;
  color: #006f76;
}

/* Special Card */
.special-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #006f76, #006f76);
  color: #fff;
}

.special-card .pkg-details {
  text-align: center;
  width: 100%;
}

.special-card .pkg-details h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.2rem;
  color: #c5ebf4;
  margin-bottom: 5px;
}

.special-card .pkg-details h2 {
  font-family: Asbigan;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.special-card .pkg-details p {
  color: rgba(255, 255, 255, 0.85);
}

.pkg-btn-dark {
  background-color: #fff;
  color: #006f76;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.pkg-btn-dark:hover {
  opacity: 0.9;
}

/* Private/Bespoke Section */
.bespoke-section {
  padding: 100px 0;
}

.bespoke-wrapper {
  display: flex;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bespoke-image {
  flex: 1;
}

.bespoke-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bespoke-content {
  flex: 1;
  padding: 60px 50px;
}

.sub-heading {
  display: block;
  color: #006f76;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.bespoke-content h2 {
  font-family: Asbigan;
  font-size: 3rem;
  color: #006f76;
  margin-bottom: 20px;
}

.bespoke-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.bespoke-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.bespoke-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
}

.bespoke-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #006f76;
  font-weight: bold;
}

.bespoke-features strong {
  color: #333;
}

/* Corporate Banner */
.corporate-banner {
  position: relative;
  background: url("/assets/images/content/1761292798364.jpeg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  margin-top: 100px;
}

.corp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.corp-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.corp-content h2 {
  font-family: Asbigan;
  font-size: 3rem;
  margin-bottom: 15px;
  color: #c5ebf4;
}

.corp-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-white {
  display: inline-block;
  background-color: #fff;
  color: #006f76;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
  margin-top: 20px;
}

.btn-white:hover {
  opacity: 0.9;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px 10px 0;
}

.trip-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
  backdrop-filter: blur(5px);
}

.trip-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.trip-modal-header {
  background-color: #f4f4f4;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trip-modal-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.close-modal {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #000;
}

.trip-modal-body {
  padding: 25px;
  font-family: sans-serif;
  line-height: 1.6;
  color: #444;
}

.trip-lists {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.trip-lists h4 {
  margin-bottom: 10px;
  color: #222;
  border-left: 4px solid #000; /* Accent color */
  padding-left: 10px;
}

.trip-lists ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 0;
}

.trip-price-highlight {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin: 15px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
  text-align: center;
}

.trip-modal-footer {
  padding: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  background-color: #fcfcfc;
  border-radius: 0 0 8px 8px;
}

.trip-modal-footer a button {
  cursor: pointer;
}

@media screen and (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    margin-left: 7%;
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet View */
@media (max-width: 1024px) {
  .package-grid {
    /* Switch to 2 columns on tablets */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .bespoke-wrapper {
    width: 90%;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  /* Fix Hero Text Size */
  .pkg-hero-content h1 {
    font-size: 2.5rem;
  }

  .pkg-hero-content p {
    font-size: 1rem;
    padding: 0 20px;
  }

  /* Stack Hero Buttons */
  .pkg-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* Stack Brand Promise Cards */
  .promise-cards {
    flex-direction: column;
    gap: 30px;
  }

  /* Stack Package Grid (1 column) */
  .package-grid {
    grid-template-columns: 1fr;
    width: 90%;
  }

  /* Fix Bespoke/Private Section layout */
  .bespoke-wrapper {
    flex-direction: column; /* Stack image on top of text */
  }

  .bespoke-image {
    height: 250px; /* Limit image height on mobile */
  }

  .bespoke-content {
    padding: 30px 20px;
  }

  .bespoke-content h2 {
    font-size: 2rem;
  }

  /* Modal Adjustments for Mobile */
  .trip-modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .trip-lists {
    flex-direction: column; /* Stack Includes/Excludes */
  }
}

main.faq .faq-hero {
  width: 100svw;
  height: 40vh;
  background-color: #006f76;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

main.faq .faq-hero-content h1 {
  font-family: Asbigan, serif;
  font-size: 3.5rem;
  margin: 0 0 15px 0;
}

main.faq .faq-hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

main.faq .faq-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

main.faq .faq-container {
  width: 75%;
  max-width: 900px;
  margin: 0 auto;
}

main.faq .faq-category {
  margin-bottom: 50px;
}

main.faq .faq-category h2 {
  font-family: Asbigan, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #006f76;
  border-bottom: 2px solid #c5ebf4;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

main.faq .faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

main.faq .faq-question {
  font-family: "Poppins", sans-serif;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

main.faq .faq-question:hover {
  background-color: #f9f9f9;
  color: #006f76;
}

main.faq .faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #006f76;
  transition: transform 0.3s ease;
}

main.faq .faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

main.faq .faq-answer {
  overflow: hidden;
}

main.faq .faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

main.faq .faq-item.active .faq-question {
  color: #006f76;
}

main.faq .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

main.faq .faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

@media (max-width: 768px) {
  main.faq .faq-container {
    width: 90%;
  }

  main.faq .faq-hero-content h1 {
    font-size: 2.5rem;
    padding: 0 15px;
  }

  main.faq .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  main.faq .faq-answer p {
    padding: 0 20px 15px 20px;
  }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 0;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--brand-teal);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: #006f76;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

.reviewer-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--brand-teal);
}

.rating-select {
  width: 100%;
}

.reviews-display {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;

  .container {
    width: 75%;
  }
}

.reviews-display .container h2 {
  width: 75%;
  font-family: Asbigan, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #006f76;
  border-bottom: 2px solid #c5ebf4;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: center;
  margin: 0 auto;
}

.review-head {
  font-family: Asbigan, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #006f76;
  text-align: center;
  margin: 0 auto;
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 5px;
  width: auto;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  font-weight: normal;
  cursor: pointer;
}
