/* ============================================================
   public.css — SabitDisk Halka Açık Sayfalar
   Mevcut tasarımın ruhunu koruyarak modernize edilmiş stil sistemi
   ============================================================ */

:root {
    /* Marka renkleri (home.php ile uyumlu) */
    --p:        #2563eb;
    --pd:       #1d4ed8;
    --pl:       #dbeafe;
    --acc:      #0ea5e9;
    --ok:       #10b981;
    --err:      #ef4444;
    --warn:     #f59e0b;

    /* Nötr */
    --dark:     #0f172a;
    --dark-2:   #0b1121;
    --text:    #1e293b;
    --text-2:  #475569;
    --mt:      #64748b;
    --brd:     #e2e8f0;
    --brd-d:   #1e293b;
    --bg:      #f8fafc;
    --bg-2:    #f1f5f9;

    /* Layout */
    --container: 1200px;
    --nav-h:     72px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);

    --r-sm:     6px;
    --r-md:     10px;
    --r-lg:     16px;
    --r-xl:     20px;

    --t:        all .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--p); text-decoration: none; transition: var(--t); }
a:hover { color: var(--pd); }

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.public-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, .92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: var(--t);
}

.public-nav.scrolled {
    background: rgba(15, 23, 42, .98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .15);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo img {
    height: 38px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}

.nav-list a {
    color: rgba(255, 255, 255, .75);
    font-size: .92rem;
    font-weight: 500;
    padding: .5rem .9rem;
    border-radius: 7px;
    transition: var(--t);
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav-link-sm {
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    font-weight: 500;
    padding: .5rem .85rem;
    border-radius: 7px;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.nav-link-sm:hover { color: #fff; background: rgba(255, 255, 255, .07); }

.btn-nav-primary {
    background: var(--p);
    color: #fff !important;
    padding: .55rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: var(--t);
}

.btn-nav-primary:hover {
    background: var(--pd);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .35);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--t);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--t);
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--p), var(--acc));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, .4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--p);
    border: 1.5px solid var(--p);
}

