/* Bootstrap forteaza scroll-behavior:smooth global, dar pe aceste pagini
   animatia smooth e intrerupta la jumatate (bug reprodus: scrollTo cu
   behavior:'smooth' se opreste dupa cativa px, in timp ce 'instant' merge
   perfect). Fortam auto ca sa functioneze corect saltul la ancore (#protectie etc). */
:root { scroll-behavior: auto; }

.contact-hero {
    padding: 64px 0 40px;
    background: var(--fa-bg);
}

.contact-hero-grid { display: block; max-width: 920px; }

.contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--fa-primary);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 12px;
}

.contact-hero p {
    color: var(--fa-text);
    font-size: 18px;
    max-width: 720px;
    margin: 0;
}

.contact-section { padding: 0 0 80px; }

@media (max-width: 767px) {
    .contact-hero { padding: 48px 0 28px; }
    .contact-hero h1 { font-size: 34px; }
    .contact-section { padding: 0 0 48px; }
}

.fa-service {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: var(--fa-text);
}

/* Aliniere la lățimea calculatoarelor/hero-ului (1240px): pagini de direcție,
   consultant-local și bio. Blog rămâne la 800px, lățimea corectă pentru citit lung. */
.fa-service--wide { max-width: 1240px; }

.fa-service p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    text-wrap: pretty;
}

.fa-service strong { color: var(--fa-text-strong); font-weight: 600; }

.fa-service__direct-answer {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--fa-text-strong);
    border-left: 3px solid var(--fa-accent);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.fa-service h2 {
    scroll-margin-top: 110px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--fa-primary);
    margin-top: 2.75rem;
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.fa-service ul {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}
.fa-service li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    padding-left: 1.6rem;
    position: relative;
}
.fa-service li::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fa-accent);
}

.fa-service__example {
    background: var(--fa-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
}
.fa-service__example p:last-child { margin-bottom: 0; }

.fa-service__calc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fa-accent-strong);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
}
.fa-service__calc-link:hover { text-decoration: underline; }

.fa-service__cta { text-align: center; margin: 3rem 0; }

/* ===== FAQ ===== */
.fa-faq { display: flex; flex-direction: column; gap: 0.75rem; }
.fa-faq__item {
    background: #ffffff;
    border: 1px solid var(--fa-divider);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.fa-faq__item[open] { border-color: var(--fa-accent); }
.fa-faq__q {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--fa-primary);
    padding: 1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}
.fa-faq__q::-webkit-details-marker { display: none; }
.fa-faq__q::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fa-accent);
    font-size: 22px;
    font-weight: 400;
}
.fa-faq__item[open] .fa-faq__q::after { content: '\2212'; }
.fa-faq__a { padding: 0 1rem 1rem; font-size: 15px; line-height: 1.7; color: var(--fa-text); }
.fa-faq__a p { margin: 0 0 0.5rem; }
.fa-faq__a p:last-child { margin: 0; }
