/* ─── FAQS PAGE STYLES ─── */

.faq-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.78) 50%, rgba(10,10,10,0.92) 100%), url('../images/midas-7.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.faq-hero .spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 68%);
    pointer-events: none;
}

.faq-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.faq-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 5px 16px;
    border-radius: 100px;
    background: rgba(201,168,76,0.06);
    display: inline-block;
    margin-bottom: 24px;
}

.faq-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.faq-hero-sub {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.faq-search-wrapper {
    position: relative;
    max-width: 520px;
    margin: 28px auto 0;
}

.faq-search-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* FAQ MAIN LAYOUT */
.faq-section {
    padding: 80px 0;
    background: var(--ink);
}

.faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 20px;
}

.faq-sidebar-title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    padding-left: 12px;
    font-weight: 700;
}

.faq-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.faq-nav-link:hover,
.faq-nav-link.active {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
}

.faq-empty-state {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: var(--surface-2);
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.faq-empty-state i {
    font-size: 2.5rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.faq-category-block {
    margin-bottom: 50px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.faq-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-accordion-btn:hover {
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(201, 168, 76, 0.2);
}

.faq-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease;
    padding: 0 24px;
    color: #aaa;
    font-size: 0.94rem;
    line-height: 1.7;
}

.faq-accordion-item.active .faq-accordion-panel {
    max-height: 500px;
    padding: 0 24px 24px;
}

@media (max-width: 900px) {
    .faq-inner {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: relative;
        top: 0;
    }
}

/* ─── CONTACT STRIP (ABOUT CTA DESIGN) ─── */
.contact-strip {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.88) 100%), url("../images/category_tote_bags.png") center/cover no-repeat;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
    pointer-events: none;
}

.contact-strip-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.contact-strip-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.contact-strip-inner p {
    color: #888;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent;
}

.cta-btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
