/* sector-shared.css — jenerik sektör sayfası ek elemanları.
   sector-dental.css ile birlikte yüklenir (hero/block/problem/process/who oradan). */

/* Hero görsel (Codex/AI üretimi) */
.sector-hero__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    object-fit: cover;
    display: block;
}

/* Net cevap bloğu (AI/GEO alıntı) */
.sector-answer {
    margin: 0 0 2.5rem;
}
.sector-answer__inner {
    background: linear-gradient(135deg, #f0f6ff 0%, #f8fbff 100%);
    border-left: 4px solid var(--color-primary, #0066FF);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}
.sector-answer__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary, #0066FF);
    margin-bottom: 0.5rem;
}
.sector-answer__text {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-primary, #1a1a1a);
    font-weight: 500;
}

/* Hizmetler grid (sektöre özel) */
.sector-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.sector-services__card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 14px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sector-services__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    border-color: rgba(0, 102, 255, 0.25);
}
.sector-services__icon {
    width: 44px;
    height: 44px;
    color: var(--color-primary, #0066FF);
    margin-bottom: 0.9rem;
}
.sector-services__icon svg { width: 100%; height: 100%; }
.sector-services__card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    margin: 0 0 0.4rem;
}
.sector-services__card-text {
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--text-secondary, #475569);
    margin: 0;
}

/* FAQ accordion */
.sector-faq__list { margin-top: 1.25rem; }
.sector-faq__item {
    border: 1px solid #eef1f6;
    border-radius: 12px;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #fff;
}
.sector-faq__q {
    width: 100%;
    text-align: left;
    padding: 1.15rem 1.35rem;
    background: #fafbfe;
    border: none;
    font-weight: 600;
    font-size: 1.04rem;
    color: var(--text-primary, #0f172a);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.sector-faq__q svg { flex-shrink: 0; transition: transform 0.25s ease; color: var(--color-primary, #0066FF); }
.sector-faq__item.is-open .sector-faq__q svg { transform: rotate(180deg); }
.sector-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.sector-faq__item.is-open .sector-faq__a { max-height: 600px; }
.sector-faq__a p {
    margin: 0;
    padding: 0 1.35rem 1.25rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary, #475569);
}

/* Final CTA */
.sector-final-cta { }
.sector-final-cta__card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}
.sector-final-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 0 0 0.85rem;
    color: #fff;
}
.sector-final-cta__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0 auto 1.8rem;
    max-width: 560px;
}

/* Sektör dizin sayfası grid'i */
.sector-dir__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.sector-dir__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sector-dir__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}
.sector-dir__icon { font-size: 2.4rem; margin-bottom: 1rem; }
.sector-dir__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    margin: 0 0 0.5rem;
}
.sector-dir__desc {
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--text-secondary, #475569);
    margin: 0 0 1.1rem;
    flex-grow: 1;
}
.sector-dir__link {
    font-weight: 600;
    color: var(--color-primary, #0066FF);
    font-size: 0.97rem;
}

@media (max-width: 640px) {
    .sector-answer__inner { padding: 1.25rem; }
    .sector-final-cta__card { padding: 2.25rem 1.25rem; }
}
