@charset "utf-8";
/* CSS Document */

/* === CONTACT PAGE STYLES === */
/* === CONTACT SECTION (RESTORED STYLE) === */
.contact-section {
  background-color: #2e2e2e !important;
  padding: 5rem 1rem;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}


.contact-form {
  flex: 1 1 600px;
  background-color: #2e2e2e;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}


.contact-form h2 {
  font-size: 2.5rem;
  color: #ff6b00;
  margin-bottom: 0.5rem;
}


.contact-form p {
  color: #ccc;
  margin-bottom: 2.2rem;
}


#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


#contactForm input,
#contactForm textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  width: 100%;
}



.contact-info {
  flex: 1 1 500px;
  padding: 0.5rem 0;
}


.contact-info h3 {
  color: #ff6b00;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}


.contact-info p {
  color: #ccc;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}


.contact-testimonial {
  background: #111;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


.contact-testimonial p {
  font-style: italic;
  color: #ccc;
}


.contact-testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: bold;
  color: #ff6b00;;
}


/* === MOBILE STACKING === */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }


  .contact-form,
  .contact-info {
    width: 100%;
  }


  .contact-form,
  .contact-info {
    text-align: center;
    padding: 1.5rem;
  }


  #contactForm input,
  #contactForm textarea {
    text-align: left;
  }
}
