/* ---------- HERO TITLE ---------- */

.contact-hero {
  padding: 56px 0 24px;
}

.contact-title {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

/* Wrapper under hero */

.contact-page-wrapper {
  padding-top: 0;
  padding-bottom: 40px;
}

/* Intro heading + text */

.contact-intro-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-intro-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 960px;
  margin-bottom: 50px;
}

/* ---------- MAIN LAYOUT (two columns) ---------- */

.contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.contact-info {
  flex: 1 1 0;
  font-size: 14px;
}

/* company + address */

.contact-company {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-address,
.contact-email,
.contact-phone {
  margin-bottom: 6px;
}

.contact-email a {
  color: inherit;
  text-decoration: underline;
}

.contact-email a:hover {
  text-decoration: none;
}

/* Social section */

.contact-social {
  margin-top: 24px;
}

.contact-social-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}

.contact-social-link:hover {
  text-decoration: underline;
}

.contact-social-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #4267b2;
  color: #fff;
}

/* Optional FAQ text */

.contact-faq-text {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- FORM PANEL ---------- */

.contact-form-panel {
  flex: 1 1 0;           /* share space evenly with .contact-info */
  background: #880C14;
  color: #fff;
  padding: 26px 32px 24px;
  border-radius: 2px;
}

.contact-form-row {
  margin-bottom: 12px;
}

.contact-label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-input {
  width: 100%;
  border-radius: 2px;
  border: none;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.4;
  background: #ffffff;
  color: #333;
}

.contact-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 1px;
}

.contact-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---------- BLUE SUBMIT BUTTON ---------- */

.contact-form-actions {
  margin-top: 10px;
  text-align: right;
}

.contact-submit {
  background-color: #003E9C;   /* platform blue */
  color: #ffffff;
  border-radius: 2px;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
}

.contact-submit:hover {
  background-color: #002F77;   /* darker blue hover */
  color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .contact-layout {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form-panel,
  .contact-info {
    flex: 1 1 100%;
  }
}
