/* ═══════════════════════════════════════════
   PREMIUM FAQ SECTION
═══════════════════════════════════════════ */
.faq-premium-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

.faq-premium-section::before {
    content: '?';
    position: absolute;
    right: -40px;
    top: -20px;
    font-size: 26rem;
    font-weight: 900;
    color: rgba(214, 39, 54, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Header ── */

.faq-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #fde8e8, #fee2e2);
    color: var(--primary-clr);
    font-size: var(--fs-secondary-text-1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(214, 39, 54, 0.15);
}

.faq-header-badge i {
    font-size: var(--fs-secondary-text-1);
}

.faq-subtitle {
    color: #6b7280;
    font-size: 1.5rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-subtitle strong {
    color: var(--primary-clr);
    font-weight: 600;
}

/* ── Accordion Wrap ── */
.faq-accordion-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── FAQ Card ── */
.faq-card {
    background: var(--white-clr);
    border: 1.5px solid #fde8e8;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
    border-color: #fca5a5;
    box-shadow: 0 4px 20px rgba(214, 39, 54, 0.08);
}

.faq-card.faq-open {
    border-color: var(--primary-clr);
    box-shadow: 0 6px 28px rgba(214, 39, 54, 0.12);
}

/* ── Question Button ── */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #fff8f8;
}

.faq-card.faq-open .faq-question {
    background: linear-gradient(135deg, #fff0f0, #fff8f8);
}

.faq-q-num {
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #fde8e8, #fee2e2);
    color: var(--primary-clr);
    font-size: var(--fs-secondary-text-1);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 39, 54, 0.15);
    transition: all 0.25s ease;
}

.faq-card.faq-open .faq-q-num {
    background: linear-gradient(135deg, var(--primary-clr), #e85263);
    color: var(--white-clr);
    border-color: var(--primary-clr);
}

.faq-q-text {
    flex: 1;
    font-size: var(--fs-primary-text-1);
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-card.faq-open .faq-q-text {
    color: var(--primary-clr);
}

.faq-q-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fde8e8;
    color: var(--primary-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-secondary-text-1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card.faq-open .faq-q-icon {
    background: var(--primary-clr);
    color: var(--white-clr);
    transform: rotate(180deg);
}

/* ── Answer ── */
.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.6rem 1.4rem;
    border-top: 1px solid #fde8e8;
}

.faq-ans-icon {
    flex-shrink: 0;
    color: var(--primary-clr);
    font-size: var(--fs-primary-text);
    margin-top: 2px;
    opacity: 0.7;
}

.faq-answer-inner p {
    font-size: var(--fs-primary-text-1);
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}
/* FAQ subtitle — keep on a single line */
.faq-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
}
@media (max-width: 767.98px) {
    .faq-q-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    .faq-q-num {
    width: 2.7rem;
    height: 2.7rem;
    }
}