/* =========================================================
   DAILY CAR RENTAL PAGE — FAQ ACCORDION
========================================================= */

.drc-faq-section {
    background-color: var(--color-rich-black);
    padding: 50px 0;
}

.drc-faq-header {
    max-width: 650px;
    margin: 0 auto 50px;
    padding: 0 24px;
    text-align: center;
}

.drc-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: 18px;
}

.drc-faq-eyebrow .eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--color-amber);
}

.drc-faq-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--color-white);
    text-transform: capitalize;
}

.drc-faq-list {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.drc-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drc-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 22px 4px;
    text-align: left;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-white);
}

.drc-faq-toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-amber);
    transition: transform 0.3s ease;
}

.drc-faq-item.is-open .drc-faq-toggle-icon {
    transform: rotate(180deg);
}

.drc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 4px;
}

.drc-faq-item.is-open .drc-faq-answer {
    max-height: 300px;
    padding: 0 4px 22px;
}

.drc-faq-answer p {
    font-family: var(--font-main);
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

@media (max-width: 576px) {
    .drc-faq-section {
        padding: 60px 0;
    }

    .drc-faq-question {
        font-size: 14.5px;
        padding: 18px 2px;
    }
}