.baixiu_contact {
  padding-top: var(--component-gap);
  background: var(--bg-color);
}

.bc-header {
  position: relative;
  text-align: center;
  margin-bottom: var(--gap-80);
}

.bc-title {
  display: inline-block;
  position: relative;
  color: #0137B5;
  font-size: var(--font-230);
  font-weight: 900;
  font-family: var(--font-family);
  line-height: 0.87;
  text-align: center;
  text-transform: uppercase;
}

.bc-gif {
  position: absolute;
  top: -23%;
  right: -5%;
  width: 7.625rem;
  aspect-ratio: 1/1;
  transform: rotate(36deg);
  object-fit: contain;
}

.bc-content {
  display: flex;
  justify-content: space-between;
  gap: var(--gap-80);
}

.bc-left {
  width: 40.87%;
}

.bc-section-title {
  margin-bottom: var(--gap-40);
}

.bc-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-30);
}

.bc-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-20);
  transition: all 0.3s ease;
}

.bc-icon {
  flex-shrink: 0;
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-icon svg {
  width: 1.25rem;
  aspect-ratio: 1/1;
}

.bc-info-text {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.bc-label {}

.bc-value {
  font-weight: 500;
}

.bc-social {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: var(--gap-40);
  margin-top: var(--gap-40);
}

.bc-social-title {
  margin-bottom: var(--gap-20);
}

.bc-social-list {
  display: flex;
  align-items: center;
  gap: var(--gap-10);
}

.bc-social-item {
  width: 2.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #0137B5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bc-social-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.2rem 0.4rem rgba(1, 55, 181, 0.3);
}

.bc-social-item img {
  max-width: 60%;
  object-fit: contain;
}

.bc-right {
  width: 49.3%;
}

.baixiu_contact .bc-right .inqury_title_box {
  padding-top: 0;
}

.baixiu_contact .bc-right .inqury_title_box .inqury_title_text {
  font-size: var(--font-36);
  line-height: 1.222;
}

.baixiu_contact .bc-right .inqury_submit {
  font-size: var(--font-24);
  font-weight: 600;
  border-radius: 5rem;
}

.baixiu_contact .bc-right .inqury-form .input-wrap .input-label {
  color: #000;
  font-size: var(--font-20);
  font-weight: 500;
  line-height: 1.2;
}

.baixiu_contact .bc-right .inqury-form .one-line-input::placeholder,
.baixiu_contact .bc-right .inqury-form .textarea-input::placeholder,
.baixiu_contact .bc-right .inqury-form .phone-wrap input::placeholder,
.baixiu_contact .bc-right .inqury-form .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: rgba(18, 18, 18, 0.50);
  font-weight: 500;
  line-height: 1.25;
  text-transform: capitalize;
}

.baixiu_contact .bc-right .inqury-form .one-line-input {
  border-radius: 5rem;
  border: 0.5px solid #222;
  background: var(--bg-color);
}

.baixiu_contact .bc-right .inqury-form .textarea-input {
  border-radius: 1.25rem;
  border: 0.5px solid #222;
  background: var(--bg-color);
}

.baixiu_contact .bc-right .inqury-form .phone-wrap .phone_number {
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  border: 0.5px solid #222;
  background: var(--bg-color);
}

.baixiu_contact .bc-right .inqury-form .form-control {
  border-radius: 5rem;
}

.baixiu_contact .bc-right .inqury-form .phone-wrap .bootstrap-select>.dropdown-toggle.bs-placeholder {
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  border: 0.5px solid #222;
}

/* ── Responsive ── */
@media screen and (max-width: 992px) {
  .bc-content {
    flex-direction: column;
  }

  .bc-left {
    width: 100%;
  }

  .bc-right {
    width: 100%;
  }

  .bc-gif {
    width: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .bc-gif {
    width: 3rem;
  }
}

@media screen and (max-width: 576px) {
  .bc-gif {
    top: -34%;
  }
}