/* ===== AJÁNLATKÉRŐ FORM ===== */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #f7f7f7;
  min-height: calc(100vh - 160px);
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 2.5rem;
  max-width: 800px;
  width: 100%;
}

.form-card h1 {
  text-align: center;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-card p {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

input,
select,
textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f9b700;
  outline: none;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  background-color: #f9b700;
  color: #1f1f1f;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  padding: 0.9rem;
  margin-top: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #1f1f1f;
  color: #fff;
}

#form-message {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

#form-message.success {
  color: #008000;
}

#form-message.error {
  color: #d00000;
}

/* ===== Mobilbarát ===== */
@media (max-width: 600px) {
  .form-card {
    padding: 1.5rem;
  }

  input,
  select,
  textarea {
    font-size: 0.95rem;
  }
}
