/* FAQ (Sık Sorulan Sorular) Sayfası Stilleri */
/* Base.css'den taşınan FAQ stilleri */

/* FAQ Page styles */
.faq-page {
  padding: 2rem 0 4rem;
  background: var(--color-background);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.6;
}

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

.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

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

.faq-question:hover {
  background: rgba(255, 0, 0, 0.03);
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] {
  background: rgba(255, 0, 0, 0.05);
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(65, 65, 65, 0.8);
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  line-height: 1.6;
  color: var(--color-muted);
}

.faq-footer {
  text-align: center;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.faq-contact h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.faq-contact p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.faq-contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-contact-buttons .btn {
  min-width: 140px;
}

/* Button Styles - buttons.css'den alınan temel stiller */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  padding: 12px 18px; 
  border-radius: 10px; 
  border: 1px solid var(--color-border);
  color: var(--color-text); 
  background: rgba(255,255,255,0.04); 
  font-weight: 600; 
  transition: transform .15s ease, background .2s;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { 
  background: rgba(255,255,255,0.08); 
  transform: translateY(-1px); 
}

.btn:active { 
  transform: translateY(0); 
}

.btn--primary { 
  background: var(--color-primary); 
  border-color: var(--color-primary-700); 
  color: white;
}

.btn--primary:hover { 
  background: var(--color-primary-700); 
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-page {
    padding: 1rem 0 2rem;
  }

  .faq-content {
    padding: 0 1rem;
  }

  .faq-title {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    padding: 0 1rem 1rem;
  }
  
  .faq-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-contact-buttons .btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Print Styles */
@media print {
  .faq-page {
    background: white;
    color: black;
  }

  .faq-title {
    color: black;
  }

  .faq-section-title {
    color: black;
    border-bottom-color: black;
  }

  .faq-question,
  .faq-answer p {
    color: black;
  }

  .faq-contact-buttons {
    display: none;
  }
}
