/* 
 * Contact Us page styles - completely refactored to match About page
 */

 body, html {
  overflow-x: hidden;
  margin: 0;
  height: 100vh;
  background-color: #000;
}

/* Main content area */
.main-content {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding-top: 0; /* Ensure this is 0, not 120px like in the original */
}

/* Container size */
.custom-container {
  width: 75%;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

/* Contact section styles */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

/* STANDARDIZED SCROLL BUTTON - EXACTLY THE SAME AS ABOUT PAGE */
.scroll-mouse {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
  width: 38px;
  height: 38px;
}

.welcome-title-colorize {
  font-family: "Sequel Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 75px;
  line-height: 75px;
  letter-spacing: -0.02em;
  background: linear-gradient(102.95deg, #F15A2E 10.02%, #DF9FAE 48.79%, #D7115B 94.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.get-in-touch-p-text {
  font-family: "Sequel Sans", sans-serif;
  font-style: normal;
  font-weight: 435;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -0.02em;
  color: #b0b0b0;
  margin-top: 1rem;
}

.container-form {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

/* Form styles */
.contact-form-container {
  padding: 1rem;
}

.contact-form .form-control {
  box-sizing: border-box;
  padding: 9.54633px 12.7284px;
  filter: drop-shadow(0px 0.795527px 1.59105px rgba(0, 0, 0, 0.05));
  background-color: transparent;
  color: #828282;
  border: none;
  border-bottom: 0.90228px solid #7D7D7D;
  border-radius: 0 !important;
}

textarea.form-control {
  resize: none;
}

.form-control::placeholder {
  color: #828282;
}

.contact-form .form-label {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12.7284px;
  line-height: 150%;
  color: #ffffff;
}

.error-message {
  font-size: 0.875em;
  margin-top: 0.25rem;
}

.btn-submit {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 0.905455px solid #1B41E3;
  color: #ffffff;
  filter: drop-shadow(0px 0.795527px 1.59105px rgba(0, 0, 0, 0.05));
  border-radius: 45px;
  font-family: "Open Sauce Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15.9105px;
  line-height: 150%;
  width: 150px;
  height: 50px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  padding: 10px 40px;
}

.btn-submit:hover {
  background-color: #1B41E3;
  border-color: #1B41E3;
  color: #ffffff;
}

.contact-form .row.my-3.w-100.px-0 {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Support section styles */
.support-section {
  padding-left: 10%;
  padding-right: 10%;
}

/* Support title - using same gradient as about page */
.support-title-colorize {
  font-family: "Sequel Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 55px;
  line-height: 55px;
  letter-spacing: -0.02em;
  background: linear-gradient(102.95deg, #F15A2E 10.02%, #DF9FAE 48.79%, #D7115B 94.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  text-align: center;
}

.support-section img {
  border-radius: 50px;
  max-width: 100%;
  height: auto;
}

.support-section .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-section p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #b0b0b0;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.support-info p {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.support-info p span {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.support-info p:nth-child(1),
.support-info p:nth-child(2),
.support-info p:nth-child(3) {
  color: #ffffff;
}

.support-info-text {
  font-family: "Sequel Sans", sans-serif;
  font-style: normal;
  font-weight: 335;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Section spacing */
.section-spacing {
  margin-bottom: 3rem;
  padding-top: 3rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .btn-submit {
    width: 100%;
  }
  
  .support-section {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .custom-container {
    width: 100%;
  }

  .welcome-title-colorize {
    font-size: 50px;
    line-height: 55px;
  }
  
  .support-title-colorize {
    font-size: 45px;
    line-height: 50px;
  }
}

/* Tablet styles only */
@media (min-width: 768px) and (max-width: 991.98px) {
  .support-info {
    gap: 0;
  }

  .support-section p {
    margin-bottom: 0 !important;
  }

  .support-section .row {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .btn-submit {
    width: 100%;
  }

  .scroll-mouse {
    display: none;
  }

  .support-section {
    padding-left: 1%;
    padding-right: 1%;
    text-align: center !important;
  }

  .support-info-text {
    text-align: center !important;
  }

  .form-control {
    text-align: center;
  }

  .contact-section {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .welcome-title-colorize,
  .get-in-touch-p-text {
    text-align: center;
  }

  .support-title-colorize {
    font-size: 35px;
    line-height: 40px;
  }

  .support-section {
    margin-bottom: 2rem;
  }

  .contact-section .row,
  .support-section .row {
    flex-direction: column;
  }

  .col-lg-6,
  .col-md-6,
  .col-sm-12 {
    width: 100%;
  }

  .support-section img {
    width: 100%;
    height: auto;
  }

  .support-info {
    gap: 1rem;
  }

  .welcome-title-colorize {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .contact-form .row.my-3.w-100.px-0 {
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .get-in-touch-p-text {
    font-size: 16px;
    line-height: 24px;
  }
}