/* ===== FAQ PAGE ===== */

.faq-hero {
    background: var(--color-graphite);
    padding: 140px 0 80px;
    text-align: center;
}

.faq-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.faq-hero-title {
    font-family: var(--font-accent);
    font-size: clamp(36px, 5vw, 56px);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

/* Section */
.faq-section {
    padding: 60px 0 100px;
    background: #f5f2ee;
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-graphite);
    line-height: 1.5;
}

/* Plus/minus icon */
.faq-question-icon,
.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #f5f2ee;
    color: var(--color-graphite);
    transition: background 0.3s, transform 0.3s;
}

.faq-question-icon svg,
.faq-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

/* Open state: rotate plus to X */
.faq-item.open .faq-question-icon,
.faq-item.open .faq-arrow {
    background: var(--color-graphite);
    color: var(--color-white);
    transform: rotate(45deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(36,35,36,0.7);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.faq-answer li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(36,35,36,0.7);
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-beige);
}

.faq-answer strong {
    color: var(--color-graphite);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-question-icon,
    .faq-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .faq-question-icon svg,
    .faq-arrow svg {
        width: 14px;
        height: 14px;
    }
}
