/* ============================================
   SELÇUKLU HUKUK BÜROSU — Ana Stil Dosyası
   ============================================ */

/* --- Değişkenler --- */
:root {
    --navy: #1E2D3D;
    --navy-mid: #334862;
    --blue: #446084;
    --teal: #5D9A95;
    --teal-light: #7BBBB6;
    --gold: #C9A84C;
    --white: #FFFFFF;
    --off-white: #F5F6F8;
    --gray-light: #E8ECEF;
    --gray: #8A9BB0;
    --text: #2C3A4A;
    --text-light: #5A6A7A;

    --font: 'Montserrat', sans-serif;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(30,45,61,0.10);
    --shadow-lg: 0 8px 48px rgba(30,45,61,0.16);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; max-width: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Utility --- */
.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
}
.btn-primary:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93,154,149,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}
.btn-navy:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* --- Section Titles --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(93,154,149,0.1);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title span { color: var(--teal); }
/* .text-white ile .section-title eşit özgüllükte; bileşik kural beyazı garanti eder
   (koyu zeminli bölüm başlıkları lacivert kalıp kaybolmasın). */
.section-title.text-white { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left a { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 7px; transition: color var(--transition); }
.topbar-left a:hover { color: var(--teal-light); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 0.75rem; transition: all var(--transition); }
.topbar-right a:hover { background: var(--teal); color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30,45,61,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: all var(--transition);
    padding: 0;
}
.site-header.scrolled {
    background: rgba(30,45,61,0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.header-inner { display: flex; align-items: center; gap: 32px; padding: 14px 0; }
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
.logo-dark { display: none; }
.logo-white { display: block; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--teal-light);
    background: rgba(93,154,149,0.12);
}
.main-nav > ul > li > a i { font-size: 0.7rem; transition: transform var(--transition); }
.main-nav > ul > li:hover > a i { transform: rotate(180deg); }
.main-nav > ul > li > a i.nav-icon { font-size: 0.82rem; opacity: 0.75; transform: none !important; transition: opacity var(--transition), color var(--transition); }
.main-nav > ul > li > a:hover i.nav-icon,
.main-nav > ul > li > a.active i.nav-icon { opacity: 1; color: var(--teal-light); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
    padding: 8px 0;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.dropdown li a i {
    font-size: 0.82rem;
    width: 16px;
    text-align: center;
    color: var(--teal);
    opacity: 0.65;
    flex-shrink: 0;
    transition: opacity var(--transition);
}
.dropdown li a:hover {
    color: var(--teal);
    background: rgba(93,154,149,0.06);
    border-left-color: var(--teal);
}
.dropdown li a:hover i { opacity: 1; }
.header-cta { margin-left: 12px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   PAGE HERO (İç sayfa başlıkları)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('img/pattern-scales.svg') repeat;
    opacity: 0.04;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================
   HERO (Anasayfa)
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 55% at 88% 18%, rgba(93,154,149,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 45% 45% at 6% 95%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        url('img/pattern-scales.svg');
    background-size: 60px 60px, 60px 60px, auto;
    background-repeat: repeat, repeat, repeat;
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 25%, transparent 72%);
    mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 25%, transparent 72%);
}
.hero-emblem {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.hero-emblem::before {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    left: 50%; top: 48%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(93,154,149,0.16) 0%, transparent 62%);
    z-index: 0;
}
.hero-emblem svg {
    position: relative;
    z-index: 1;
    width: 160px;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.38));
}
.hero-emblem .em-teal { stroke: var(--teal-light); }
.hero-emblem .em-gold { stroke: var(--gold); }
.hero-emblem .em-gold-fill { fill: var(--gold); }
.hero-emblem .em-teal-fill { fill: var(--teal-light); }
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 620px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(93,154,149,0.15);
    border: 1px solid rgba(93,154,149,0.3);
    color: var(--teal-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hero-badge i { font-size: 0.85rem; }
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.hero h1 span {
    background: linear-gradient(100deg, var(--teal-light), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 30px;
    line-height: 1.85;
    max-width: 560px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }
.hero-trust { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.hero-trust li { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.hero-trust li i { color: var(--teal-light); font-size: 1rem; flex: 0 0 auto; }

/* Hero görsel sütunu */
.hero-visual { position: relative; }
.hero-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.07);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.38);
}
.hero-card-head { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.hero-card-icon {
    width: 54px; height: 54px; flex: 0 0 54px;
    border-radius: 14px; display: grid; place-items: center;
    font-size: 1.4rem; color: var(--navy);
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    box-shadow: 0 8px 22px rgba(93,154,149,0.45);
}
.hero-card-head h3 { color: #fff; font-size: 1.18rem; font-weight: 700; margin: 0 0 4px; }
.hero-card-head p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; line-height: 1.45; }
.hero-card-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hero-card-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.93rem; }
.hero-card-list li i { color: var(--teal-light); font-size: 1.05rem; flex: 0 0 auto; }
.btn-block { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; }
.hero-card-phone { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; color: #fff; font-weight: 600; font-size: 0.95rem; opacity: 0.85; transition: color .2s, opacity .2s; }
.hero-card-phone:hover { opacity: 1; color: var(--teal-light); }

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { border-left: 2px solid rgba(93,154,149,0.5); padding-left: 18px; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat strong span { font-size: inherit; color: inherit; font-weight: inherit; }
.hero-stat > span { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 6px; display: block; }

@media (max-width: 992px) {
    .hero { padding: 56px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: none; text-align: center; margin: 0 auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust { align-items: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-visual { max-width: 430px; width: 100%; margin: 0 auto; }
}
@media (max-width: 600px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .hero-card { padding: 26px 22px; }
    .hero-emblem svg { width: 132px; }
}

/* ============================================
   NEDEN BİZ / ÖZELLİKLER
   ============================================ */
.features { padding: 110px 0; background: var(--off-white); }
/* Hairline ile bölünmüş kurumsal ızgara: beyaz hücreler, ince ayraçlar */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-light);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}
.feature-card {
    background: var(--white);
    padding: 46px 40px;
    transition: background var(--transition);
    position: relative;
    min-width: 0;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.feature-card:hover { background: #FBFCFD; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--teal);
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    margin-bottom: 26px;
    transition: color var(--transition), border-color var(--transition);
}
.feature-card:hover .feature-icon { color: var(--gold); border-color: rgba(201,168,76,0.5); }
.feature-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.feature-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.8; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   ARABULUCULUK BÖLÜMÜ
   ============================================ */
.mediation-section { padding: 100px 0; background: var(--off-white); }
.mediation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mediation-content .section-header { text-align: left; margin-bottom: 32px; }
.mediation-content .section-header .section-divider { margin: 16px 0 0; }
.mediation-content p { color: var(--text-light); margin-bottom: 20px; line-height: 1.9; }
.mediation-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.mediation-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
}
.step-info h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-info p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.mediation-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
/* Vektörel marka paneli (AI fotoğraf yerine kurumsal kompozisyon) */
.mediation-brand {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(120% 95% at 50% -12%, rgba(93,154,149,0.20), transparent 55%),
        linear-gradient(155deg, #16222F 0%, var(--navy) 46%, var(--navy-mid) 100%);
    overflow: hidden;
}
/* Terazi filigranı — çok hafif, kurumsal */
.mediation-brand-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url('../img/pattern-scales.svg');
    background-size: 168px 168px;
    opacity: 0.07;
    -webkit-mask-image: radial-gradient(ellipse 86% 86% at 50% 45%, #000 35%, transparent 82%);
    mask-image: radial-gradient(ellipse 86% 86% at 50% 45%, #000 35%, transparent 82%);
}
/* İnce çerçeve — sertifika hissi */
.mediation-brand::after {
    content: '';
    position: absolute; inset: 22px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    pointer-events: none;
}
.mediation-brand-inner {
    position: relative; z-index: 1;
    text-align: center;
    padding: 54px 44px 118px;
    max-width: 440px;
}
.mediation-brand-emblem {
    width: 72px; height: 72px;
    color: var(--teal-light);
    margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.4));
}
.mediation-brand-name {
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.25;
}
.mediation-brand-rule {
    display: block; width: 48px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 20px auto;
}
.mediation-brand-tag {
    font-size: 0.98rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.mediation-badge {
    position: absolute;
    bottom: 32px; left: 32px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 16px;
}
.mediation-badge .badge-icon { font-size: 2rem; color: var(--teal); }
.mediation-badge strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.mediation-badge span { font-size: 0.82rem; color: var(--gray); }

/* ============================================
   HİZMET ALANLARI
   ============================================ */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.service-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.03);
    border-radius: 0 var(--radius) 0 100%;
}
.service-card:hover { background: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(93,154,149,0.3); }
.service-card i { font-size: 2rem; color: var(--teal); margin-bottom: 20px; transition: color var(--transition); display: block; }
.service-card:hover i { color: var(--white); }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--teal-light); margin-top: 20px; transition: gap var(--transition); }
.service-card:hover .card-link { color: var(--white); gap: 10px; }

