/* ===== CONTACT ACCORDION TITLE ===== */
.sp-contact .gs-accordion-item__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #c9a227;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  width: max-content;
  margin: 0 auto 16px;
  left: 50%;
transform: translateX(-50%) translateX(-6px);

}

/* Text title */
.sp-contact .gs-accordion-item__heading {
  line-height: 1;
}

/* Icon mũi tên */
.sp-contact .iconfortoggle {
  display: flex;
  align-items: center;
  transform: scale(0.75);
}
/* ===== FORM BOX ===== */

/* Input / select / textarea */
.sp-contact .fluentform .ff-el-form-control {
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
}

/* Focus */
.sp-contact .fluentform .ff-el-form-control:focus {
  border-color: #c9a227;
  box-shadow: none;
}
.sp-contact .ff_list_inline {
  display: flex;
  gap: 16px;
}

.sp-contact .ff-el-form-check-label span {
  font-size: 14px;
}
.sp-contact + .gspb_container iframe {
  border-radius: 16px;
}
.sp-contact .gs-accordion-item__title[aria-expanded="false"] {
  background: #9E9E9E;
}



/* 1. ÉP radio native biến mất hoàn toàn */
.sp-contact input[type="radio"].ff-el-form-check-input {
  -webkit-appearance: none ;
  appearance: none ;
  background: none ;
  box-shadow: none ;
  outline: none ;
}

/* 2. Custom radio */
.sp-contact input[type="radio"].ff-el-form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* 3. Chấm vàng bên trong */
.sp-contact input[type="radio"].ff-el-form-check-input::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #c9a227;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s ease;
}

/* 4. Khi checked */
.sp-contact input[type="radio"].ff-el-form-check-input:checked {
  border-color: #c9a227;
}

.sp-contact input[type="radio"].ff-el-form-check-input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}


.company-info p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.company-info .label {
  color: #757575; 
}

.company-info .value {
  color: #212121; 
}


.gs-top-level-item.is-active {
  color: var(--theme-palette-color-5);
  font-weight: 600;
}