.VisachangePackages {
  margin: 80px 0;
  background-color: #f6f6f6;
  padding: 100px 0;

  @media (max-width: 992px) {
    padding: 70px 0;
    margin: 70px 0;
    margin-top: 70px;
  }

  @media (max-width: 768px) {
    padding: 50px 0;
    margin: 50px 0;
  }

  @media (max-width: 574px) {
    padding: 40px 0;
    margin: 40px 0;
  }

  .Title {
    max-width: 500px;
    margin-bottom: 40px;

    @media (max-width: 768px) {
      text-align: center;
      margin: 0 auto 30px;
    }
  }

  .Card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid transparent;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    &:last-child {
      margin-bottom: 0;
    }

    &:hover {
      border: 1px solid var(--primary-color);
    }

    @media (max-width: 992px) {
      flex-wrap: wrap;
      padding: 25px;
    }

    @media (max-width: 574px) {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .Titles {
      width: 35%;

      @media (max-width: 992px) {
        width: 100%;
      }

      h6 {
        color: var(--primary-color);
        font-size: 13px;
        text-transform: uppercase;
      }

      h3 {
        font-size: 22px;
        margin: 6px 0;
      }

      p {
        font-size: 15px;
      }

      .PillowWrap {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;

        .Pillow {
          display: flex;
          align-items: center;
          gap: 5px;
          background-color: #ffdfe4;
          padding: 6px 14px;
          border-radius: 20px;
          color: var(--primary-color);
          font-size: 13px;
          font-weight: 600;
        }
      }
    }

    .Points {
      width: 40%;

      @media (max-width: 992px) {
        width: 100%;
      }

      ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 18px;

        li {
          font-size: 15px;
          list-style: disc;
        }
      }
    }

    .PriceBtn {
      width: 25%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      height: 120px;

      @media (max-width: 992px) {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        height: 100px;
      }

      @media (max-width: 574px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
      }

      .Price {
        text-align: right;

        @media (max-width: 574px) {
          text-align: left;
        }

        h2 {
          font-size: 26px;
          font-weight: 900;
          color: var(--primary-color);
        }

        span {
          font-size: 14px;
          opacity: 0.7;
        }
      }

      button {
        background-color: var(--primary-color);
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 50px;
        border: 1px solid transparent;
        color: var(--white-color);
        cursor: pointer;
        transition: 0.3s;

        &:hover {
          background-color: var(--white-color);
          color: var(--primary-color);
          border: 1px solid var(--primary-color);
        }

        @media (max-width: 574px) {
          width: 100%;
          text-align: center;
        }
      }
    }
  }
}
.ImportenDetails {
  margin: 100px 0;

  @media (max-width: 992px) {
    margin: 70px 0;
  }
  @media (max-width: 768px) {
    margin: 50px 0;
  }
  @media (max-width: 574px) {
    margin: 40px 0;
  }

  .Title {
    text-align: center;
    max-width: 100%;
  }

  ul {
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;

    .BottomCard {
      background: #ffffff;
      border-radius: 16px;
      padding: 30px;
      width: calc(33.33% - 16px);

      @media (max-width: 992px) {
        width: calc(50% - 12px);
      }

      @media (max-width: 576px) {
        width: 100%;
      }

      @media (max-width: 768px) {
        padding: 20px;
      }

      i {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 20px;
        margin-bottom: 15px;
      }

      h3 {
        font-size: 20px;
        font-weight: 600;
        color: #222;
        margin-bottom: 10px;

        @media (max-width: 576px) {
          font-size: 18px;
        }
      }

      p {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        line-height: 1.6;
      }

      ul {
        padding-left: 18px;
        display: block;

        li {
          background: transparent;
          padding: 0;
          border-radius: 0;
          font-size: 14px;
          color: #444;
          margin-bottom: 6px;
          list-style: disc;

          &::marker {
            color: #999;
          }
        }
      }
    }
  }
}
.ServiceGallery {
  margin-bottom: 100px;
  background: #fff;

  @media (max-width: 992px) {
    margin-bottom: 70px;
  }
  @media (max-width: 768px) {
    margin-bottom: 50px;
  }

  .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .left {
    width: 40%;

    @media (max-width: 992px) {
      width: 100%;
      text-align: center;
    }
  }

  .right {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    @media (max-width: 992px) {
      width: 100%;
      justify-content: center;
    }

    .item {
      width: calc(50% - 8px);
      background: #fdecec;
      border-radius: 12px;
      padding: 15px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: 0.3s ease;

      @media (max-width: 576px) {
        width: 100%;
      }

      i {
        width: 40px;
        height: 40px;
        border: 1px solid #e63946;
        color: #e63946;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 18px;
        background: #fff;
      }

      span {
        font-size: 18px;
        font-weight: 600;
        color: #222;
      }

      &:hover {
        transform: translateY(-3px);
      }
    }
  }
}
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  &.active {
    display: flex;
  }

  .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

    h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .closeModal {
      position: absolute;
      top: 12px;
      right: 15px;
      cursor: pointer;
      font-size: 22px;
      color: #333;
      transition: 0.3s;

      &:hover {
        color: var(--primary-color);
      }
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 10px;

      input {
        width: 100%;
        height: 45px;
        padding: 0 15px;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: 0.3s;

        &:focus {
          border-color: var(--primary-color);
        }

        &::placeholder {
          color: #999;
        }

        &[readonly] {
          background: #f9f9f9;
          cursor: not-allowed;
        }
      }

      button {
        margin-top: 5px;
        height: 40px;
        border-radius: 50px;
        justify-content: center;
        font-weight: 400;
        border: none;
        background: var(--primary-color);
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
        text-align: center;
        border: 1px solid transparent;

        &:hover {
          opacity: 0.9;
          color: var(--primary-color);
          border: 1px solid var(--primary-color);
          background-color: var(--white-color);
        }
      }
    }
  }
}


.Title {
  h6 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 20px);
    margin-bottom: 10px;
  }
  h1 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: clamp(30px, 4.5vw, 48px);
    font-weight: 600;
    margin-bottom: 18px;
  }
}