/* ============================================
   SÜREÇ ADIMI
   ============================================ */
.process-section { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.process-step { text-align: center; padding: 40px 24px; position: relative; }
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 60%;
    background: rgba(255,255,255,0.1);
}
.process-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(93,154,149,0.15);
    border: 2px solid rgba(93,154,149,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800; color: var(--teal-light);
    margin: 0 auto 20px;
    transition: all var(--transition);
}
.process-step:hover .process-num { background: var(--teal); border-color: var(--teal); color: var(--white); transform: scale(1.1); }
.process-step i { font-size: 1.3rem; color: var(--teal); margin-bottom: 16px; display: block; }
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ============================================
   SAYILAR / İSTATİSTİKLER
   ============================================ */
.stats-section { padding: 80px 0; background: var(--teal); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; }

/* ============================================
   BLOG KÖŞELERİ
   ============================================ */
.blog-section { padding: 100px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { position: relative; overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
    position: absolute; top: 16px; left: 16px;
    background: var(--teal);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; }
.blog-card-meta i { color: var(--teal); }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.blog-card .read-more { font-size: 0.85rem; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 6px; }
.blog-card .read-more:hover { gap: 10px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    position: relative; overflow: hidden;
    text-align: center;
}
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('img/pattern-scales.svg') repeat; opacity: 0.04; }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   İLETİŞİM
   ============================================ */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; line-height: 1.9; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(93,154,149,0.1), rgba(68,96,132,0.1)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--teal); flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { color: var(--text); font-weight: 500; margin: 0; }
.contact-item-text a:hover { color: var(--teal); }

/* ============================================
   FORM STİLLERİ
   ============================================ */
.form-card { background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-light); }
.form-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-group label span.required { color: #E05252; margin-left: 3px; }
.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    width: 100%;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(93,154,149,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }
.form-group.checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--teal); cursor: pointer; appearance: auto; -webkit-appearance: checkbox; border: none; padding: 0; background: none; box-shadow: none; }
.form-group.checkbox label { font-size: 0.85rem; color: var(--text-light); cursor: pointer; }
.form-group.checkbox label a { color: var(--teal); font-weight: 600; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { border-color: #E05252 !important; background: rgba(224,82,82,0.04); }
.form-group.has-error.checkbox input[type="checkbox"] { outline: 2px solid #E05252; border-radius: 3px; }
.field-error-msg { font-size: 0.78rem; color: #c92929; font-weight: 600; margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.field-error-msg::before { content: "\f06a"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
/* --- Başarı Paneli --- */
.success-panel {
    background: #fff;
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    animation: successFadeIn 0.5s ease both;
}
@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.success-panel .sp-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #5d9a95, #4a8580);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px; box-shadow: 0 8px 24px rgba(93,154,149,0.35);
}
.success-panel .sp-icon i { font-size: 2rem; color: #fff; }
.success-panel .sp-title { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.success-panel .sp-subtitle { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 8px; }
.success-panel .sp-ref {
    display: inline-block; background: rgba(93,154,149,0.12); border: 1px solid rgba(93,154,149,0.3);
    color: var(--teal); font-weight: 700; font-size: 0.95rem;
    padding: 8px 20px; border-radius: 30px; margin: 16px 0 32px;
}
.success-panel .sp-steps {
    display: flex; gap: 0; margin: 0 0 36px;
    background: var(--off-white); border-radius: var(--radius-sm); overflow: hidden; text-align: left;
}
.success-panel .sp-step {
    flex: 1; padding: 20px 20px;
    border-right: 1px solid var(--gray-light);
    position: relative;
}
.success-panel .sp-step:last-child { border-right: none; }
.success-panel .sp-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--teal); color: #fff;
    font-size: 0.78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.success-panel .sp-step-title { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.success-panel .sp-step-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.success-panel .sp-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
    .success-panel { padding: 40px 24px; }
    .success-panel .sp-steps { flex-direction: column; }
    .success-panel .sp-step { border-right: none; border-bottom: 1px solid var(--gray-light); }
    .success-panel .sp-step:last-child { border-bottom: none; }
}
.file-upload-area {
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--off-white);
}
.file-upload-area:hover, .file-upload-area.dragover { border-color: var(--teal); background: rgba(93,154,149,0.05); }
.file-upload-area i { font-size: 2.5rem; color: var(--teal); margin-bottom: 12px; }
.file-upload-area p { color: var(--text-light); font-size: 0.9rem; }
.file-upload-area span { font-size: 0.8rem; color: var(--gray); }
.file-upload-area input[type="file"] { display: none; }
#file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.file-item { display: flex; align-items: center; gap: 10px; background: rgba(93,154,149,0.08); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.85rem; }
.file-item i { color: var(--teal); }
.file-item .remove-file { margin-left: auto; color: var(--gray); cursor: pointer; font-size: 1rem; }
.file-item .remove-file:hover { color: #E05252; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-message { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; margin-bottom: 20px; display: none; }
.form-message.success { background: rgba(72,187,120,0.12); border: 1px solid rgba(72,187,120,0.3); color: #276749; display: block; }
.form-message.error { background: rgba(224,82,82,0.1); border: 1px solid rgba(224,82,82,0.3); color: #9B2335; display: block; }

/* Responsive grid yardımcıları + global yatay taşma koruması (mobil) */
.resp-2 { display: grid; grid-template-columns: 1fr 1fr; }
.resp-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .resp-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .resp-2, .resp-3 { grid-template-columns: 1fr; }
}
/* Grid öğelerinin varsayılan min-width:auto'su, içlerindeki büyük intrinsic
   genişlikli görseller yüzünden track'i (ve sayfayı) yatayda taşırabilir.
   min-width:0 ile öğeler sütuna sığacak şekilde küçülebilir. */
.resp-2 > *, .resp-3 > *, .mediation-grid > *, .contact-grid > *, .alan-detay-grid > *, .hero-grid > * { min-width: 0; }
/* overflow-x: clip sticky header'ı bozmaz (scroll container oluşturmaz).
   Hem html hem body'de tutmak, viewport'a propagasyon quirk'inde de
   yatay kaymayı (örn. scroll-reveal translateX, dekoratif öğeler) keser. */
body { overflow-x: clip; max-width: 100%; }
/* Scroll-reveal animasyonları sağa taşma yaratmasın: gizliyken yatay
   öteleme yerine sadece dikey + opaklık kullan (clip zaten keser, bu ek güvence). */
.fade-in-right { transform: translateX(0); }
.blog-content { overflow-wrap: break-word; word-wrap: break-word; }
.blog-content img, .blog-content iframe, .blog-content video { max-width: 100%; height: auto; }
.blog-content table, .blog-content pre { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
/* Uzun Türkçe kelimeler/etiketler dar ekranda taşmasın */
h1, h2, h3, h4, h5, h6, p, li, a { overflow-wrap: break-word; }
.hero h1, .page-hero h1 { overflow-wrap: break-word; word-break: break-word; }
@media (max-width: 600px) {
    .hero-badge { white-space: normal; max-width: 100%; flex-wrap: wrap; justify-content: center; line-height: 1.4; text-align: center; }
    .hero-ctas .btn { white-space: normal; }
}

/* Başvuru sayfası düzeni (mobil uyumlu) */
.basvuru-section { padding: 80px 0; background: var(--off-white); }
.basvuru-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
@media (max-width: 900px) {
    .basvuru-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
    .basvuru-section { padding: 48px 0; }
    .basvuru-grid { gap: 24px; }
    .form-card { padding: 26px 20px; }
    .form-title { font-size: 1.15rem; padding-bottom: 16px; margin-bottom: 22px; }
    .file-upload-area { padding: 24px 16px; }
    .file-upload-area i { font-size: 2rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #1A2838 0%, #0F1822 100%);
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    overflow: hidden;
}
/* Üst aksan çizgisi: teal → altın */
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--teal) 22%, var(--gold) 78%, transparent);
    z-index: 2;
}
/* Çok hafif terazi filigranı */
.site-footer::after {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/pattern-scales.svg') right -30px top 40px / 300px 300px no-repeat;
    opacity: 0.035;
    pointer-events: none;
}
.footer-top, .footer-bottom, .footer-credit { position: relative; z-index: 1; }
.footer-top {
    padding: 90px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-about p {
    margin-top: 20px;
    line-height: 1.85;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}
.footer-logo img {
    height: 48px;
    width: auto;
    filter: brightness(1.1);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: all var(--transition);
}
.footer-col ul li a i {
    color: var(--teal);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.footer-col ul li a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}
.footer-contact li i {
    color: var(--teal);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}
.footer-contact li a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-contact li a:hover { color: var(--teal-light); }
.footer-col .btn { margin-top: 24px; width: 100%; justify-content: center; }
.footer-bottom {
    padding: 22px 0;
    background: rgba(0,0,0,0.2);
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-about { grid-column: auto; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* Telif / Geliştirici imzası */
.footer-credit {
    padding: 20px 0 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.42));
    border-top: 1px solid rgba(201,168,76,0.20);
}
.footer-credit .container { text-align: center; }
.footer-credit-text {
    font-size: 0.82rem;
    line-height: 1.75;
    letter-spacing: 0.2px;
    color: rgba(255,255,255,0.48);
    margin: 0 auto 5px;
}
.footer-credit-text i {
    color: rgba(201,168,76,0.55);
    margin-right: 7px;
    font-size: 0.78rem;
}
.footer-credit-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.22);
    margin: 0;
    text-transform: uppercase;
}
.footer-credit-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    margin: 0 7px;
    vertical-align: middle;
    flex-shrink: 0;
}
.footer-credit-text strong {
    color: rgba(255,255,255,0.72);
    font-weight: 600;
}
.footer-credit-brand {
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--teal-light);
    transition: color var(--transition);
}
.footer-credit-brand:hover {
    color: #9AD7D1;
}
.footer-credit-sep {
    color: rgba(201,168,76,0.5);
    margin: 0 6px;
}
.footer-credit-exclusive { color: rgba(255,255,255,0.35); font-style: italic; }

/* ============================================
   BLOG SAYFASI
   ============================================ */
.blog-page { padding: 80px 0; }
.blog-page-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.blog-posts-list { display: flex; flex-direction: column; gap: 32px; }
.blog-post-item { display: grid; grid-template-columns: 280px 1fr; gap: 28px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: all var(--transition); }
.blog-post-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-post-item img { width: 100%; height: 200px; object-fit: cover; }
.blog-post-body { padding: 28px 28px 28px 0; }
.blog-post-body .blog-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--teal); background: rgba(93,154,149,0.1); padding: 4px 12px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.blog-post-body h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-post-body h2 a:hover { color: var(--teal); }
.blog-post-body .meta { font-size: 0.8rem; color: var(--gray); display: flex; gap: 16px; margin-bottom: 12px; }
.blog-post-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.sidebar-widget h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-light); text-transform: uppercase; letter-spacing: 0.05em; }
.widget-search { display: flex; gap: 0; }
.widget-search input { flex: 1; border: 1.5px solid var(--gray-light); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); padding: 12px 16px; font-size: 0.9rem; outline: none; }
.widget-search button { background: var(--teal); color: var(--white); padding: 0 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1rem; transition: background var(--transition); }
.widget-search button:hover { background: var(--navy); }
.widget-cats li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-light); }
.widget-cats li:last-child { border-bottom: none; }
.widget-cats li a { font-size: 0.9rem; color: var(--text); font-weight: 500; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.widget-cats li a i { color: var(--teal); font-size: 0.7rem; }
.widget-cats li a:hover { color: var(--teal); }
.widget-cats li span { font-size: 0.78rem; background: var(--gray-light); color: var(--gray); padding: 2px 8px; border-radius: 50px; }
.widget-recent li { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--gray-light); }
.widget-recent li:last-child { border-bottom: none; }
.widget-recent img { width: 70px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.widget-recent-info a { font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.4; display: block; margin-bottom: 4px; }
.widget-recent-info a:hover { color: var(--teal); }
.widget-recent-info span { font-size: 0.78rem; color: var(--gray); }
.cta-widget { background: linear-gradient(135deg, var(--navy), var(--blue)) !important; text-align: center; }
.cta-widget h3 { color: var(--white) !important; border-bottom-color: rgba(255,255,255,0.15) !important; }
.cta-widget p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }
.cta-widget .btn { width: 100%; justify-content: center; }

