﻿ 
.sss-modern {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.sss-modern .sss-header {
    text-align: center;
    margin-bottom: 48px;
}

    .sss-modern .sss-header .sss-eyebrow {
        display: inline-block;
        background: rgba(29, 78, 216, 0.08);
        color: #1d4ed8;
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .sss-modern .sss-header .sss-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .sss-modern .sss-header .sss-subtitle {
        font-size: 1.05rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* SSS Kartları - Yumuşak ve Modern */
.sss-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sss-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .sss-item:hover {
        border-color: rgba(29, 78, 216, 0.15);
        box-shadow: 0 4px 16px rgba(29, 78, 216, 0.06);
    }

    .sss-item .sss-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 24px;
        background: transparent;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: #0f172a;
        cursor: pointer;
        transition: all 0.25s ease;
        text-align: left;
        gap: 16px;
    }

        .sss-item .sss-question:hover {
            color: #1d4ed8;
        }

        .sss-item .sss-question .sss-question-text {
            flex: 1;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .sss-item .sss-question .sss-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
            font-size: 16px;
            color: #64748b;
        }

            .sss-item .sss-question .sss-icon i {
                display: inline-block !important;
                transition: transform 0.35s ease;
                font-size: 16px;
                /* rotate kuralları kaldırıldı */
            }
 

    .sss-item.active .sss-question .sss-icon {
        background: #1d4ed8;
        color: #ffffff;
    }

        .sss-item.active .sss-question .sss-icon i.fa-chevron-down {
            transform: rotate(180deg);
        }

    .sss-item .sss-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
        padding: 0 24px;
    }

    .sss-item.active .sss-answer {
        max-height: 800px;
        padding: 0 24px 24px 24px;
    }

    .sss-item .sss-answer-content {
        font-size: 0.98rem;
        line-height: 1.7;
        color: #334155;
        padding-top: 4px;
        border-top: 1px solid rgba(226, 232, 240, 0.4);
    }

        .sss-item .sss-answer-content p {
            margin-bottom: 12px;
        }

            .sss-item .sss-answer-content p:last-child {
                margin-bottom: 0;
            }

    /* Aktif durumda yumuşak vurgu */
    .sss-item.active {
        border-color: rgba(29, 78, 216, 0.2);
        background: #fafcff;
        box-shadow: 0 4px 20px rgba(29, 78, 216, 0.06);
    }

/* Responsive */
@media (max-width: 768px) {
    .sss-modern

{
    padding: 40px 0;
}

.sss-modern .sss-header .sss-title {
    font-size: 1.6rem;
}

.sss-item .sss-question {
    padding: 14px 18px;
}

    .sss-item .sss-question .sss-question-text {
        font-size: 0.95rem;
    }

.sss-item.active .sss-answer {
    padding: 0 18px 18px 18px;
}

.sss-item .sss-answer-content {
    font-size: 0.92rem;
}

}
/* hidden attribute görsel kapanma ile uyumlu çalışsın */
.sss-item .sss-answer[hidden] {
    display: block; /* animasyon bozulmasın */
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
}

/* Başlık (h3) içindeki buton varsayılan stilini sıfırla */
.sss-question-heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
@media (max-width: 480px) {
    .sss-modern .sss-header .sss-title

{
    font-size: 1.35rem;
}

.sss-item .sss-question {
    padding: 12px 14px;
}

    .sss-item .sss-question .sss-question-text {
        font-size: 0.88rem;
    }

    .sss-item .sss-question .sss-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

        .sss-item .sss-question .sss-icon i {
            font-size: 14px;
        }

}

