/* ND Danışmanlık - Ortak stil dosyası (Stitch tasarım sistemi baz alınmıştır) */

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(188, 201, 199, 0.3);
    box-shadow: 0 4px 20px rgba(93, 94, 97, 0.04);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 226, 229, 0.5);
    box-shadow: 0 4px 20px rgba(93, 94, 97, 0.04);
}

.dark .glass-card,
.dark .glass-panel {
    background: rgba(44, 49, 49, 0.8);
    border-color: rgba(109, 122, 120, 0.3);
}

/* Scroll reveal animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-100.active { transition-delay: 0.1s; }
.reveal.delay-200.active { transition-delay: 0.2s; }
.reveal.delay-300.active { transition-delay: 0.3s; }

/* Mobil menü */
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.mobile-nav.open {
    max-height: 480px;
}

/* SSS accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-chevron {
    transition: transform 0.3s ease-in-out;
}
