.contact {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}
.contact__header {
  border-left: 4px solid #B70000;
  padding-left: 24px;
}
.contact__header-col {
  flex: 1 1 0;
  min-width: 250px;
  padding-right: 24px;
}
.contact__header-col--vi {
  border-left: 1px solid #B70000;
  padding-left: 24px;
}
.contact__heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2A1613;
  margin-bottom: 0;
}
.contact__subheading {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 0;
  margin-top: 8px;
}
.contact__office-card {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #B70000;
  border-left: 4px solid #B70000;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact__office-card--default {
  border-color: #5E5E5E;
  border-left-color: #5E5E5E;
}
.contact__card-top {
  margin-bottom: 24px;
}
.contact__card-icon {
  width: 27px;
  height: 28px;
  object-fit: contain;
}
.contact__badge {
  display: inline-block;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 15px;
  color: #fff;
  background-color: #E60000;
  white-space: nowrap;
}
.contact__badge--gray {
  color: #2A1613;
  background-color: #E3E2E2;
}
.contact__card-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2A1613;
  margin-bottom: 0;
  padding-top: 8px;
}
.contact__card-detail {
  gap: 12px;
  margin-top: 16px;
}
.contact__detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.contact__detail-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5F3F3A;
  margin-bottom: 0;
}
.contact__card-vn {
  border-top: 1px solid #E9BCB5;
  margin-top: auto;
  padding-top: 16px;
  margin-top: 16px;
}
.contact__vn-label {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  line-height: 20px;
  color: #2A1613;
  margin-bottom: 0;
}
.contact__vn-desc {
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  color: #5F3F3A;
  margin-bottom: 0;
  margin-top: 8px;
}
.contact__map {
  position: relative;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  background-color: #eef2f7;
}
.contact__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__map-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #2A1613;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}
.contact__form-wrap {
  background-color: #FFF0EE;
  border: 1px solid #E9BCB5;
  border-radius: 4px;
  padding: 48px;
  height: 100%;
}
.contact__form-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #B70000;
  margin-bottom: 0;
}
.contact__form-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin-bottom: 0;
  margin-top: 8px;
}
.contact__form {
  margin-top: 24px;
}
.contact__label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5F3F3A;
  margin-bottom: 8px;
}
.contact__input, .contact__textarea, .contact__select {
  width: 100%;
  border: 1px solid #E2E8F0;
  border-radius: 2px;
  background-color: #ffffff;
  color: #2A1613;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  padding: 14px 16px;
  line-height: 19px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact__input::placeholder, .contact__textarea::placeholder, .contact__select::placeholder {
  color: #6B727F;
}
.contact__input:focus, .contact__textarea:focus, .contact__select:focus {
  outline: none;
  border-color: #B70000;
  box-shadow: 0 0 0 3px rgba(183, 0, 0, 0.1);
}
.contact__textarea {
  min-height: 146px;
  resize: vertical;
}
.contact__select-wrap {
  position: relative;
}
.contact__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6B727F;
  pointer-events: none;
}
.contact__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 2px;
  background-color: #B70000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  padding: 16px 16px;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.contact__submit:hover {
  background-color: #E60000;
  box-shadow: 0 4px 12px rgba(183, 0, 0, 0.25);
}
.contact__submit:active {
  transform: scale(0.98);
  filter: brightness(0.9);
}
.contact__submit-icon {
  width: 19px;
  height: 16px;
  object-fit: contain;
}
.contact__legal {
  font-size: 10px;
  font-weight: 400;
  line-height: 16.25px;
  text-align: center;
  color: #5F3F3A;
  margin-bottom: 0;
  margin-top: 16px;
}
@media (max-width: 991.98px) {
  .contact__form-wrap {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .contact__header-col {
    flex: 1 1 100%;
  }
  .contact__header-col--vi {
    border-left: none;
    padding-left: 0;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #B70000;
  }
  .contact__office-card {
    padding: 24px;
  }
  .contact__form-wrap {
    padding: 24px;
  }
}
