.jt-section-wrap{
  max-width: 1200px;
  width: 100%;
  margin: 30px auto;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.jt-row{
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.jt-col-left{
  flex: 0 0 520px;
}

.jt-col-right{
  flex: 0 0 670px;
}

/* =========================
   FAQ STYLE
========================= */
.faq-wrapper{
  height: 100%;
}

.faq-container{
  background: linear-gradient(135deg, #173441, #234b5a);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  height: 100%;
  box-sizing: border-box;
}

.faq-title{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  box-sizing: border-box;
}

.faq-item{
  background: #f3f3f3;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.faq-question{
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  position: relative;
}

.faq-question::after{
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 500;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::after{
  content: "–";
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  background: #ffffff;
  transition: all 0.35s ease;
  box-sizing: border-box;
}

.faq-item.active .faq-answer{
  max-height: 220px;
  padding: 0 20px 18px;
}

/* =========================
   REVIEW STYLE
========================= */
.jt-review-wrap{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255,177,0,.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(225,11,11,.16), transparent 35%),
    linear-gradient(145deg, #101820, #132a36 55%, #183847);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  box-sizing: border-box;
}

.jt-review-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.04), transparent 35%, transparent 65%, rgba(255,255,255,.03));
  pointer-events: none;
}

.jt-review-header{
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.jt-review-badge{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,177,0,.15);
  border: 1px solid rgba(255,177,0,.30);
  color: #ffc94d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}

.jt-review-title{
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.jt-review-subtitle{
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.7;
}

.jt-review-slider{
  position: relative;
  z-index: 2;
  margin-top: 18px;
  height: 310px;
}

.jt-review-card{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px) scale(.98);
  transition: all .5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  box-sizing: border-box;
}

.jt-review-card.active{
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.jt-review-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.jt-member{
  display: flex;
  align-items: center;
  gap: 14px;
}

.jt-avatar{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffb100, #ff7a00);
  color: #111;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255,177,0,.25);
  flex-shrink: 0;
}

.jt-member-name{
  margin: 0 0 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.jt-member-info{
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.jt-stars{
  color: #ffb100;
  font-size: 18px;
  white-space: nowrap;
}

.jt-review-text{
  margin: 0;
  color: #f3f3f3;
  font-size: 15px;
  line-height: 1.8;
}

.jt-review-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 10px;
  flex-wrap: wrap;
}

.jt-review-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #d7e5ec;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.08);
}

.jt-dots{
  display: flex;
  gap: 8px;
}

.jt-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  transition: all .25s ease;
}

.jt-dot.active{
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb100, #ff7a00);
  box-shadow: 0 0 12px rgba(255,177,0,.28);
}

.jt-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  transition: .25s ease;
}

.jt-arrow:hover{
  background: rgba(255,177,0,.18);
  color: #ffcf4d;
}

.jt-arrow.prev{ left: 8px; }
.jt-arrow.next{ right: 8px; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
  .jt-row{
    flex-direction: column;
  }

  .jt-review-slider{
    height: 330px;
  }
}

@media (max-width: 600px){
  .faq-title{
    font-size: 16px;
  }

  .faq-question{
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-answer{
    font-size: 13px;
  }

  .jt-review-wrap{
    padding: 18px;
  }

  .jt-review-title{
    font-size: 20px;
  }

  .jt-review-slider{
    height: 360px;
  }

  .jt-review-card{
    padding: 18px;
  }

  .jt-review-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .jt-arrow{
    display: none;
  }
}

