


.contact-us-section {
  background-image: url("../images/backgornd.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 293px;
  width: 100%;
}

.contact-us-page {
  width: 100%;
  max-width: 1128px;
  margin: auto;
  padding-top: 65px;
  padding-bottom: 65px;
}
.contact-us-section-content-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 674px;
}

.contact-us-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 64px !important;
  padding-top:40px;
}

.contact-us-section-content {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 24px !important;
}
.contact-us-form {
  width: 100%;
  max-width: 1128px;
  height: 100%;
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 12px 24px 0 rgba(97, 38, 157, 0.08);
  border-radius: 16px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact-us-form {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E0E0E0;
  }

}

/* Contact Form Row with gap */
.contact-form-row {
  display: flex;
  gap: 24px;
  width: 100%;
  margin-bottom: 0;
}

.contact-form-col {
  flex: 1;
  min-width: 0;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .contact-form-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* Auth Input Styles - Same as register page */

.auth-input {
    max-height: 44px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 12px 12px;
    font-size: 16px;
    color: #161616;
    text-align: right;
    direction: rtl;
    transition: all 0.3s ease;
}

.auth-input:focus {
    background-color: #fff;
    border-color: #19BBB7;
    box-shadow: 0 0 0 0.2rem rgba(25, 187, 183, 0.15);
    outline: none;
}

.auth-input::placeholder {
    color: #98A2B3;
    font-size: 14px;
}

/* Textarea specific styles */
textarea.auth-input {
    max-height: none;
    min-height: 120px;
    resize: vertical;
}

/* Contact Hint/Tip */
.contact-hint {
    color: var(--Gray-500, #667085);
    text-align: right;
    font-family: Cairo;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* Contact Form Title */
.contact-form-title {
    color: #23567D;
    text-align: right;
    font-family: Tajawal;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 36px;
    margin-top: 11px;
}

/* Submit Button */
.btn-step-next {
    border-radius: 8px;
    border: 1px solid #19BBB7;
    background: #19BBB7;
    display: flex;
    width: 172px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}


.btn-step-next:active {
    transform: translateY(0);
}

.contact-us-section-background {
  /* todo  */
  background: #ffff;
  width: 100%;
  height: 100%;
}