/* ===== Profile Tabs (no HTML changes) ===== */
.itsqa-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 14px;
}

.itsqa-tabs__btn{
  appearance:none;
  border:1px solid var(--itsqa-primary, #db685b);
  background:#fff;
  color:var(--itsqa-primary, #db685b);
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:10px 16px;
  border-radius:999px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.itsqa-tabs__btn:hover{
  transform: translateY(-1px);
  box-shadow:0 8px 22px rgba(219,104,91,.25), 0 3px 8px rgba(219,104,91,.15);
}
.itsqa-tabs__btn[aria-selected="true"]{
  background:var(--itsqa-primary, #db685b);
  color:#fff;
}

/* Panels */
.consultant_profile_sec .itsqa-tabpanel{ display:none; }
.consultant_profile_sec .itsqa-tabpanel.is-active{ display:block; }

/* Optional: tighten headings spacing inside panels */
.consultant_profile_sec .itsqa-tabpanel > h3{
  margin-top:0;
}

/* Match table header style (red head + bottom row borders) */
.consultant_profile_sec table.consultant-user-profile{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border:1px solid #eef1f5;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(16,24,40,.06), 0 2px 6px rgba(16,24,40,.04);
}

.consultant_profile_sec table.consultant-user-profile thead th{
  background:var(--itsqa-primary, #db685b);
  color:#fff;
  padding:12px 16px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-bottom:0;
}

.consultant_profile_sec table.consultant-user-profile tbody td{
  padding:14px 16px;
  border-bottom:1px solid #edf0f4;
}
.consultant_profile_sec table.consultant-user-profile tbody tr:last-child td{
  border-bottom:0;
}
.consultant_profile_sec table.consultant-user-profile tbody tr:hover{
  background:#fff7f6;
}
/* ===== Contact CTA (bottom of page) ===== */
.itsqa-contact-cta{
  --cta-bg1:#e67568;           /* brand fallback */
  --cta-bg2:#db685b;           /* brand fallback */
  --cta-text:#fff;
  --cta-btn:#fff;
  --cta-btn-text:#0f172a;

  /* use site gradient if defined, else fallback to brand */
  background: linear-gradient(
    90deg,
    var(--itsqa-bg-1, var(--cta-bg1)),
    var(--itsqa-bg-2, var(--cta-bg2))
  );
  color: var(--itsqa-text, #fff);
  border-radius: 24px;
  padding: 28px 32px;
  margin: 40px auto 0;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.itsqa-contact-cta__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.itsqa-contact-cta h3{
  margin: 0 0 10px !Important;
  font-size: 28px !important;
  line-height: 1.15;
  color: #fff !Important;
}

.itsqa-contact-cta p{
  margin: 0;
  font-size: 18px;
  opacity: .95;
  color: #fff;
}

.itsqa-contact-cta__btn{
  background: var(--cta-btn);
  color: var(--cta-btn-text);
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none !Important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

.itsqa-contact-cta__btn:hover{
 transform: translateY(-2px);
    opacity: .95;
    color: #d3ccc5 ! Important;
background:#ffffff00 !Important;
 text-decoration: none !Important;
}

@media screen and (max-width: 768px){
  .itsqa-contact-cta__wrap{
flex-direction: column; align-items: flex-start;gap:18px;
}
  .itsqa-contact-cta__btn{width: 100%; text-align: center;}
}

