.inquiry .inquiry-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(to right, #eef4ff, #fefefe);
}

.inquiry .inquiry-bg > img {
  width: 100%;
  height: auto;
}

.inquiry .float-layer {
  position: relative;
}

.float-layer .top-text {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  padding: 118px 145px 20px 145px;
}

.float-layer .clr-purple {
  color: #9600ff;
}

.float-layer .help-text {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  padding: 56px 145px 10px 145px;
}

.float-layer .form-panel {
  padding: 34px 145px 10px 145px;
}

.float-layer .form-panel .form {
  background-color: #f5e7ff;
  border-radius: 10px;
  padding: 20px 50px;
  min-height: 200px;
}

.form .form-title {
  text-align: center;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.3;
}

.form .form-sub-title {
  text-align: center;
  font-size: 13px;
}

.form .fotm-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
}

.form-group {
  margin-bottom: 12px;
  width: calc(100% / 2 - 58px);
  padding-right: 38px;
}

.form-group label {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 16px;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.35rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .contact-method {
  display: flex;
  gap: 15px;
}

.form-group .contact-method select {
  width: 110px;
}

.form .form-btn {
  text-align: center;
  padding-top: 5px;
}

.form .form-btn > button {
  font-size: 18px;
  color: #fff;
  background-color: #9a0cfe;
  padding: 2px 18px;
}

.form .form-btn > button:hover {
  background-color: #990cfead;
  color: #fff;
  border-color: #9a0cfe;
}

.waitting {
  z-index: 19891024;
  background-color: #000;
  opacity: 0.3;
  filter: alpha(opacity=30);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.spinner {
  width: 250px;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  position: fixed;
  opacity: 1;
  filter: alpha(opacity=100);
  top: 40%;
  left: 40%;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.spinner > div {
  width: 30px;
  height: 30px;
  background-color: #67cf22;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.inquiry-img {
  padding: 50px 145px 50px 145px;
}

@media (max-width: 768px) {
  .float-layer .top-text {
    font-size: 32px;
    padding: 118px 12px 20px 12px;
  }
  .float-layer .help-text {
    padding: 20px 12px 10px 12px;
    font-size: 25px;
  }
  .float-layer .form-panel {
    padding: 34px 12px 10px 12px;
  }
  .float-layer .form-panel .form {
    padding: 20px;
  }
  .form-group {
    width: 100%;
    padding-right: 0;
  }
  .form .form-btn > button {
    width: 100%;
  }
  .inquiry-img {
    padding: 50px 12px 50px 12px;
  }
}