.contact-us-wapper {
  position: relative;
  overflow: hidden;
  width: min(100%, var(--peach-content-width, 1200px));
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.contact-us-form-wrapper,
.contact-us-form {
  display: grid;
  gap: 1rem;
}

.contact-us-form-wrapper {
  display: block;
  width: 100%;
  max-width: min(100%, 46rem);
  margin: 2rem auto 0;
}

.contact-us-form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.contact-us-form .form-group {
  display: grid;
  gap: 0.55rem;
  width: 100%;
}

.contact-us-form label {
  font-size: 1rem;
  text-align: left;
}

.contact-us-form input,
.contact-us-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.1rem;
  font-size: 1rem;
}

.contact-us-form .send-btn {
  align-self: center;
}

.hp {
  position: absolute;
  left: -9999px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: color-mix(in srgb, var(--primary-color) 72%, transparent);
  backdrop-filter: blur(14px);
}

.modal-content {
  width: min(100%, 28rem);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-color);
  background: color-mix(in srgb, var(--secondary-color) 94%, transparent);
  color: var(--text-color);
}

.modal-message,
.modal-content p {
  color: var(--muted-text-color);
}

@media (max-width: 768px) {
  .contact-us-wapper {
    padding: 1rem;
  }

  .contact-us-form-wrapper {
    max-width: 100%;
    margin: 1.5rem auto 0;
  }

  .contact-us-form {
    gap: 0.9rem;
  }

  .contact-us-form input,
  .contact-us-form textarea {
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
  }

  .contact-us-form .send-btn {
    width: 100%;
    max-width: 20rem;
    justify-self: center;
  }
}
