.contacts {
  padding: 30px 24px;
  background: #f8fafc;
}

.contacts-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.contacts-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}


.contacts-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.contacts-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.info-icon {
  width: 60px;
  height: 60px;
  padding: 8px;
  min-width: 60px;
  border-radius: 16px;
  background: #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.info-item p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* RIGHT FORM */
.contact-form-wrapper {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.contact-form-wrapper h3 {
  text-align: center;
  margin-bottom: 20px;
}

.form-subtitle {
  text-align: center;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  font-size: 18px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff5a00;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.08);
}

.contact-form button {
  margin-top: 10px;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff6a00, #ff4d00);
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 90, 0, 0.2);
}

/* MOBILE */
@media (max-width: 900px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts-header h2 {
    font-size: 38px;
  }

  .contact-info h3,
  .contact-form-wrapper h3 {
    font-size: 30px;
  }

  .info-item h4 {
    font-size: 22px;
  }

  .info-item p {
    font-size: 18px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}