/* ============================================================*/
/***** Contact Support Page (new_request_page) *****/
/* ============================================================*/

.contact-support-page {
  background-color: #FAF5EF;
  padding: 60px 150px;
  min-height: 75vh;
}

.contact-support-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-support-left {
  flex: 0 0 38%;
  max-width: 38%;
}

.contact-support-heading {
  font-family: 'Serrif Condensed', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 105%;
  color: #240602;
  margin: 0 0 20px 0;
}

.contact-support-text {
  font-weight: 400;
  color: #240602;
  font-size: 20px;
  line-height: 130%;
  margin: 0;
}

.contact-support-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.contact-support-link {
  color: #FF5F27;
  text-decoration: underline;
}

.contact-support-link:hover {
  color: #C54214;
}

.contact-support-right {
  flex: 1;
}

.contact-support-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  color: #240602;
  margin: 0 0 20px 0;
}

.contact-form-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #240602;
  line-height: 130%;
  margin: 0 0 20px 0;
}

/* Override form container inside the card */
.contact-support-form-card .form {
  background: transparent;
  padding: 0;
}

.contact-support-form-card .form footer {
  text-align: left;
  padding-top: 20px;
}

/* Style submit button to match new design */
.contact-support-form-card .form footer .submit,
.contact-support-form-card .form footer .button-large,
.contact-support-form-card .form footer input[type="submit"] {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  min-width: unset !important;
  height: 41px !important;
  background: #FF5F27 !important;
  background-color: #FF5F27 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.2s ease !important;
}

.contact-support-form-card .form footer .submit:hover,
.contact-support-form-card .form footer .button-large:hover,
.contact-support-form-card .form footer input[type="submit"]:hover {
  background: #C54214 !important;
  background-color: #C54214 !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-support-layout {
    gap: 48px;
  }
  .contact-support-left {
    flex: 0 0 42%;
    max-width: 42%;
  }
}

@media (max-width: 768px) {
  .contact-support-page {
    padding: 40px 0 60px;
  }
  .contact-support-layout {
    flex-direction: column;
    gap: 36px;
  }
  .contact-support-left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .contact-support-heading {
    font-size: 30px;
  }
  .contact-support-form-card {
    padding: 28px 24px;
  }
}
