/* --- faq.css --- */
body {
    background-color: #0e0e0e;
    color: #F5F5F0;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hero Section */
.hero-faq {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: radial-gradient(circle at top right, rgba(20, 30, 40, 0.4) 0%, rgba(14, 14, 14, 0.95) 70%), url('../klientam/img/hero-klients.webp') center/cover no-repeat;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-faq::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0e0e0e;
    opacity: 0.8;
}

.hero-faq div {
    position: relative;
    z-index: 2;
}

.hero-faq h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero-faq p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(245, 245, 240, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Content Setup */
.faq-page-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 60px;
}

.faq-group-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* Individual accordion items */
.faq-item {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    padding-right: 40px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s;
    color: #4dff88;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease-in;
    opacity: 1;
}

@media(max-width: 768px) {
    .faq-page-content {
        padding: 40px 16px;
    }

    .faq-group {
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }
}