.header {
  background-color: var(--color-secondary);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar {
  width: 100%;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav-logo a img {
  height: auto;
  width: 8rem;
  object-fit: contain;
}
.nav-menu-wrapper ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  margin-right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.nav-toggle .hamburger {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary, #333);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.nav-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Mobile Menu Styles ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu-wrapper.active {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
  }

  .nav-menu-wrapper ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-menu-wrapper li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu-wrapper a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--color-primary, #333);
    transition: background-color 0.2s;
  }

  .nav-menu-wrapper a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Hide desktop menu on mobile */
  .nav-menu-wrapper ul {
    display: none;
  }

  .nav-menu-wrapper.active ul {
    display: flex;
  }
}

/* ===== Desktop Reset (above 768px) ===== */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu-wrapper {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .nav-menu-wrapper ul {
    display: flex !important;
  }
}

.welcome-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  place-items: center;

  h1 {
    position: relative;
    &::after {
      content: "";
      width: 100%;
      height: 0.3rem;
      border-radius: 0.5rem;
      position: absolute;
      bottom: -0.2rem;
      left: 0;
      background-color: var(--color-primary-dark);
    }
  }

  .welcome-logo {
    width: auto;
    height: 5rem;
    object-fit: cover;
    border-radius: 1rem;
  }

  .welcome-content {
    display: flex;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;

    .welcome-content-img {
      width: 100%;
      max-width: 35rem;
      height: auto;
      object-fit: contain;
      border-radius: 1rem;
    }
    .welcome-content-text-wrapper {
      width: 100%;
      max-width: 35rem;
      text-align: center;
      display: grid;

      h2 {
        color: var(--color-primary-dark);
        font-size: 1.8rem;
        margin-bottom: 2rem;
      }
      p {
        font-size: 1.1rem;
        font-weight: 300;
        margin-bottom: 1rem;
      }
      ul {
        display: grid;
        grid-template-columns: 1fr;
        text-align: left;
        font-size: 0.9rem;
        gap: 1rem;
        li {
          display: flex;
          align-items: center;
          background-color: rgb(247, 247, 247);
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          padding: 0.5rem 1rem;
          border-radius: 1rem;
          font-weight: 500;
        }
      }
    }
  }
}
@media (min-width: 600px) {
  .welcome-wrapper {
    gap: 1.5rem;
    .welcome-content {
      flex-direction: row !important;
      gap: 3rem;
    }
    .welcome-content-text-wrapper {
      ul {
        grid-template-columns: 1fr 1fr !important;
      }
    }
  }
}

.container {
  .section-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    h2 {
      font-size: 2rem;
    }
    img {
      width: 2.2rem;
      height: auto;
      object-fit: contain;
    }
  }
  .container-p {
    font-size: 1.1rem;
    padding-left: 2.5rem;
  }
}

