/* ============================================================
   BARIŞKAVOGLU.COM.TR — Ana CSS
   Palet: Lacivert + Royal Mavi (logo ile uyumlu, SMMM kurumsal)
   ------------------------------------------------------------
   Koyu zeminlerde DAİMA --sky / --sky2 (açık mavi) kullanılır;
   --blue (#1d4ed8) yalnızca açık zeminlerde kullanılır.
   ============================================================ */

:root {
    /* Marka renkleri */
    --navy:   #0d1b2a;   /* birincil koyu */
    --navy2:  #1b2e44;   /* koyu-2 */
    --navy3:  #26466b;   /* gradyan ucu */
    --blue:   #1d4ed8;   /* marka vurgusu — açık zeminde */
    --blue2:  #2563eb;   /* hover */
    --sky:    #60a5fa;   /* koyu zeminde ikon/vurgu */
    --sky2:   #93c5fd;   /* koyu zeminde metin vurgusu */
    --tint:   #eaf1fe;   /* açık mavi zemin */
    --tint2:  #dbe7fd;   /* açık mavi kenarlık */

    /* Nötrler */
    --white:  #ffffff;
    --gray:   #f4f6fa;
    --text:   #333d4b;
    --muted:  #64748b;
    --border: #e2e8f0;

    /* Durum renkleri */
    --success: #16a34a;
    --danger:  #dc2626;
    --warn:    #ea580c;

    /* Geriye dönük uyumluluk — inline stiller var(--gold) kullanıyor */
    --gold:   var(--blue);
    --gold2:  var(--blue2);

    /* Ölçüler */
    --radius:    8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 10px rgba(13,27,42,.06);
    --shadow:    0 6px 24px rgba(13,27,42,.10);
    --shadow-lg: 0 16px 40px rgba(13,27,42,.14);
    --trans:     all .25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }

/* Klavye odak halkası */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(37,99,235,.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Animasyon azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Ekran okuyucu yardımcıları */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--navy); color: #fff;
    padding: .75rem 1.25rem; z-index: 10000;
    border-radius: 0 0 var(--radius) 0;
    font-size: .9rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: var(--navy); }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
    line-height: 1.3;
}
.section-title span { color: var(--blue); }
.section-sub {
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    max-width: 640px;
}
.section-divider {
    width: 52px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--sky));
    margin: .75rem 0 1.25rem;
}

/* ---- CONTAINER ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--gray); }

/* ---- BUTONLAR ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 46px;
    padding: .7rem 1.6rem;
    border-radius: var(--radius);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
    border: 2px solid transparent;
    font-family: inherit;
    line-height: 1.3;
}
.btn-primary { background: var(--blue); color: #ffffff; }
.btn-primary:hover { background: var(--blue2); color: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(29,78,216,.30); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy2); color: var(--white); transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding: .45rem 1rem; font-size: .85rem; }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--border); }
.btn-light:hover { border-color: var(--blue); color: var(--blue); }
.btn-light.aktif { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ========================
   TOP BAR
   ======================== */
.topbar {
    background: var(--navy);
    color: #a9b8c9;
    font-size: .82rem;
    padding: .45rem 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar a { color: #cbd8e6; font-weight: 500; }
.topbar a:hover { color: var(--sky2); }
.topbar i { color: var(--sky); }
.topbar-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-contact span { display: flex; align-items: center; gap: .4rem; }
.topbar-hours { display: flex; align-items: center; gap: .4rem; white-space: nowrap; }

/* ========================
   HEADER / NAV
   ======================== */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow .25s ease;
}
header.scrolled { box-shadow: 0 4px 18px rgba(13,27,42,.10); }
/* Logo, hamburger ve menü paneli karartma perdesinin ÜSTÜNDE kalmalı */
header > .container { position: relative; z-index: 2; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 0;
}
.site-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 50px; width: auto; }

nav ul { display: flex; gap: .1rem; align-items: center; }
nav ul li a {
    display: block;
    position: relative;
    padding: .6rem .7rem;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    white-space: nowrap;
}
nav ul li a:hover { color: var(--blue); background: var(--tint); }
nav ul li a.active { color: var(--blue); font-weight: 600; }
nav ul li a.active::after {
    content: '';
    position: absolute;
    left: .7rem; right: .7rem; bottom: .15rem;
    height: 3px;
    border-radius: 2px;
    background: var(--blue);
}
nav ul li a.btn-nav {
    background: var(--blue);
    color: var(--white);
    padding: .6rem 1.25rem;
    margin-left: .5rem;
    font-weight: 600;
}
nav ul li a.btn-nav:hover { background: var(--navy); color: var(--white); }
nav ul li a.btn-nav.active::after { display: none; }

/* Sadece mobil menüde görünen öğeler */
.nav-mobile-extra { display: none; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.nav-toggle:hover { background: var(--tint); }
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--navy);
    display: block;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü arka fonu */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,.5);
    z-index: 1; /* header > .container (z:2) altında, sayfa içeriğinin üstünde */
    opacity: 0;
    transition: opacity .25s ease;
}
body.nav-open .nav-backdrop { opacity: 1; }