/* ============================================
   ADMİN PANELİ
   ============================================ */
/* ============================================
   ADMIN — SİDEBAR (DARATILABİLİR)
   ============================================ */
.admin-body { background: var(--off-white); min-height: 100vh; }
.admin-layout { min-height: 100vh; display: flex; }

/* Sidebar kapsayıcı — overflow:visible zorunlu (toggle butonu taşar) */
.admin-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(175deg,#14202d 0%,#1e2d3d 55%,#1a2a38 100%);
    position: fixed; top:0; left:0; bottom:0;
    display: flex; flex-direction: column;
    overflow: visible;
    z-index: 100;
    transition: width .28s cubic-bezier(.4,0,.2,1);
    border-right: 1px solid rgba(255,255,255,0.05);
    box-shadow: 4px 0 28px rgba(0,0,0,0.22);
}
.admin-sidebar.sb-collapsed { width: 72px; }

/* Daralt/genişlet butonu — sidebar dışında, kenar ortasında */
.sb-toggle {
    position: absolute; top: 50%; right: -14px;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: var(--teal); color: #fff; border: none;
    border-radius: 50%; cursor: pointer; font-size: 0.62rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(93,154,149,.55);
    transition: background .18s, transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 101;
}
.sb-toggle:hover { background: var(--teal-light); }
.admin-sidebar.sb-collapsed .sb-toggle { transform: translateY(-50%) rotate(180deg); }

/* Logo */
.sb-logo {
    display: flex; align-items: center; gap: 12px;
    padding: 22px 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0; overflow: hidden;
}
.sb-logo-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.sb-logo-icon img { width: 38px; height: 38px; display: block; border-radius: 10px; }
.sb-logo-text { overflow: hidden; white-space: nowrap; transition: opacity .2s, max-width .28s; max-width: 200px; }
.sb-logo-text strong { display:block; font-size:.92rem; font-weight:700; color:#fff; line-height:1.25; }
.sb-logo-text span { font-size:.7rem; color:rgba(255,255,255,.38); }
.admin-sidebar.sb-collapsed .sb-logo-text { opacity:0; max-width:0; pointer-events:none; }

/* Nav */
.sb-nav { flex:1; padding:12px 0 8px; overflow-y:auto; overflow-x:hidden; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.08) transparent; }
.sb-nav::-webkit-scrollbar { width:4px; }
.sb-nav::-webkit-scrollbar-thumb { background:rgba(255,255,255,.1); border-radius:2px; }

.sb-section-label {
    font-size:.64rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    color:rgba(255,255,255,.22); padding:14px 20px 5px;
    white-space:nowrap; overflow:hidden;
    transition: opacity .18s, max-height .28s, padding .28s;
    max-height: 40px;
}
.admin-sidebar.sb-collapsed .sb-section-label { opacity:0; max-height:0; padding-top:0; padding-bottom:0; }

