.PackageSection {
  padding: 100px 0;

  @media (max-width: 992px) {
    padding: 70px 0;
  }
  @media (max-width: 768px) {
    padding: 50px 0;
  }
  @media (max-width: 576px) {
    padding: 40px 0;
  }

  .Title {
    width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;

    @media (max-width: 768px) {
      width: 100%;
      margin-bottom: 60px;
    }

    .Tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
      justify-content: center;

      @media (max-width: 576px) {
        flex-wrap: wrap;
      }

      button {
        padding: 10px 20px;
        border: none;
        background: #eee;
        cursor: pointer;
        border-radius: 50px;
        transition: 0.3s;

        @media (max-width: 576px) {
          padding: 8px 16px;
          font-size: 14px;
        }

        &.active {
          background: var(--primary-color);
          color: #fff;
        }
      }
    }
  }

  .ContentSection {
    .TabContent {
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;

      &.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }
    }

    .Flex {
      display: flex;
      gap: 24px;
      flex-flow: row wrap;

      @media (max-width: 992px) {
        flex-direction: column;
      }

      .Cnt {
        width: calc(70% - 12px);

        @media (max-width: 992px) {
          width: 100%;
        }

        .Header {
          h3 {
            font-size: 22px;
            margin-bottom: 13px;

            @media (max-width: 576px) {
              font-size: 18px;
            }
          }
        }

        .Fleature {
          margin: 30px 0;
          display: flex;
          align-items: start;
          gap: 24px;

          @media (max-width: 768px) {
            flex-wrap: wrap;
          }

          li {
            width: calc(33.33% - 16px);
            background-color: #fff;
            padding: 25px;
            border-radius: 16px;
            border: 1px solid #ddd;

            @media (max-width: 992px) {
              width: calc(50% - 12px);
            }
            @media (max-width: 576px) {
              width: 100%;
              padding: 20px;
            }

            i {
              width: 40px;
              height: 40px;
              display: flex;
              align-items: center;
              justify-content: center;
              background-color: var(--primary-color);
              border-radius: 8px;
              color: #fff;
            }

            h4 {
              font-size: 19px;
              margin: 14px 0;

              @media (max-width: 576px) {
                font-size: 17px;
              }
            }

            p {
              font-size: 16px;

              @media (max-width: 576px) {
                font-size: 14px;
              }
            }
          }
        }

        .Sub {
          h3 {
            font-size: 22px;
            margin-bottom: 35px;

            @media (max-width: 576px) {
              font-size: 18px;
            }
          }
        }
      }

      .Package {
        width: calc(30% - 12px);
        background-color: #ffefef;
        padding: 25px;
        border-radius: 16px;
        height: fit-content;
        border: 1px solid var(--primary-color);
        position: sticky;
        top: 50px;

        @media (max-width: 992px) {
          width: 100%;
          position: static;
          margin-top: 20px;
        }

        h4 {
          font-size: 20px;
          font-weight: 600;
          margin-bottom: 10px;
        }

        h1 {
          font-size: 32px;
          font-weight: 700;
          color: var(--primary-color);
          margin-bottom: 20px;

          @media (max-width: 576px) {
            font-size: 26px;
          }

          span {
            font-size: 16px;
            font-weight: 500;
            color: #555;
            margin-left: 5px;
          }
        }

        ul {
          margin-bottom: 25px;

          li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            margin-bottom: 25px;

            @media (max-width: 576px) {
              font-size: 14px;
              margin-bottom: 15px;
            }

            i {
              color: #28a745;
            }
          }
        }

        button {
          width: 100%;
          padding: 14px;
          border: none;
          border-radius: 30px;
          background: var(--primary-color);
          color: #fff;
          font-weight: 600;
          cursor: pointer;
          transition: 0.3s;
        }
      }

      .Itinerary {
        position: relative;

        &::after {
          content: "";
          width: 1px;
          height: 75%;
          background-color: var(--primary-color);
          position: absolute;
          left: 12px;
          top: 10px;
          @media (max-width: 768px) {
            left: 9px;
          }
        }

        li {
          position: relative;
          padding-left: 50px;
          margin: 25px 0;

          @media (max-width: 576px) {
            padding-left: 40px;
          }

          &::before {
            content: "";
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background-color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 15px;
            transform: translateY(-50%);

            @media (max-width: 576px) {
              width: 18px;
              height: 18px;
              top: 13px;
            }
          }

          h3 {
            font-size: 18px;
            margin-bottom: 8px;

            @media (max-width: 576px) {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
}
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
.Inquiry {
  padding: 80px 0;

  @media (max-width: 992px) {
    padding: 60px 0;
  }
  @media (max-width: 576px) {
    padding: 40px 0;
  }

  .Wrap {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ddd;

    @media (max-width: 992px) {
      flex-direction: column;
    }

    @media (max-width: 576px) {
      padding: 15px;
      gap: 20px;
    }
  }

  .Left {
    position: relative;
    width: 30%;
    border-radius: 12px;
    overflow: hidden;

    @media (max-width: 992px) {
      width: 100%;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .Content {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 25px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;

      @media (max-width: 576px) {
        padding: 30px;
      }

      h2 {
        font-size: 26px;
        margin-bottom: 10px;

        @media (max-width: 576px) {
          font-size: 20px;
        }
      }

      p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;

        @media (max-width: 576px) {
          font-size: 13px;
          margin-bottom: 15px;
        }
      }

      .Info {
        div {
          display: flex;
          align-items: center;
          gap: 10px;
          margin-bottom: 10px;

          i {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;

            @media (max-width: 576px) {
              width: 30px;
              height: 30px;
            }
          }

          span {
            font-size: 14px;

            @media (max-width: 576px) {
              font-size: 13px;
            }
          }
        }
      }
    }
  }

  .Right {
    width: 70%;

    @media (max-width: 992px) {
      width: 100%;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    label {
      display: block;
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 6px;
      color: #333;

      @media (max-width: 576px) {
        font-size: 14px;
      }
    }

    .Row {
      display: flex;
      gap: 15px;

      @media (max-width: 576px) {
        flex-direction: column;
      }

      > div {
        width: 100%;
        position: relative;
      }

      input,
      select {
        width: 100%;
        padding: 13px 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        outline: none;
        font-size: 15px;
        transition: 0.3s;
        background-color: #fff;

        @media (max-width: 576px) {
          padding: 11px 12px;
          font-size: 14px;
        }

        &:focus {
          border-color: var(--primary-color);
        }
      }

      select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 40px;
        cursor: pointer;
      }

      > div:has(select)::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 14px;
        top: 45px;
        transform: translateY(-50%);
        font-size: 13px;
        color: #666;
        pointer-events: none;

        @media (max-width: 576px) {
          top: 40px;
        }
      }
    }

    textarea {
      width: 100%;
      height: 100px;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #ddd;
      outline: none;
      resize: none;
      font-size: 14px;
      transition: 0.3s;
      font-family: "Manrope", sans-serif;

      @media (max-width: 576px) {
        height: 90px;
        font-size: 13px;
      }

      &:focus {
        border-color: var(--primary-color);
      }
    }

    input[type="submit"] {
        width: 100%;

      background: var(--primary-color);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;

      @media (max-width: 576px) {
        padding: 12px;
        font-size: 14px;
      }

      &:hover {
        opacity: 0.9;
      }
    }

    .Note {
      font-size: 12px;
      text-align: center;
      color: #777;
    }
  }
}