.btn-outline:hover { background: var(--p); color: #fff; }

.btn-ghost {
    background: var(--pl);
    color: var(--p);
}

.btn-ghost:hover { background: var(--p); color: #fff; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── HERO (Genel) ───────────────────────────────────────── */
.hero {
    background: var(--dark);
    color: #fff;
    padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(37, 99, 235, .18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 85% 20%, rgba(14, 165, 233, .12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(37, 99, 235, .15);
    border: 1px solid rgba(37, 99, 235, .3);
    color: #93c5fd;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.85rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title .grad {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Ana sayfa: 2 sütun hero (form ile) */
.hero.hero-home .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hizmet sayfaları: tek sütun (form daha aşağıda) */
.hero.hero-service {
    padding-bottom: 6rem;
    text-align: center;
}

.hero.hero-service .hero-sub { margin-left: auto; margin-right: auto; }

.feat-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 2rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #cbd5e1;
    font-size: .92rem;
}

.feat-item .ic {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(37, 99, 235, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: .85rem;
    flex-shrink: 0;
}

.sorgula-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #60a5fa;
    font-size: .9rem;
    border: 1px solid rgba(96, 165, 250, .3);
    padding: .55rem 1.1rem;
    border-radius: 8px;
    transition: var(--t);
}

.sorgula-link:hover { background: rgba(96, 165, 250, .1); color: #93c5fd; }

/* ── FORM CARD (Hero içinde başvuru formu) ──────────────── */
.form-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.fc-logo {
    text-align: center;
    margin-bottom: 1.25rem;
}

.fc-logo img {
    height: 44px;
    width: auto;
    margin: 0 auto;
}

.fc-title { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: .25rem; }
.fc-sub { color: var(--mt); font-size: .85rem; margin-bottom: 1.5rem; }

.svc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.svc-pill {
    padding: .5rem 1rem;
    border: 2px solid var(--brd);
    background: #fff;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--mt);
    transition: var(--t);
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: inherit;
}

.svc-pill:hover { border-color: var(--p); color: var(--p); }
.svc-pill.active { border-color: var(--p); color: var(--p); background: var(--pl); }

.svc-form { display: none; }
.svc-form.active { display: block; }

.fg {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 1rem;
}

.fg label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: .75rem .85rem;
    border: 1.5px solid var(--brd);
    border-radius: 9px;
    font-size: .9rem;
    font-family: inherit;
    color: var(--dark);
    transition: var(--t);
    background: #fff;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    outline: none;
    border-color: var(--p);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.fg2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.sure-group {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.sure-pill {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .55rem 1rem;
    border: 1.5px solid var(--brd);
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 500;
    transition: var(--t);
}

.sure-pill:has(input:checked) {
    border-color: var(--p);
    color: var(--p);
    background: var(--pl);
}

.sure-pill input { display: none; }

.fsec {
    font-size: .8rem;
    font-weight: 700;
    color: var(--p);
    background: var(--pl);
    padding: .6rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.btn-submit {
    width: 100%;
    padding: .9rem;
    background: linear-gradient(135deg, var(--p), var(--acc));
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: var(--t);
    margin-top: 1rem;
    font-family: inherit;
}

.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(37, 99, 235, .35); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.alert {
    padding: .85rem 1rem;
    border-radius: 9px;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    margin-bottom: 1rem;
}

.alert-err { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.alert-ok  { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }

/* Success state */
.success-box { text-align: center; padding: 1rem; }
.suc-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ok), #34d399);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 1.25rem;
    animation: pop .4s cubic-bezier(.68, -.55, .27, 1.55);
}

@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

.takip-box {
    background: var(--pl);
    border: 2px dashed var(--p);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.takip-kod {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--p);
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.info-cols {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.info-col {
    flex: 1;
    min-width: 120px;
    background: var(--bg);
    border: 1px solid var(--brd);
    border-radius: 9px;
    padding: .85rem;
    text-align: center;
    font-size: .78rem;
}

.info-col i { color: var(--p); margin-bottom: .35rem; font-size: 1.1rem; }

.btn-sorgula {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--p);
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 9px;
    font-weight: 700;
    margin-top: 1.25rem;
    transition: var(--t);
}

.btn-sorgula:hover { background: var(--pd); color: #fff; }

/* ── SECTIONS (Genel) ───────────────────────────────────── */
.section {
    padding: 5rem 1.5rem;
}

.section-sm { padding: 3.5rem 1.5rem; }

.section-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head .eyebrow {
    display: inline-block;
    color: var(--p);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .75rem;
}

.section-head h2 {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--mt);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

.section.bg-gray { background: var(--bg); }
.section.bg-dark { background: var(--dark); color: #fff; }
.section.bg-dark h2, .section.bg-dark h3 { color: #fff; }
.section.bg-dark p { color: #94a3b8; }

/* ── SERVICE CARDS GRID ─────────────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.svc-card {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--p), var(--acc));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--pl);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.svc-card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.svc-card p {
    color: var(--mt);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--p);
    font-weight: 600;
    font-size: .9rem;
}

.svc-card-link i { transition: transform .25s ease; }
.svc-card:hover .svc-card-link i { transform: translateX(4px); }

/* ── PROCESS STEPS ──────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p), var(--acc));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
}

.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { color: var(--mt); font-size: .92rem; line-height: 1.6; }

/* ── FEATURE LIST (with check icons) ────────────────────── */
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--text-2);
    line-height: 1.6;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--ok);
    background: #d1fae5;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--t);
}

.faq-item.open { border-color: var(--p); box-shadow: var(--shadow-md); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-q .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t);
}

.faq-item.open .faq-icon { background: var(--p); color: #fff; transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-2);
    line-height: 1.7;
    font-size: .95rem;
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 1.5rem;
}

.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #94a3b8;
    font-size: .85rem;
}

.trust-item i { color: var(--acc); }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--p) 0%, var(--acc) 100%);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: #fff;
    color: var(--p);
}

.cta-section .btn:hover { background: var(--dark); color: #fff; }

/* ── BREADCRUMBS ────────────────────────────────────────── */
.breadcrumbs {
    padding: 1rem 1.5rem;
    background: var(--bg);
    font-size: .85rem;
    color: var(--mt);
}

.breadcrumbs-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.breadcrumbs a { color: var(--mt); }
.breadcrumbs a:hover { color: var(--p); }
.breadcrumbs .sep { color: var(--brd); }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--p), var(--acc));
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8rem;
    color: var(--mt);
    margin-bottom: .85rem;
}

.blog-card-category {
    background: var(--pl);
    color: var(--p);
    padding: .2rem .6rem;
    border-radius: 50px;
    font-weight: 600;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    line-height: 1.35;
}

.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--p); }

.blog-card-body p {
    color: var(--mt);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* Blog post (article) */
.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.blog-post header { margin-bottom: 2rem; }

.blog-post h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .9rem;
    color: var(--mt);
    margin-bottom: 1.5rem;
}

.blog-post-cover {
    aspect-ratio: 16/9;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-2);
}