/* ---- Mobil menü (≤1080px) ---- */
@media (max-width: 1080px) {
    .nav-toggle { display: flex; }
    .site-logo img { height: 42px; }
    .header-inner { padding: .7rem 0; }

    nav#mainNav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 18px 34px rgba(13,27,42,.16);
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        visibility: hidden;
        transition: max-height .3s ease, visibility .3s;
    }
    nav#mainNav.open {
        max-height: calc(100vh - 120px);
        max-height: calc(100dvh - 120px);
        visibility: visible;
    }
    nav#mainNav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem 1rem 1.25rem;
    }
    nav#mainNav ul li a {
        padding: .9rem .75rem;
        font-size: .95rem;
        border-radius: 0;
        border-bottom: 1px solid var(--gray);
        white-space: normal;
    }
    nav#mainNav ul li:last-of-type a { border-bottom: none; }
    nav#mainNav ul li a:hover { background: var(--tint); border-radius: var(--radius); }
    nav#mainNav ul li a.active {
        color: var(--blue);
        background: var(--tint);
        border-left: 3px solid var(--blue);
        border-radius: 0 var(--radius) var(--radius) 0;
    }
    nav#mainNav ul li a.active::after { display: none; }
    nav#mainNav ul li a.btn-nav {
        margin: .75rem 0 0;
        border-radius: var(--radius);
        text-align: center;
        justify-content: center;
        display: flex;
        border-bottom: none;
    }
    .nav-mobile-extra { display: block; }
    .nav-mobile-extra a.nav-phone {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        margin-top: .6rem;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius);
        font-weight: 600;
        color: var(--navy);
    }
    .nav-mobile-extra a.nav-phone i { color: var(--blue); }
    body.nav-open .nav-backdrop { display: block; }
    body.nav-open { overflow: hidden; }
}

/* ========================
   HERO
   ======================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, var(--navy3) 100%);
    color: var(--white);
    padding: 6.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/hero-pattern.svg') center/720px repeat;
    opacity: .05;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(96,165,250,.12);
    border: 1px solid rgba(96,165,250,.35);
    color: var(--sky2);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.hero-badge i { color: var(--sky); }
.hero h1 {
    font-size: 2.55rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
    min-height: 2.4em; /* dönen cümlelerde zıplamayı önler */
}
.hero h1 .hero-rotate {
    color: var(--sky2);
    display: inline-block;
    transition: opacity .5s ease, transform .5s ease;
}
.hero h1 .hero-rotate.fade-out { opacity: 0; transform: translateY(-8px); }
.hero p {
    font-size: 1.08rem;
    color: #b6c5d4;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sky);
    display: block;
    line-height: 1.2;
}
.hero-stat-label { font-size: .8rem; color: #9fb2c4; }

.hero-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.hero-card-item { display: flex; align-items: flex-start; gap: 1rem; }
.hero-card-icon {
    width: 44px; height: 44px;
    background: rgba(96,165,250,.14);
    border: 1px solid rgba(96,165,250,.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--sky);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.hero-card-text h4 { font-size: .95rem; color: var(--white); margin-bottom: .15rem; }
.hero-card-text p { font-size: .82rem; color: #9fb2c4; margin-bottom: 0; }

/* ========================
   HİZMETLER
   ======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--sky));
    transform: scaleX(0);
    transition: var(--trans);
    transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--tint2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: var(--tint);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: var(--trans);
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .6rem; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.step-num { font-size: 2.25rem; font-weight: 800; color: var(--tint2); line-height: 1; margin-bottom: .5rem; }

/* ========================
   KURUMSAL BANNER (Hakkımızda)
   ======================== */
.kurumsal-banner-section { padding-bottom: 5rem; }
.kurumsal-banner-section:nth-child(even) { background: var(--white); }
.kurumsal-banner {
    position: relative;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, var(--navy3) 100%);
    display: flex;
    align-items: center;
}
.kurumsal-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/hero-pattern.svg') center/720px repeat;
    opacity: .05;
}
.kurumsal-banner-content { position: relative; z-index: 2; padding: 0 3rem; max-width: 560px; }
.kurumsal-banner-eyebrow {
    font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--sky); margin-bottom: .75rem; display: block;
}
.kurumsal-banner h2 { font-size: 2rem; color: #fff; line-height: 1.3; }
.kurumsal-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    position: relative;
    z-index: 3;
    align-items: start;
}
.kurumsal-body-text h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; line-height: 1.4; }
.kurumsal-body-text p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.8; }
.yaklasim-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-lg);
    margin-top: -110px;
}
.yaklasim-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1.25rem; }
.yaklasim-card ul { display: flex; flex-direction: column; }
.yaklasim-card li {
    display: flex; align-items: flex-start; gap: .65rem;
    padding: .8rem 0; border-bottom: 1px solid var(--gray);
    font-size: .9rem; color: var(--text);
}
.yaklasim-card li:last-child { border-bottom: none; padding-bottom: 0; }
.yaklasim-card li i { color: var(--blue); margin-top: .15rem; flex-shrink: 0; }

