.guide-page {
    padding: 48px 0 80px;
}

.guide-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
}

.guide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    overflow: visible;
}

/* Sidebar */
.guide-sidebar {
    position: relative;
    width: 280px;
    align-self: start;
}

.guide-sidebar-inner {
    position: fixed;
    top: 120px;
    margin-top: 70px;
    width: 280px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0ef;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.guide-sidebar-inner.is-hidden-by-hero {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.guide-sidebar-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #DAB668;
    margin-bottom: 14px;
    padding-left: 2px;
}

.guide-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-sidebar-item {
    margin-bottom: 2px;
}

.guide-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    line-height: 1.35;
}

.guide-sidebar-bullet {
    flex: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8d2cd;
    transition: background 0.2s ease, transform 0.2s ease;
}

.guide-sidebar-link:hover {
    background: #f5f8f7;
    color: #035647;
}

.guide-sidebar-link:hover .guide-sidebar-bullet,
.guide-sidebar-link.active .guide-sidebar-bullet {
    background: #DAB668;
    transform: scale(1.4);
}

.guide-sidebar-link.active {
    background: linear-gradient(90deg, rgba(218, 182, 104, 0.10) 0%, rgba(3, 86, 71, 0.05) 100%);
    color: #035647;
}

.guide-sidebar-sub {
    list-style: none;
    padding: 4px 0 8px 22px;
    margin: 0;
    border-left: 1px solid #e8ecea;
    margin-left: 14px;
}

.guide-sidebar-sublink {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    color: #667;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.guide-sidebar-sublink:hover,
.guide-sidebar-sublink.active {
    color: #035647;
    background: #f5f8f7;
}

/* Content */
.guide-content {
    width: 100%;
    min-width: 0;
}

.guide-category-block {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    scroll-margin-top: 100px;
}

.guide-section-block {
    scroll-margin-top: 100px;
}

.guide-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
}

.guide-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 28px 0;
}

.guide-section-block {
    margin-bottom: 8px;
}

.guide-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #035647;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #035647;
    display: inline-block;
}

.guide-page-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.guide-page-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.guide-page-list li:last-child {
    border-bottom: none;
}

.guide-page-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #444;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.guide-page-list a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #bbb;
    transition: color 0.2s, transform 0.2s;
}

.guide-page-list a:hover {
    background: #f7f9f8;
    color: #035647;
}

.guide-page-list a:hover::before {
    color: #035647;
    transform: translateX(3px);
}

/* Hero Image */
.guide-hero-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

/* Responsive */
@media (max-width: 991px) {
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guide-sidebar {
        position: static;
        width: auto;
    }

    .guide-sidebar-inner {
        position: static;
        width: auto;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .guide-category-block {
        padding: 24px 20px;
    }

    .guide-content-title {
        font-size: 22px;
    }

    .guide-sidebar-inner {
        padding: 18px 16px;
    }
}

/* ---------- ACCORDION (Sık Sorulan Sorular — açılır menü) ---------- */
.guide-acc { border-top: 1px solid #ececec; }
.guide-acc-item { border-bottom: 1px solid #ececec; }
.guide-acc-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.45;
    cursor: pointer;
    transition: color 0.2s ease;
}
.guide-acc-q:hover { color: #DAB668; }
.guide-acc-text { flex: 1; padding-right: 8px; }
.guide-acc-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    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;
}
.guide-acc-icon .fa-minus { display: none; }
.guide-acc-q[aria-expanded="true"] { color: #035647; }
.guide-acc-q[aria-expanded="true"] .guide-acc-icon { background: #035647; color: #fff; }
.guide-acc-q[aria-expanded="true"] .guide-acc-icon .fa-plus { display: none; }
.guide-acc-q[aria-expanded="true"] .guide-acc-icon .fa-minus { display: inline; }
.guide-acc-a-content {
    padding: 0 4px 22px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}
.guide-acc-a-content > *:first-child { margin-top: 0; }
.guide-acc-a-content > *:last-child { margin-bottom: 0; }
.guide-acc-a-content a { color: #DAB668; text-decoration: underline; text-underline-offset: 3px; }
.guide-acc-a-content a:hover { color: #bc7636; }
