.wtf-contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.wtf-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
}

.wtf-form-title {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  text-align: center;
  margin-bottom: 10px;
}

.wtf-form-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 35px;
}

/* Form Group */
.wtf-form-group {
  margin-bottom: 20px;
}

.wtf-form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #212529;
  font-size: 14px;
}

/* Input & Textarea */
.wtf-input,
.wtf-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

/* Focus Effect (Ultra Premium) */
.wtf-input:focus,
.wtf-textarea:focus {
  border-color: grey;
  outline: none;
  box-shadow: 0 0 0 3px rgba(71, 71, 71, 0.1);
}

/* Button */
.wtf-form-btn-wrap {
  text-align: center;
  margin-top: 10px;
}

.wtf-btn {
  background: black;
  color: #ffffff;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.wtf-btn:hover {
  background: grey;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px whitesmoke;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .wtf-form-card {
    padding: 30px 20px;
  }

  .wtf-form-title {
    font-size: 26px;
  }
}
/* Form lebih compact & centered */
.wtf-contact-section {
  padding: 100px 0;
}

.wtf-form-card {
  padding: 40px 35px;
  max-width: 700px;
  margin: 0 auto;
}
