/* ==========================================================
   SSS SAYFASI - Help Psikoloji
   Diğer sayfalarla uyumlu (uzmanlar, yayinlar gibi)
========================================================== */

/* HERO - Diğer sayfalarla BİREBİR AYNI */
.sss-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #A0886A, #C9A87C);
}

.sss-hero .hero-content {
  max-width: 800px;
  padding: 0 40px;
  text-align: center;
}

.sss-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.sss-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* SSS BÖLÜMÜ */
.sss-section {
  padding: 80px 30px;
  background: #fff;
}

.sss-container {
  max-width: 900px;
  margin: 0 auto;
}

/* KATEGORİ */
.sss-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--background-light);
  font-weight: 600;
}

/* FAQ ITEM */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

/* SORU BUTONU */
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--background-light);
  color: var(--primary-color);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--background-light);
}

/* AÇIK DURUM */
.faq-item.active .faq-question {
  background: var(--background-light);
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: #fff;
}

/* CEVAP */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.faq-answer ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-answer ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--primary-color);
  transition: all 0.3s;
}

.faq-answer a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.faq-answer strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* CTA */
.sss-cta {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.sss-cta h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
}

.sss-cta p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #fff;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
}

.btn-primary {
  background: #fff;
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* RESPONSIVE - Diğer sayfalarla BİREBİR AYNI */
@media (max-width: 768px) {
  .sss-hero {
    min-height: auto;
    padding: 40px 0;
  }
  
  .sss-hero h1 {
    font-size: 2.2rem;
  }
  
  .sss-hero p {
    font-size: 1.1rem;
  }
  
  .sss-section {
    padding: 50px 20px;
  }
  
  .category-title {
    font-size: 1.4rem;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  
  .sss-cta {
    padding: 35px 25px;
  }
  
  .sss-cta h2 {
    font-size: 1.5rem;
  }
  
  .sss-cta p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sss-hero h1 {
    font-size: 1.7rem;
  }
  
  .sss-category {
    margin-bottom: 40px;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
}