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

.faq-hero {
    padding: 140px 24px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.faq-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-20px);
    animation: faq-title-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes faq-title-in {
    to { opacity: 1; transform: translateY(0); }
}
.faq-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: #8c6239;
    font-weight: 500;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-15px);
    animation: faq-sub-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
@keyframes faq-sub-in {
    to { opacity: 0.85; transform: translateY(0); }
}

/* ============ FAQ LIST ============ */
.faq-main {
    padding: 30px 24px 100px;
}
.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-empty {
    text-align: center;
    padding: 60px 24px;
    background: #faf5ea;
    border-radius: 18px;
    color: #6b5847;
    font-size: 1.05rem;
    border: 1.5px dashed rgba(140, 98, 57, 0.3);
}

.faq-item {
    background: #faf5ea;
    border-radius: 16px;
    border: 1.5px solid rgba(140, 98, 57, 0.12);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-container .faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-container .faq-item:nth-child(2) { transition-delay: 0.12s; }
.faq-container .faq-item:nth-child(3) { transition-delay: 0.19s; }
.faq-container .faq-item:nth-child(4) { transition-delay: 0.26s; }
.faq-container .faq-item:nth-child(5) { transition-delay: 0.33s; }
.faq-container .faq-item:nth-child(6) { transition-delay: 0.4s; }
.faq-container .faq-item:nth-child(7) { transition-delay: 0.47s; }
.faq-item:hover { border-color: rgba(140, 98, 57, 0.3); box-shadow: 0 6px 20px rgba(140, 98, 57, 0.1); }
.faq-item[open] {
    background: #fff;
    border-color: rgba(140, 98, 57, 0.35);
    box-shadow: 0 8px 28px rgba(140, 98, 57, 0.15);
}

.faq-question {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--brown-text);
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    user-select: none;
    letter-spacing: -0.01em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--brown); }

.faq-chevron {
    color: var(--brown);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    padding: 0 26px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #6b5847;
    animation: faq-answer-in 0.4s ease;
}
@keyframes faq-answer-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA SECTION ============ */
.faq-cta {
    background: var(--brown);
    padding: 70px 24px 90px;
    text-align: center;
    position: relative;
}
.faq-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.faq-cta .tag-pill {
    background: #f4f2ec;
    color: var(--brown);
    margin-bottom: 20px;
}
.faq-cta-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #f4f2ec;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}
.faq-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.faq-cta-actions .btn-brown {
    background: #f4f2ec;
    color: var(--brown);
}
.faq-cta-actions .btn-brown:hover {
    background: #fff;
    color: var(--brown-deep);
}
.btn-outline {
    display: inline-flex; align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: #f4f2ec;
    border: 1.5px solid rgba(244, 242, 236, 0.45);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(244, 242, 236, 0.1);
    border-color: #f4f2ec;
    transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
    .faq-hero { padding: 110px 16px 40px; }
    .faq-main { padding: 20px 16px 60px; }
    .faq-question { padding: 18px 20px; font-size: 0.98rem; }
    .faq-answer { padding: 0 20px 20px; font-size: 0.95rem; }
    .faq-cta { padding: 60px 16px 70px; }
}
