/* Simple, clean contact page styles */

.contact__inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 16px;
}
.contact__header h1 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin: 0 0 6px;
}
.contact__header p {
  color: #475569;
  margin: 0 0 6px;
}

.contact__form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
}
.field input:focus,
.field textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,.18);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  color: #fff;
  background: #4c1d95;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s ease, transform .02s ease;
  margin-top: 10px;
}
.btn-primary:hover { background: #3b1680; }
.btn-primary:active { transform: translateY(1px); }

.contact__msg {
  margin-top: 10px;
  min-height: 1.2rem;
  color: #0f172a;
}

/* Honeypot hidden */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
