/* =====================
   FAQ JASA SEO
===================== */
.service-faq-section {
  background: #050505;
  padding: 110px 25px;
}

.service-faq-container {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.service-faq-heading {
  text-align: center;
  margin-bottom: 60px;
}

.service-faq-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}

.service-faq-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}

.service-faq-heading strong {
  color: white;
}

/* FAQ */
.service-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-faq-item {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
}

.service-faq-question {
  width: 100%;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  color: white;
  text-align: left;
}

.service-faq-question span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4af37;
  color: #050505;
  transition: .3s;
}

.service-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .35s ease;
}

.service-faq-answer p {
  padding: 0 30px 28px;
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
}

/* ACTIVE */
.service-faq-item.active {
  border-color: rgba(212, 175, 55, .55);
}

.service-faq-item.active .service-faq-answer {
  max-height: 350px;
}

.service-faq-item.active .service-faq-question span {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 520px) {
  .service-faq-section {
    padding: 80px 20px;
  }
  
  .service-faq-question {
    font-size: 16px;
    padding: 22px;
  }
  
  .service-faq-answer p {
    padding: 0 22px 24px;
  }
}