@media (max-width: 900px) {
    .kurumsal-body { grid-template-columns: 1fr; padding-top: 2rem; gap: 1.75rem; }
    .yaklasim-card { margin-top: 0; padding: 1.5rem 1.25rem; }
    .kurumsal-banner { height: auto; padding: 2.5rem 0; }
    .kurumsal-banner-content { padding: 0 1.5rem; }
    .kurumsal-banner h2 { font-size: 1.5rem; }
}

/* ========================
   HAKKIMIZDA
   ======================== */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy2);
}
.about-img-wrap img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.about-badge {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: var(--blue);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(13,27,42,.35);
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: .8rem; font-weight: 600; opacity: .9; }
.about-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0 2rem; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
}
.about-list li i { color: var(--blue); margin-top: .25rem; flex-shrink: 0; }

/* ========================
   SİRKÜLER (Blog)
   ======================== */
.sirkuler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.sirkuler-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    display: flex;
    flex-direction: column;
}
.sirkuler-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sirkuler-card-img {
    height: 180px;
    background: var(--navy2);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--sky);
    overflow: hidden;
}
.sirkuler-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sirkuler-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sirkuler-meta {
    display: flex;
    gap: 1rem;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .75rem;
    flex-wrap: wrap;
    align-items: center;
}
.sirkuler-meta .kategori,
.kategori-chip {
    background: var(--tint);
    padding: .2rem .7rem;
    border-radius: 50px;
    color: var(--blue);
    font-weight: 600;
    font-size: .78rem;
}
.sirkuler-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.4; }
.sirkuler-card p { font-size: .86rem; color: var(--muted); flex: 1; }
.sirkuler-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--blue);
    min-height: 32px;
}
.sirkuler-card-link:hover { gap: .7rem; color: var(--blue2); }

/* ========================
   YAYINLAR (Video)
   ======================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--navy2);
    cursor: pointer;
    overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans); }
.video-thumb:hover img { transform: scale(1.05); }
.video-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(13,27,42,.30);
}
.video-play i {
    width: 56px; height: 56px;
    background: rgba(255,255,255,.94);
    color: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    transition: var(--trans);
    padding-left: 4px; /* play ikonu optik ortalama */
}
.video-thumb:hover .video-play i { background: var(--blue); color: #fff; transform: scale(1.1); }
.video-card-body { padding: 1.25rem 1.5rem; }
.video-badge-new {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 4px;
    margin-bottom: .6rem;
    letter-spacing: .04em;
}
.video-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; line-height: 1.4; }
.video-card p { font-size: .86rem; color: var(--muted); }
.video-date { font-size: .78rem; color: var(--muted); margin-top: .6rem; display: flex; align-items: center; gap: .35rem; }