.tours-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;

  .tour-card,
  .section-footer {
    width: 100%;
    max-width: 23rem;
    height: 28rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;

    &:hover {
      img {
        transform: scale(1.2);
      }
      h3 {
        color: var(--color-primary) !important;
      }
    }

    &:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.185);
      position: absolute;
      z-index: 1;
    }
    > * {
      z-index: 10;
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: all 0.5s;
    }
    .tour-content {
      height: auto;
      max-height: 15rem;
      position: absolute;
      left: 0;
      bottom: 0;
      padding: 0.5rem 1rem 0.2rem;
      backdrop-filter: blur(5px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 0.4rem;

      > * {
        position: relative;
        z-index: 10;
        color: var(--color-text-primary);
      }
      .tour-title-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: center;
        width: 100%;

        span {
          background-color: var(--bg-primary);
          color: var(--color-text-secondary);
          padding: 0.3rem 0.8rem;
          font-weight: bolder;
          border-radius: 1rem;
        }
        h3 {
          color: var(--color-text-primary);
          font-weight: bolder;
          font-size: 1.4rem;
        }
      }
      .tour-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.9rem;
        text-align: left;
      }
      .tour-link {
        display: block;
        width: 90%;
        background-color: var(--bg-primary);
        color: var(--color-text-secondary);
        text-align: center;
        padding: 0.5rem 0;
        border-radius: 0.8rem;
      }
      .tour-meta {
        width: 100%;
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        .tour-category-badge,
        .tour-destination-badge {
          font-size: 0.8rem;
        }
      }
    }
  }
  .section-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    > a {
      height: 100%;
      width: 100%;
    }

    .footer-items-container {
      gap: 1rem;
      padding: 0.4rem 1rem;
      background-color: var(--bg-primary);
      border-radius: 1rem;
      transition: all 0.5s;
    }
    a {
      color: var(--color-text-secondary);
    }
    &:after {
      display: none;
    }
    img {
      position: relative;
      width: 2.1rem;
      height: 2.1rem;
      z-index: 0;
    }
    &:hover {
      .footer-items-container {
        padding: 0.4rem 3rem 0.4rem 1rem;
      }
      img {
        animation: moreHover 0.5s infinite alternate ease;
        filter: invert(77%) sepia(64%) saturate(4697%) hue-rotate(2deg)
          brightness(106%) contrast(92%);
      }
    }
  }
}
.tour-packages {
  position: relative;
  .packages-container {
    gap: 2rem;

    .section-header {
      flex-direction: column;
      align-items: flex-start;
      max-width: 20rem;
    }

    .header-title-container {
      align-items: baseline;
      gap: 0.5rem;
      h2 {
        font-size: 3.5rem;
        line-height: 1.2;
      }
    }

    .container-p {
      font-size: 1rem;
      padding-left: 2.8rem;
    }

    /* Slider Navigation */
    .slider-nav-container {
      position: absolute;
      bottom: 0;
      right: 2rem;
      display: flex;
      gap: 1rem;
      z-index: 10;

      @media (max-width: 768px) {
        position: relative;
        justify-content: center;
        margin-top: 1rem;
      }
    }

    .swiper-button-prev,
    .swiper-button-next {
      position: relative;
      width: 3rem;
      height: 3rem;
      background-color: var(--color-primary);
      border-radius: 50%;
      color: white;
      margin-top: 0;
      left: auto;
      right: auto;

      &::after {
        font-size: 1.2rem;
        font-weight: bold;
      }

      &:hover {
        background-color: var(--color-primary-dark);
      }

      &.swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }
    }

    .packages-swiper {
      width: 100%;
      overflow: hidden;
      padding: 1rem 0.5rem;
    }

    .packages-list {
      display: flex;
    }

    .swiper-pagination {
      position: relative;
      margin-top: 2rem;

      .swiper-pagination-bullet {
        width: 0.8rem;
        height: 0.8rem;
        background-color: var(--color-primary);
        opacity: 0.5;

        &-active {
          opacity: 1;
          background-color: var(--color-primary-dark);
        }
      }
    }
  }
}

