.contact-section {
  background-color: #0d0d0d;
  padding: 7rem 0;
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/contact-form.webp) center center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.contact-section > * {
  position: relative;
  z-index: 1;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 991px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact-section .contact-label-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: #b5001e;
}
.contact-section .contact-label-text {
  font-size: 0.78rem;
  font-weight: 400;
  color: #b5001e;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-section .contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.contact-section .contact-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 3rem;
}
.contact-section .contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5001e;
  flex-shrink: 0;
}
.contact-section .detail-label {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-section .detail-value {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.contact-section .contact-form-wrap {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
}
@media (max-width: 576px) {
  .contact-section .contact-form-wrap {
    padding: 1rem;
  }
}
.contact-section .form-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}
.contact-section .form-label {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-section .cf-input {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  transition: border-color 0.3s;
}
.contact-section .cf-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.contact-section .cf-input:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: #b5001e;
  color: #fff;
  box-shadow: none;
}
.contact-section .cf-input.form-control {
  resize: vertical;
}
.contact-section .cf-submit {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background-color: #b5001e;
  border: 1px solid #b5001e;
  padding: 0.85rem 2rem;
  border-radius: 0;
  transition: 0.3s;
}
.contact-section .cf-submit:hover {
  background-color: transparent;
  color: #b5001e;
}

/*# sourceMappingURL=common-form.css.map */
