/* ===== Contact Form Wrapper ===== */
.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
}

/* ===== Labels and Inputs ===== */
.wpcf7-form p {
  margin-bottom: 16px;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  font-size: 16px;
  transition: border-color 0.3s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #e91e63;
  outline: none;
  background: #fff;
}

/* ===== Submit Button ===== */
.wpcf7 input[type="submit"] {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: #c2185b;
}

/* ===== Validation/Response Messages ===== */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.wpcf7 .wpcf7-validation-errors {
  background: #ffebee;
  border: 1px solid #f44336;
  color: #d32f2f;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
}
