/* ── Footer Responsiveness ─────────────────────────── */
@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── SSS Sayfa Stilleri ─────────────────────────── */
p {
    color: #1e293b;
}

a {
    color: #2563eb;
}

/* Kategori sekmeler */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.faq-tab {
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: white;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s;
    user-select: none;
}

.faq-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.faq-tab.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

/* Kategori başlığı */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category[data-cat].hidden {
    display: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.category-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0f172a;
}

/* Accordion */
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 0.65rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: 1.15rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: #0f172a;
    transition: background 0.15s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-item.open .faq-question {
    background: #f8fafc;
    color: #2563eb;
}

.faq-chevron {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.25s, background 0.2s;
    color: #475569;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: #2563eb;
    color: white;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.35rem;
    color: #334155;
    line-height: 1.8;
    font-size: 0.95rem;
    border-top: 1px solid #f1f5f9;
    background: white;
}

.faq-answer p {
    margin: 0.75rem 0 0;
    color: #334155;
}

.faq-answer ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.faq-answer ul li {
    color: #334155;
    margin-bottom: 0.35rem;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Sidebar arama */
.faq-search {
    position: relative;
    margin-bottom: 2rem;
}

.faq-search input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    background: white;
}

.faq-search input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.faq-search .search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}

/* "Hâlâ sorunuz var mı?" kutusu */
.still-questions {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.still-questions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0 0 1rem;
    color: white;
}

.still-questions p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.still-questions .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.still-questions .cta-btn {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.still-questions .cta-primary {
    background: #f97316;
    color: white;
}

.still-questions .cta-primary:hover {
    background: #ea580c;
}

.still-questions .cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.still-questions .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Yok sonuç */
#no-results {
    display: none;
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

#no-results .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}