.package-card {
  height: 28rem !important;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  box-shadow:
    rgba(247, 140, 0, 0.25) 0px 6px 12px -2px,
    rgba(255, 136, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 140, 0, 0.3);
  }

  .package-card-img-container {
    position: relative;
    height: 16.5rem;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s;
    }

    span {
      position: absolute;
      bottom: 0rem;
      right: 0rem;
      background-color: white;
      padding: 0.5rem;
      font-weight: 900;
      font-size: 1.5rem;
      border-top-left-radius: 1rem;
      color: var(--color-primary);
      z-index: 2;
    }
  }

  .package-card-container {
    padding: 0rem 0.8rem 0.5rem;
    justify-content: space-between;
    height: calc(60% - 16.5rem);

    .package-card-header {
      padding: 0.5rem;
      justify-content: flex-end;

      img {
        width: 1.3rem;
        height: 1.3rem;
        object-fit: contain;
      }

      span {
        text-transform: capitalize;
        color: var(--color-text-secondary);
        font-weight: 500;
      }
    }

    .package-card-details {
      justify-content: center;

      h3 {
        height: 3.5rem;
        overflow: hidden;
        color: var(--color-text-secondary);
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1rem;
      }

      .package-card-footer {
        gap: 1rem;
        justify-content: center;
        background-color: var(--bg-primary);
        padding: 0.2rem 0.6rem;
        border-radius: 1rem;
        transition: all 0.3s ease-in;

        img {
          width: 2.2rem;
          height: 2.2rem;
          object-fit: contain;
        }

        span {
          color: var(--color-text-secondary);
        }
      }
    }
  }

  &:hover {
    .package-card-img-container {
      img {
        transform: scale(1.2);
      }
    }

    .package-card-details {
      .package-card-footer {
        background-color: var(--color-primary-dark);
        gap: 2rem;

        span {
          color: white;
        }

        img {
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(67deg)
            brightness(104%) contrast(104%);
        }
      }
    }
  }
}

footer {
  background-color: var(--bg-secondary);
}
.footer-container {
  padding: 5rem 2rem;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
  * {
    color: var(--color-text-primary);
  }

  .footer-logo-container {
    .footer-logo-info {
      img {
        width: auto;
        height: 8rem;
        object-fit: contain;
      }
    }
    .footer-social-media {
      gap: 2rem;
      padding-top: 1rem;
      margin-top: 1rem;
      border-top: thin solid var(--color-primary);
      img {
        filter: invert(77%) sepia(64%) saturate(4697%) hue-rotate(2deg)
          brightness(106%) contrast(92%);
      }
    }
  }
  .footer-nav-colummn {
    max-width: 18rem;
    h4 {
      font-size: 1.4rem;
      color: var(--color-primary);
    }
    ul {
      padding-left: 2rem;
      margin: 1.5rem 0;
      li {
        list-style: circle;
        a {
          font-size: 1.1rem;
        }
      }
    }
  }
}
.footer-map {
  width: 100%;
  height: 25rem;
  iframe {
    width: 100%;
    height: 100%;
  }
}
.footer-copy {
  padding: 0.8rem 0;
  background-color: #005fcc;
  font-size: 0.8rem;
  .copy-axom {
    gap: 1rem;
    a {
      color: var(--color-text-primary);
    }
    img {
      width: 1.8rem;
      height: 1.8rem;
    }
  }
  .second-copy {
    color: var(--color-text-primary);
  }
}

.gallery {
  height: 90vh;
  max-height: 40rem;
  position: relative;
  img {
    height: 90vh;
    max-height: 40rem !important;
  }
  > * {
    z-index: 90;
  }
  .tour-banner-container {
    position: absolute;
    top: 50%;
    left: 4rem;
    transform: translate(0, -50%);
    z-index: 99;
    color: #fff;
    width: 60%;
    max-width: 40rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;

    .tour-banner-details {
      h1 {
        font-size: 2.6rem;
      }
      p {
        font-size: 0.9rem;
        margin: 0.8rem 0;
      }
      .tour-banner-button {
        padding: 0.8rem 2rem;
        border-radius: 1.5rem;
        outline: none;
        border: 0;
        background-color: #f59f0b81;
        transition: all 0.3s ease;
        a {
          font-size: 1.2rem;
          font-weight: bolder;
          color: var(--color-text-primary);
          transition: all 0.3s ease-in-out;
        }
        &:hover {
          background-color: var(--color-primary-dark);
          a {
            color: var(--color-text-secondary);
          }
        }
      }
    }
    .banner-social {
      gap: 0.5rem;
      li {
        img {
          filter: invert(77%) sepia(64%) saturate(4697%) hue-rotate(2deg)
            brightness(106%) contrast(92%);
        }
      }
    }
  }
  .swiper-slide {
    position: relative;
    overflow: hidden;
    &::after {
      content: "";
      background-color: #00000057;
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 100%;
      z-index: 1;
    }
  }
}

