﻿/* --- Kurumsal Değişkenler --- */
:root {
    --primary-teal: #008080;
    --dark-teal: #004d4d;
    --light-teal: #f0fafa;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
}

.faq-section {
    background: #fafbfc;
}

.faq-hero {
    background: linear-gradient(135deg, #008080 0%, #091000 100%);
    /* background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);*/
    position: relative;
    overflow: hidden;
}

    .faq-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
    }

.faq-card {
    background: white;
    transition: all 0.3s ease;
}

    .faq-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    }

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .faq-question:hover {
        background-color: #f8f9fa !important;
    }

    .faq-question:focus {
        outline: none;
        box-shadow: none;
    }

.question-number .badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #008080 0%, #091000 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.question-text {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.6;
}

.question-icon {
    color: #667eea;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .question-icon {
    transform: rotate(180deg);
    color: #764ba2;
}

.faq-question[aria-expanded="true"] {
    background-color: #f8f9ff !important;
}

    .faq-question[aria-expanded="true"] .question-text {
        color: #667eea;
    }

.faq-answer {
    background: #fafbfc;
    animation: fadeIn 0.3s ease;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.answer-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.help-card {
    background: white;
    border: 2px dashed #e2e8f0;
    transition: all 0.3s ease;
}

    .help-card:hover {
        border-color: #109694;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15) !important;
    }

    .help-card .btn-primary {
        /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
        background: var(--primary-gradient, #008080);
        border-color: var(--primary-color, #008080);
        color: white;
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .help-card .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

@media (max-width: 768px) {
    .faq-hero {
        padding: 2rem 0 !important;
    }

        .faq-hero h1 {
            font-size: 2rem;
        }

        .faq-hero .lead {
            font-size: 1rem;
        }

    .faq-question {
        padding: 1.25rem !important;
    }

    .question-number .badge {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .answer-content {
        padding-left: 1rem !important;
        margin-left: 0 !important;
    }

    .help-card {
        padding: 2rem !important;
    }
}
