/* ── Novalux Contact Form Redesign ── */
.nl-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.nl-form-grid .nl-field--full {
  grid-column: 1 / -1;
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.nl-field label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
}

.nl-field label .nl-req {
  color: #c0392b;
  margin-left: 2px;
}

.nl-field input,
.nl-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: .85rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  font-size: .95rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  -webkit-appearance: none;
}

.nl-field input:focus,
.nl-field textarea:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}

.nl-field input::placeholder,
.nl-field textarea::placeholder {
  color: #b0b0b0;
}

.nl-field textarea {
  min-height: 140px;
  resize: vertical;
}

.nl-form-submit {
  margin-top: .5rem;
}

.nl-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}

.nl-btn-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

.nl-btn-submit:active {
  transform: translateY(0);
}

.nl-btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.nl-form-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: #888;
}

.nl-form-note a {
  color: #555;
}

@media (max-width: 600px) {
  .nl-form-grid {
    grid-template-columns: 1fr;
  }
  .nl-form-wrap {
    padding: 2rem 1.25rem;
  }
}
