.support-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.support-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.support-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.support-title-line {
  width: 5px;
  height: 50px;
  background: linear-gradient(90deg, #00e0ff, #00e0ff);
  margin-right: 15px;
}

.support-title {
  font-size: 36px;
  font-weight: 800;
}

.support-title span {
  color: #00e0ff;
}

.supports-body-content {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

/* Right side form */
.xform__section {
  flex: 1 1 45%;
  min-width: 320px;
}

.xform__wrapper {
  padding: 40px 30px;
  border-radius: 15px;
  background: #111;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.xform__title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.xform__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.xform__input,
.xform__textarea,
.xform__form select {
  background: #222;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  width: 100%;
  appearance: none;
}

.xform__input::placeholder,
.xform__textarea::placeholder {
  color: #aaa;
}

.xform__input:focus,
.xform__textarea:focus,
.xform__form select:focus {
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.6);
  background-color: #262626;
}

.xform__textarea {
  resize: none;
  height: 120px;
}

.xform__submit {
  background: linear-gradient(135deg, #62D6E5, #00e0ff);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 224, 255, 0.4);
}

.xform__submit:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 224, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .support-container {
    flex-direction: column;
  }

  .support-content,
  .xform__section {
    flex: 1 1 100%;
  }

  .xform__wrapper {
    margin-top: 30px;
  }
}
