/* ═══════════════════════════════════════════
   KURUMSAL UNIFIED SIDEBAR LAYOUT
   ═══════════════════════════════════════════ */
.kur-page {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.kur-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: start;
}

/* Sidebar */
.kur-sidebar {
    position: sticky;
    top: 110px;
}

.kur-nav {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.kur-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.kur-nav-link:last-child {
    border-bottom: none;
}

.kur-nav-link:hover {
    background: #f0faf5;
    color: #1a8a5c;
    border-left-color: #1a8a5c;
    padding-left: 24px;
}

.kur-nav-link.active {
    background: #f0faf5;
    color: #1a8a5c;
    border-left-color: #1a8a5c;
    font-weight: 600;
}

.kur-nav-arrow {
    margin-right: 10px;
    font-weight: 700;
    color: #1a8a5c;
    font-size: 16px;
}

/* Content */
.kur-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    padding: 48px 44px;
    margin-left: 40px;
}

.kur-page-title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c2734;
    margin: 0 0 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
}

/* Hero Kart */
.kur-hero-card {
    background: linear-gradient(135deg, #1a8a5c 0%, #2c2734 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 32px;
}

.kur-hero-card img {
    height: 60px;
    margin-bottom: 16px;
}

.kur-hero-card h2 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 8px;
    font-weight: 700;
}

.kur-hero-card p {
    color: #FF8B00;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Detail Content */
.kur-detail {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}

.kur-detail h2 {
    font-size: 22px;
    font-weight: 700;
    color: #2c2734;
    margin: 32px 0 16px;
}

.kur-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2734;
    margin: 24px 0 12px;
}

.kur-detail p {
    margin: 0 0 16px;
}

.kur-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.kur-detail ul, .kur-detail ol {
    padding-left: 24px;
    margin: 0 0 16px;
}

.kur-detail li {
    margin-bottom: 8px;
}

.kur-detail a {
    color: #1a8a5c;
    text-decoration: underline;
}

.kur-detail a:hover {
    color: #FF8B00;
}

/* Alt Sayfa Kartları (Parent sayfa için) */
.kur-child-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.kur-child-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8faf9;
    border: 1px solid #e8efe8;
    border-radius: 8px;
    padding: 18px 20px;
    text-decoration: none !important;
    color: #333;
    transition: all 0.2s ease;
}

.kur-child-card:hover {
    background: #f0faf5;
    border-color: #1a8a5c;
    box-shadow: 0 2px 8px rgba(26,138,92,0.08);
    transform: translateY(-1px);
}

.kur-child-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a8a5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.kur-child-card:hover .kur-child-card-icon {
    background: #FF8B00;
}

.kur-child-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c2734;
}

.kur-child-card-arrow {
    margin-left: auto;
    color: #bbb;
    font-size: 14px;
}

/* SSS Accordion */
.kur-faq-section {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid #f0f0f0;
}

.kur-faq-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c2734;
    margin: 0 0 20px;
}

.kur-accordion-item {
    border: 1px solid #e8efe8;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.kur-accordion-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.kur-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8faf9;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.kur-accordion-header:hover {
    background: #f0faf5;
}

.kur-accordion-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #2c2734;
}

.kur-accordion-header .kur-accordion-icon {
    font-size: 14px;
    color: #1a8a5c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.kur-accordion-item.active .kur-accordion-header {
    background: #f0faf5;
}

.kur-accordion-item.active .kur-accordion-icon {
    transform: rotate(180deg);
}

.kur-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.kur-accordion-body-inner {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.kur-accordion-body-inner p {
    margin: 0 0 12px;
}

.kur-accordion-body-inner p:last-child {
    margin-bottom: 0;
}

/* Galeri */
.kur-gallery-section {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid #f0f0f0;
}

.kur-gallery-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c2734;
    margin: 0 0 20px;
}

.kur-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kur-gallery-grid a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.kur-gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.kur-gallery-grid a:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .kur-page { padding: 60px 0; }
    .kur-layout { grid-template-columns: 1fr; }
    .kur-sidebar { position: static; margin-bottom: 24px; }
    .kur-nav { flex-direction: row; flex-wrap: wrap; }
    .kur-nav-link {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
        border-bottom: 2px solid transparent;
        border-left: none !important;
    }
    .kur-nav-link.active { border-bottom-color: #1a8a5c; }
    .kur-nav-arrow { display: none; }
    .kur-content { margin-left: 0; }
}

@media (max-width: 767px) {
    .kur-page { padding: 40px 0; }
    .kur-content { padding: 28px 20px; }
    .kur-page-title { font-size: 22px; }
    .kur-nav { flex-direction: column; }
    .kur-nav-link { justify-content: flex-start; border-left: 3px solid transparent; border-bottom: 1px solid #f0f0f0; }
    .kur-nav-link.active { border-left-color: #1a8a5c; border-bottom-color: #f0f0f0; }
    .kur-nav-arrow { display: inline; }
    .kur-gallery-grid { grid-template-columns: 1fr 1fr; }
    .kur-child-grid { grid-template-columns: 1fr; }
    .kur-hero-card { padding: 28px 20px; }
    .kur-hero-card h2 { font-size: 20px; }
}