/* Link */
.sb-link {
    display:flex; align-items:center; gap:11px;
    padding:9px 14px; margin:1px 8px;
    border-radius:9px;
    font-size:.868rem; font-weight:500; color:rgba(255,255,255,.58);
    transition: background .18s, color .18s, padding .28s;
    position:relative; cursor:pointer; text-decoration:none;
    white-space:nowrap; overflow:hidden;
}
.sb-link:hover { background:rgba(255,255,255,.08); color:#fff; text-decoration:none; }
.sb-link.active {
    background:rgba(93,154,149,.16); color:var(--teal-light);
    box-shadow: inset 3px 0 0 var(--teal);
}
.sb-link.active .sb-icon i { color:var(--teal); }

.sb-icon { width:20px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.sb-icon i { font-size:.92rem; color:rgba(255,255,255,.38); transition:color .18s; }
.sb-link:hover .sb-icon i { color:rgba(255,255,255,.8); }

.sb-label { flex:1; overflow:hidden; text-overflow:ellipsis; transition:opacity .18s, max-width .28s; max-width:200px; }
.admin-sidebar.sb-collapsed .sb-label { opacity:0; max-width:0; pointer-events:none; }
.admin-sidebar.sb-collapsed .sb-link { padding:9px; justify-content:center; }

/* Bildirim rozeti */
.sb-badge {
    background:#E05252; color:#fff;
    font-size:.66rem; font-weight:700; line-height:1;
    padding:3px 7px; border-radius:100px;
    flex-shrink:0; transition:opacity .18s;
}
.admin-sidebar.sb-collapsed .sb-badge { display:none; }

/* Tooltip (sadece daraltılmış halde) */
.admin-sidebar.sb-collapsed [data-tooltip]::after {
    content: attr(data-tooltip);
    position:absolute; left:calc(100% + 10px); top:50%;
    transform: translateY(-50%);
    background:rgba(14,22,32,.96); color:#fff;
    font-size:.78rem; font-weight:600;
    padding:6px 12px; border-radius:8px; white-space:nowrap;
    pointer-events:none; opacity:0;
    transition:opacity .15s;
    box-shadow:0 4px 14px rgba(0,0,0,.35);
    z-index:200;
}
.admin-sidebar.sb-collapsed [data-tooltip]:hover::after { opacity:1; }

/* Footer */
.sb-footer {
    padding:6px 0 14px;
    border-top:1px solid rgba(255,255,255,.07);
    flex-shrink:0; overflow:hidden;
}
.sb-link-external .sb-icon i { color:rgba(255,255,255,.28); }
.sb-link-external:hover .sb-icon i { color:rgba(255,255,255,.65); }
.sb-link-exit .sb-icon i { color:rgba(224,82,82,.65); }
.sb-link-exit:hover { background:rgba(224,82,82,.1); color:#E05252; }
.sb-link-exit:hover .sb-icon i { color:#E05252; }

/* Kullanıcı bloğu */
.sb-user {
    display:flex; align-items:center; gap:10px;
    padding:11px 14px; margin:8px 8px 0;
    border-radius:9px; overflow:hidden;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    transition:padding .28s;
}
.sb-user-avatar {
    width:30px; height:30px; flex-shrink:0;
    background:linear-gradient(135deg,var(--teal),var(--blue));
    border-radius:7px;
    display:flex; align-items:center; justify-content:center;
    font-size:.8rem; font-weight:700; color:#fff;
}
.sb-user-info { overflow:hidden; transition:opacity .18s, max-width .28s; max-width:180px; }
.sb-user-info strong { display:block; font-size:.8rem; font-weight:700; color:rgba(255,255,255,.82); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sb-user-info span { font-size:.7rem; color:rgba(255,255,255,.32); }
.admin-sidebar.sb-collapsed .sb-user { justify-content:center; padding:9px; }
.admin-sidebar.sb-collapsed .sb-user-info { opacity:0; max-width:0; pointer-events:none; }

/* İçerik alanı */
.admin-content { margin-left:260px; padding:0; flex:1; min-width:0; transition:margin-left .28s cubic-bezier(.4,0,.2,1); }
.sb-collapsed .admin-content { margin-left:72px; }
.admin-topbar {
    background: var(--white);
    padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: sticky; top: 0; z-index: 50;
}
.admin-page-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
.admin-user { display: flex; align-items: center; gap: 12px; }
.admin-user span { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.admin-user a { font-size: 0.82rem; color: var(--teal); font-weight: 600; }
.admin-main { padding: 32px; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 20px; }
.admin-stat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.admin-stat-icon.teal { background: rgba(93,154,149,0.12); color: var(--teal); }
.admin-stat-icon.navy { background: rgba(51,72,98,0.12); color: var(--navy-mid); }
.admin-stat-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.admin-stat-icon.red { background: rgba(224,82,82,0.1); color: #E05252; }
.admin-stat-info strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.admin-stat-info span { font-size: 0.82rem; color: var(--gray); }
.admin-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 24px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-light); }
.admin-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); padding: 10px 14px; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
td { padding: 14px; font-size: 0.88rem; color: var(--text); border-bottom: 1px solid var(--gray-light); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(93,154,149,0.03); }
.badge-status { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-status.yeni { background: rgba(93,154,149,0.12); color: var(--teal); }
.badge-status.inceleniyor { background: rgba(201,168,76,0.12); color: var(--gold); }
.badge-status.tamamlandi { background: rgba(72,187,120,0.12); color: #276749; }
.badge-status.reddedildi { background: rgba(224,82,82,0.1); color: #9B2335; }
.table-actions { display: flex; gap: 6px; }
.table-actions a, .table-actions button { width: 32px; height: 32px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all var(--transition); }
.table-actions .view-btn { background: rgba(93,154,149,0.1); color: var(--teal); }
.table-actions .edit-btn { background: rgba(201,168,76,0.1); color: var(--gold); }
.table-actions .del-btn { background: rgba(224,82,82,0.08); color: #E05252; }
.table-actions a:hover { filter: brightness(1.15); transform: scale(1.08); }
.btn-danger { background: #E05252; color: var(--white); border: 2px solid #E05252; }
.btn-danger:hover { background: #C74040; border-color: #C74040; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 600;
    border: 1.5px solid var(--gray-light);
    color: var(--text);
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(93,154,149,0.4);
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
    z-index: 200;
    cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .mediation-grid, .contact-grid, .alan-detay-grid { grid-template-columns: 1fr; }
    .mediation-brand { min-height: 450px; align-items: flex-start; }
    .mediation-brand-inner { padding: 52px 30px 44px; }
    .mediation-badge { left: 24px; right: 24px; bottom: 24px; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .admin-sidebar { display: none !important; }
    .admin-content { margin-left: 0 !important; }
    .sb-collapsed .admin-content { margin-left: 0 !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .blog-post-item { grid-template-columns: 1fr; }
    .blog-post-item img { height: 220px; }
    .blog-post-body { padding: 24px; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .main-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--navy);
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 44px rgba(0,0,0,0.4);
        max-height: 0;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, visibility 0.3s ease;
    }
    .main-nav.open { max-height: calc(100vh - 100%); opacity: 1; visibility: visible; }
    .main-nav > ul { flex-direction: column; gap: 0; padding: 6px 0; }
    .main-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .main-nav > ul > li:last-child { border-bottom: none; }
    .main-nav > ul > li > a {
        padding: 15px 24px;
        border-radius: 0;
        font-size: 0.95rem;
        display: flex; align-items: center; justify-content: space-between;
    }
    .main-nav > ul > li > a.active { background: rgba(255,255,255,0.04); box-shadow: inset 3px 0 0 var(--teal); }
    .main-nav > ul > li > a i {
        font-size: 0.8rem;
        padding: 8px; margin: -8px -8px -8px 8px;
        transition: transform var(--transition);
    }
    .main-nav > ul > li > a i.nav-icon {
        font-size: 0.85rem; opacity: 0.7;
        padding: 0; margin: 0 2px 0 0;
    }
    .has-dropdown.open > a i { transform: rotate(180deg); }
    .has-dropdown.open > a i.nav-icon { transform: none !important; }
    .dropdown {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; border-radius: 0;
        background: rgba(0,0,0,0.25);
        padding: 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.32s ease;
    }
    .has-dropdown.open > .dropdown { max-height: 520px; }
    .dropdown li a { padding: 13px 24px 13px 42px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
    .hamburger { display: flex; margin-left: auto; }
    .header-inner { gap: 16px; justify-content: space-between; }
    .header-cta { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; }
    .hero-stats { gap: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step::after { display: none; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stats-grid, .admin-stats { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .scroll-top { bottom: 20px; right: 20px; }
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   FOOTER YASAL LİNKLER
   ============================================ */
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--teal-light); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px; left: 32px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 200;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes wa-pulse {
    0% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   MOBİL HIZLI AKSİYON ÇUBUĞU
   ============================================ */
.mobile-action-bar { display: none; }
@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: calc(62px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: var(--white);
        box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
        z-index: 250;
        border-top: 1px solid var(--gray-light);
    }
    .mobile-action-bar a {
        flex: 1;
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
        font-size: 0.7rem; font-weight: 700;
        color: var(--navy);
        border-right: 1px solid var(--gray-light);
    }
    .mobile-action-bar a:last-child { border-right: none; }
    .mobile-action-bar a i { font-size: 1.15rem; color: var(--teal); }
    .mobile-action-bar a.primary { background: var(--teal); color: #fff; }
    .mobile-action-bar a.primary i { color: #fff; }
    body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
    .whatsapp-float { display: none; }
    .scroll-top { bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================
   ÇEREZ ONAY BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(160%);
    width: min(960px, calc(100% - 32px));
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    z-index: 300;
    padding: 22px 28px;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    border: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { font-size: 0.88rem; line-height: 1.6; margin: 0; flex: 1; min-width: 260px; }
.cookie-banner p i { color: var(--gold); margin-right: 8px; }
.cookie-banner a { color: var(--teal-light); font-weight: 600; }
.cookie-banner-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner-btns .btn { padding: 10px 22px; font-size: 0.85rem; }
.btn-outline-dark { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.btn-outline-dark:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); }
@media (max-width: 768px) {
    .cookie-banner { bottom: 70px; }
    .cookie-banner-btns { width: 100%; }
    .cookie-banner-btns .btn { flex: 1; justify-content: center; }
}

/* ============================================
   MÜVEKKİL YORUMLARI (SLIDER)
   ============================================ */
.testimonials-section { padding: 100px 0; background: var(--off-white); }
.testimonial-slider { margin-top: 56px; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.testimonial-slide { flex: 0 0 calc((100% - 48px) / 3); }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex; flex-direction: column;
    border: 1px solid var(--gray-light);
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); margin-bottom: 18px; font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-light); line-height: 1.85; font-size: 0.95rem; margin-bottom: 26px; flex: 1; }
.testimonial-text i { color: var(--teal); margin-right: 6px; opacity: 0.6; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff; font-weight: 700; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testimonial-nav button {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid var(--gray-light); background: var(--white);
    color: var(--navy); cursor: pointer; font-size: 0.9rem;
    transition: all var(--transition);
}
.testimonial-nav button:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gray-light); cursor: pointer; transition: all var(--transition);
}
.testimonial-dots span.active { background: var(--teal); width: 28px; border-radius: 5px; }
@media (max-width: 1024px) { .testimonial-slide { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 768px) { .testimonial-slide { flex: 0 0 100%; } }

/* ============================================
   SIKÇA SORULAN SORULAR (ACCORDION)
   ============================================ */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 860px; margin: 56px auto 0; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--teal-light); }
.faq-q {
    width: 100%; text-align: left;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 24px 28px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1.02rem; font-weight: 600; color: var(--navy);
    transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-q i {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    background: var(--off-white); color: var(--teal);
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 28px 26px; color: var(--text-light); line-height: 1.85; font-size: 0.94rem; }

/* ============================================
   EKİP / KADRO
   ============================================ */
/* ===== EKİP KARTLARI ===== */
.team-section { padding: 100px 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30,45,61,0.09);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
    display: flex; flex-direction: column;
    position: relative;
}
.team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 48px rgba(30,45,61,0.18); }
.team-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--teal), var(--blue));
    opacity: 0; transition: opacity 0.3s;
}
.team-card:hover::before { opacity: 1; }

/* Fotoğraf alanı */
.team-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    flex-shrink: 0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.22,.68,0,1.2); }
.team-card:hover .team-photo img { transform: scale(1.07); }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 5rem; }

/* Deneyim yılı rozeti */
.team-exp-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(30,45,61,0.82);
    backdrop-filter: blur(6px);
    color: #fff; border-radius: 30px;
    padding: 5px 12px; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px;
    border: 1px solid rgba(255,255,255,0.12);
}
.team-exp-badge i { color: var(--teal-light); font-size: 0.65rem; }

/* Sosyal hover katmanı */
.team-social {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; gap: 10px; justify-content: center; align-items: center;
    padding: 20px 16px 18px;
    background: linear-gradient(transparent, rgba(18,28,44,0.92));
    transform: translateY(100%); transition: transform 0.35s ease;
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; transition: background 0.25s, transform 0.25s;
}
.team-social a:hover { background: var(--teal); transform: scale(1.12); }

/* Bilgi alanı */
.team-info { padding: 24px 22px 20px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.team-info h3 {
    color: var(--navy); font-size: 1.15rem; font-weight: 700;
    margin-bottom: 5px; letter-spacing: -0.2px;
}
.team-role {
    color: var(--teal); font-weight: 600; font-size: 0.82rem;
    display: block; margin-bottom: 14px; letter-spacing: 0.3px;
    text-transform: uppercase;
}
.team-uzmanlik {
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
    margin-bottom: 16px;
}
.team-uzmanlik-tag {
    background: rgba(93,154,149,0.1); color: var(--teal-dark);
    border: 1px solid rgba(93,154,149,0.25);
    border-radius: 20px; padding: 3px 10px;
    font-size: 0.72rem; font-weight: 600; white-space: nowrap;
}
.team-info p { color: var(--text-light); font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.team-profil-btn {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--navy); font-weight: 700; font-size: 0.82rem;
    text-decoration: none; padding: 9px 20px;
    border: 2px solid var(--navy); border-radius: 30px;
    transition: all 0.25s; align-self: center; margin-top: auto;
    letter-spacing: 0.3px;
}
.team-profil-btn:hover { background: var(--navy); color: #fff; }
.team-profil-btn i { font-size: 0.75rem; transition: transform 0.25s; }
.team-profil-btn:hover i { transform: translateX(3px); }

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: 1fr; } }

/* ===== EKİP DETAY SAYFASI ===== */
.member-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #263d5a 100%);
    padding: 80px 0 0; color: #fff; position: relative; overflow: hidden;
}
.member-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.member-hero-inner {
    display: grid; grid-template-columns: 300px 1fr; gap: 48px;
    align-items: end; position: relative;
}
.member-hero-photo {
    width: 300px; aspect-ratio: 3/4; border-radius: 16px 16px 0 0;
    overflow: hidden; box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    align-self: end;
}
.member-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-hero-photo-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 7rem; color: rgba(255,255,255,0.2);
}
.member-hero-info { padding-bottom: 40px; }
.member-hero-unvan {
    display: inline-block; background: rgba(93,154,149,0.25);
    border: 1px solid rgba(93,154,149,0.5);
    color: var(--teal-light); border-radius: 30px;
    padding: 4px 14px; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 14px;
}
.member-hero-info h1 { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.member-hero-info .baro-badge {
    color: rgba(255,255,255,0.7); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}
.member-hero-stats { display: flex; gap: 32px; margin-bottom: 28px; }
.member-hero-stat { text-align: center; }
.member-hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--teal-light); line-height: 1; }
.member-hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.member-hero-breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.member-hero-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.member-hero-breadcrumb a:hover { color: #fff; }

.member-body { padding: 64px 0; }
.member-layout { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }

/* Sol kart */
.member-sidebar-card {
    background: var(--white); border-radius: 16px;
    box-shadow: 0 4px 24px rgba(30,45,61,0.09);
    overflow: hidden; position: sticky; top: 90px;
}
.member-sidebar-header {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 20px; text-align: center;
}
.member-sidebar-avatar {
    width: 90px; height: 90px; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.25);
    margin: 0 auto 12px; overflow: hidden;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: rgba(255,255,255,0.4);
}
.member-sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-sidebar-name { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.member-sidebar-title { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.member-sidebar-body { padding: 20px; }
.member-contact-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 11px 0; border-bottom: 1px solid var(--gray-light);
    font-size: 0.88rem; color: var(--text);
}
.member-contact-row:last-of-type { border-bottom: none; }
.member-contact-row i {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(93,154,149,0.1); color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.82rem;
}
.member-contact-row a { color: var(--navy); font-weight: 600; text-decoration: none; }
.member-contact-row a:hover { color: var(--teal); }
.member-contact-row .lbl { font-size: 0.72rem; color: var(--gray); display: block; margin-bottom: 1px; }

.member-uzmanlik-list { margin-top: 16px; }
.member-uzmanlik-list h4 { font-size: 0.75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
.member-uzmanlik-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.member-uzmanlik-tags span {
    background: rgba(93,154,149,0.1); color: var(--teal-dark);
    border: 1px solid rgba(93,154,149,0.25); border-radius: 20px;
    padding: 4px 11px; font-size: 0.73rem; font-weight: 600;
}
.member-cta-card {
    margin-top: 16px; background: linear-gradient(135deg, var(--teal), #3d8a85);
    border-radius: 12px; padding: 18px; text-align: center;
}
.member-cta-card p { color: rgba(255,255,255,0.85); font-size: 0.82rem; margin-bottom: 12px; line-height: 1.5; }
.member-cta-card .btn { background: #fff; color: var(--teal-dark); font-weight: 700; font-size: 0.82rem; padding: 10px 18px; }
.member-cta-card .btn:hover { background: var(--navy); color: #fff; }

/* Sağ içerik */
.member-content-card {
    background: var(--white); border-radius: 16px;
    box-shadow: 0 4px 24px rgba(30,45,61,0.09);
    padding: 40px 44px;
}
.member-content-card h2 {
    font-size: 1.45rem; color: var(--navy); margin-bottom: 20px;
    padding-bottom: 14px; border-bottom: 2px solid var(--gray-light);
    display: flex; align-items: center; gap: 10px;
}
.member-content-card h2 i { color: var(--teal); font-size: 1.1rem; }
.member-content-card .bio-text { color: var(--text-light); line-height: 1.85; font-size: 0.96rem; margin-bottom: 32px; }
.member-content-card .bio-text h3 { color: var(--navy); font-size: 1.1rem; margin: 24px 0 10px; font-weight: 700; }
.member-content-card .bio-text h3::before { content: '▌ '; color: var(--teal); }
.member-content-card .bio-text ul { padding-left: 20px; }
.member-content-card .bio-text ul li { margin-bottom: 6px; }
.member-content-card .bio-text p { margin-bottom: 14px; }

.member-back-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--navy); font-weight: 600; font-size: 0.88rem;
    text-decoration: none; margin-bottom: 32px;
    padding: 8px 16px; border: 1.5px solid var(--gray-light);
    border-radius: 30px; transition: all 0.25s;
}
.member-back-link:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.member-other-members { padding: 60px 0; background: var(--off-white); }
.member-other-members .section-header { margin-bottom: 36px; }

@media (max-width: 900px) {
    .member-hero-inner { grid-template-columns: 200px 1fr; gap: 24px; }
    .member-hero-photo { width: 200px; }
    .member-hero-info h1 { font-size: 1.8rem; }
    .member-layout { grid-template-columns: 1fr; }
    .member-sidebar-card { position: static; }
    .member-content-card { padding: 28px 20px; }
}
@media (max-width: 600px) {
    .member-hero-inner { grid-template-columns: 1fr; justify-items: center; }
    .member-hero-photo { width: 220px; aspect-ratio: 1/1; border-radius: 50%; }
    .member-hero-info { text-align: center; padding-bottom: 32px; }
    .member-hero-info h1 { font-size: 1.6rem; }
    .member-hero-stats { justify-content: center; }
    .baro-badge { justify-content: center; }
}

/* ===== Legal / Policy Pages ===== */
.legal-section { padding: 80px 0; background: var(--white); }
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content .legal-intro { font-size: 1.08rem; line-height: 1.8; color: var(--text); background: rgba(93,154,149,0.07); border-left: 4px solid var(--teal); padding: 20px 26px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 36px; }
.legal-content h2 { font-size: 1.32rem; color: var(--navy); margin: 38px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-light); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.legal-content a { color: var(--blue); font-weight: 600; }
.legal-content a:hover { color: var(--teal); text-decoration: underline; }
.legal-list { list-style: none; margin: 0 0 20px; padding: 0; }
.legal-list li { position: relative; padding: 8px 0 8px 30px; color: var(--text-light); line-height: 1.7; }
.legal-list li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--teal); position: absolute; left: 0; top: 9px; font-size: 0.95rem; }
.legal-list li strong { color: var(--navy); }
.legal-update { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--gray-light); font-size: 0.88rem; color: var(--gray); font-style: italic; }

/* Legal — İçindekiler */
.legal-toc { background: var(--bg-light); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 22px 28px; margin-bottom: 38px; }
.legal-toc-title { font-weight: 700; color: var(--navy); font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.legal-toc-title i { color: var(--teal); }
.legal-toc-list { margin: 0; padding-left: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.legal-toc-list li { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.legal-toc-list li a { color: var(--teal); font-weight: 500; text-decoration: none; transition: color var(--transition); }
.legal-toc-list li a:hover { color: var(--navy); text-decoration: underline; }

/* Legal — Uyarı/Bilgi Kutusu */
.legal-notice { display: flex; align-items: flex-start; gap: 14px; background: rgba(93,154,149,0.08); border: 1px solid rgba(93,154,149,0.25); border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0 24px; }
.legal-notice i { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.legal-notice span { font-size: 0.95rem; color: var(--text); line-height: 1.7; }
.legal-notice--gold { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); }
.legal-notice--gold i { color: var(--gold); }
.legal-notice--info { background: rgba(52,110,163,0.07); border-color: rgba(52,110,163,0.2); }
.legal-notice--info i { color: var(--blue); }
.legal-notice--warn { background: rgba(220,120,40,0.07); border-color: rgba(220,120,40,0.22); }
.legal-notice--warn i { color: #C0601A; }

/* Legal — Tablo */
.legal-table-wrap { overflow-x: auto; margin: 8px 0 28px; border-radius: var(--radius-sm); border: 1px solid var(--gray-light); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.legal-table thead { background: var(--navy); }
.legal-table thead th { background: var(--navy); color: var(--white); font-weight: 600; text-align: left; padding: 12px 16px; font-size: 0.84rem; letter-spacing: 0.03em; white-space: nowrap; }
.legal-table tbody tr:nth-child(even) { background: var(--bg-light); }
.legal-table tbody tr:hover { background: rgba(93,154,149,0.06); }
.legal-table tbody td { padding: 11px 16px; color: var(--text-light); border-bottom: 1px solid var(--gray-light); vertical-align: top; line-height: 1.6; }
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table code { background: rgba(30,45,61,0.08); padding: 2px 6px; border-radius: 4px; font-family: 'Courier New', monospace; font-size: 0.83rem; color: var(--navy); }

/* Legal — Alt Başlık (h3) */
.legal-h3 { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin: 24px 0 10px; }

@media (max-width: 768px) { .legal-toc-list { grid-template-columns: 1fr; } .legal-table thead th { font-size: 0.78rem; padding: 10px 12px; } .legal-table tbody td { padding: 9px 12px; font-size: 0.85rem; } }
@media (max-width: 600px) { .legal-section { padding: 50px 0; } .legal-content h2 { font-size: 1.15rem; } .legal-toc { padding: 16px 18px; } }

/* ===== 404 Error Page ===== */
.error-section { padding: 90px 0; background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%); }
.error-content { max-width: 620px; margin: 0 auto; text-align: center; }
.error-illustration { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.error-code { font-size: clamp(5rem, 16vw, 9rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--navy), var(--teal)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -2px; }
.error-icon { position: absolute; right: -14px; top: -6px; font-size: 2.4rem; color: var(--gold); opacity: 0.9; }
.error-content h1 { font-size: 1.9rem; color: var(--navy); margin-bottom: 14px; }
.error-content p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 30px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-links { padding-top: 26px; border-top: 1px solid var(--gray-light); font-size: 0.92rem; }
.error-links span { color: var(--gray); margin-right: 8px; font-weight: 600; }
.error-links a { color: var(--blue); font-weight: 600; margin: 0 10px; }
.error-links a:hover { color: var(--teal); }
@media (max-width: 600px) { .error-section { padding: 56px 0; } .error-links a { display: inline-block; margin: 4px 8px; } }

/* ============================================
   ADMİN BLOG EDİTÖRÜ + YOAST TARZI SEO PANELİ
   ============================================ */
.editor-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 28px; align-items: start; }
.adm-field { margin-bottom: 20px; }
.adm-label { font-size: 0.8rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 7px; }
.adm-label small { font-weight: 400; color: var(--gray); }
.adm-input, .adm-textarea, .adm-select {
    width: 100%; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
    padding: 12px 14px; font-family: inherit; font-size: 0.92rem; color: var(--text);
    background: var(--white); transition: border-color var(--transition);
}
.adm-input:focus, .adm-textarea:focus, .adm-select:focus { outline: none; border-color: var(--teal); }
.adm-textarea { resize: vertical; line-height: 1.6; }
.adm-input.title-input { font-size: 1.15rem; font-weight: 600; padding: 14px 16px; }

.slug-row { display: flex; align-items: center; gap: 6px; background: var(--off-white); border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); padding: 4px 4px 4px 12px; }
.slug-row .slug-base { font-size: 0.82rem; color: var(--gray); white-space: nowrap; }
.slug-row input { border: none; background: transparent; flex: 1; padding: 9px 6px; font-family: inherit; font-size: 0.88rem; color: var(--navy); }
.slug-row input:focus { outline: none; }

/* SEO kutusu */
.seo-box { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; margin-top: 8px; }
.seo-box-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: var(--navy); color: var(--white); }
.seo-box-head i { color: var(--teal-light); font-size: 1.1rem; }
.seo-box-head h3 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.seo-box-head .seo-score { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; }
.seo-score-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray); display: inline-block; }
.seo-box-body { padding: 22px; }

/* Google snippet önizleme */
.snippet-preview { border: 1px solid var(--gray-light); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 22px; background: #fff; }
.snippet-preview .snippet-url { color: #202124; font-size: 0.8rem; margin-bottom: 3px; }
.snippet-preview .snippet-title { color: #1a0dab; font-size: 1.15rem; line-height: 1.3; margin-bottom: 4px; font-weight: 400; }
.snippet-preview .snippet-desc { color: #4d5156; font-size: 0.85rem; line-height: 1.5; }

/* sayaç barları */
.count-meter { height: 5px; background: var(--gray-light); border-radius: 50px; overflow: hidden; margin-top: 6px; }
.count-meter span { display: block; height: 100%; width: 0; background: var(--teal); transition: width .25s, background .25s; }
.count-hint { font-size: 0.74rem; color: var(--gray); margin-top: 5px; }
.count-hint b { color: var(--navy); }

/* analiz listesi */
.seo-checks { list-style: none; margin: 18px 0 0; padding: 0; }
.seo-checks li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 0.84rem; color: var(--text); border-top: 1px solid var(--gray-light); line-height: 1.45; }
.seo-checks li:first-child { border-top: none; }
.seo-checks li i { margin-top: 2px; font-size: 0.9rem; flex-shrink: 0; }

/* yan panel kartları */
.side-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.side-card h4 { font-size: 0.85rem; font-weight: 800; color: var(--navy); margin: 0 0 16px; display: flex; align-items: center; gap: 8px; }
.side-card h4 i { color: var(--teal); }
.cover-preview { width: 100%; border-radius: var(--radius-sm); margin-bottom: 12px; max-height: 150px; object-fit: cover; }
.publish-toggle { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 12px 14px; background: var(--off-white); border-radius: var(--radius-sm); }
.publish-toggle input { width: 18px; height: 18px; accent-color: var(--teal); }
.publish-toggle label { font-size: 0.88rem; font-weight: 600; color: var(--text); margin: 0; }

@media (max-width: 900px) {
    .editor-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ÇALIŞMA ALANI KARTLARI (Çalışma Alanları sayfası)
   ============================================ */
.alan-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.alan-card {
    display: flex; flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.alan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.alan-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.alan-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.alan-card:hover .alan-card-media img { transform: scale(1.06); }
.alan-card-icon {
    position: absolute; left: 18px; bottom: -22px;
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; box-shadow: var(--shadow);
}
.alan-card-body { padding: 34px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.alan-card-sub { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.alan-card-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.alan-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.alan-card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.alan-card-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); }
.alan-card-list li i { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; }
.alan-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--navy); transition: gap var(--transition), color var(--transition); }
.alan-card:hover .alan-card-link { color: var(--teal); gap: 12px; }
@media (max-width: 1100px) { .alan-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .alan-card-grid { grid-template-columns: 1fr; } }

/* Çalışma alanı detay: süreç + bilgi kutusu yerleşimi (mobilde tek sütun) */
.alan-detay-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 1024px) { .alan-detay-grid { grid-template-columns: 1fr; } }

/* ============================================
   MEVZUAT SAYFASI
   ============================================ */
.mevzuat-page { padding: 70px 0 100px; background: var(--off-white); }

/* Kanun künyesi */
.mevzuat-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius);
    padding: 40px 44px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}
.mevzuat-banner::after {
    content: ""; position: absolute; right: -40px; top: -40px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%);
    pointer-events: none;
}
.mevzuat-kanun-no {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); background: rgba(201,168,76,0.12);
    padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.mevzuat-banner h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; color: var(--white); margin: 0 0 18px; line-height: 1.25; }
