/* -------------------------------------- */
/* Frequently Asked Questions FAQ CSS     */
/* -------------------------------------- */

.faq-section {
    background-color: #FAF9F6; /* Elegant light background matching process/cta */
    color: #0A0A0A;
    padding: 90px 0;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Subtle background accent grid lines */
.faq-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.012;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(to right, #000 1px, transparent 1px), 
                      linear-gradient(to bottom, #000 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Atmospheric corner glow layers */
.faq-glow-spot {
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(234, 161, 15, 0.022) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}
.faq-glow-spot.left-glow {
    top: -120px;
    left: -120px;
}
.faq-glow-spot.right-glow {
    bottom: -120px;
    right: -120px;
}

.faq-container {
    max-width: 820px; /* Narrower width for compact readability */
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

/* Header Stack */
.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-chip {
    align-self: center !important;
    background-color: rgba(234, 161, 15, 0.08) !important;
    border: 1px solid rgba(234, 161, 15, 0.25) !important;
    color: #b45309 !important;
}

.faq-chip .badge-dot {
    background-color: #b45309 !important;
}

.faq-title {
    font-family: var(--font-primary);
    font-size: 2.1rem;
    font-weight: 900;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: 8px;
    line-height: 1.1;
}

.faq-title span {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.header-gold-bar {
    width: 45px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    margin: 14px auto 0 auto;
    border-radius: 1.5px;
}

/* Accordion Feed Wrapper */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Individual Accordion Glass card */
.faq-item {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.012);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(234, 161, 15, 0.2);
    box-shadow: 0 12px 30px rgba(234, 161, 15, 0.03);
    background: rgba(255, 255, 255, 0.8);
}

.faq-item.active {
    border-color: rgba(234, 161, 15, 0.35);
    box-shadow: 0 15px 35px rgba(234, 161, 15, 0.05);
    background-color: rgba(255, 255, 255, 0.85);
}

/* Question triggers */
.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 800;
    color: #0A0A0A;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

/* Plus button icon */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #55585d;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-svg-icon {
    width: 12px;
    height: 12px;
    stroke-width: 2.5px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-icon {
    background-color: rgba(234, 161, 15, 0.1);
    color: var(--color-gold-start);
}

.faq-item.active .faq-icon {
    background-color: var(--color-gold-start);
    color: var(--color-black);
}

/* Rotate plus to cross */
.faq-item.active .faq-svg-icon {
    transform: rotate(45deg);
}

/* Grid transition wrapper for auto height expand */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    overflow: hidden;
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
}

/* Answer Paragraph spacing */
.faq-answer {
    font-family: var(--font-primary);
    font-size: 0.74rem;
    font-weight: 500;
    color: #55585d;
    line-height: 1.6;
    margin: 0;
    padding-top: 14px;
    max-width: 96%;
    text-align: left;
}

/* Responsive constraints */
@media (max-width: 576px) {
    .faq-question {
        font-size: 0.82rem;
    }

    .faq-item {
        padding: 16px 20px;
    }
}
