/* Formulari de contacte — estil minimalista coherent amb TIMPlines */

.t-contact-form-section {
  padding: 60px 20px 80px;
  background: #fff;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.t-contact-form-container {
  max-width: 1170px;
  margin: 0 auto;
}

.t-contact-form-container h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 32px;
  color: #2c2727;
}

.t-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.t-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-form-field span {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.t-form-field input,
.t-form-field textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color .15s, background .15s;
}

.t-form-field input:focus,
.t-form-field textarea:focus {
  outline: none;
  border-color: #FF7517;
  background: #fff;
}

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

.t-contact-btn {
  align-self: flex-start;
  background: #FF7517;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s;
}

.t-contact-btn:hover { background: #e06610; }

.t-contact-alert {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.t-contact-alert-success {
  background: #e8f5e8;
  color: #2d6a2d;
  border-left: 3px solid #4caf50;
}

.t-contact-error {
  color: #c62828;
  font-size: 14px;
  margin: 4px 0 0;
}
