/* =============================================================================
   HELP CENTER — section_id=50 accordion + nav
   ============================================================================= */

.hc-page {
    background: #fff;
    color: #1a1a1a;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    padding: 100px 0 80px;
    margin-top: 50px;
}

/* ---------- HEADER ---------- */
.hc-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    padding: 0 16px;
}
.hc-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #DAB668;
    margin-bottom: 14px;
    position: relative;
    padding: 0 32px;
}
.hc-kicker::before,
.hc-kicker::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22px;
    height: 1px;
    background: #DAB668;
}
.hc-kicker::before { left: 0; }
.hc-kicker::after  { right: 0; }

.hc-title {
    font-family: 'Poltawski Nowy', 'Inter', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}
.hc-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ---------- LAYOUT ---------- */
.hc-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
    margin-top: 90px;
}

/* ---------- LEFT: ACCORDION ---------- */
.hc-accordion-pane {
    min-width: 0;
}

.hc-group {
    margin-bottom: 40px;
    scroll-margin-top: 90px;
}
.hc-group:last-child { margin-bottom: 0; }

.hc-group-title {
    font-family: 'Poltawski Nowy', 'Inter', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
    letter-spacing: -0.01em;
}

/* ---------- CARD GRID (madde listesi → detay sayfası) ---------- */
.hc-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hc-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hc-card:hover {
    border-color: #e2d6b8;
    box-shadow: 0 10px 30px rgba(218, 182, 104, 0.14);
    transform: translateY(-2px);
}
.hc-card-icon {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f6efe1;
    color: #DAB668;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.hc-card-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.hc-card-title { font-size: 15px; font-weight: 600; color: #1a1a1a; line-height: 1.4; }
.hc-card-text { font-size: 13px; color: #777; line-height: 1.6; }
.hc-card-arrow {
    flex: none;
    align-self: center;
    color: #c9c9c9;
    font-size: 13px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.hc-card:hover .hc-card-arrow { color: #DAB668; transform: translateX(3px); }

@media (max-width: 767px) {
    .hc-card-grid { grid-template-columns: 1fr; }
}

.hc-accordion {
    border-top: 1px solid #ececec;
}
.hc-acc-item {
    border-bottom: 1px solid #ececec;
    scroll-margin-top: 90px;
}

.hc-acc-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: color 0.2s ease;
}
.hc-acc-question:hover { color: #DAB668; }
.hc-acc-text { flex: 1; padding-right: 8px; }

.hc-acc-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f6efe1;
    color: #DAB668;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}
.hc-acc-icon i { line-height: 1; }
.hc-acc-icon .fa-minus { display: none; }
.hc-acc-question[aria-expanded="true"] .hc-acc-icon {
    background: #1a1a1a;
    color: #fff;
    transform: rotate(180deg);
}
.hc-acc-question[aria-expanded="true"] .hc-acc-icon .fa-plus { display: none; }
.hc-acc-question[aria-expanded="true"] .hc-acc-icon .fa-minus { display: inline; }
.hc-acc-question[aria-expanded="true"] { color: #1a1a1a; }

/* Açık accordion öğesine belirgin arka plan */
.hc-acc-item:has(.hc-acc-answer.show),
.hc-acc-item:has(.hc-acc-answer.collapsing) {
    background: #faf7ef;
    border-radius: 10px;
    border-bottom-color: transparent;
    box-shadow: 0 4px 18px rgba(218, 182, 104, 0.12);
    margin: 4px 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.hc-acc-item:has(.hc-acc-answer.show) .hc-acc-question,
.hc-acc-item:has(.hc-acc-answer.collapsing) .hc-acc-question {
    padding-left: 18px;
    padding-right: 18px;
}
.hc-acc-item:has(.hc-acc-answer.show) .hc-acc-answer-content,
.hc-acc-item:has(.hc-acc-answer.collapsing) .hc-acc-answer-content {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 22px;
}

.hc-acc-answer-content {
    padding: 0 4px 24px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}
.hc-acc-answer-content > *:first-child { margin-top: 0; }
.hc-acc-answer-content > *:last-child { margin-bottom: 0; }
.hc-acc-answer-content p { margin: 0 0 12px; }
.hc-acc-answer-content ul,
.hc-acc-answer-content ol { margin: 0 0 12px 18px; padding: 0; }
.hc-acc-answer-content li { margin-bottom: 6px; }
.hc-acc-answer-content a {
    color: #DAB668;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hc-acc-answer-content a:hover { color: #bc7636; }

/* ---------- RIGHT: NAV PANE ---------- */
.hc-nav-pane {
    position: relative;
}
.hc-nav-inner {
    position: sticky;
    top: 110px;
    background: #fafaf7;
    border: 1px solid #f0eee8;
    border-radius: 14px;
    padding: 24px 22px;
}
.hc-nav-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #DAB668;
    margin-bottom: 14px;
    padding-left: 4px;
}
.hc-nav-group { margin-bottom: 18px; }
.hc-nav-group:last-child { margin-bottom: 0; }
.hc-nav-grouptitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 8px 0 8px;
    padding: 0 4px;
}
.hc-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hc-nav-list li { margin: 0; }

.hc-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    line-height: 1.4;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hc-nav-bullet {
    flex: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6c89e;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hc-nav-link:hover {
    background: #fff;
    color: #1a1a1a;
}
.hc-nav-link:hover .hc-nav-bullet {
    background: #DAB668;
    transform: scale(1.25);
}
.hc-nav-link.is-active {
    background: #1a1a1a;
    color: #fff;
}
.hc-nav-link.is-active .hc-nav-bullet {
    background: #DAB668;
}

/* ---------- EMPTY ---------- */
.hc-empty {
    text-align: center;
    padding: 80px 20px;
    color: #555;
    border: 1px dashed #e5e5e5;
    border-radius: 12px;
    background: #fafaf7;
}
.hc-empty i {
    font-size: 38px;
    color: #DAB668;
    margin-bottom: 14px;
}
.hc-empty p {
    font-size: 15px;
    margin: 0;
    color: #1a1a1a;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .hc-page { padding: 72px 0 56px; }
    .hc-title { font-size: 32px; }
    .hc-layout { grid-template-columns: 1fr; gap: 28px; }
    .hc-nav-pane { order: -1; }
    .hc-nav-inner { position: static; }
}
@media (max-width: 575.98px) {
    .hc-page { padding: 56px 0 48px; }
    .hc-title { font-size: 26px; }
    .hc-desc { font-size: 13px; }
    .hc-acc-question { font-size: 15px; padding: 14px 2px; }
    .hc-acc-icon { width: 28px; height: 28px; font-size: 10px; }
    .hc-acc-answer-content { font-size: 13px; padding-bottom: 18px; }
}
