.contact-section {
  padding: clamp(3rem, 6vw, 5rem);
  background: #ffffff;
}

.contact-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto clamp(3rem, 6vw, 4rem);
}

.contact-header h1 {
  font-weight: 400;
  line-height: 1.2;

  font-size: clamp(2rem, 5vw, 3.125rem);
  color: #111827;
  margin-bottom: 0.8rem;
}

.contact-header p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: #555;
  line-height: 1.6;
}

.contact-wrapper {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 2vw, 1.1rem);
  color: #111827;
  line-height: 1.2;
}

.info-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.8rem;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 1.6rem;
}

.info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon {
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, #12b6a6 0%, #0893b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  color: #fff;
  font-size: 1.1rem;
}

.icon img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.info-list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.info-list span {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.contact-form {
  width: 100%;
  flex: 1;
  background: #ffffff;
  border-radius: 0.8rem;
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.06);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, #12b5a6, #0894b0);
  border-radius: 0.8rem 0.8rem 0 0;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
}

.contact-form form {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.4rem;
  border: 0.06rem solid #e5e7eb;
  font-size: 0.9rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form button {
  margin-top: 0.8rem;
  background: linear-gradient(96.12deg, #13b7a6 0%, #0892b2 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.45rem;
  padding: 0.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.8rem 1.6rem rgba(18, 181, 166, 0.35);
}

@media (max-width: 48rem) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
