/* FAQ Page — PC */
.faq-page {
    background: #faf8f4;
    min-height: 60vh;
}

.faq-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2410 100%);
    padding: 48px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.faq-hero h1 {
    position: relative;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 6px;
    color: #f0e8d8;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-hero p {
    position: relative;
    font-size: 14px;
    color: #aaa;
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.faq-search-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.faq-search-wrap svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: #999;
    fill: none;
    stroke-width: 2;
}

.faq-search {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.faq-search::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.faq-search:focus {
    border-color: #C9A84C;
    background: rgba(255, 255, 255, 0.12);
}

.faq-crumb {
    background: #fff;
    border-bottom: 1px solid #ede8df;
    padding: 10px 0;
}

.faq-crumb .bx {
    font-size: 12px;
    color: #999;
}

.faq-crumb a {
    color: #B8860B;
    text-decoration: none;
}

.faq-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 860px) {
    .faq-body {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-sidebar-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8860B;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ede8df;
    border-radius: 4px;
    overflow: hidden;
}

.faq-nav-item button {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-bottom: 1px solid #f0ebe0;
    background: #fff;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}

.faq-nav-item:last-child button {
    border-bottom: none;
}

.faq-nav-item button:hover,
.faq-nav-item.is-active button {
    background: #faf6ef;
    color: #9A7B2F;
}

.faq-nav-item.is-active button {
    box-shadow: inset 3px 0 0 #C9A84C;
    font-weight: 600;
}

.faq-sidebar-cta {
    margin-top: 16px;
    padding: 18px;
    background: linear-gradient(135deg, #1a1a1a, #2d2410);
    border-radius: 4px;
    color: #e8e0d0;
}

.faq-sidebar-cta h4 {
    font-size: 13px;
    color: #C9A84C;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.faq-sidebar-cta p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #aaa;
}

.faq-sidebar-cta a {
    display: inline-block;
    padding: 8px 16px;
    background: #C9A84C;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s;
}

.faq-sidebar-cta a:hover {
    background: #E8D5A3;
}

/* Main content */
.faq-main {
    min-width: 0;
}

.faq-popular {
    margin-bottom: 28px;
}

.faq-popular-title {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-popular-tag {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ede8df;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    font-family: inherit;
}

.faq-popular-tag:hover {
    border-color: #C9A84C;
    color: #9A7B2F;
    background: #faf6ef;
}

.faq-section {
    margin-bottom: 36px;
    scroll-margin-top: 100px;
}

.faq-section.is-hidden {
    display: none;
}

.faq-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #D4AF37;
}

.faq-section-head h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.faq-section-head a {
    font-size: 12px;
    color: #9A7B2F;
    text-decoration: none;
}

.faq-section-head a:hover {
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ede8df;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.is-hidden {
    display: none;
}

.faq-item.is-open {
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: #2c2416;
    line-height: 1.45;
    flex: 1;
}

.faq-item.is-open .faq-question span {
    color: #9A7B2F;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f5f0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.2s;
}

.faq-chevron::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #9A7B2F;
    border-bottom: 1.5px solid #9A7B2F;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-chevron {
    background: rgba(201, 168, 76, 0.15);
}

.faq-item.is-open .faq-chevron::after {
    transform: rotate(-135deg) translateY(1px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 13px;
    line-height: 1.75;
    color: #555;
    border-top: 1px solid #f0ebe0;
    padding-top: 14px;
    margin: 0 20px 18px;
    padding-left: 0;
    padding-right: 0;
}

.faq-answer-inner a {
    color: #9A7B2F;
    text-decoration: underline;
}

.faq-no-result {
    display: none;
    text-align: center;
    padding: 48px 20px;
    color: #888;
    font-size: 14px;
}

.faq-no-result.is-visible {
    display: block;
}

.faq-bottom-cta {
    margin-top: 40px;
    padding: 32px;
    background: #fff;
    border: 1px solid #ede8df;
    border-radius: 4px;
    text-align: center;
}

.faq-bottom-cta h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.faq-bottom-cta p {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.faq-bottom-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.faq-btn--primary {
    background: #C9A84C;
    color: #1a1a1a;
}

.faq-btn--primary:hover {
    background: #E8D5A3;
}

.faq-btn--outline {
    background: transparent;
    color: #9A7B2F;
    border: 1px solid #C9A84C;
}

.faq-btn--outline:hover {
    background: #faf6ef;
}
