/* ==========================================
   SERVICE DETAIL PAGES
   Specific styles for service detail pages
   ========================================== */

/* --- FAQ Accordion --- */
.faq {
    padding: var(--section-pad, 100px) 24px;
}

.faq__inner {
    max-width: 720px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}

.faq__header p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-item__q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-primary, inherit);
    color: var(--color-text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
}

.faq-item__q:hover {
    color: var(--color-accent);
}

.faq-item__q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-item__q svg {
    transform: rotate(45deg);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__a {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item__a p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}
