/* =========================
   BASE STYLES
========================= */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
a:hover { color: #4e9d63; }

/* =========================
   BUTTONS
========================= */
button, .btn-primary, .btn-secondary {
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f17c28, #ff9a4d);
  color: #fff;
  padding: 12px 25px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,124,40,0.4);
}

.btn-secondary {
  background: #fff;
  color: #4e9d63;
  border: 2px solid #4e9d63;
  padding: 12px 25px;
}

.btn-secondary:hover {
  background: #4e9d63;
  color: #fff;
}

/* =========================
   FORM ELEMENTS
========================= */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #4e9d63;
  outline: none;
  box-shadow: 0 0 5px rgba(78,157,99,0.4);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('../assets/dropdown-arrow.svg') no-repeat right 12px center;
  background-size: 12px;
  padding-right: 35px;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  background: #fffdf7;
  border-radius: 12px;
  padding: 35px;
  max-width: 650px;
  margin: 3rem auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form button {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  background: #f17c28;
  color: white;
}

.contact-form button:hover {
  background: #cf5e15;
}

.contact-form::after {
  content: "🔒 Your information is kept private. We only connect you with the selected provider.";
  display: block;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}