.mevzuat-meta { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 28px; }
.mevzuat-meta li { font-size: 0.92rem; color: rgba(255,255,255,0.78); display: flex; align-items: center; gap: 8px; }
.mevzuat-meta i { color: var(--teal-light); }
.mevzuat-banner-note { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 760px; margin: 0 0 20px; }
.mevzuat-banner .btn-outline-dark { color: var(--white); border-color: rgba(255,255,255,0.3); }
.mevzuat-banner .btn-outline-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Araç çubuğu: arama + aç/kapat */
.mevzuat-tools { display: flex; gap: 14px; align-items: center; margin-bottom: 10px; }
.mevzuat-search { position: relative; flex: 1; }
.mevzuat-search > i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--teal); }
.mevzuat-search input {
    width: 100%; padding: 15px 46px 15px 46px;
    border: 1px solid rgba(30,45,61,0.12); border-radius: var(--radius-sm);
    font-size: 0.98rem; font-family: inherit; background: var(--white); color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mevzuat-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(93,154,149,0.15); }
.mevzuat-search button {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-light); cursor: pointer; padding: 6px;
}
.mevzuat-search button:hover { color: var(--navy); }
.mevzuat-tools .btn { white-space: nowrap; }
.mevzuat-count { font-size: 0.88rem; color: var(--text-light); margin: 0 0 16px; padding-left: 4px; }

