/* =======================================================
   Geo IPTV — SEO FAQ styles (separate file)
   Load via: <link rel="stylesheet" href="assets/css/seo-faq.css">
   Uses <details>/<summary> = pure CSS accordion, no JS needed.
   Fully responsive (mobile-first).
   ======================================================= */

/* Force a single, centered, top-to-bottom column (overrides theme
   rules that can float the title left and push the list to the right) */
#faq.faq-seo .container { display: block !important; width: 100%; }
#faq.faq-seo .section-title {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
  margin: 0 auto 34px !important;
}
#faq.faq-seo .faq-list {
  float: none !important;
  clear: both !important;
  width: 100%;
}

.faq-seo {
  padding: 60px 0;
}

.faq-seo .faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-seo .faq-item {
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease;
}

.faq-seo .faq-item[open] {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

/* Clickable question row */
.faq-seo .faq-item > summary {
  list-style: none;              /* hide default triangle */
  cursor: pointer;
  padding: 18px 34px 18px 0;
  position: relative;
  outline: none;
}

.faq-seo .faq-item > summary::-webkit-details-marker {
  display: none;                 /* hide default marker (Safari/Chrome) */
}

/* Keep your H4 inline-friendly inside summary */
.faq-seo .faq-item > summary h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #37423b;
  display: inline;
}

/* + / − toggle icon */
.faq-seo .faq-item > summary::after {
  content: "\002B";              /* plus */
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #17b06b;                /* green accent (matches WhatsApp brand vibe) */
  transition: transform 0.2s ease;
}

.faq-seo .faq-item[open] > summary::after {
  content: "\2212";              /* minus */
}

/* Answer body */
.faq-seo .faq-item > p {
  margin: 0;
  padding: 0 0 20px 0;
  color: #5a6a5f;
  font-size: 15px;
  line-height: 1.7;
}

/* Simple open animation */
.faq-seo .faq-item[open] > p {
  animation: faqFade 0.28s ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive / mobile ---------- */
@media (max-width: 768px) {
  .faq-seo {
    padding: 40px 0;
  }
  .faq-seo .faq-item {
    padding: 0 16px;
  }
  .faq-seo .faq-item > summary {
    padding: 15px 30px 15px 0;
  }
  .faq-seo .faq-item > summary h4 {
    font-size: 15.5px;
  }
  .faq-seo .faq-item > p {
    font-size: 14.5px;
    padding-bottom: 16px;
  }
}
