/* â"€â"€ GLOBAL ELEMENTS â"€â"€ */
.cd-top {
    display: block;
}
/* â"€â"€ TOKENS â"€â"€ */
:root {
    --pdn-primary: var(--CoreV2-primary, #3b82f6);
    --pdn-primary-rgb: var(--CoreV2-primary-rgb, 59, 130, 246);
    --pdn-primary-grad: var(--CoreV2-primary-gradient, linear-gradient(135deg, var(--CoreV2-primary, #3b82f6), var(--CoreV2-primary-tone, #1d4ed8)));
    --pdn-bg: #fbfdff;
    --pdn-card: rgba(255, 255, 255, 0.85);
    --pdn-subtle: #f8faff;
    --pdn-text: #4a4e69;
    --pdn-muted: #8e92b2;
    --pdn-border: rgba(230, 233, 242, 0.6);
    --pdn-radius: 24px;
    --pdn-radius-sm: 14px;
    --pdn-t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pdn-shadow: 0 12px 35px -12px rgba(74, 78, 105, 0.08);
}
[data-theme="dark"] {
    --pdn-bg: #0b0f1a;
    --pdn-card: rgba(30, 41, 59, 0.7);
    --pdn-subtle: #0f172a;
    --pdn-text: #f1f5f9;
    --pdn-muted: #94a3b8;
    --pdn-border: rgba(148, 163, 184, .08);
    --pdn-shadow: 0 25px 50px -15px rgba(0,0,0,0.5);
}
*, *::before, *::after { box-sizing: border-box; }
p { margin-top: 0; margin-bottom: 1.25rem; font-size: 15px; line-height: 1.75; color: var(--pdn-text); }
a { color: var(--pdn-primary); text-decoration: none; transition: all var(--pdn-t); }
a:hover { opacity: .8; }
/* Ãƒ¢"€Ãƒ¢"€ LAYOUT Ãƒ¢"€Ãƒ¢"€ */
.container {
    width: 100%;
    max-width: var(--CoreV2-container-width);
    padding: 0 20px;
    margin: 0 auto;
}
.sfhakkimizda-wrapper {
    padding: 0.5rem 0 3rem;
}
.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 992px) {
    .row {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
    .col-main  { grid-column: 1 / 2; }
    .col-sidebar { grid-column: 2 / 3; }
}
/* â"€â"€ MAIN CONTENT BOX â"€â"€ */
.sfhakkimizda-box {
    background: var(--pdn-card);
    border-radius: var(--pdn-radius);
    padding: 3.5rem;
    border: 1px solid var(--pdn-border);
    box-shadow: var(--pdn-shadow);
    transition: transform var(--pdn-t), box-shadow var(--pdn-t);
}
.sfhakkimizda-box:hover {
    box-shadow: 0 20px 45px -15px rgba(74, 78, 105, 0.12);
    transform: translateY(-2px);
}
.sfhakkimizda-box-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--pdn-border);
}
.sfhakkimizda-box-head h3 {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--pdn-text);
    line-height: 1.2;
}
.sfhakkimizda-content > :last-child { margin-bottom: 0; }
.sfhakkimizda-content h1,
.sfhakkimizda-content h2,
.sfhakkimizda-content h3,
.sfhakkimizda-content h4 {
    color: var(--pdn-text);
    margin-top: 1.75rem;
    margin-bottom: .75rem;
    font-weight: 700;
}
.sfhakkimizda-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pdn-radius-sm);
}
/* Ãƒ¢"€Ãƒ¢"€ PAGE ICON WIDGET Ãƒ¢"€Ãƒ¢"€ */
.page-icon-widget {
    margin-left: auto;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(var(--pdn-primary-rgb), .08);
    border-radius: 1.1rem;
    display: grid;
    place-items: center;
    color: var(--pdn-primary);
    border: 1px solid rgba(var(--pdn-primary-rgb), .15);
    animation: pdn-pulse 3s infinite var(--pdn-t);
}
@keyframes pdn-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--pdn-primary-rgb), .15); }
    50%       { transform: scale(1.04); box-shadow: 0 0 0 6px rgba(var(--pdn-primary-rgb), 0); }
}
/* Ãƒ¢"€Ãƒ¢"€ SIDEBAR Ãƒ¢"€Ãƒ¢"€ */
.sfhakkimizda-sidebar-inner {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sfhakkimizda-sidebar {
    background: var(--pdn-card);
    border-radius: var(--pdn-radius);
    border: 1px solid var(--pdn-border);
    box-shadow: var(--pdn-shadow);
    overflow: hidden;
    padding: 1rem;
    transition: transform var(--pdn-t), box-shadow var(--pdn-t);
}
.sfhakkimizda-sidebar:hover {
    box-shadow: 0 15px 35px -12px rgba(74, 78, 105, 0.1);
}
.sfhakkimizda-sidebar .sfhakkimizda-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--pdn-muted);
    padding: 0.75rem 1rem 0.5rem;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.sfhakkimizda-sidebar .sfhakkimizda-title svg {
    color: var(--pdn-primary);
}
.sfhakkimizda-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sfhakkimizda-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--pdn-muted);
    border-radius: 0.85rem;
    transition: all var(--pdn-t);
}
.sfhakkimizda-sidebar a svg {
    flex-shrink: 0;
    color: var(--pdn-muted);
    transition: color var(--pdn-t);
}
.sfhakkimizda-sidebar a:hover {
    color: var(--pdn-text);
    background: var(--pdn-subtle);
    opacity: 1;
}
.sfhakkimizda-sidebar a:hover svg {
    color: var(--pdn-primary);
}
.sfhakkimizda-sidebar a.active {
    color: #fff;
    background: var(--pdn-primary-grad);
    opacity: 1;
}
.sfhakkimizda-sidebar a.active svg {
    color: #fff !important;
}
/* Ãƒ¢"€Ãƒ¢"€ SUPPORT BOX Ãƒ¢"€Ãƒ¢"€ */
.sfhakkimizda-support-box {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--pdn-radius);
    background: var(--pdn-card);
    border: 0.5px solid var(--pdn-border);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.sfhakkimizda-support-box::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--pdn-primary-rgb), .12) 0%, transparent 70%);
    pointer-events: none;
}
.sfhakkimizda-support-box .support-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 1.1rem;
    background: var(--pdn-primary-grad);
    color: #fff;
    position: relative;
    z-index: 1;
}
.sfhakkimizda-support-box h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--pdn-text);
    position: relative;
    z-index: 1;
}
.sfhakkimizda-support-box p {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    color: var(--pdn-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--pdn-primary-grad);
    color: #fff !important;
    border-radius: 0.85rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--pdn-t);
    position: relative;
    z-index: 1;
    opacity: 1;
}
.support-button:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--pdn-primary-rgb), .3);
}
/* Ãƒ¢"€Ãƒ¢"€ ANIMATIONS Ãƒ¢"€Ãƒ¢"€ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll { opacity: 0; }
.animate-on-scroll.is-visible { animation: fadeInUp 0.6s var(--pdn-t) forwards; }
.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; }
    .animate-on-scroll.is-visible { animation: none; }
}
/* Ãƒ¢"€Ãƒ¢"€ CLASSIC THEME Ãƒ¢"€Ãƒ¢"€ */
.bbbaslik { font-size: 1.75rem; margin-bottom: 1.25rem; color: var(--pdn-text); }
.breadcrumb { margin-bottom: 1.25rem; font-size: 14px; color: var(--pdn-muted); }
.line { height: 1px; background: var(--pdn-border); margin: 1.75rem 0; }
/* Ãƒ¢"€Ãƒ¢"€ MOBILE Ãƒ¢"€Ãƒ¢"€ */
@media (max-width: 991px) {
    .sfhakkimizda-wrapper { padding: 1.5rem 0 2.5rem; }
    .col-main    { order: 1; }
    .col-sidebar { order: 2; }
    .sfhakkimizda-sidebar-inner { position: static; }
}
@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .sfhakkimizda-box { padding: 1.5rem; }
    .sfhakkimizda-box-head h3 { font-size: 1.35rem; }
    .sfhakkimizda-support-box { padding: 1.5rem 1.25rem; }
}