/* Bölüm hızlı erişim */
.mevzuat-toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 36px; }
.mevzuat-toc a {
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    background: var(--white); border: 1px solid rgba(30,45,61,0.1);
    padding: 7px 14px; border-radius: 100px; transition: all 0.2s;
}
.mevzuat-toc a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* Bölüm başlığı */
.mevzuat-bolum { margin-bottom: 40px; scroll-margin-top: 100px; }
.mevzuat-bolum-baslik {
    font-size: 1.15rem; font-weight: 800; color: var(--navy);
    padding-bottom: 14px; margin: 0 0 16px; border-bottom: 2px solid rgba(93,154,149,0.25);
    display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.mevzuat-bolum-no {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--teal); background: rgba(93,154,149,0.1); padding: 4px 10px; border-radius: 6px;
}

/* Madde (accordion) */
.mevzuat-madde {
    background: var(--white); border: 1px solid rgba(30,45,61,0.08);
    border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
    scroll-margin-top: 100px; transition: box-shadow 0.2s, border-color 0.2s;
}
.mevzuat-madde[open] { box-shadow: var(--shadow); border-color: rgba(93,154,149,0.4); }
.mevzuat-madde:target { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.3); }
.mevzuat-madde summary {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px; cursor: pointer; list-style: none; user-select: none;
}
.mevzuat-madde summary::-webkit-details-marker { display: none; }
.mevzuat-madde summary:hover { background: rgba(93,154,149,0.04); }
.mevzuat-madde-no {
    flex-shrink: 0; min-width: 96px; font-size: 0.78rem; font-weight: 700;
    color: var(--teal); letter-spacing: 0.02em;
}
.mevzuat-madde-baslik { flex: 1; font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.45; }
.mevzuat-madde-ok { color: var(--text-light); transition: transform 0.25s; flex-shrink: 0; }
.mevzuat-madde[open] .mevzuat-madde-ok { transform: rotate(180deg); color: var(--teal); }
.mevzuat-madde-icerik { padding: 4px 22px 8px; border-top: 1px solid rgba(30,45,61,0.06); }
.mevzuat-madde-icerik p { color: var(--text); line-height: 1.85; margin: 14px 0; font-size: 0.95rem; }
.mevzuat-madde-icerik strong { color: var(--navy); }
.mevzuat-madde-icerik em { color: var(--text-light); font-size: 0.86rem; font-style: italic; }
.mevzuat-madde-alt { padding: 0 22px 18px; }
.mevzuat-madde-link { font-size: 0.8rem; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.mevzuat-madde-link:hover { color: var(--navy); }

/* Boş durum */
.mevzuat-empty { text-align: center; padding: 70px 0; color: var(--text-light); }
.mevzuat-empty i { font-size: 2.6rem; opacity: 0.25; margin-bottom: 14px; display: block; }

/* CTA */
.mevzuat-cta {
    margin-top: 48px; background: var(--white); border-radius: var(--radius);
    padding: 36px 40px; box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: space-between; gap: 28px;
    border-left: 4px solid var(--teal);
}
.mevzuat-cta h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.mevzuat-cta p { color: var(--text-light); margin: 0; line-height: 1.7; max-width: 620px; }
.mevzuat-cta .btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 768px) {
    .mevzuat-page { padding: 48px 0 72px; }
    .mevzuat-banner { padding: 30px 24px; }
    .mevzuat-tools { flex-direction: column; align-items: stretch; }
    .mevzuat-tools .btn { width: 100%; justify-content: center; }
    .mevzuat-madde summary { flex-wrap: wrap; gap: 4px 14px; padding: 16px 18px; }
    .mevzuat-madde-no { min-width: auto; }
    .mevzuat-madde-baslik { flex-basis: 100%; order: 3; font-size: 0.95rem; }
    .mevzuat-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .mevzuat-cta .btn { width: 100%; justify-content: center; }
}