/* Video modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.video-modal.open { display: flex; }
.video-modal-box { width: 100%; max-width: 920px; }
.video-modal-top { display: flex; justify-content: flex-end; margin-bottom: .75rem; }
.video-modal-close {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: var(--trans);
}
.video-modal-close:hover { background: rgba(255,255,255,.22); }
.video-modal-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; }

/* Bilgi Bankası (ana sayfa) */
.bilgi-bankasi-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: stretch;
}
.bilgi-bankasi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bilgi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bilgi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.bilgi-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--navy2); }
.bilgi-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans); }
.bilgi-card:hover .bilgi-card-thumb img { transform: scale(1.06); }
.bilgi-card-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.bilgi-card .tarih { font-size: .76rem; color: var(--muted); margin-bottom: .5rem; display: flex; align-items: center; gap: .35rem; }
.bilgi-card .tarih i { color: var(--blue); }
.bilgi-card h4 { font-size: .9rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.45; }
.bilgi-card-ozet { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: .9rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.bilgi-card-more { font-size: .8rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem; transition: var(--trans); }
.bilgi-card:hover .bilgi-card-more { gap: .65rem; }

.son-yayin-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.son-yayin-card .video-thumb { flex-shrink: 0; border-radius: var(--radius); }
.son-yayin-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.son-yayin-card h4 { font-size: .95rem; color: var(--navy); margin: .9rem 0 .5rem; line-height: 1.4; }
.son-yayin-card p { font-size: .84rem; color: var(--muted); }

/* Bölüm başlığı + aksiyon butonları satırı */
.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .5rem;
    display: block;
}
.section-head-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Sirküler liste (sirkuler/) */
.sirkuler-list { display: flex; flex-direction: column; gap: 1.5rem; }
.sirkuler-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}
.sirkuler-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.sirkuler-item-img {
    width: 180px;
    flex-shrink: 0;
    background: var(--navy2);
    display: flex; align-items: center; justify-content: center;
    color: var(--sky);
    font-size: 2.5rem;
    overflow: hidden;
}
.sirkuler-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sirkuler-item-body { padding: 1.5rem 1.5rem 1.5rem 0; flex: 1; }
.sirkuler-item-body h2 { font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.sirkuler-item-body h2 a:hover { color: var(--blue); }

/* Sayfalama */
.sayfalama { display: flex; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.sayfalama a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 .5rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}
.sayfalama a:hover { border-color: var(--blue); color: var(--blue); }
.sayfalama a.aktif { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Sirküler detail */
.sirkuler-detail { max-width: 760px; margin: 0 auto; min-width: 0; }
.sirkuler-detail h1 { font-size: 1.9rem; color: var(--navy); margin-bottom: 1rem; }
.sirkuler-detail-meta {
    display: flex; gap: 1.25rem;
    font-size: .85rem;
    color: var(--muted);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
.sirkuler-detail-content { font-size: 1rem; line-height: 1.85; color: var(--text); }
.sirkuler-detail-content h2 { font-size: 1.3rem; color: var(--navy); margin: 1.75rem 0 .75rem; }
.sirkuler-detail-content h3 { font-size: 1.1rem; color: var(--navy); margin: 1.25rem 0 .5rem; }
.sirkuler-detail-content p { margin-bottom: 1rem; }
.sirkuler-detail-content a { color: var(--blue); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(29,78,216,.35); text-underline-offset: 2px; }
.sirkuler-detail-content a:hover { color: var(--navy); text-decoration-color: var(--navy); }
.sirkuler-detail-content ul, .sirkuler-detail-content ol { margin: 1rem 0 1rem 1.5rem; }
.sirkuler-detail-content ul { list-style: disc; }
.sirkuler-detail-content li { margin-bottom: .4rem; }
.sirkuler-detail-content blockquote {
    border-left: 4px solid var(--blue);
    padding: .75rem 1.25rem;
    background: var(--tint);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    color: var(--navy2);
    font-style: italic;
}
.sirkuler-detail-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; display: block; overflow-x: auto; }
.sirkuler-detail-content table th, .sirkuler-detail-content table td { border: 1px solid var(--border); padding: .6rem .8rem; font-size: .9rem; text-align: left; }
.sirkuler-detail-content table th { background: var(--gray); }
.sirkuler-detail-content img { border-radius: var(--radius); }

/* Sidebar */
.sirkuler-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
    align-items: start;
}
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--blue);
}
.sidebar-kategori-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    font-size: .88rem;
    color: var(--text);
    border-bottom: 1px solid var(--gray);
    min-height: 40px;
}
.sidebar-kategori-list li:last-child a { border-bottom: none; }
.sidebar-kategori-list li a span {
    background: var(--gray);
    color: var(--muted);
    font-size: .74rem;
    font-weight: 600;
    padding: .1rem .55rem;
    border-radius: 50px;
}
.sidebar-kategori-list li a:hover { color: var(--blue); }
.sidebar-kategori-list li a:hover span { background: var(--tint); color: var(--blue); }
.sidebar-son-yazilar li a {
    display: flex;
    gap: .75rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--gray);
    font-size: .85rem;
    color: var(--text);
    line-height: 1.45;
}
.sidebar-son-yazilar li:last-child a { border-bottom: none; }
.sidebar-son-yazilar li a i { color: var(--blue); margin-top: .2rem; }
.sidebar-son-yazilar li a:hover { color: var(--blue); }