.blog-post-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.blog-post-content h3 { font-size: 1.3rem; margin: 1.75rem 0 .85rem; }
.blog-post-content p  { margin-bottom: 1.25rem; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 1.25rem 1.5rem; }
.blog-post-content li { margin-bottom: .5rem; }
.blog-post-content a { color: var(--p); text-decoration: underline; }
.blog-post-content blockquote {
    border-left: 4px solid var(--p);
    padding: .5rem 1.25rem;
    background: var(--bg);
    color: var(--text);
    font-style: italic;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.public-footer {
    background: var(--dark-2);
    color: #94a3b8;
    padding: 4rem 1.5rem 1.5rem;
    font-size: .9rem;
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.footer-col h3 {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }

.footer-col a {
    color: #94a3b8;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.footer-col a:hover { color: var(--p); }

.footer-contact i {
    color: var(--p);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-address {
    display: flex !important;
    align-items: flex-start !important;
    gap: .5rem;
    line-height: 1.6;
}

.footer-address i {
    color: var(--p);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: .6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(37, 99, 235, .12);
    color: var(--p);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--t);
}

.footer-social a:hover {
    background: var(--p);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .82rem;
    color: #64748b;
}

.footer-bottom strong { color: #fff; }

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a { color: #64748b; }
.footer-legal a:hover { color: var(--p); }

/* ── CONTACT GRID ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: var(--r-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--t);
}

.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pl);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.contact-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.contact-card a { color: var(--text-2); font-weight: 500; }
.contact-card a:hover { color: var(--p); }

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--brd);
}

.legal-page h2 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--dark); }
.legal-page h3 { font-size: 1.15rem; margin: 1.5rem 0 .75rem; color: var(--text); }
.legal-page p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text-2); }
.legal-page ul, .legal-page ol { margin: 0 0 1.25rem 1.5rem; }
.legal-page li { margin-bottom: .5rem; line-height: 1.7; color: var(--text-2); }
.legal-page strong { color: var(--dark); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero.hero-home .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero.hero-home .hero-sub,
    .hero.hero-home .feat-list { margin-left: auto; margin-right: auto; }
    .hero.hero-home .feat-list { align-items: center; }
    .hero.hero-home .feat-item { justify-content: center; }
    .fg2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(15, 23, 42, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 1rem;
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
        transform: translateY(-150%);
        transition: transform .3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; }
    .nav-list a { padding: .85rem 1rem; }
    .nav-cta { flex-direction: column; align-items: stretch; gap: .5rem; }
    .nav-cta a { justify-content: center; }

    .section, .cta-section { padding: 3.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .form-card { padding: 1.5rem; }
    .hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 3rem; }
    .svc-pills { gap: .35rem; }
    .svc-pill { padding: .45rem .75rem; font-size: .78rem; }
}

/* ============================================================
   EK STİLLER — İletişim, Hakkımızda, Blog, 404, Hukuki
   ============================================================ */

/* === İletişim === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--brd);
}
.contact-item:last-child { border-bottom: none; }

.contact-icon {
    width: 44px; height: 44px;
    background: var(--pl);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: .25rem;
    font-size: .95rem;
}
.contact-item a, .contact-item span {
    display: block;
    color: var(--mt);
    text-decoration: none;
    font-size: .9rem;
    line-height: 1.6;
}
.contact-item a:hover { color: var(--p); }

.section-title-sm {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.form-card-contact { padding: 2rem; }
.form-card-sub { color: var(--mt); font-size: .9rem; margin-bottom: 1.5rem; }
.btn-block { width: 100%; justify-content: center; }

.form-msg {
    margin-top: 1rem;
    padding: .85rem 1rem;
    border-radius: 8px;
    font-size: .9rem;
}
.form-msg-ok { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.form-msg-err { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }

.map-section {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--brd);
}
.map-section iframe { display: block; }

/* === Hakkımızda === */
.container-narrow { max-width: 800px; }

.section-sub {
    text-align: center;
    color: var(--mt);
    font-size: 1rem;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
}

.prose {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
}
.prose p { margin-bottom: 1.25rem; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--dark); }
.prose h3 { margin-top: 2rem; margin-bottom: .75rem; color: var(--dark); font-size: 1.15rem; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.5rem; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--p); }
.prose img { border-radius: 10px; margin: 1.5rem 0; }
.prose strong { color: var(--dark); }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }

.mv-card {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: 16px;
    padding: 2rem;
}
.mv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: .75rem; font-weight: 700; }
.mv-card p { color: var(--mt); line-height: 1.7; font-size: .95rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition, all .2s ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.06); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: .5rem; font-weight: 700; }
.value-card p { font-size: .88rem; color: var(--mt); line-height: 1.6; }

