/* =========================
   FAQ FIGMA UI (Bootstrap 4)
   Font fix for Windows + cleaned media queries
========================= */

:root{
  --fg-purple-dark:#500E69;
  --fg-purple:#7A159F;
  --fg-purple-mid:#9A019D;
  --fg-purple-lite:#AF48D4;

  --fg-white:#ffffff;
  --fg-text:#f5f5f5;

  --r10:10px;

  /* ✅ Consistent font stacks across Windows/Mac */
  --ff-avenir: "Avenir LT Std","Avenir Next","Avenir","Segoe UI",Arial,sans-serif;
  --ff-oswald: "Oswald", sans-serif;
  --ff-opensans: "Open Sans", "Segoe UI", Arial, sans-serif;
}

.faq-figma{
  font-family: var(--ff-avenir);
}

/* =========================================================
   BACKGROUND
   (css in /assets/css/, so ../img/ path)
========================================================= */
.faq-body{
  position:relative;
  padding: 55px 0 80px;
  overflow:hidden;
  min-height: 700px;
}

.faq-body::before{
  content:"";
  position:absolute; inset:0;
  background: url("../img/home12/Group73.webp") center center / cover no-repeat;
  opacity: 0.35;
  z-index:0;
}

.faq-body::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(5.53deg, rgba(28,94,210,0) 0%, rgba(13,93,196,1) 100%);
  opacity: 0.95;
  z-index:0;
}

.faq-body__inner{
  position: relative;
  z-index: 2;
  max-width: 1850px;
  margin: 0 auto;
  padding: 19px 86px;
}

@media (max-width: 1199px){
  .faq-body__inner{ padding: 0 40px; }
}
@media (max-width: 767px){
  .faq-body__inner{ padding: 0 16px; }
}

.faq-desc{
  text-align:center;
  color:#fff;
  margin-bottom: 28px;
  font-family: var(--ff-opensans);
  font-weight: 300;
}

/* =========================================================
   LAYOUT
========================================================= */
.faq-layout{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  align-items:start;
}

@media (max-width: 991px){
  .faq-layout{ grid-template-columns: 1fr; }
}

/* =========================================================
   LEFT NAV
========================================================= */
.faq-left__tabs{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin:0;
  padding:0;
  list-style:none;
}

.faq-left__tablink,
.faq-left__tablink:hover,
.faq-left__tablink:focus,
.faq-left__tablink.active{
  display:flex;
  align-items:center;
  gap: 18px;
  /* height: 135px; */
  background: var(--fg-purple) !important;
  border-radius: var(--r10);
  padding: 0 18px 0 0;
  position:relative;

  color:#fff !important;
  text-decoration:none !important;
  border:0 !important;
  box-shadow:none !important;

  line-height: 1;
}


