.qp-cftc{
  position: relative;
  padding: 80px 0;
  background-color: #0f1420;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.qp-cftc__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 32, 0.45) 0%, rgba(15, 20, 32, 0.15) 100%);
}

.qp-cftc__inner{
  position: relative;
  z-index: 1;
}

.qp-cftc__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f3f3;
  margin-bottom: 20px;
}
.qp-cftc__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgb(57 186 201);
  margin-top: 12px;
  margin: 12px auto 0;
}

.qp-cftc__description{
  margin: 0 auto 34px;
  text-align: center;
  max-width: 80ch;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.qp-cftc__panel{
  display: flex;
  gap: 22px;
  align-items: stretch;
  gap: 22px;
  padding: 0;
  background: transparent;
}

.qp-cftc__col{
  flex: 1 1 0;
  min-width: 0;
  padding: 22px;
  border: 1px solid #39bac961;
  border-color: var(--qp-cftc-border, #39bac961);
  border-radius: 0px;
  background: rgba(20, 25, 34, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.qp-cftc__col--left{
  order: 2;
  flex: 0 0 30%;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.qp-cftc__col--right{
  order: 1;
  flex: 0 0 70%;
}

@media (max-width: 700px){
  .qp-cftc__panel{
    flex-direction: column;
  }
}

.qp-cftc__location-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qp-cftc__location{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 40px 22px;
  border-radius: 0px;
  border: 1px solid var(--qp-cftc-border, rgb(114 223 255 / 24%));
  background: rgba(20, 25, 34, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.qp-cftc__loc-icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgb(67 50 1 / 20%);
  border: 1px solid rgb(57 200 207);
  color: #69c1eb;
  font-size: 22px;
}

.qp-cftc__loc-title{
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.qp-cftc__loc-content{
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.8;
}

.qp-cftc__loc-content p{
  margin: 0;
}

.qp-cftc__form-head{
  margin-bottom: 14px;
  margin-top: 20px;
}

.qp-cftc__form {
  margin-top: 32px;
}

.qp-cftc__form-title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.qp-cftc__form-divider{
  width: 120px;
  height: 1px;
  background: rgb(57 186 201 / 57%);
}

.qp-cftc__form{
  width: 100%;
}

/* Center the form block; keep it ~70% width */
.qp-cftc__form .fluentform,
.qp-cftc__form form{
  /*width: min(70%, 720px);*/
  margin: 0 auto;
}

.qp-cftc__form :is(h1,h2,h3,h4,h5,h6){
  color: #fff !important;
  font-weight: 400;
}

.qp-cftc__form :is(label,.ff-el-input--label,.ff-el-section-break .ff-el-section-title){
  color: #fff !important;
  font-weight: 400;
}

.qp-cftc__form :is(button[type="submit"], input[type="submit"], .ff-btn, .ff-btn-submit),
.qp-cftc__form .fluentform :is(button[type="submit"], input[type="submit"], .ff-btn, .ff-btn-submit){
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  padding: 13px 22px;
  border-radius: 30px 30px 30px 30px;
  color: var(--e-global-color-19a9565, #ffffff);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  background-color: transparent;
  background-image: radial-gradient(at left top, rgb(57, 223, 216) 0%, rgb(58, 32, 139) 95%);
  text-transform: uppercase;
  min-width: 160px;
}

/* Fluent Forms: inputs like the screenshot (white fields) */
.qp-cftc__form :is(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select){
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.qp-cftc__form :is(input::placeholder, textarea::placeholder){
  color: rgba(0,0,0,0.55) !important;
}

