/* ── FAQs Block CSS ── */

.pp-faqs-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--bgcreame);
}

/* .pp-faqs-section .pp-section-header {
    margin-bottom: 50px;
} */

/* .pp-faqs-section .pp-section-subtitle {
    max-width: 600px;
    margin: 15px auto 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
} */

/* ── FAQ Items Grid ── */
.pp-faqs-grid {
  margin-bottom: 40px;
  row-gap: 20px;
}

.pp-faq-item {
  background: var(--white);
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.pp-faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pp-faq-item-inner {
  display: flex;
  align-items: center;
  padding: 20px 25px 20px 80px;
  cursor: pointer;
  gap: 20px;
}

.pp-faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 87, 51, 0.2);
  position: absolute;
  left: 0;
}

.pp-faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.pp-faq-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.pp-faq-item.active .pp-faq-toggle {
  transform: rotate(180deg);
}

.pp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.pp-faq-answer-inner {
  padding: 0 24px 24px 82px;
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
}
.pp-faq-answer-inner p {
  line-height: 1.5;
}

.pp-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ── Contact Card ── */
.pp-faqs-contact-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pp-faqs-contact-card {
  background: var(--bgcreame);
  border: 1px solid var(--border-cream);
  border-radius: 15px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pp-faqs-contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 87, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-faqs-contact-icon i {
  font-size: 32px;
  color: var(--orange);
}

.pp-faqs-contact-text h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.pp-faqs-contact-text p {
  margin: 0;
  font-size: 14px;
  color: var(--grey);
}

.pp-faqs-contact-action {
  padding-left: 24px;
  border-left: 1px solid var(--border-cream);
}

.pp-faqs-contact-action .pp-btn {
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition:
    background 0.4s ease,
    left 0.4s ease;
}

.pp-faqs-contact-action .pp-btn:hover {
  background: var(--blue);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .pp-faqs-contact-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .pp-faqs-contact-action {
    padding-left: 0;
    border-left: none;
    padding-top: 15px;
    border-top: 1px solid var(--border-cream);
    width: 100%;
  }
}

@media (max-width: 767px) {
  .pp-faqs-section {
    padding: 50px 0;
  }

  .pp-faq-item-inner {
    padding: 12px 16px;
    gap: 15px;
  }

  .pp-faq-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .pp-faq-question {
    font-size: 14px;
  }

  .pp-faq-answer-inner {
    padding: 0 16px 20px 71px;
    font-size: 14px;
  }
}
