@import url('../layout.css');

body {
    background: linear-gradient(#ffffffb1), url('../IMG-20251104-WA0059.jpg');
    background-size: cover;
    background-position: center;
}

.faq-page {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 5% 3rem;
}

.faq-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-hero__icon {
    font-size: 2.5rem;
    color: var(--color--1);
    margin-bottom: 0.5rem;
}

.faq-hero__title {
    font-family: "Momo Trust Display", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--color--3);
    line-height: 1.2;
}

.faq-hero__subtitle {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.95rem;
    color: var(--color--3);
    opacity: 0.85;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 148, 45, 0.35);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: var(--color--1);
}

.faq-item[open] {
    border-color: var(--color--1);
    box-shadow: 0 4px 20px rgba(8, 82, 120, 0.08);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color--3);
    cursor: pointer;
    list-style: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__chevron {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--color--1);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 1.15rem 1rem;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color--3);
    opacity: 0.9;
    border-top: 1px solid rgba(20, 148, 45, 0.15);
    margin-top: 0;
    padding-top: 0.85rem;
}

.faq-cta {
    margin-top: 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 2px solid var(--color--3);
    border-radius: 14px;
    padding: 1.5rem;
}

.faq-cta__title {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 1.2rem;
    color: var(--color--3);
    margin-bottom: 0.35rem;
}

.faq-cta__text {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.88rem;
    color: var(--color--3);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.faq-cta__btn {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 0.85rem;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-cta__btn--primary {
    background: var(--color--1);
    color: #fff;
    border: 2px solid var(--color--1);
}

.faq-cta__btn--primary:hover {
    background: var(--color--3);
    border-color: var(--color--3);
}

.faq-cta__btn--secondary {
    background: transparent;
    color: var(--color--3);
    border: 2px solid var(--color--3);
}

.faq-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (width < 900px) {
    .faq-page {
        padding: 0 4% 2rem;
    }

    .faq-hero__icon {
        font-size: 2rem;
    }

    .faq-item__question {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }

    .faq-item__answer {
        font-size: 0.85rem;
        padding: 0.75rem 1rem 0.85rem;
    }

    .faq-cta {
        padding: 1.15rem;
    }

    .faq-cta__btn {
        flex: 1;
        min-width: 130px;
        font-size: 0.8rem;
    }
}
