/* Smooth scroll */
html { scroll-behavior: smooth; }

/* FAQ Accordion animasyonu */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.active { max-height: 500px; }

/* WhatsApp pulse animasyonu */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.whatsapp-pulse { animation: pulse-green 2s infinite; }

/* Print stilleri */
@media print {
  header, footer, .fixed, .sticky { display: none !important; }
  main { padding: 0; }
}