.faq-left__iconbox{
  width: 89px;
  height: 70px;
  border-radius: var(--r10) 0 0 var(--r10);
  background: rgba(0, 0, 0, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.faq-left__tablink.active .faq-left__iconbox{
  background: var(--fg-purple-dark);
}

.faq-left__iconimg{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
  filter: brightness(0) invert(1);
}

.faq-left__label{
  flex: 1 1 auto;
  min-width: 0;
  display:block;

  font-family: var(--ff-avenir);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1px;
  color:#fff !important;
  line-height: 1.05;
  white-space: normal;
}

/* Arrow only for active (space reserved to avoid jump) */
.faq-left__arrow{
  flex: 0 0 44px;
  justify-content:flex-end;
  padding-right: 6px;
  display:flex;
  align-items:center;
}
.faq-left__arrowimg{
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease;
}
.faq-left__tablink.active .faq-left__arrowimg{
  opacity: 1;
  visibility: visible;
}

/* Subtabs */
.faq-left__subtabs{
  margin: 10px 0 0;
  padding:0;
  list-style:none;
}

.faq-left__sublink{
  display:flex;
  align-items:center;
  height: 62px;
  border-radius: var(--r10);
  background: rgba(255,255,255,0.12);
  color:#fff !important;
  font-family: var(--ff-avenir);
  font-size: 20px;
  font-weight: 400;
  padding: 0 16px;
  text-decoration:none !important;
  border:0 !important;
}

.faq-left__sublink:hover,
.faq-left__sublink:focus{
  background: rgba(255,255,255,0.18);
  color:#fff !important;
}

.faq-left__sublink.active{
  background: rgba(255,255,255,0.22);
  color:#fff !important;
}

/* =========================================================
   RIGHT ACCORDION
========================================================= */
.faq-right{ min-width:0; }

.faq-accordion{
  border-radius: var(--r10);
  overflow:hidden;
}

.faq-card{
  border:0;
  border-radius:0;
  background: transparent;
  margin:0;
}

/* default closed header */
.faq-card__header{
  background: var(--fg-purple-mid);
  padding:0;
  border:0;
  border-bottom:  2px solid #4b4949;
}

/* ✅ open header controlled by JS class (better than :has) */
.faq-card.is-open .faq-card__header{
  background: var(--fg-purple-dark) !important;
}

.faq-card__btn{
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  font-family: var(--ff-avenir);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1px;
  color: var(--fg-text) !important;
  text-decoration: none !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 1.25;
  gap: 12px;
}

.faq-card__q{ padding-right: 14px; }

.faq-card__icon{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  flex: 0 0 auto;
}
.faq-card__icon i{ font-size: 12px; }

/* Answer */
.faq-card__body{
  background: var(--fg-purple-lite);
  color:#fff;
  padding: 18px 26px 22px;

  font-family: var(--ff-opensans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
}

.faq-card__body,
.faq-card__body *{
  color: #fff !important;
  font-family: var(--ff-opensans) !important;
  font-size: 14px !important;
  line-height: 1.4;
  font-weight: 400;
}

.faq-card__body a{
  color:#fff !important;
  text-decoration: underline;
}

/* Keep nav link colors stable in bootstrap */
a#tab-ppl_music_license-tab:hover,
a#tab-music_label_member-tab:hover,
a#tab-radio-tab:hover{
  -webkit-text-fill-color: #ffffff !important;
}

/* =========================================================
   BANNER (if you use it)
========================================================= */
/* .banner {
  background: url("/assets/img/home12/main-faq-banner.jpg") center / cover no-repeat!important;
  height: 100vh;
} */

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px){
  .faq-card__btn{ font-size: 24px; }
}

@media (max-width: 991px){
  .faq-left__tablink{ height: 96px; }
  .faq-left__iconbox{ width: 86px; height: 96px; }
  .faq-left__label{ font-size: 24px; }
}

@media (max-width: 767px){
  .faq-left__tablink{
    height: 78px;
    padding-right: 12px;
    gap: 12px;
  }
  .faq-left__iconbox{ width: 70px; height: 78px; }
  .faq-left__label{ font-size: 18px; }

  .faq-left__arrow{ flex: 0 0 34px; }
  .faq-left__arrowimg{ width: 28px; height: 28px; }

  .faq-card__btn{ padding: 14px 16px; font-size: 18px; }
  .faq-card__body{ padding: 14px 16px 18px; }
  .faq-card__body,
  .faq-card__body *{
    font-size: 14px !important;
    line-height: 1.55;
  }
}

@media (max-width: 480px){
  .faq-left__tablink{ height: 70px; }
  .faq-left__iconbox{ width: 62px; height: 70px; }
  .faq-left__label{ font-size: 16px; }
  .faq-left__arrow{ flex: 0 0 30px; }
  .faq-left__arrowimg{ width: 24px; height: 24px; }

  .faq-card__btn{ font-size: 16px; }
}
.faq-card.is-open .faq-card__header{
  background: var(--fg-purple-dark);
}
@media screen and (max-width: 767px) {
  .page_header h1 {
      text-align: left;
      max-width: 567px;
      font-size: 33px;
      font-weight: bold;
      color: white;
      line-height: 1.3;
      position: relative;
      margin-top: 67px;
      margin-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page_header p {
      font-size: 24px;
      line-height: 1.3;
      color: white;
      max-width: 550px;
      text-shadow: 1px 1px 2px #000000;
      margin-top: 66px;
      padding-top: 62px;
      text-align: center;
      margin-left: 27px;
  }
}