/* Mevzuat değişiklik tablosu */
.mevzuat-tablo-wrap { margin-top: 48px; background: var(--white); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow); }
.mevzuat-tablo-baslik { font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.5; margin: 0 0 22px; text-align: center; }
.mevzuat-tablo-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mevzuat-tablo { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 560px; }
.mevzuat-tablo th {
    background: var(--navy); color: var(--white); font-weight: 700; font-size: 0.82rem;
    text-align: center; padding: 14px 16px; line-height: 1.45; border: 1px solid var(--navy-mid);
}
.mevzuat-tablo th:first-child { border-top-left-radius: var(--radius-sm); }
.mevzuat-tablo th:last-child { border-top-right-radius: var(--radius-sm); }
.mevzuat-tablo td {
    padding: 13px 16px; text-align: center; color: var(--text);
    border: 1px solid rgba(30,45,61,0.1); line-height: 1.6;
}
.mevzuat-tablo tbody tr:nth-child(even) { background: var(--off-white); }
.mevzuat-tablo tbody tr:hover { background: rgba(93,154,149,0.07); }
.mevzuat-tablo td:first-child { font-weight: 700; color: var(--navy); }

@media (max-width: 600px) {
    .mevzuat-tablo-wrap { padding: 24px 18px; }
    .mevzuat-tablo-baslik { font-size: 0.95rem; }
}

/* Arabuluculuk: karşılaştırma tablosu */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-tablo { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 620px; background: var(--white); }
.compare-tablo th { padding: 18px 22px; text-align: left; font-weight: 700; color: var(--navy); background: var(--off-white); border-bottom: 2px solid rgba(30,45,61,0.08); }
.compare-tablo th i { margin-right: 8px; }
.compare-tablo th.compare-highlight { background: var(--teal); color: var(--white); }
.compare-tablo td { padding: 16px 22px; border-bottom: 1px solid rgba(30,45,61,0.07); color: var(--text); line-height: 1.6; vertical-align: middle; }
.compare-tablo tbody tr:last-child td { border-bottom: none; }
.compare-tablo .compare-kriter { font-weight: 700; color: var(--navy); width: 26%; }
.compare-tablo td.compare-highlight { background: rgba(93,154,149,0.07); color: var(--navy); font-weight: 600; }
.compare-tablo td.compare-highlight i { color: var(--teal); margin-right: 8px; }

