/* assets/css/sss.css */

.sss-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.sss-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

/* Arama Bölümü */
.search-section {
    margin-top: -30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 18px 50px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-clear {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.search-clear:hover {
    color: #dc3545;
}

/* Kategori Navigasyonu */
.category-nav {
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-list {
    display: flex;
    gap: 15px;
    padding: 5px 0;
    min-width: max-content;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    border-radius: 40px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.category-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.category-item i {
    font-size: 16px;
}

/* Kategori Başlıkları */
.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: #667eea;
    font-size: 28px;
}

/* FAQ Listesi */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(102,126,234,0.15);
}

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #667eea;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.answer-content {
    padding: 20px 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid #e1e1e1;
}

/* İletişim Desteği */
.contact-support {
    margin-top: 60px;
    text-align: center;
}

.support-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px 30px;
    color: white;
}

.support-content i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.support-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-contact,
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-contact {
    background: white;
    color: #667eea;
}

.btn-call {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-contact:hover,
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-call:hover {
    background: white;
    color: #667eea;
}

/* Boş İçerik */
.no-content {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.no-content i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.no-content p {
    color: #666;
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .support-buttons {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .category-item {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .category-item i {
        font-size: 14px;
    }
}