.tour-page {
  color: var(--color-text-secondary);
  line-height: 1.6;

  header {
    background: linear-gradient(135deg, #000000 0%, #ffbb00 100%);
    color: white;
    padding: 1.3rem 1rem;
    justify-content: space-between;

    span {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      text-transform: capitalize;
      font-weight: 600;
    }
    .tour-price-header {
      background: #000000 !important;
      color: #ffffff;
      font-weight: 700;
    }
  }

  .tour-nav {
    background: var(--color-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 5rem;
    z-index: 100;
    ul {
      flex-wrap: wrap;
      gap: 1rem;
      list-style: none;
      padding: 1rem 0;
      margin: 0;
      li {
        a {
          color: var(--color-secondary) !important;
          text-decoration: none;
          padding: 0.5rem 1rem;
          border-radius: 5px;
          transition: all 0.3s ease;
          font-weight: 500;
          &:hover {
            background-color: var(--bg-secondary);
            color: white !important;
          }
        }
      }
    }
  }
  .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 22rem;
    gap: 1rem;
    .content-container {
      .info-section {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        scroll-margin-top: 80px;
        h2 {
          color: var(--color-text-secondary-dark);
          border-bottom: 3px solid #667eea;
          padding-bottom: 0.5rem;
          margin-top: 0;
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
        }
        h3 {
          color: var(--color-text-secondary);
        }
      }

      .inclusions-wrapper {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        .included-box,
        .excluded-box {
          background: #f8f9fa;
          padding: 1.5rem;
          border-radius: 8px;
          max-width: 25rem;
          ul {
            li {
              list-style: disc;
              margin-left: 1rem;
            }
          }
        }
        .included-box {
          border-left: 4px solid #28a745;
        }
        .excluded-box {
          border-left: 4px solid #dc3545;
        }
      }
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;

      .gallery-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        aspect-ratio: 4/3;
        .gallery-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: transform 0.5s ease;
        }

        &:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          .gallery-image {
            transform: scale(1.05);
          }
        }
      }
      .gallery-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 3rem;
        background: #f8f9fa;
        border-radius: 8px;
        color: #666;
      }
    }
    .booking-wrapper {
      background: #ececec;
      border-radius: 10px;
      padding: 1rem;

      .price-display {
        font-size: 2rem;
        font-weight: bold;
        color: #28a745;
        margin-bottom: 1rem;

        .price-label,
        .price-per {
          font-size: 1rem;
          color: #666;
          font-weight: normal;
        }
      }
      .booking-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .btn {
        display: inline-block;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
      }

      .btn-primary {
        background: #28a745;
        color: white;
      }

      .btn-primary:hover {
        background: #218838;
      }

      .btn-secondary {
        background: var(--color-primary);
        color: var(--color-text-primary);
      }

      .btn-secondary:hover {
        background: var(--color-text-secondary-dark);
      }
    }
  }
  .sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
    .sidebar-widget {
      text-align: center;
      h3 {
        color: #333;
        margin-top: 0;
        margin-bottom: 1rem;
      }
      .sidebar-price {
        font-size: 2rem;
        font-weight: bold;
        color: #28a745;
        margin: 1rem 0;
        span {
          font-size: 1rem;
          color: #666;
          font-weight: normal;
        }
      }
      .sidebar-btn {
        display: block;
        padding: 0.75rem 1rem;
        margin: 0.5rem 0;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      .sidebar-btn-primary {
        background-color: #28a745;
        color: white;
        &:hover {
          background-color: #218838;
        }
      }
      .sidebar-btn-secondary {
        background-color: var(--color-primary);
        color: white;
        &:hover {
          background-color: var(--color-primary-dark);
        }
      }
    }
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: modalFadeIn 0.3s ease;
}
.info-section {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  margin: 2vh auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 4px;
  animation: modalImageIn 0.4s ease;
}