/* Arabuluculuk: SSS akordeon */
.sss-list { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.sss-item { background: var(--white); border: 1px solid rgba(30,45,61,0.08); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.sss-item[open] { box-shadow: var(--shadow); border-color: rgba(93,154,149,0.4); }
.sss-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; list-style: none; font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.sss-item summary::-webkit-details-marker { display: none; }
.sss-item summary:hover { background: rgba(93,154,149,0.04); }
.sss-item summary i { color: var(--teal); flex-shrink: 0; transition: transform 0.25s; }
.sss-item[open] summary i { transform: rotate(180deg); }
.sss-cevap { padding: 0 26px 24px; }
.sss-cevap p { color: var(--text-light); line-height: 1.9; margin: 0; }

@media (max-width: 600px) {
    .sss-item summary { padding: 18px 20px; font-size: 0.96rem; }
    .sss-cevap { padding: 0 20px 20px; }
}

/* ============================================
   BLOG — PREMIUM LİSTE
   ============================================ */
.blog-hero .page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); background: rgba(201,168,76,0.14);
    padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.blog-hero .page-hero-sub { color: rgba(255,255,255,0.7); max-width: 600px; margin: 14px auto 22px; line-height: 1.8; font-size: 1.02rem; }

/* Kategori pill filtreleri */
.blog-cat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; justify-content: center; }
.blog-cat-pills a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 600; color: var(--navy);
    background: var(--white); border: 1px solid rgba(30,45,61,0.1);
    padding: 9px 18px; border-radius: 100px; transition: all 0.2s;
}
.blog-cat-pills a span {
    font-size: 0.72rem; font-weight: 700; background: rgba(30,45,61,0.07);
    color: var(--text-light); padding: 1px 8px; border-radius: 100px; transition: all 0.2s;
}
.blog-cat-pills a:hover { border-color: var(--teal); color: var(--teal); }
.blog-cat-pills a.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.blog-cat-pills a.active span { background: var(--teal); color: var(--white); }

/* Öne çıkan yazı */
.blog-featured {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); margin-bottom: 56px;
}
.blog-featured-img { position: relative; overflow: hidden; min-height: 340px; display: block; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-feat-badge {
    position: absolute; top: 20px; left: 20px;
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.78rem; font-weight: 700; color: var(--navy);
    background: var(--gold); padding: 7px 15px; border-radius: 100px;
    box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}
.blog-featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 800; color: var(--navy); line-height: 1.3; margin: 16px 0 16px; }
.blog-featured-body h2 a:hover { color: var(--teal); }
.blog-featured-body p { color: var(--text-light); line-height: 1.85; margin-bottom: 28px; font-size: 0.98rem; }
.blog-featured-body .btn { align-self: flex-start; }

/* Ortak makale meta + kategori */
.article-cat {
    display: inline-block; font-size: 0.73rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; color: var(--teal); background: rgba(93,154,149,0.1);
    padding: 5px 13px; border-radius: 100px; align-self: flex-start;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.8rem; color: var(--text-light); margin-bottom: 6px; }
.article-meta i { color: var(--teal); margin-right: 5px; }

/* Makale kart grid */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.article-card {
    display: flex; flex-direction: column; background: var(--white);
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(30,45,61,0.06); box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card-img { position: relative; overflow: hidden; height: 200px; display: block; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-cat {
    position: absolute; top: 14px; left: 14px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--white); background: rgba(30,45,61,0.82); backdrop-filter: blur(4px);
    padding: 5px 12px; border-radius: 100px;
}
.article-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.article-card-body h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 10px 0 12px; }
.article-card-body h2 a:hover { color: var(--teal); }
.article-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0; flex: 1; }
.read-link { font-size: 0.85rem; font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 7px; transition: gap 0.2s; align-self: flex-start; }
.read-link:hover { gap: 12px; }

/* Kart alt bar: istatistikler + "Devamını Oku" */
.article-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding-top: 14px; margin-top: 14px;
    border-top: 1px solid rgba(30,45,61,.07);
}
.article-card-stats { display: flex; align-items: center; gap: 10px; }
.card-stat {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.75rem; font-weight: 700; color: var(--gray);
    background: var(--off-white); border: 1px solid var(--gray-light);
    border-radius: 20px; padding: 3px 10px; line-height: 1;
    transition: all 0.2s;
}
.card-stat i { font-size: 0.68rem; }
.card-stat-heart.is-active { color: #e05252; border-color: rgba(224,82,82,.25); background: rgba(224,82,82,.06); }
.card-stat-heart.is-active i { color: #e05252; }
.card-stat-comment.is-active { color: var(--teal-dark); border-color: rgba(93,154,149,.3); background: rgba(93,154,149,.07); }
.card-stat-comment.is-active i { color: var(--teal); }

/* Öne çıkan yazı istatistikleri */
.art-stat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 700; color: var(--gray);
}
.art-stat i { color: var(--teal); }
.art-stat-open { color: var(--teal); }

/* Filtre bilgisi + boş durum */
.blog-filter-info {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px;
    margin-bottom: 28px; padding: 14px 20px;
    background: rgba(93,154,149,0.08); border-left: 3px solid var(--teal);
    border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text-light);
}
.blog-filter-info a { color: var(--teal); font-weight: 600; margin-left: auto; }
.blog-empty { text-align: center; padding: 70px 30px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.blog-empty i { font-size: 3rem; color: var(--teal); opacity: 0.3; margin-bottom: 18px; display: block; }
.blog-empty h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.blog-empty p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }

/* CTA widget geliştirmeleri */
.cta-widget-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: rgba(255,255,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); }
.cta-widget-phone { display: block; margin-top: 14px; color: rgba(255,255,255,0.85); font-weight: 700; font-size: 1.05rem; }
.cta-widget-phone:hover { color: var(--white); }
.cta-widget-phone i { color: var(--teal-light); margin-right: 6px; }

@media (max-width: 860px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-img { min-height: 240px; }
    .blog-featured-body { padding: 32px 26px; }
}
@media (max-width: 560px) {
    .blog-cat-pills { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
    .blog-cat-pills a { white-space: nowrap; }
    .article-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG — BEĞENİ BUTONU
   ============================================ */
.begen-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--gray-light);
    background: #fff;
    border-radius: 50px;
    font-family: inherit; font-size: .88rem; font-weight: 700;
    color: var(--gray);
    cursor: pointer;
    transition: all .22s;
    user-select: none;
}
.begen-btn:hover { border-color: #e05252; color: #e05252; background: rgba(224,82,82,.05); }
.begen-btn.begendi { border-color: #e05252; color: #e05252; background: rgba(224,82,82,.07); }
.begen-btn i { font-size: 1rem; transition: transform .22s; }
.begen-btn:hover i, .begen-btn.begendi i { color: #e05252; }
.begen-btn.animating i { transform: scale(1.4); }
.begen-label { font-size: .8rem; }

/* ============================================
   BLOG — YORUM SİSTEMİ
   ============================================ */
.yorum-mesaj {
    padding: 14px 20px; border-radius: var(--radius-sm);
    font-size: .88rem; font-weight: 600; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.yorum-basari { background: rgba(16,185,129,.1); color: #10b981; border: 1px solid rgba(16,185,129,.25); }
.yorum-hata   { background: rgba(239,68,68,.08); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }

.yorum-baslik {
    font-size: 1.15rem; font-weight: 800; color: var(--navy);
    margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.yorum-baslik i { color: var(--teal); font-size: 1rem; }
.yorum-baslik span {
    background: rgba(93,154,149,.12); color: var(--teal);
    font-size: .72rem; font-weight: 800;
    padding: 2px 10px; border-radius: 100px;
}

.yorum-liste { margin-bottom: 48px; }

.yorum-item {
    display: flex; gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
}
.yorum-item:last-child { border-bottom: none; }

.yorum-avatar {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: .9rem;
}

.yorum-icerik { flex: 1; min-width: 0; }
.yorum-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.yorum-meta strong { font-size: .9rem; color: var(--navy); }
.yorum-meta span { font-size: .75rem; color: var(--gray); }
.yorum-icerik > p {
    font-size: .9rem; line-height: 1.7; color: var(--text);
    margin: 0 0 10px;
}

.yorum-cevap {
    background: rgba(93,154,149,.06);
    border: 1px solid rgba(93,154,149,.18);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 12px 16px;
    margin-top: 10px;
}
.yorum-cevap-label {
    font-size: .72rem; font-weight: 800; color: var(--teal);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 6px;
}
.yorum-cevap p { font-size: .85rem; color: var(--text); line-height: 1.6; margin: 0; }

.yorum-form-wrap {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 16px;
}
.yorum-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.yorum-form-group label {
    display: block; font-size: .78rem; font-weight: 700;
    color: var(--gray); margin-bottom: 6px;
}
.yorum-form-group label span { color: #ef4444; }
.yorum-form-group input,
.yorum-form-group textarea {
    width: 100%; font-family: inherit; font-size: .9rem;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: #fff; color: var(--text);
    transition: border-color .18s;
    box-sizing: border-box;
}
.yorum-form-group input:focus,
.yorum-form-group textarea:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(93,154,149,.1);
}
.yorum-form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 640px) {
    .yorum-form-row { grid-template-columns: 1fr; }
    .yorum-form-wrap { padding: 20px; }
}
