/* === form-contact.css — контактна форма === */

.contact-section {
  background: #ccc;
  padding: 30px 0 60px 0;
}

.contact-section h2 {
  margin-bottom: 24px;
  margin-top: 0;
  font-size: 26px;
  font-weight: 600;
}

.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.contact-form .form-row.double {
  flex-wrap: wrap; /* для мобільної адаптації, виводиться через responsive.css */
}

.contact-form .form-row textarea {
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  min-height: 110px;
  resize: vertical;
  font-family: 'Roboto', Arial, sans-serif;
  box-sizing: border-box;
}

.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="email"] {
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  width: 100%;
  flex: 1 1 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-form input[type="tel"] {
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  width: 100%;
  max-width: 664px;
  box-sizing: border-box;
}

.contact-form .form-row.center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  max-width: 664px;
  box-sizing: border-box;
}

.contact-form button.btn-primary {
  width: 300px;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: none;
  outline: none;
}
