/* Career Studios - Contact page */
.contact-section {
  padding: 80px 0;
  background: #fff;
}
.contact-page {
  min-height: 70vh;
}
.contact-page-title {
  max-width: 850px;
  margin: 0 auto 45px;
}
.contact-page-title p {
  max-width: 720px;
  margin: 12px auto 0;
}
.contact-details .info-box {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #fff;
  padding: 28px 22px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-details .info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.contact-details .info-box i {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
}
.contact-details .info-box h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.contact-details .info-box p {
  margin-bottom: 0;
  line-height: 1.7;
}
.contact-details .info-box a {
  color: inherit;
}
.contact-form-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-form label span {
  color: #d32f2f;
}
.contact-form .form-control {
  min-height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 12px 14px;
  box-shadow: none;
}
.contact-form textarea.form-control {
  min-height: 170px;
  resize: vertical;
}
.contact-form .form-control:focus {
  border-color: #4abcd4;
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.12);
}
.contact-form select.form-control {
  appearance: auto;
  background: #fff;
}
.contact-counter {
  display: block;
  text-align: right;
  margin-top: 6px;
  color: #777;
  font-size: 12px;
}
.contact-status {
  min-height: 42px;
  margin: 10px 0 18px;
}
.contact-loading,
.contact-error,
.contact-success {
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 14px;
}
.contact-loading {
  background: #f5f5f5;
}
.contact-error {
  color: #8a1c1c;
  background: #fdecec;
}
.contact-success {
  color: #1d6b3a;
  background: #eaf7ef;
}
.contact-submit {
  border: 0;
  min-width: 180px;
  min-height: 48px;
  padding: 12px 25px;
  border-radius: 4px;
  background: #4abcd4;
  color: #fff;
  font-weight: 700;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.contact-submit:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}
.contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.contact-submit-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-spin 0.7s linear infinite;
  vertical-align: -3px;
}
@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-intro {
  padding: 25px 5px;
}
.contact-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.contact-intro h4 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.contact-intro > p {
  line-height: 1.8;
}
.contact-callout {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  padding: 20px;
  border-left: 3px solid #4abcd4;
  background: #fafafa;
}
.contact-callout > i {
  font-size: 25px;
  flex: 0 0 auto;
}
.contact-callout strong {
  display: block;
  margin-bottom: 5px;
}
.contact-callout p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 55px 0;
  }
  .contact-form-card {
    padding: 22px 18px;
  }
  .contact-intro h4 {
    font-size: 28px;
  }
}