.section-dark { background: var(--dark); color: #fff; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.stat-lbl { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .5rem; }

/* === Hukuki Sayfalar === */
.hero-compact { padding: 6rem 0 3rem; }
.legal-content {
    color: var(--text);
    line-height: 1.8;
    font-size: .95rem;
}
.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--pl);
}
.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 600;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: .75rem 0 1.5rem 1.5rem; }
.legal-content li { margin-bottom: .5rem; }
.legal-content a { color: var(--p); font-weight: 500; }
.legal-content strong { color: var(--dark); font-weight: 700; }
.legal-meta {
    background: var(--pl);
    color: var(--pd);
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* === SSS Sayfası === */
.faq-category {
    margin-bottom: 3rem;
}
.faq-cat-title {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 3px solid var(--p);
    display: inline-block;
}

.faq-cta {
    background: linear-gradient(135deg, var(--pl), #e0e7ff);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.faq-cta h3 { color: var(--dark); font-size: 1.4rem; margin-bottom: .5rem; font-weight: 700; }
.faq-cta p { color: var(--mt); margin-bottom: 1.5rem; }
.faq-cta-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Blog === */
.blog-filters {
    background: #fff;
    border-bottom: 1px solid var(--brd);
    padding: 1.5rem 0;
}
.blog-cat-list {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-cat {
    padding: .5rem 1.1rem;
    border: 1px solid var(--brd);
    border-radius: 50px;
    color: var(--mt);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: all .2s ease;
    background: #fff;
}
.blog-cat:hover { border-color: var(--p); color: var(--p); }
.blog-cat.active { background: var(--p); border-color: var(--p); color: #fff; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    border-color: var(--p);
}

.blog-card-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg, #f8fafc);
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }

.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }

.blog-card-cat {
    display: inline-block;
    background: var(--pl);
    color: var(--p);
    padding: .25rem .7rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark);
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--p); }

.blog-card-excerpt {
    color: var(--mt);
    font-size: .9rem;
    line-height: 1.6;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mt);
    font-size: .8rem;
    padding-top: .75rem;
    border-top: 1px solid var(--brd);
    flex-wrap: wrap;
    gap: .5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
}
.page-link {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brd);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
    padding: 0 .75rem;
}
.page-link:hover { border-color: var(--p); color: var(--p); }
.page-link.active { background: var(--p); border-color: var(--p); color: #fff; }

/* === Blog Detay === */
.blog-post-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
    color: #fff;
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
}
.blog-post-cat {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: #93c5fd;
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.blog-post-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}
.blog-post-lead {
    color: rgba(255,255,255,.8);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    flex-wrap: wrap;
}

.blog-post-cover {
    max-width: 1000px;
    margin: -1.5rem auto 2rem;
    padding: 0 1.5rem;
}
.blog-post-cover img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.blog-post-body { padding: 2rem 0 4rem; }
.blog-prose { font-size: 1.05rem; line-height: 1.8; }
.blog-prose h2 { font-size: 1.6rem; margin-top: 2.5rem; }
.blog-prose h3 { font-size: 1.3rem; margin-top: 2rem; }
.blog-prose img { border-radius: 12px; margin: 2rem 0; }
.blog-prose blockquote {
    border-left: 4px solid var(--p);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--pl);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text);
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid var(--brd);
    flex-wrap: wrap;
}
.blog-post-share strong { color: var(--dark); }
.blog-post-share a {
    padding: .5rem 1rem;
    background: #fff;
    border: 1px solid var(--brd);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s;
}
.blog-post-share a:hover { background: var(--p); color: #fff; border-color: var(--p); }

.breadcrumbs-light a { color: rgba(255,255,255,.7); }
.breadcrumbs-light a:hover { color: #fff; }
.breadcrumbs-light .bc-sep { color: rgba(255,255,255,.4); }

.cta-blog { background: linear-gradient(135deg, var(--p), var(--acc)); color: #fff; }
.cta-blog h2 { color: #fff; }
.cta-blog p { color: rgba(255,255,255,.85); }

/* === Empty State === */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--mt);
}
.empty-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: .6; }
.empty-state h3 { color: var(--dark); font-size: 1.4rem; margin-bottom: .75rem; }
.empty-state p { font-size: 1rem; margin-bottom: 1.5rem; }

/* === 404 === */
.section-404 { padding: 6rem 0; }
.err-code {
    font-size: clamp(6rem, 18vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--p), var(--acc));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}
.err-title { font-size: 1.75rem; color: var(--dark); font-weight: 800; margin-bottom: .5rem; }
.err-sub { color: var(--mt); margin-bottom: 2rem; font-size: 1.05rem; }
.err-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.err-popular {
    background: var(--bg, #f8fafc);
    border: 1px solid var(--brd);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
.err-popular h3 { color: var(--dark); font-size: 1rem; margin-bottom: .75rem; font-weight: 700; }
.err-popular ul { list-style: none; padding: 0; }
.err-popular li { padding: .35rem 0; }
.err-popular li a {
    color: var(--p);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
}
.err-popular li a:hover { text-decoration: underline; }

