/* FAQ Section Styling – matches Sanskar UI */
.faq-section-custom {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.faq-title-custom {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq-title-custom span {
    color: var(--red);
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 8px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

/* Accordion redesign – clean, minimal, matches brand */
.accordion-custom {
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-item-custom {
    background: #fff;
    border: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.accordion-item-custom:last-child {
    border-bottom: none;
}

.accordion-header-custom {
    margin: 0;
}

.accordion-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 1.3rem 1.8rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
}

.accordion-question:hover {
    background: rgba(192, 57, 43, 0.03);
    color: var(--red);
}

.accordion-question .question-text {
    flex: 1;
    padding-right: 1rem;
}

.accordion-question .question-text h3 {
    flex: 1;
    padding-right: 1rem;
    font-size: 1.2rem;
}

.accordion-question .icon-indicator {
    font-size: 1.2rem;
    color: var(--red);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.accordion-question.active .icon-indicator {
    transform: rotate(180deg);
}

/* Answer panel */
.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    background: #fff;
    padding: 0 1.8rem;
}

.accordion-answer.show {
    max-height: 300px;
    /* enough for content, auto fallback for longer text */
    padding-bottom: 1.3rem;
    padding-top: 0.2rem;
}

.answer-content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--grey);
    padding-bottom: 1rem;
    border-top: 1px solid rgba(226, 221, 216, 0.4);
    margin-top: 0.2rem;
    padding-top: 0.9rem;
}

.answer-content a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s, border-color 0.2s;
}

.answer-content a:hover {
    color: #a52d20;
    border-bottom-color: #a52d20;
}

.contact-info-phone {
    font-weight: 800;
    color: var(--red);
    background: rgba(192, 57, 43, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.85rem;
}

/* hover on desktop subtle effect (but mobile still tap) */
@media (min-width: 992px) {
    .accordion-question:hover {
        background: rgba(192, 57, 43, 0.04);
        letter-spacing: -0.1px;
    }
}

/* responsive */
@media (max-width: 768px) {
    .faq-section-custom {
        padding: 60px 0;
    }

    .accordion-question {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .accordion-answer {
        padding: 0 1.2rem;
    }

    .answer-content {
        font-size: 0.85rem;
    }

    .accordion-question .icon-indicator {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .accordion-question {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }

    .answer-content {
        font-size: 0.8rem;
        line-height: 1.65;
    }
}

/* subtle decoration */
.faq-badge {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-badge small {
    font-size: 0.75rem;
    color: var(--grey);
    background: #fff;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    display: inline-block;
    border: 1px solid var(--border);
}