@keyframes modalImageIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-caption {
  text-align: center;
  color: white;
  padding: 1rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  margin-top: 1rem;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #667eea;
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

@keyframes moreHover {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(2rem);
  }
}

.single-page {
  padding: 0 2rem;
  h1 {
    margin: 2rem 0;
    font-size: 2.5rem;
    font-weight: 600;
  }
  .single-page-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    .single-page-content {
      max-width: 60rem;
      img {
        margin: 1rem 0;
        border-radius: 2rem;
        max-width: 60%;
      }
      h2,
      h3 {
        padding-bottom: 0.5rem;
        border-bottom: thin solid var(--color-secondary);
        color: var(--color-primary);
        margin: 2rem 0;
        font-size: 1.8rem;
        font-weight: 500;
      }
      p {
        line-height: 1.6;
        letter-spacing: 0.05rem;
      }
    }
    .single-page-aside {
      max-width: 18rem;
      background-color: var(--bg-primary);
      padding: 2rem;
      border-radius: 2rem;
      height: min-content;
      position: sticky;
      top: 1rem;
      h2,
      h3 {
        margin: 1rem 0;
        font-size: 1.4rem;
        font-weight: 500;
      }
      .aside-img-container {
        flex-direction: column;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        img {
          width: 8rem;
          height: auto;
          object-fit: contain;
        }
      }
    }
  }
}

.tours-page {
  padding: 0 2rem;
  header {
    h1 {
      font-size: 2.2rem;
      margin: 2rem 0;
    }
    p {
      color: var(--color-text-secondary-dark);
      margin-bottom: 1rem;
    }
  }
  .tour-filters {
    position: sticky;
    top: 5.5rem;
    z-index: 999;
    background-color: var(--bg-secondary);
    border-radius: 1rem;
    padding: 0.5rem 0;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    .filters-container {
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    button {
      background-color: var(--color-primary);
      outline: none;
      border: 0;
      font-size: 1.2rem;
      text-transform: capitalize;
      padding: 0.5rem 1rem;
      border-radius: 1rem;
      &.active {
        background-color: var(--color-secondary);
        color: var(--color-text-primary);
        border: thin solid var(--color-primary-dark);
      }
    }
  }
}

.section-images {
  margin: 5rem 0;
  padding: 0 1.8rem;
  gap: 2rem;
  .img-container {
    gap: 2rem;
    flex-wrap: wrap;
    img {
      height: auto;
      width: 8rem;
      object-fit: contain;
    }
  }
}

@media (max-width: 768px) {
  .single-page {
    .single-page-container {
      grid-template-columns: 1fr;
      .single-page-aside {
        max-width: unset !important;
        .aside-img-container {
          flex-direction: row;
        }
      }
    }
  }
  .gallery {
    .tour-banner-container {
      width: 80%;
      flex-direction: column;
      .tour-banner-details {
        h1 {
          font-size: 1.7rem;
        }
        p {
          font-size: 0.8rem;
        }
      }
      .banner-social {
        flex-direction: row;
      }
    }
  }
  .tour-page {
    .content-wrapper {
      display: flex !important;
      flex-direction: column;
    }
    .sidebar {
      position: static;
    }
  }
  .packages-container {
    .section-header {
      text-align: center;
      align-items: center;

      h2 {
        font-size: 2.5rem;
      }
    }

    .container-p {
      padding-left: 0;
      text-align: center;
    }

    .packages-swiper {
      padding: 0.5rem;
    }

    .package-card {
      max-width: 100%;
    }
  }
  .modal-prev,
  .modal-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  .packages-container {
    flex-direction: column;
  }
  .section-header {
    max-width: 100% !important;
  }
}
