.main {
  padding: 120px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.title {
  font-size: 44px;
  line-height: 1.22;
  font-weight: 800;
  color: #f05d2f;
  margin-bottom: 50px;
}

.description {
  max-width: 550px;
  font-size: 22px;
  line-height: 1.22;
  color: #383838;
}

.socials {
  margin-top: 120px;
}

.socials h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-links a {
  font-size: 22px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-group {
  margin-bottom: 42px;
}

.form-group label {
  display: block;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: none;
  background: #efefef;
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 18px;
  outline: none;
  color: #1e1e1e;
}

input {
  height: 66px;
}

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

input::placeholder,
textarea::placeholder {
  color: #9e9e9e;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tag {
  padding: 14px 26px;
  border: 1px solid #c7c7c7;
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.tag:hover {
  border-color: #f05d2f;
  color: #f05d2f;
}

.tag.active {
  border-color: #f05d2f;
  background: #f05d2f;
  color: #fff;
}

.submit-btn {
  width: 100%;
  height: 72px;
  border-radius: 999px;
  border: 1px solid #f05d2f;
  background: transparent;
  color: #f05d2f;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #f05d2f;
  color: white;
}

@media (max-width: 1024px) {
  .main {
    padding: 50px 0;
  }

  .grid {
    gap: 100px;
  }

  .title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 24px;
  }

  .description {
    max-width: 100%;
    font-size: 1rem;
  }

  .socials {
    margin-top: 50px;
  }

  .socials h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .social-links {
    gap: 24px;
  }

  .social-links a {
    font-size: 1.05rem;
  }

  .form-group {
    margin-bottom: 32px;
  }

  .form-group label {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  input,
  textarea {
    padding: 18px 20px;
    font-size: 1rem;
    border-radius: 14px;
  }

  input {
    height: 60px;
  }

  textarea {
    height: 150px;
  }

  .service-tags {
    gap: 12px;
  }

  .tag {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .submit-btn {
    height: 60px;
    font-size: 1rem;
  }
}


/* ===================== 768 ===================== */

@media (max-width: 768px) {
  .main {
    padding: 50px 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 24px;
  }

  .description {
    max-width: 100%;
    font-size: 1rem;
  }

  .socials {
    margin-top: 50px;
  }

  .socials h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .social-links {
    gap: 24px;
  }

  .social-links a {
    font-size: 1.05rem;
  }

  .form-group {
    margin-bottom: 28px;
  }

  .form-group label {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  input,
  textarea {
    padding: 18px 20px;
    font-size: 1rem;
    border-radius: 14px;
  }

  input {
    height: 58px;
  }

  textarea {
    height: 140px;
  }

  .service-tags {
    gap: 12px;
  }

  .tag {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .submit-btn {
    height: 60px;
    font-size: 1rem;
  }
}

@media (max-width: 430px) {
  .main {
    padding: 50px 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 24px;
  }

  .description {
    font-size: 1rem;
  }

  .social-links a {
    font-size: 1.05rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  input,
  textarea {
    font-size: 1rem;
    padding: 18px 20px;
  }

  .service-tags {
    gap: 12px;
  }

  .tag {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .submit-btn {
    height: 60px;
    font-size: 1rem;
  }


  .socials {
    margin-top: 50px;
  }

  .socials h2 {
    margin-bottom: 24px;
  }

  .social-links {
    gap: 24px;
  }

}