.section-contact {
  background-color: var(--dark);
  color: var(--light);
  padding-top: 140px;
  padding-bottom: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.contact-heading {
  text-align: center;
  margin-bottom: 40px;
}

.contact-heading h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing--2-0);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  padding: 12px 16px;
  font-family: var(--font--body);
  font-size: var(--text--text-body);
  transition: border-color 0.3s, background-color 0.3s;
  width: 100%;
  outline: none;
}

.form-control:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  border: none;
  margin-top: 8px;
}

html[dir="rtl"] .form-group label {
  text-align: right;
}

html[dir="rtl"] .form-control {
  text-align: right;
}

@media screen and (max-width: 767px) {
  body {
    background-attachment: scroll !important;
  }
  body.contact-page {
    background-image: linear-gradient(#000000cc, #000000cc), url("../images/stone-768.b4ba0ebcfe5c.webp") !important;
  }
  .section-contact {
    min-height: calc(100svh - 112px);
    padding: 52px 0 64px;
    align-items: flex-start;
  }
  .contact-heading {
    margin-bottom: 28px;
  }
  .contact-heading h1 {
    font-size: clamp(32px, 10vw, 42px);
    overflow-wrap: anywhere;
  }
  .contact-form {
    gap: 18px;
  }
  .form-control {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 16px;
  }
  textarea.form-control {
    min-height: 130px;
  }
  .submit-btn {
    min-height: 48px;
  }
}
