.sc-contact-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.sc-contact-form{
  width: 100%;
}

.sc-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.sc-contact-form input,
.sc-contact-form textarea{
  width: 100%;
  background: #f2f3f5;
  border: 1px solid #e3e6ea;
  border-radius: 6px;
  padding: 18px 18px;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}

.sc-contact-form input{
  height: 56px;
}

.sc-contact-form textarea{
  resize: vertical;
  min-height: 170px;
}

.sc-contact-form input::placeholder,
.sc-contact-form textarea::placeholder{
  color: #9aa3ab;
}

.sc-contact-form input:focus,
.sc-contact-form textarea:focus{
  border-color: #73b351;
  box-shadow: 0 0 0 3px rgba(115,179,81,0.18);
}

/* ✅ NEW: Invalid field highlighting */
.sc-contact-form .sc-invalid{
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 3px rgba(211,47,47,0.18) !important;
}

.sc-actions{
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.sc-submit-btn{
  border: none;
  border-radius: 999px;
  padding: 16px 44px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #73b351, #32792c);
}

.sc-submit-btn:disabled{
  opacity: 0.7;
  cursor: not-allowed;
}

.sc-status{
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: #32792c;
}

.sc-status.sc-error{
  color: #d32f2f;
}

/* Mobile */
@media (max-width: 760px){
  .sc-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
