/* Base form styling */
.kan-contact-form {
  max-width: 600px;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: "Inter", "Poppins", sans-serif;
  transition: all 0.3s ease;
}

/* Background variants */
.kan-bg-white { background: #fff; color: #000; }
.kan-bg-black { background: #000; color: #fff; }
.kan-bg-orange { background: #ed732d; color: #fff; }

/* Input fields */
.kan-contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.kan-contact-form input,
.kan-contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  color: #000;
  background: #fff;
}

/* Keep fields readable on dark/orange */
.kan-bg-black input,
.kan-bg-black textarea,
.kan-bg-orange input,
.kan-bg-orange textarea {
  background: #fff;
  color: #000;
}

/* Button styling */
.kan-contact-form button {
  background-color: #ed732d;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.kan-contact-form button:hover {
  background-color: #d56225;
}

/* Success + error messages */
.kan-cf-success {
  background: #ed732d10;
  border-left: 4px solid #ed732d;
  padding: 12px;
  color: #000;
  margin-top: 15px;
  border-radius: 4px;
}

.kan-cf-error {
  color: #d00000;
  font-weight: 600;
  margin-top: 15px;
}
/* Form heading */
.kan-form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.kan-form-subtitle {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.6;
}

/* Better input spacing */
.kan-contact-form label {
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Inputs feel more premium */
.kan-contact-form input,
.kan-contact-form textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* Focus state */
.kan-contact-form input:focus,
.kan-contact-form textarea:focus {
  border-color: #ed732d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(237, 115, 45, 0.15);
}

/* Button improvement */
.kan-contact-form button {
  margin-top: 10px;
  padding: 14px 28px;
  font-size: 15px;
}

/* Small reassurance text */
.kan-form-note {
  font-size: 12px;
  margin-top: 12px;
  color: #aaa;
  line-height: 1.5;
}