/* ========================
   İLETİŞİM
   ======================== */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-info-icon {
    width: 46px; height: 46px;
    background: var(--tint);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.contact-info-item h4 { font-size: .82rem; color: var(--muted); margin-bottom: .15rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.contact-info-item p, .contact-info-item a { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-info-item a:hover { color: var(--blue); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    padding: .7rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    color: var(--text);
    transition: var(--trans);
    font-family: inherit;
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29,78,216,.14);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-msg { padding: .85rem 1.1rem; border-radius: var(--radius); font-size: .9rem; margin-bottom: 1rem; }
.form-msg.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-msg.info { background: var(--tint); color: #1e3a8a; border: 1px solid var(--tint2); }

/* Onay kutuları */
.checkbox-row { display: flex; align-items: flex-start; gap: .6rem; padding: .5rem 0; min-height: 44px; }
.checkbox-row input[type="checkbox"] {
    width: 19px; height: 19px; min-height: 0;
    accent-color: var(--blue);
    margin-top: .2rem;
    flex-shrink: 0;
    cursor: pointer;
}
.checkbox-row label { cursor: pointer; font-weight: 500; margin-bottom: 0; }

/* ========================
   HARİTA
   ======================== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 380px; display: block; filter: grayscale(.3); }
.map-fallback {
    height: 380px;
    background: var(--navy2);
    display: flex; align-items: center; justify-content: center;
    color: #9fb2c4;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}
.map-fallback i { margin-right: .5rem; color: var(--sky); }

/* ========================
   FOOTER CTA
   ======================== */
.footer-cta-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: -70px;
    padding: 0 1.25rem;
}
.footer-cta {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(120deg, var(--blue) 0%, var(--blue2) 100%);
    border-radius: 14px;
    padding: 2.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 16px 40px rgba(29,78,216,.28);
}
.footer-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: .4rem; }
.footer-cta p { color: rgba(255,255,255,.88); font-size: .92rem; max-width: 480px; }
.footer-cta .btn { background: var(--navy); color: #fff; flex-shrink: 0; }
.footer-cta .btn:hover { background: var(--navy2); }

/* ========================
   FOOTER
   ======================== */
footer {
    background: var(--navy);
    color: #9fb2c8;
    padding-top: 6.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
.footer-brand p { font-size: .88rem; margin: .5rem 0 1.25rem; line-height: 1.7; }
.footer-logo img { height: 46px; width: auto; background: #fff; padding: .4rem .6rem; border-radius: var(--radius); }
.footer-brand .footer-office-label { font-size: .92rem; font-weight: 600; color: #fff; margin-top: 1.25rem; }
.footer-brand .footer-phone { font-size: 1.15rem; font-weight: 700; color: #fff; margin: .75rem 0 .35rem; display: block; }
.footer-brand .footer-phone:hover { color: var(--sky2); }
.footer-brand .footer-email { color: var(--sky2); font-size: .92rem; }
.footer-brand .footer-email:hover { color: #fff; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #b9c9dc;
    font-size: .9rem;
    transition: var(--trans);
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 1.1rem; }
.footer-col ul li { border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-col ul li:last-child { border-bottom: none; }
.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: #9fb2c8;
    padding: .6rem 0;
    min-height: 42px;
}
.footer-col ul li a i { color: var(--sky); font-size: .7rem; }
.footer-col ul li a:hover { color: var(--sky2); padding-left: .25rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom a { color: var(--sky2); }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1rem 0;
    text-align: center;
    font-size: .76rem;
    color: #7488a0;
    line-height: 1.6;
}
.footer-disclaimer strong { color: #9fb2c8; }

/* ========================
   PAGE HEADER
   ======================== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 70%, var(--navy3) 100%);
    color: var(--white);
    padding: 3.25rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/hero-pattern.svg') center/720px repeat;
    opacity: .05;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: 2rem; margin-bottom: .5rem; color: #fff; line-height: 1.25; }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: #9fb2c4; flex-wrap: wrap; }
.breadcrumb a { color: var(--sky2); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #9fb2c4; }

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; color: #fff; }
.cta-section h2 span { color: var(--sky2); }
.cta-section p { color: #b6c5d4; margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }

/* ========================
   WHATSAPP FLOAT
   ======================== */
.whatsapp-float {
    position: fixed;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
    z-index: 9000;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: var(--trans);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); color: #fff; }

/* ========================
   ARAÇLAR (Hesaplama)
   ======================== */
.arac-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.arac-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--trans);
    display: flex;
    flex-direction: column;
}
.arac-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--tint2); }
.arac-card-icon {
    width: 54px; height: 54px;
    background: var(--tint);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
    transition: var(--trans);
}
.arac-card:hover .arac-card-icon { background: var(--blue); color: #fff; }
.arac-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; }
.arac-card p { font-size: .87rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.1rem; }

.arac-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.arac-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.arac-form-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 1.25rem; }
.arac-tabs { display: flex; gap: .4rem; margin-bottom: 1.5rem; background: var(--gray); padding: .3rem; border-radius: 10px; flex-wrap: wrap; }
.arac-tab {
    flex: 1; text-align: center; padding: .65rem .5rem; border-radius: var(--radius); font-size: .88rem; font-weight: 600;
    cursor: pointer; color: var(--muted); transition: var(--trans); border: none; background: none;
    min-height: 44px; font-family: inherit; min-width: 120px;
}
.arac-tab:hover { color: var(--navy); }
.arac-tab.active { background: var(--white); color: var(--blue); box-shadow: 0 1px 4px rgba(13,27,42,.12); }
.arac-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.arac-result-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: #fff;
    position: sticky;
    top: 90px;
}
.arac-result-card h3 { font-size: .95rem; color: #9fb2c4; margin-bottom: .3rem; font-weight: 500; }
.arac-result-headline { font-size: 2.1rem; font-weight: 800; color: var(--sky2); margin-bottom: 1.25rem; line-height: 1.2; word-break: break-word; }
.arac-result-row {
    display: flex; justify-content: space-between; align-items: center; gap: .75rem;
    padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .88rem;
}
.arac-result-row span:first-child { color: #b6c5d4; }
.arac-result-row span:last-child { font-weight: 600; color: #fff; text-align: right; }
.arac-result-row.negatif span:last-child { color: #fda4af; }
.arac-result-row.toplam { border-bottom: none; border-top: 2px solid var(--sky); margin-top: .4rem; padding-top: 1rem; font-size: 1rem; }
.arac-result-row.toplam span:last-child { color: var(--sky2); font-size: 1.15rem; }
.arac-result-empty { color: #9fb2c4; font-size: .9rem; text-align: center; padding: 2rem 0; }
.arac-result-error {
    color: #fda4af;
    font-size: .9rem;
    text-align: center;
    padding: 1.5rem .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.arac-result-error i { color: #fb7185; }
.arac-result-headline.zorunlu { color: #fdba74; }
.arac-result-headline.uygun { color: #6ee7b7; }
.arac-result-uyari {
    background: rgba(96,165,250,.1);
    border: 1px solid rgba(96,165,250,.25);
    border-radius: var(--radius);
    color: #bfdbfe;
    font-size: .78rem;
    line-height: 1.55;
    padding: .6rem .8rem;
    margin-top: .9rem;
}

.arac-info-note {
    background: var(--tint);
    border: 1px solid var(--tint2);
    border-radius: var(--radius);
    padding: .9rem 1.1rem;
    font-size: .82rem;
    color: #1e3a8a;
    line-height: 1.6;
    margin-top: 1.25rem;
    display: flex;
    gap: .6rem;
}
.arac-info-note i { color: var(--blue); margin-top: .15rem; flex-shrink: 0; }
.arac-info-note a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.arac-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.arac-table { width: 100%; border-collapse: collapse; margin-top: 1rem; min-width: 480px; }
.arac-table th { background: var(--gray); padding: .7rem .9rem; text-align: left; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.arac-table td { padding: .7rem .9rem; border-bottom: 1px solid var(--border); font-size: .87rem; }
.arac-table tr:last-child td { border-bottom: none; }

.arac-guncelleme-etiketi {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; font-size: .76rem; font-weight: 600;
    padding: .3rem .8rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.arac-guncelleme-etiketi i { color: var(--success); }

@media (max-width: 900px) {
    .arac-grid { grid-template-columns: 1fr; }
    .arac-layout { grid-template-columns: 1fr; }
    .arac-input-row { grid-template-columns: 1fr; }
    .arac-result-card { position: static; }
}

/* ========================
   DÖVİZ KURU ŞERİDİ
   ======================== */
section.doviz-serit-section,
.doviz-serit-section { padding: 1.25rem 0 !important; background: var(--navy) !important; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.doviz-serit-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.doviz-serit-etiket {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(96,165,250,.12);
    border: 1px solid rgba(96,165,250,.25);
    color: var(--sky2);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}
.doviz-serit-etiket i { color: var(--sky); }
.doviz-serit-liste {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.doviz-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .85rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    transition: background .2s;
    min-width: 0;
}
.doviz-item:hover { background: rgba(255,255,255,.08); }
.doviz-item-icon {
    width: 34px; height: 34px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    flex-shrink: 0;
}
.doviz-item-info { min-width: 0; flex: 1; }
.doviz-item-ad { font-size: .72rem; color: #9fb2c4; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.doviz-item-fiyat { font-size: .98rem; font-weight: 700; color: #fff; line-height: 1.2; white-space: nowrap; }
.doviz-item-degisim { font-size: .7rem; margin-left: auto; flex-shrink: 0; }
.doviz-item-degisim.artan { color: #34d399; }
.doviz-item-degisim.azalan { color: #f87171; }
.doviz-serit-not { font-size: .68rem; color: #7488a0; text-align: right; padding-right: .5rem; margin-top: .35rem; }

@media (max-width: 900px) {
    .doviz-serit-inner { grid-template-columns: 1fr; gap: .9rem; }
    .doviz-serit-etiket { justify-content: center; }
    .doviz-serit-liste { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .doviz-serit-not { text-align: center; padding-right: 0; }
}

/* ========================
   VERGİ TAKVİMİ WIDGET (ana sayfa)
   ======================== */
.takvim-widget {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, var(--tint) 100%);
    border: 1px solid var(--tint2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.takvim-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-pattern.svg') center/720px repeat;
    opacity: .04;
    pointer-events: none;
}
.takvim-widget-left { position: relative; z-index: 2; }
.takvim-widget-eyebrow {
    font-size: .78rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--blue); margin-bottom: .35rem; display: block;
}
.takvim-widget h2 { font-size: 1.7rem; color: var(--navy); margin-bottom: 1.5rem; line-height: 1.3; }
.takvim-widget h2 span { color: var(--blue); }

.takvim-bugun-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.takvim-bugun-icon {
    width: 60px; height: 60px;
    background: var(--blue);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem;
    flex-shrink: 0;
}
.takvim-bugun-icon i { color: #fff !important; }
.takvim-bugun-metin h3 { font-size: 1rem; color: var(--navy); margin-bottom: .25rem; font-weight: 600; }
.takvim-bugun-tarih { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.takvim-bugun-gun { font-size: .85rem; color: var(--muted); }

.takvim-detay-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--blue);
    color: #fff;
    padding: .7rem 1.25rem;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 600;
    min-height: 44px;
    box-shadow: 0 4px 12px rgba(29,78,216,.22);
    transition: var(--trans);
}
.takvim-detay-btn:hover { background: var(--blue2); color: #fff; transform: translateX(4px); }
.takvim-detay-btn i { color: #fff; }

.takvim-liste { display: flex; flex-direction: column; gap: .6rem; position: relative; z-index: 2; }
.takvim-item {
    display: flex; align-items: stretch; gap: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    cursor: pointer;
}
.takvim-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.takvim-item-tarih {
    background: var(--tint);
    padding: .8rem 1rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 62px;
    border-right: 2px solid var(--blue);
}
.takvim-item-tarih.bugun { background: #fff7ed; border-right-color: var(--warn); }
.takvim-item-tarih.bugun .takvim-item-gun-sayi { color: var(--warn); }
.takvim-item-gun-sayi { font-size: 1.35rem; font-weight: 800; color: var(--blue); line-height: 1; }
.takvim-item-ay { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: .15rem; }
.takvim-item-icerik { padding: .7rem 1rem; flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.takvim-item-etiket { font-size: .68rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .15rem; }
.takvim-item-baslik { font-size: .82rem; color: var(--navy); font-weight: 600; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.takvim-item-arrow { padding: 0 1rem; display: flex; align-items: center; color: var(--muted); flex-shrink: 0; }
.takvim-item:hover .takvim-item-arrow { color: var(--blue); }
.takvim-item-madde-sayisi { font-size: .72rem; color: var(--muted); margin-top: .15rem; }

@media (max-width: 900px) {
    .takvim-widget { grid-template-columns: 1fr; padding: 1.25rem; }
    .takvim-widget h2 { font-size: 1.35rem; }
    .takvim-item-baslik { white-space: normal; }
    .takvim-bugun-card { padding: 1.1rem; gap: 1rem; }
    .takvim-bugun-icon { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ========================
   VERGİ TAKVİMİ SAYFASI
   ======================== */
.ay-secici {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: .35rem;
    background: var(--gray);
    padding: .45rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}
.ay-secici a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    padding: .4rem .25rem;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--trans);
    line-height: 1.2;
}
.ay-secici a:hover { background: var(--white); color: var(--blue); }
.ay-secici a.aktif { background: var(--blue); color: #fff; box-shadow: 0 3px 10px rgba(29,78,216,.28); }
.ay-secici .madde-sayi { font-size: .66rem; font-weight: 500; opacity: .75; margin-top: .1rem; }

.takvim-ay-baslik { font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.takvim-ay-baslik i { color: var(--blue); margin-right: .5rem; }

.takvim-gun-listesi { display: flex; flex-direction: column; gap: .75rem; }
.takvim-gun {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.takvim-gun.bugun { background: #fff7ed; border-color: #fdba74; }
.takvim-gun.gecmis { opacity: .6; }
.takvim-gun-tarih {
    text-align: center;
    padding: .6rem .25rem;
    background: var(--navy);
    border-radius: 10px;
    color: #fff;
    align-self: start;
}
.takvim-gun.bugun .takvim-gun-tarih { background: var(--warn); }
.takvim-gun-tarih .gun { font-size: 2rem; font-weight: 800; line-height: 1; }
.takvim-gun-tarih .ay { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: .25rem; opacity: .9; }
.takvim-gun-tarih .gun-adi { font-size: .72rem; opacity: .75; margin-top: .15rem; }
.bugun-etiketi {
    display: inline-block; background: var(--warn); color: #fff;
    font-size: .7rem; font-weight: 700; padding: .2rem .6rem;
    border-radius: 50px; margin-bottom: .5rem;
    text-transform: uppercase; letter-spacing: .05em;
}
.takvim-madde-listesi { list-style: none; padding: 0; }
.takvim-madde-listesi li {
    padding: .5rem 0;
    border-bottom: 1px solid var(--gray);
    font-size: .9rem;
    color: var(--text);
    display: flex; gap: .6rem; align-items: flex-start;
}
.takvim-madde-listesi li:last-child { border-bottom: none; }
.takvim-madde-listesi li i { color: var(--blue); margin-top: .3rem; flex-shrink: 0; font-size: .85rem; }

@media (max-width: 1024px) { .ay-secici { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 560px) {
    .ay-secici { grid-template-columns: repeat(3, 1fr); }
    .takvim-gun { grid-template-columns: 1fr; gap: .9rem; padding: 1rem; }
    .takvim-gun-tarih {
        display: flex; align-items: baseline; justify-content: center; gap: .5rem;
        padding: .5rem;
    }
    .takvim-gun-tarih .gun { font-size: 1.4rem; }
    .takvim-gun-tarih .ay, .takvim-gun-tarih .gun-adi { margin-top: 0; }
}

/* Logo monogramı (admin girişi vb.) */
.logo-icon {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--sky2);
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.logo-title { font-size: .72rem; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; }

/* ========================
   ADMIN
   ======================== */
.admin-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
}
.admin-sidebar {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 0;
}
.admin-logo {
    padding: 0 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--sky2);
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    font-size: .88rem;
    color: #9fb2c8;
    transition: var(--trans);
    border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255,255,255,.07);
    color: var(--sky2);
    border-left-color: var(--sky);
}
.admin-main { background: #f0f2f5; padding: 2rem; }
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.admin-topbar h1 { font-size: 1.3rem; color: var(--navy); }
.admin-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--gray); padding: .75rem 1rem; text-align: left; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.admin-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; }
.admin-table tr:hover td { background: #fafbfc; }
.badge { display: inline-block; padding: .25rem .65rem; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.badge-green { background: #ecfdf5; color: #065f46; }
.badge-red { background: #fef2f2; color: #991b1b; }
.badge-gray { background: var(--gray); color: var(--muted); }

/* Admin yardımcı ızgaralar (inline grid yerine) */
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.editor-grid { display: grid; grid-template-columns: 1fr 300px; gap: 1.5rem; align-items: start; }
.logo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.admin-actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.admin-table .btn-sm { min-height: 40px; min-width: 40px; display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
    .admin-stats { grid-template-columns: 1fr; }
    .editor-grid { grid-template-columns: 1fr; }
    .logo-grid { grid-template-columns: 1fr; }
}
.btn-danger { background: var(--danger); color: var(--white); border: none; }
.btn-danger:hover { background: #b91c1c; }
.btn-edit { background: var(--navy); color: var(--white); border: none; }
.btn-edit:hover { background: var(--navy2); }

/* ========================
   ADMIN — MOBİL
   ======================== */
@media (max-width: 900px) {
    .admin-wrap { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: sticky; top: 0; z-index: 100;
        padding: .75rem 0;
        display: flex; align-items: center; overflow-x: auto;
    }
    .admin-logo { border-bottom: none; margin-bottom: 0; padding: 0 1rem; white-space: nowrap; }
    .admin-nav { display: flex; }
    .admin-nav a {
        flex-direction: column; gap: .3rem;
        padding: .5rem .85rem; font-size: .72rem; white-space: nowrap;
        border-left: none !important;
    }
    .admin-nav a.active { background: rgba(255,255,255,.1); }
    .admin-main { padding: 1rem; }
    .admin-topbar { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ========================
   RESPONSIVE — GENEL
   ======================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .bilgi-bankasi-cards { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-card { display: none; }
    .hero h1 { min-height: 0; }
}

@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .sirkuler-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 3.25rem 0; }
    .section-title { font-size: 1.6rem; }
    .section-sub { font-size: .95rem; margin-bottom: 1.75rem; }

    /* Topbar: tek kompakt satır */
    .topbar { font-size: .78rem; padding: .4rem 0; }
    .topbar .container { flex-wrap: nowrap; justify-content: space-between; gap: .75rem; }
    .topbar-contact { gap: 1rem; }
    .topbar-contact .topbar-email { display: none; }
    .topbar-contact span, .topbar-contact a { white-space: nowrap; }

    .hero { padding: 3.5rem 0 3rem; }
    .hero h1 { font-size: 1.8rem; min-height: 2.4em; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: .75rem; display: grid; grid-template-columns: repeat(3, 1fr); }
    .hero-stat-num { font-size: 1.4rem; }
    .hero-stat-label { font-size: .74rem; }

    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-badge { bottom: 1rem; right: 1rem; padding: .75rem 1.1rem; }
    .about-badge strong { font-size: 1.5rem; }

    .sirkuler-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .sirkuler-item { flex-direction: column; }
    .sirkuler-item-img { width: 100%; height: 170px; }
    .sirkuler-item-body { padding: 1.25rem; }
    .sirkuler-detail h1 { font-size: 1.45rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-cta { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; }
    .footer-cta .btn { width: 100%; max-width: 320px; }
    .footer-cta-wrap { margin-bottom: -110px; }
    footer { padding-top: 8.5rem; }
    .footer-bottom { justify-content: center; text-align: center; }

    .page-header { padding: 2.25rem 0; }
    .page-header h1 { font-size: 1.5rem; }

    .cta-section { padding: 3.5rem 0; }
    .cta-section h2 { font-size: 1.5rem; }

    .map-section iframe, .map-fallback { height: 300px; }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .bilgi-bankasi-inner { grid-template-columns: 1fr; }
    .bilgi-bankasi-cards { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .hero-btns .btn { flex: 1 1 100%; }
    .section-head-actions { width: 100%; }
    .section-head-actions .btn { flex: 1; }

    /* Inline grid'ler için güvenlik ağı (eski sayfalar) */
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(3,1fr)"],
    div[style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 400px) {
    .container { padding: 0 1rem; }
    .topbar-hours { display: none; }
    .hero h1 { font-size: 1.6rem; }
    .doviz-serit-liste { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .doviz-item { padding: .45rem .6rem; gap: .5rem; }
    .doviz-item-icon { width: 30px; height: 30px; font-size: .78rem; }
    .doviz-item-fiyat { font-size: .88rem; }
}
