/* ========== FAQ SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* HERO - ÇOK FARKLI VE GÜZEL */
.faq-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139,92,246,0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.faq-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.faq-hero-content {
    position: relative;
    max-width: 800px;
    padding: 80px 24px;
    z-index: 10;
}

.faq-hero-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(59,130,246,0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(59,130,246,0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(59,130,246,0.6);
        transform: scale(1.05);
    }
}

.faq-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.faq-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.faq-hero-date {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.faq-hero-date span {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.faq-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.faq-hero-scroll span:first-child {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* KATEGORİ FİLTRELEME */
.faq-categories {
    padding: 40px 0 20px;
    background: #ffffff;
}

body.dark-mode .faq-categories {
    background: #0a0f2a;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background: #f1f5f9;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

body.dark-mode .filter-btn {
    background: #1e2a5e;
    color: #cbd5e1;
}

body.dark-mode .filter-btn:hover {
    background: #2d3a6e;
}

body.dark-mode .filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

/* SSS İÇERİK BÖLÜMÜ */
.faq-content {
    padding: 40px 0 60px;
    background: #ffffff;
}

body.dark-mode .faq-content {
    background: #0a0f2a;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* SSS KARTI */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
}

body.dark-mode .faq-item {
    background: #11173b;
    border-color: #1e2a5e;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question h3 {
    font-size: 1rem;
    color: #1e3a8a;
    margin: 0;
    font-weight: 600;
}

body.dark-mode .faq-question h3 {
    color: #60a5fa;
}

.faq-toggle {
    font-size: 1.3rem;
    color: #1e3a8a;
    font-weight: 600;
    transition: transform 0.3s;
}

body.dark-mode .faq-toggle {
    color: #60a5fa;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .faq-answer p {
    color: #cbd5e1;
}

/* KONTAKT BÖLÜMÜ */
.faq-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

body.dark-mode .faq-contact {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body.dark-mode .contact-box {
    background: #11173b;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-box h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

body.dark-mode .contact-box h3 {
    color: #60a5fa;
}

.contact-box p {
    color: #64748b;
    margin-bottom: 30px;
}

body.dark-mode .contact-box p {
    color: #cbd5e1;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30,58,138,0.3);
}

.contact-buttons .btn-outline {
    background: transparent;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-buttons .btn-outline:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

body.dark-mode .contact-buttons .btn-outline {
    border-color: #60a5fa;
    color: #60a5fa;
}

body.dark-mode .contact-buttons .btn-outline:hover {
    background: #60a5fa;
    color: #0a0f2a;
}

/* ALT BİLGİ BANDI */
.faq-footer-note {
    padding: 40px 0 60px;
    background: #ffffff;
}

body.dark-mode .faq-footer-note {
    background: #0a0f2a;
}

.note-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 30px;
    background: #f8fafc;
    border-radius: 60px;
}

body.dark-mode .note-box {
    background: #11173b;
}

.note-icon {
    font-size: 1.8rem;
}

.note-box p {
    color: #475569;
    font-size: 0.9rem;
    margin: 0;
}

body.dark-mode .note-box p {
    color: #cbd5e1;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .faq-hero {
        min-height: 450px;
    }
    
    .faq-hero-title {
        font-size: 2rem;
    }
    
    .faq-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-hero-date {
        gap: 15px;
    }
    
    .faq-hero-date span {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .faq-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .contact-box h3 {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn-primary,
    .contact-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .note-box {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 20px;
    }
    
    .faq-hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .faq-hero-title {
        font-size: 1.6rem;
    }
    
    .faq-hero-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
}
