#fw-section-custom-html-796b1a8e-a483-4cab-9583-93a7be065631 {

/* =========================
   Contact Form – Custom CSS
   ========================= */

.contact-form {
  max-width: 420px;
  margin: 40px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.contact-form h2 {
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  text-align: center;
}

/* Labels */
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.03em;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.contact-form button:hover {
  opacity: 0.9;
}

.contact-form button:active {
  transform: scale(0.98);
}

/* Optional helper text */
.contact-form .helper-text {
  font-size: 12px;
  color: #777;
  margin-top: -10px;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-form {
    padding: 22px;
  }
  }
}