/* Contact Section */
.contact-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #f9f9f9, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh; /* Полная высота экрана */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center; /* Центрирование по вертикали */
  justify-content: center; /* Центрирование по горизонтали */
  width: 100%;
}

.contact-form {
  flex: 1;
  max-width: 48%;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.form-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2rem;
  color: #007bff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #007bff;
  font-size: 1.2rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #333;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
}

textarea {
  height: 120px;
  resize: none;
}

.btn-submit {
  display: block;
  width: 100%;
  background: linear-gradient(to right, #ff4d4d, #ff6a6a);
  color: white;
  font-size: 1.2rem;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(to right, #ec0d0d, #ee1919);
  transform: scale(1.05);
}

/* Contact Info */
.contact-info {
  flex: 1;
  max-width: 48%;
  text-align: left; /* Выравнивание текста по левому краю */
}

.info-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

/* Success Message */
.success-message {
  display: none;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #d4edda;
  color: #155724;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  text-align: center;
}

.success-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    max-width: 100%;
    text-align: center; /* Центрирование текста на мобильных */
  }

  .contact-info {
    text-align: center;
  }
}





