/* ─── SSS Sayfası Stilleri ─── */

/* FAQ Hero */
.faq-hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #1976d2 100%);
  color: #fff;
  padding: 5rem 0 3rem;
  text-align: center;
}

.faq-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



/* FAQ List */
.faq-list {
  background: rgba(1,87,155,0.02);
  padding: 5rem 0;
}

.faq-list h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-primary);
  margin-bottom: 3rem;
  font-weight: 700;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 3rem;
}

.faq-group-title {
  font-size: 1.8rem;
  color: var(--clr-primary);
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  background: rgba(1,87,155,0.05);
  border-radius: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(1,87,155,0.05);
}

.faq-question[aria-expanded="true"] {
  background-color: rgba(1,87,155,0.1);
}

.question-text {
  flex: 1;
  margin-right: 1rem;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-secondary);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: #666;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
  margin-top: 0;
}

.faq-answer.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--clr-primary);
  font-weight: 600;
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #1976d2 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.services-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--clr-secondary);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(66,165,245,0.3);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: #1e88e5;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(66,165,245,0.4);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.phone-icon {
  font-size: 1rem;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    padding: 3rem 0 2rem;
  }
  
  .faq-list {
    padding: 3rem 0;
  }
  
  .faq-group-title {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}
