@charset "UTF-8";
/* =====================================================================
   KODAL TEKNİK — Ön Yüz Stil Sistemi
   Palet referansı: marka afişi (lacivert → canlı mavi → buz mavisi → beyaz)
   Tipografi: Poppins (başlık) + Open Sans (gövde)
   ===================================================================== */

/* ---------------------------------------------------------------
   1. TASARIM JETONLARI
   --------------------------------------------------------------- */
:root {
    /* Marka renkleri */
    --navy-900: #051A38;
    --navy-800: #0A2A66;
    --navy-700: #10387F;
    --navy-600: #16479B;
    --blue-600: #1173D4;
    --blue-500: #2E90F0;
    --blue-400: #5BB8F5;
    --blue-300: #8FD0FA;
    --sky-200:  #BDE0FD;
    --ice-100:  #E8F3FE;
    --ice-50:   #F4FAFF;
    --white:    #FFFFFF;

    /* Vurgu (tek aksan — CTA ve rozetler) */
    --amber-500: #FFB020;
    --amber-600: #F59300;
    --amber-100: #FFF3DC;

    /* Durum renkleri */
    --green-500: #16A34A;
    --green-100: #DCFCE7;
    --whatsapp:  #25D366;
    --red-500:   #DC2626;
    --red-100:   #FEE2E2;

    /* Metin */
    --ink-900: #0B1F3A;
    --ink-700: #2C3E5C;
    --ink-500: #5A6E8C;
    --ink-400: #8496AE;

    /* Çizgi ve zemin */
    --line:       #DCE9F7;
    --line-soft:  #EAF2FB;
    --surface:    #FFFFFF;
    --surface-alt: var(--ice-50);

    /* Anlamsal eşlemeler */
    --color-primary:    var(--blue-600);
    --color-on-primary: var(--white);
    --color-accent:     var(--amber-500);
    --color-on-accent:  var(--navy-900);
    --color-bg:         var(--white);
    --color-fg:         var(--ink-900);
    --color-ring:       var(--blue-500);

    /* Tipografi */
    --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Open Sans', 'Segoe UI', system-ui, sans-serif;

    /* Boşluk ölçeği (ferah) */
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 96px;
    --space-9: 128px;

    /* Köşe yarıçapı */
    --r-sm:   8px;
    --r-md:  12px;
    --r-lg:  18px;
    --r-xl:  26px;
    --r-2xl: 36px;
    --r-pill: 999px;

    /* Gölgeler (mavi tonlu, yumuşak) */
    --shadow-xs: 0 1px 2px rgba(10, 42, 102, .06);
    --shadow-sm: 0 2px 8px rgba(10, 42, 102, .07);
    --shadow-md: 0 8px 26px rgba(10, 42, 102, .09);
    --shadow-lg: 0 18px 48px rgba(10, 42, 102, .12);
    --shadow-xl: 0 30px 70px rgba(10, 42, 102, .16);

    /* Geçişler */
    --t-fast: 160ms cubic-bezier(.4, 0, .2, 1);
    --t-base: 240ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 420ms cubic-bezier(.22, 1, .36, 1);

    /* Yerleşim */
    --container: 1240px;
    --header-h:  76px;
    --topbar-h:  42px;
    /* Mobil alt çubuğun gerçek yüksekliği. Gövde boşluğu, yüzen düğmeler ve
       çerez bildirimi bu değeri kullanır; aksi halde çubuk içeriği örter. */
    --mobile-bar-h: 68px;
}

/* ---------------------------------------------------------------
   2. SIFIRLAMA VE TEMEL
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ink-900);
    line-height: 1.18;
    letter-spacing: -.02em;
    font-weight: 700;
    text-wrap: balance;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 1.1rem + 2.1vw, 2.65rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { text-wrap: pretty; }

a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color var(--t-fast);
}
a:hover { color: var(--navy-700); }

ul, ol { padding-left: 1.2em; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

:focus-visible {
    outline: 3px solid var(--color-ring);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection { background: var(--blue-600); color: #fff; }

/* Ekran okuyucu */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -100px; left: 16px; z-index: 999;
    background: var(--navy-800); color: #fff; padding: 12px 20px;
    border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------------------------------------------------------------
   3. YERLEŞİM YARDIMCILARI
   --------------------------------------------------------------- */
/* viewport-fit=cover açık olduğu için yatay modda çentik/kavisli köşe
   yazının üstüne binebilir; max() ile güvenli alan payı garanti altına alınıyor. */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-left:  max(16px, env(safe-area-inset-left,  0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
}
@media (min-width: 640px) {
    .container {
        padding-left:  max(24px, env(safe-area-inset-left,  0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
    }
}
@media (min-width: 1024px) {
    .container {
        padding-left:  max(32px, env(safe-area-inset-left,  0px));
        padding-right: max(32px, env(safe-area-inset-right, 0px));
    }
}

.section       { padding-block: clamp(48px, 7vw, 96px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.section--alt  { background: var(--surface-alt); }
.section--ice  { background: linear-gradient(180deg, var(--ice-50) 0%, var(--ice-100) 100%); }
.section--navy {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    color: #E6F0FC;
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.stack  { display: flex; flex-direction: column; gap: var(--space-3); }
.row    { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
.center { text-align: center; }

/* ---------------------------------------------------------------
   4. BÖLÜM BAŞLIKLARI
   --------------------------------------------------------------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading);
    font-size: .78rem; font-weight: 600;
    letter-spacing: .13em; text-transform: uppercase;
    color: var(--blue-600);
    background: var(--ice-100);
    border: 1px solid var(--sky-200);
    padding: 7px 16px;
    border-radius: var(--r-pill);
}
.eyebrow .icon { color: var(--blue-500); }
.section--navy .eyebrow {
    color: var(--blue-300);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(143, 208, 250, .25);
}

.section-head { max-width: 760px; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--space-3); }
.section-head h2 { margin-bottom: var(--space-2); }
.section-head p { font-size: 1.05rem; color: var(--ink-500); }
.section--navy .section-head p { color: #B9D3EE; }

.section-head--split {
    display: flex; flex-wrap: wrap; align-items: flex-end;
    justify-content: space-between; gap: var(--space-4);
    max-width: none;
}
.section-head--split > div:first-child { max-width: 620px; }

/* ---------------------------------------------------------------
   5. DÜĞMELER
   --------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600; font-size: .96rem; line-height: 1;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--t-base), color var(--t-base),
                border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
}
.btn:active { transform: translateY(1px); }
.btn .icon { flex: 0 0 auto; }

.btn--primary {
    background: var(--blue-600);
    color: #fff;
    box-shadow: 0 8px 22px rgba(17, 115, 212, .28);
}
.btn--primary:hover { background: var(--navy-700); color: #fff; box-shadow: 0 12px 30px rgba(17, 115, 212, .34); }

.btn--accent {
    background: var(--amber-500);
    color: var(--navy-900);
    box-shadow: 0 8px 22px rgba(255, 176, 32, .34);
}
.btn--accent:hover { background: var(--amber-600); color: var(--navy-900); box-shadow: 0 12px 30px rgba(255, 176, 32, .42); }

.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-900); color: #fff; }

.btn--outline {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--line);
}
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); background: var(--ice-50); }

.btn--ghost-light {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.btn--white { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-md); }
.btn--white:hover { background: var(--ice-50); color: var(--navy-900); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .32); }
.btn--whatsapp:hover { background: #1DB855; color: #fff; }

.btn--sm  { padding: 11px 20px; font-size: .88rem; }
.btn--lg  { padding: 18px 34px; font-size: 1.03rem; }
.btn--full { width: 100%; }

.btn-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-weight: 600;
    color: var(--blue-600);
}
.btn-link .icon { transition: transform var(--t-base); }
.btn-link:hover .icon { transform: translateX(4px); }

/* ---------------------------------------------------------------
   6. ÜST BAR
   --------------------------------------------------------------- */
.topbar {
    background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
    color: #C6DDF5;
    font-size: .84rem;
    min-height: var(--topbar-h);
    display: flex; align-items: center;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); width: 100%; }
.topbar__left  { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.topbar__right { display: flex; align-items: center; gap: var(--space-2); }

.topbar__item {
    display: inline-flex; align-items: center; gap: 8px;
    color: #C6DDF5;
}
.topbar__item .icon { color: var(--blue-400); }
.topbar__item:hover { color: #fff; }
.topbar__item strong { color: #fff; font-weight: 600; letter-spacing: .01em; }

.topbar__social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #C6DDF5;
    transition: background var(--t-fast), color var(--t-fast);
}
.topbar__social:hover { background: var(--blue-600); color: #fff; }

@media (max-width: 900px) {
    .topbar { display: none; }
}

/* ---------------------------------------------------------------
   7. ÜST MENÜ
   --------------------------------------------------------------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow var(--t-base), background var(--t-base);
}
.header.is-stuck { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, .98); }

.header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-4); min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img {
    height: 50px; width: auto;
    transition: transform var(--t-base);
}
.logo:hover img { transform: scale(1.03); }
@media (max-width: 480px) { .logo img { height: 42px; } }

/* Menü: açık zeminli, yumuşak kapsül */
.nav {
    display: flex; align-items: center; gap: 2px;
    padding: 5px;
    background: var(--ice-50);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-pill);
}
.nav__link {
    position: relative;
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--font-heading); font-weight: 500; font-size: .95rem;
    color: var(--ink-700);
    padding: 10px 13px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    transition: color var(--t-fast), background var(--t-fast);
}
.nav__link { border-radius: var(--r-pill); }
.nav__link:hover { color: var(--blue-600); background: #fff; box-shadow: var(--shadow-xs); }
.nav__link.is-active {
    color: #fff; font-weight: 600;
    background: var(--blue-600);
    box-shadow: 0 4px 12px rgba(17, 115, 212, .3);
}
.nav__link.is-active:hover { color: #fff; background: var(--navy-700); }
.nav__link .icon { opacity: .6; transition: transform var(--t-fast); }
.nav__item:hover .nav__link .icon { transform: rotate(180deg); }

.nav__item { position: relative; }

.dropdown {
    position: absolute; top: calc(100% + 10px); left: 0;
    min-width: 290px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
    z-index: 60;
}
.nav__item:hover > .dropdown,
.nav__item:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown__link {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px;
    border-radius: var(--r-md);
    color: var(--ink-700);
    font-size: .93rem;
    transition: background var(--t-fast), color var(--t-fast);
}
.dropdown__link:hover { background: var(--ice-50); color: var(--blue-600); }
.dropdown__icon {
    flex: 0 0 auto;
    display: grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 11px;
    background: var(--ice-100);
    color: var(--blue-600);
}
.dropdown__link strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: .94rem; color: var(--ink-900); }
.dropdown__link small { display: block; font-size: .8rem; color: var(--ink-400); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.header__phone {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 8px 8px 8px 14px; border-radius: var(--r-pill);
    background: var(--ice-50); border: 1px solid var(--line-soft);
}
.header__phone-icon {
    display: grid; place-items: center; width: 36px; height: 36px;
    border-radius: 50%; background: var(--blue-600); color: #fff;
}
.header__phone-text { line-height: 1.25; }
.header__phone-text small { display: block; font-size: .7rem; color: var(--ink-400); }
.header__phone-text b { font-family: var(--font-heading); font-size: .94rem; color: var(--navy-800); }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    border-radius: var(--r-md);
    background: var(--ice-100); color: var(--navy-800);
    place-items: center;
}

@media (max-width: 1140px) {
    .header__phone { display: none; }
}
@media (max-width: 1024px) {
    /* backdrop-filter, position:fixed alt öğeler için KAPSAYICI BLOK oluşturur.
       Bu yüzden menü çekmecesi ekranın tamamı yerine başlık kutusunun içine
       (~76px) hapsoluyordu. Mobilde bulanıklığı kapatıp düz zemin veriyoruz.
       z-index de karartma katmanının (110) üstüne çıkarılıyor; aksi halde
       çekmece, başlığın yığın bağlamı (100) içinde kaldığı için karartmanın
       altında görünmez oluyor. */
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #fff;
        z-index: 130;
    }
    .nav-toggle { display: grid; }
    .nav {
        position: fixed; inset: 0 0 0 auto;
        width: min(400px, 88vw);
        background: #fff;
        border: 0; border-radius: 0;
        flex-direction: column; align-items: stretch;
        padding: 88px 20px 32px;
        gap: 4px;
        box-shadow: -20px 0 60px rgba(5, 26, 56, .2);
        transform: translateX(100%);
        transition: transform var(--t-slow);
        overflow-y: auto;
        z-index: 120;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__link { padding: 15px 16px; font-size: 1.02rem; border-radius: var(--r-md); }
    .nav__item { width: 100%; }
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; border-left: 2px solid var(--line-soft);
        border-radius: 0; margin: 2px 0 8px 18px; padding: 0 0 0 8px;
        display: none;
    }
    .nav__item.is-open .dropdown { display: block; }
    .nav__mobile-cta { margin-top: 18px; display: grid; gap: 10px; }
}
@media (min-width: 1025px) {
    .nav__mobile-cta { display: none; }
}

/* Mobil menü kapatma düğmesi — yalnızca dar ekranda görünür */
.nav__close {
    position: absolute; top: 20px; right: 20px;
    width: 42px; height: 42px; border-radius: var(--r-md);
    background: var(--ice-100); color: var(--navy-800);
    place-items: center;
    display: none;
}
@media (max-width: 1024px) {
    .nav__close { display: grid; }
}

/* İkon döndürme yardımcısı */
.rotate-180 { transform: rotate(180deg); }

/* Dar ekranda gizlenen metin */
@media (max-width: 560px) {
    .hide-sm { display: none; }
}

.nav-overlay {
    position: fixed; inset: 0; z-index: 110;
    background: rgba(5, 26, 56, .5);
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
}
.nav-overlay.is-visible { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------
   8. ANASAYFA HERO (split: mavi panel + fotoğraf)
   --------------------------------------------------------------- */
.hero { position: relative; background: var(--ice-50); overflow: hidden; }

.hero__slide { display: none; }
.hero__slide.is-active { display: block; }

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: clamp(520px, 74vh, 760px);
}
@media (min-width: 992px) {
    .hero__grid { grid-template-columns: 1.02fr .98fr; }
}

.hero__panel {
    position: relative;
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 64px);
    background: linear-gradient(140deg, var(--navy-900) 0%, var(--navy-800) 48%, var(--navy-600) 100%);
    color: #DCEBFB;
    overflow: hidden;
}
/* Marka afişindeki akan mavi dalga */
.hero__panel::before {
    content: '';
    position: absolute; right: -22%; top: -26%;
    width: 78%; aspect-ratio: 1;
    background: radial-gradient(circle at 30% 30%, rgba(91, 184, 245, .34), transparent 62%);
    filter: blur(14px);
    pointer-events: none;
}
.hero__panel::after {
    content: '';
    position: absolute; left: -18%; bottom: -34%;
    width: 68%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(17, 115, 212, .42), transparent 64%);
    pointer-events: none;
}
.hero__panel > * { position: relative; z-index: 2; }

.hero__inner { max-width: 620px; margin-left: auto; width: 100%; }
@media (max-width: 991px) { .hero__inner { margin-inline: auto; } }

.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-heading); font-size: .76rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--blue-300);
    background: rgba(143, 208, 250, .12);
    border: 1px solid rgba(143, 208, 250, .28);
    padding: 8px 18px; border-radius: var(--r-pill);
    margin-bottom: var(--space-4);
}

.hero__title {
    color: #fff;
    font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-bottom: var(--space-3);
}
.hero__title em {
    font-style: normal;
    color: var(--blue-400);
    position: relative;
    white-space: nowrap;
}
.hero__title em::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: .06em;
    height: .16em; border-radius: 4px;
    background: linear-gradient(90deg, var(--blue-500), rgba(91, 184, 245, 0));
}

.hero__desc {
    font-size: clamp(1rem, .95rem + .3vw, 1.12rem);
    color: #B6D2EE;
    max-width: 52ch;
    margin-bottom: var(--space-5);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--space-6); }

.hero__proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars img, .avatars span {
    width: 42px; height: 42px; border-radius: 50%;
    border: 2.5px solid var(--navy-800);
    object-fit: cover;
    margin-left: -12px;
    background: var(--blue-500);
    display: grid; place-items: center;
    font-family: var(--font-heading); font-size: .8rem; font-weight: 700; color: #fff;
}
.avatars > *:first-child { margin-left: 0; }
.hero__proof-text { font-size: .88rem; color: #A9C8E8; line-height: 1.45; }
.hero__proof-text strong { display: block; color: #fff; font-family: var(--font-heading); font-size: .98rem; }

.hero__media { position: relative; min-height: 340px; background: var(--ice-100); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(10, 42, 102, .5) 0%, rgba(10, 42, 102, .08) 42%, transparent 70%);
    pointer-events: none;
}
@media (min-width: 992px) {
    .hero__media::after {
        background: linear-gradient(95deg, rgba(10, 42, 102, .55) 0%, transparent 38%);
    }
}

/* Fotoğrafın üstünde yüzen puan kartı */
.hero__badge {
    position: absolute; z-index: 3;
    right: clamp(16px, 3vw, 38px); top: clamp(16px, 3vw, 38px);
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: var(--r-pill);
    padding: 9px 18px 9px 12px;
    box-shadow: var(--shadow-lg);
    font-size: .84rem; color: var(--ink-700);
}
.hero__badge b { font-family: var(--font-heading); color: var(--navy-900); font-size: .95rem; }
.hero__badge .stars { color: var(--amber-500); }

/* Fotoğrafın altına binen bilgi kartı */
.hero__card {
    position: absolute; z-index: 3;
    left: clamp(16px, 3vw, 38px); right: clamp(16px, 3vw, 38px);
    bottom: clamp(24px, 5vw, 56px);
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.hero__card-item { padding: 16px 14px; text-align: center; background: rgba(255, 255, 255, .6); }
.hero__card-item .icon { color: var(--blue-600); margin: 0 auto 6px; }
.hero__card-item b { display: block; font-family: var(--font-heading); font-size: .92rem; color: var(--navy-900); }
.hero__card-item small { font-size: .75rem; color: var(--ink-400); }

.hero__dots {
    position: absolute; z-index: 4;
    left: clamp(20px, 4vw, 64px); bottom: clamp(20px, 3vw, 40px);
    display: flex; gap: 9px;
}
@media (min-width: 992px) { .hero__dots { bottom: clamp(26px, 3vw, 44px); } }
.hero__dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255, 255, 255, .34);
    border: 0; padding: 0;
    transition: width var(--t-base), background var(--t-base);
}
.hero__dot.is-active { width: 34px; border-radius: var(--r-pill); background: var(--blue-400); }

/* ---------------------------------------------------------------
   9. HIZLI ERİŞİM ŞERİDİ (hero altı)
   --------------------------------------------------------------- */
/* Hero altındaki hızlı erişim şeridi — hero ile araya nefes payı bırakır */
.quickbar { position: relative; z-index: 5; margin-top: clamp(28px, 4vw, 48px); }
@media (max-width: 991px) { .quickbar { margin-top: var(--space-5); } }

.quickbar__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--line-soft);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.quickbar__item {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 24px;
    background: #fff;
    transition: background var(--t-base);
}
.quickbar__item:hover { background: var(--ice-50); }
.quickbar__icon {
    flex: 0 0 auto; display: grid; place-items: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--ice-100); color: var(--blue-600);
    transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.quickbar__item:hover .quickbar__icon { background: var(--blue-600); color: #fff; transform: scale(1.06); }
.quickbar__item b { display: block; font-family: var(--font-heading); font-size: .98rem; color: var(--navy-900); }
.quickbar__item small { font-size: .82rem; color: var(--ink-400); }

/* ---------------------------------------------------------------
   10. KARTLAR
   --------------------------------------------------------------- */
.card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sky-200); }

.card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--ice-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .card__media img { transform: scale(1.06); }

.card__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-size: 1.16rem; }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--blue-600); }
.card__text { font-size: .94rem; color: var(--ink-500); flex: 1; }
.card__foot {
    padding-top: var(--space-2);
    border-top: 1px solid var(--line-soft);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.card__tag {
    position: absolute; left: 14px; top: 14px; z-index: 2;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(6px);
    color: var(--navy-800);
    font-family: var(--font-heading); font-size: .74rem; font-weight: 600;
    letter-spacing: .04em;
    padding: 6px 13px; border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
}

/* Hizmet kartı */
.service-card { position: relative; }
.service-card__icon {
    position: absolute; z-index: 3; left: 20px; bottom: -26px;
    display: grid; place-items: center;
    width: 58px; height: 58px; border-radius: 17px;
    background: #fff; color: var(--blue-600);
    box-shadow: var(--shadow-md);
    transition: background var(--t-base), color var(--t-base);
}
.service-card:hover .service-card__icon { background: var(--blue-600); color: #fff; }
.service-card .card__body { padding-top: 42px; }
.service-card__meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: .78rem; color: var(--ink-400);
}
.service-card__meta span {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--ice-50); border: 1px solid var(--line-soft);
    padding: 5px 11px; border-radius: var(--r-pill);
}

/* Ürün kartı */
.product-card .card__media { aspect-ratio: 1 / 1; background: linear-gradient(160deg, var(--ice-50), var(--ice-100)); }
.product-card .card__media img { object-fit: contain; padding: 22px; }
.product-card__brand { font-size: .76rem; color: var(--blue-600); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* Blog kartı */
.post-card__meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .8rem; color: var(--ink-400); }
.post-card__meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Blog ve referans kartlarında görsel kullanılmıyor. Üstteki ince vurgu
   şeridi kartı boşluk hissinden kurtarır, kategori artık metin rozeti. */
.post-card, .ref-card { position: relative; }
.post-card::before, .ref-card::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
}
.post-card > .card__body, .ref-card > .card__body { padding-top: calc(var(--space-4) + 5px); }
.post-card__cat {
    display: inline-flex; align-items: center;
    padding: 3px 11px;
    background: var(--ice-100); color: var(--blue-600);
    border-radius: var(--r-pill);
    font-family: var(--font-heading); font-weight: 600; font-size: .74rem;
}
.ref-card__sector {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-heading); font-weight: 600; font-size: .76rem;
    color: var(--blue-600); text-transform: uppercase; letter-spacing: .04em;
}

/* ---------------------------------------------------------------
   11. NEDEN BİZ / ÖZELLİK KUTULARI
   --------------------------------------------------------------- */
.feature {
    display: flex; gap: 18px;
    padding: var(--space-4);
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-200); }
.feature__icon {
    flex: 0 0 auto; display: grid; place-items: center;
    width: 54px; height: 54px; border-radius: 16px;
    background: linear-gradient(140deg, var(--ice-100), var(--sky-200));
    color: var(--navy-700);
}
.feature h3 { font-size: 1.08rem; margin-bottom: 5px; }
.feature p { font-size: .92rem; color: var(--ink-500); }

.section--navy .feature {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(143, 208, 250, .16);
}
.section--navy .feature:hover { background: rgba(255, 255, 255, .09); }
.section--navy .feature__icon { background: rgba(143, 208, 250, .16); color: var(--blue-300); }
.section--navy .feature p { color: #A9C8E8; }

/* ---------------------------------------------------------------
   12. İSTATİSTİK ŞERİDİ
   --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; }
.stat {
    text-align: center; padding: var(--space-5) var(--space-3);
    position: relative;
}
.stat + .stat::before {
    content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
    width: 1px; background: var(--line);
}
.section--navy .stat + .stat::before { background: rgba(143, 208, 250, .2); }
.stat__icon { color: var(--blue-500); margin: 0 auto 10px; }
.stat__value {
    font-family: var(--font-heading); font-weight: 800;
    font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
    color: var(--navy-800); line-height: 1; letter-spacing: -.035em;
}
.section--navy .stat__value { color: #fff; }
.stat__value span { color: var(--blue-500); }
.stat__label { font-size: .9rem; color: var(--ink-500); margin-top: 8px; }
.section--navy .stat__label { color: #A9C8E8; }

/* ---------------------------------------------------------------
   13. ÇALIŞMA SÜRECİ
   --------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-4); }
.process__step { position: relative; text-align: center; padding-top: 14px; }
.process__step::after {
    content: '';
    position: absolute; top: 46px; left: 60%; right: -40%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--sky-200) 0 8px, transparent 8px 16px);
}
.process__step:last-child::after { display: none; }
@media (max-width: 860px) { .process__step::after { display: none; } }

.process__num {
    position: relative; z-index: 2;
    display: grid; place-items: center;
    width: 66px; height: 66px; margin: 0 auto var(--space-3);
    border-radius: 20px;
    background: #fff; border: 2px solid var(--sky-200);
    color: var(--blue-600);
    box-shadow: var(--shadow-sm);
    transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.process__step:hover .process__num { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.process__badge {
    position: absolute; top: -8px; right: -8px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--amber-500); color: var(--navy-900);
    display: grid; place-items: center;
    font-family: var(--font-heading); font-size: .78rem; font-weight: 700;
}
.process__step h3 { font-size: 1.06rem; margin-bottom: 6px; }
.process__step p { font-size: .91rem; color: var(--ink-500); max-width: 30ch; margin-inline: auto; }

/* ---------------------------------------------------------------
   14. YORUMLAR
   --------------------------------------------------------------- */
.testimonial {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: var(--space-4);
    display: flex; flex-direction: column; gap: var(--space-3);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__quote { color: var(--sky-200); }
.testimonial__text { font-size: .97rem; color: var(--ink-700); flex: 1; }
.testimonial__foot { display: flex; align-items: center; gap: 13px; padding-top: var(--space-2); border-top: 1px solid var(--line-soft); }
.testimonial__avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; background: var(--ice-100);
    display: grid; place-items: center;
    font-family: var(--font-heading); font-weight: 700; color: var(--blue-600);
    flex: 0 0 auto;
}
.testimonial__name { font-family: var(--font-heading); font-weight: 600; color: var(--navy-900); font-size: .96rem; }
.testimonial__meta { font-size: .81rem; color: var(--ink-400); }

.stars { display: inline-flex; gap: 2px; }
.star { color: var(--line); }
.star.is-on { color: var(--amber-500); }

/* ---------------------------------------------------------------
   15. MARKA LOGO ŞERİDİ
   --------------------------------------------------------------- */
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--surface-alt), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--surface-alt), transparent); }

.marquee__track { display: flex; gap: var(--space-5); width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee__item {
    flex: 0 0 auto;
    display: grid; place-items: center;
    width: 170px; height: 78px;
    background: transparent;
    border: 0;
    padding: 8px 14px;
}
/* Marka logoları farklı en-boy oranlarında gelir; sabit piksel sınırı
   hepsini aynı optik büyüklükte tutar. Yüzde değer grid içinde çözülmez. */
.marquee__item { overflow: hidden; }
.marquee__item img {
    max-width: 100%;
    max-height: 54px;
    width: auto; height: auto;
    object-fit: contain;
    filter: grayscale(1); opacity: .62;
    transition: filter var(--t-base), opacity var(--t-base);
}
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }
.marquee__item span { font-family: var(--font-heading); font-weight: 600; color: var(--ink-400); font-size: .92rem; }

/* ---------------------------------------------------------------
   16. AKORDİYON (SSS)
   --------------------------------------------------------------- */
.accordion { display: grid; gap: 12px; }
.accordion__item {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.accordion__item.is-open { border-color: var(--sky-200); box-shadow: var(--shadow-sm); }
.accordion__btn {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 20px 22px;
    text-align: left;
    font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
    color: var(--navy-900);
    transition: color var(--t-fast);
}
.accordion__btn:hover { color: var(--blue-600); }
.accordion__sign {
    flex: 0 0 auto; display: grid; place-items: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--ice-100); color: var(--blue-600);
    transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}
.accordion__item.is-open .accordion__sign { transform: rotate(180deg); background: var(--blue-600); color: #fff; }
.accordion__panel {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows var(--t-slow);
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__inner { overflow: hidden; }
.accordion__inner > div { padding: 0 22px 22px; color: var(--ink-500); font-size: .96rem; }

/* ---------------------------------------------------------------
   17. CTA BANDI
   --------------------------------------------------------------- */
.cta-band {
    position: relative;
    background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 52%, var(--blue-600) 130%);
    border-radius: var(--r-2xl);
    padding: clamp(32px, 5vw, 60px);
    color: #DCEBFB;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; right: -8%; top: -60%;
    width: 46%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(91, 184, 245, .34), transparent 64%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-5); }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #B6D2EE; max-width: 54ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------------------------------------------------------
   18. SAYFA BAŞLIĞI (iç sayfalar)
   --------------------------------------------------------------- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 58%, var(--navy-600) 100%);
    color: #DCEBFB;
    padding-block: clamp(44px, 6vw, 84px);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; right: -10%; top: -80%;
    width: 52%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(91, 184, 245, .28), transparent 66%);
}
.page-hero__bg {
    position: absolute; inset: 0;
    object-fit: cover; width: 100%; height: 100%;
    opacity: .22;
    mix-blend-mode: luminosity;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #B6D2EE; max-width: 62ch; font-size: 1.04rem; }

.breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: .85rem; color: #9FC0E4;
    margin-bottom: var(--space-3);
}
.breadcrumb a { color: #9FC0E4; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .45; }
.breadcrumb [aria-current] { color: #fff; }

/* ---------------------------------------------------------------
   19. FORMLAR
   --------------------------------------------------------------- */
.form { display: grid; gap: var(--space-3); }
.form-row { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
    font-family: var(--font-heading); font-size: .88rem; font-weight: 600;
    color: var(--navy-800);
}
.field label .req { color: var(--red-500); }
.field small { font-size: .79rem; color: var(--ink-400); }

.input, .select, .textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: .96rem;
    color: var(--ink-900);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--sky-200); }
.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(46, 144, 240, .15);
}
.textarea { min-height: 130px; resize: vertical; }
.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235A6E8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea { border-color: var(--red-500); background: #FFFAFA; }
.field__error {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; color: var(--red-500); font-weight: 600;
}

/* Seçim kartları (radyo) */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice__box {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 18px 12px; text-align: center;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
    cursor: pointer;
}
.choice__box .icon { color: var(--blue-600); }
.choice__box b { font-family: var(--font-heading); font-size: .89rem; color: var(--navy-800); font-weight: 600; }
.choice input:hover + .choice__box { border-color: var(--sky-200); }
.choice input:checked + .choice__box {
    border-color: var(--blue-600);
    background: var(--ice-50);
    box-shadow: 0 0 0 3px rgba(17, 115, 212, .12);
}
.choice input:focus-visible + .choice__box { outline: 3px solid var(--color-ring); outline-offset: 2px; }

/* Onay kutusu */
.checkbox { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; color: var(--ink-500); }
.checkbox input { width: 20px; height: 20px; accent-color: var(--blue-600); flex: 0 0 auto; margin-top: 2px; }
.checkbox a { text-decoration: underline; }

/* Uyarı kutuları */
.alert {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 18px;
    border-radius: var(--r-md);
    font-size: .93rem;
    border: 1px solid;
}
.alert .icon { flex: 0 0 auto; margin-top: 1px; }
.alert--success { background: var(--green-100); border-color: #A7E8C0; color: #14532D; }
.alert--error   { background: var(--red-100);   border-color: #F8B4B4; color: #7F1D1D; }
.alert--info    { background: var(--ice-100);   border-color: var(--sky-200); color: var(--navy-800); }
.alert--warning { background: var(--amber-100); border-color: #FBD38D; color: #78350F; }

.alert h4 { font-size: 1rem; margin-bottom: 3px; }

/* Form kutusu */
.form-box {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-xl);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--shadow-md);
}
.form-box--floating { box-shadow: var(--shadow-xl); }

/* ---------------------------------------------------------------
   20. GALERİ
   --------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: var(--space-5); }
.filter-chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px;
    font-family: var(--font-heading); font-size: .9rem; font-weight: 500;
    color: var(--ink-700);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-pill);
    transition: all var(--t-fast);
}
.filter-chip:hover { border-color: var(--sky-200); color: var(--blue-600); background: var(--ice-50); }
.filter-chip.is-active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-3); }
.gallery-item {
    position: relative; display: block;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ice-100);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5, 26, 56, .86), rgba(5, 26, 56, .12) 55%, transparent);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity var(--t-base);
}
.gallery-item:hover .gallery-item__overlay, .gallery-item:focus-visible .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay b { font-family: var(--font-heading); color: #fff; font-size: .98rem; }
.gallery-item__overlay small { color: #B6D2EE; font-size: .82rem; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(5, 26, 56, .94);
    display: none; align-items: center; justify-content: center;
    padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); }
.lightbox__caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #DCEBFB; font-size: .95rem; padding-inline: 24px; }
.lightbox__close, .lightbox__nav {
    position: absolute; z-index: 2;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255, 255, 255, .14); color: #fff;
    display: grid; place-items: center;
    transition: background var(--t-fast);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .28); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------
   21. İÇERİK METNİ (blog / hizmet detay)
   --------------------------------------------------------------- */
.prose { font-size: 1.04rem; color: var(--ink-700); line-height: 1.8; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.4rem, 1.15rem + .9vw, 1.85rem); margin-top: 1.8em; }
.prose h3 { font-size: clamp(1.18rem, 1.05rem + .5vw, 1.4rem); margin-top: 1.6em; color: var(--navy-800); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .45em; }
.prose li::marker { color: var(--blue-500); }
.prose strong { color: var(--navy-800); font-weight: 600; }
.prose img { border-radius: var(--r-lg); margin-block: 1.6em; }
.prose blockquote {
    border-left: 4px solid var(--blue-500);
    background: var(--ice-50);
    padding: 18px 22px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    color: var(--navy-800);
    font-size: 1.05rem;
}
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--ice-50); font-family: var(--font-heading); color: var(--navy-800); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------
   22. YAN SÜTUN
   --------------------------------------------------------------- */
.layout-sidebar { display: grid; gap: var(--space-5); align-items: start; }
@media (min-width: 992px) { .layout-sidebar { grid-template-columns: minmax(0, 1fr) 340px; gap: var(--space-6); } }

.sidebar { display: grid; gap: var(--space-4); position: sticky; top: calc(var(--header-h) + 20px); }
.widget {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: var(--space-4);
}
.widget__title {
    font-size: 1.05rem; margin-bottom: var(--space-3);
    padding-bottom: 12px; border-bottom: 1px solid var(--line-soft);
    display: flex; align-items: center; gap: 9px;
}
.widget__title .icon { color: var(--blue-600); }
.widget--navy {
    background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
    border-color: transparent; color: #C6DDF5;
}
.widget--navy .widget__title { color: #fff; border-color: rgba(143, 208, 250, .22); }
.widget--navy p { color: #B6D2EE; font-size: .93rem; }

.link-list { display: grid; gap: 2px; }
.link-list a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 11px 13px;
    border-radius: var(--r-sm);
    color: var(--ink-700); font-size: .94rem;
    transition: background var(--t-fast), color var(--t-fast);
}
.link-list a:hover, .link-list a.is-active { background: var(--ice-50); color: var(--blue-600); }
.link-list a.is-active { font-weight: 600; }
.link-list .count { font-size: .78rem; color: var(--ink-400); background: var(--ice-100); padding: 2px 9px; border-radius: var(--r-pill); }

.mini-post { display: flex; gap: 12px; padding: 10px 0; }
.mini-post + .mini-post { border-top: 1px solid var(--line-soft); }
.mini-post img { width: 68px; height: 62px; border-radius: var(--r-sm); object-fit: cover; flex: 0 0 auto; }
.mini-post b { font-family: var(--font-heading); font-size: .89rem; font-weight: 600; color: var(--navy-900); display: block; line-height: 1.35; }
.mini-post a:hover b { color: var(--blue-600); }
.mini-post small { font-size: .77rem; color: var(--ink-400); }

/* ---------------------------------------------------------------
   23. SAYFALAMA
   --------------------------------------------------------------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: var(--space-6); }
.pagination__item {
    min-width: 44px; height: 44px;
    display: grid; place-items: center;
    padding-inline: 12px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    font-family: var(--font-heading); font-weight: 600; font-size: .93rem;
    color: var(--ink-700);
    transition: all var(--t-fast);
}
.pagination__item:hover { border-color: var(--blue-500); color: var(--blue-600); }
.pagination__item.is-current { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.pagination__gap { display: grid; place-items: center; min-width: 30px; color: var(--ink-400); }

/* ---------------------------------------------------------------
   24. BOŞ DURUM
   --------------------------------------------------------------- */
.empty {
    text-align: center;
    padding: clamp(40px, 6vw, 80px) 24px;
    background: var(--ice-50);
    border: 1px dashed var(--sky-200);
    border-radius: var(--r-xl);
}
.empty .icon { color: var(--blue-400); margin: 0 auto var(--space-3); }
.empty h3 { margin-bottom: 8px; }
.empty p { color: var(--ink-500); max-width: 46ch; margin: 0 auto var(--space-4); }

/* ---------------------------------------------------------------
   25. FOOTER
   --------------------------------------------------------------- */
.footer {
    background: linear-gradient(170deg, var(--navy-900) 0%, #071F45 100%);
    color: #A9C8E8;
    font-size: .93rem;
}

/* Acil servis bandı */
.footer-cta {
    background: linear-gradient(100deg, var(--blue-600) 0%, var(--navy-700) 100%);
    padding-block: var(--space-5);
}
.footer-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4); }
.footer-cta__text { display: flex; align-items: center; gap: 18px; }
.footer-cta__icon {
    flex: 0 0 auto; display: grid; place-items: center;
    width: 58px; height: 58px; border-radius: 18px;
    background: rgba(255, 255, 255, .16); color: #fff;
}
.footer-cta h3 { color: #fff; font-size: 1.28rem; margin-bottom: 3px; }
.footer-cta p { color: #C9E2FA; font-size: .94rem; }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: 11px; }

.footer__main { padding-block: clamp(44px, 6vw, 72px); }
.footer__grid {
    display: grid; gap: var(--space-5);
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.footer__grid > div:first-child { grid-column: span 1; min-width: 260px; }
@media (min-width: 992px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }

.footer__logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: var(--space-3); }
.footer__logo img { height: 46px; width: auto; }
.footer__logo b { font-family: var(--font-heading); font-weight: 800; font-size: 1.42rem; color: #fff; letter-spacing: -.035em; }
.footer__logo span { display: block; font-family: var(--font-heading); font-size: .64rem; letter-spacing: .42em; color: var(--blue-400); text-transform: uppercase; }

.footer h4 {
    color: #fff; font-size: 1.02rem; margin-bottom: var(--space-3);
    position: relative; padding-bottom: 11px;
}
.footer h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 34px; height: 3px; border-radius: 2px;
    background: var(--blue-500);
}
.footer__links { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer__links a { color: #A9C8E8; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); flex: 0 0 auto; transition: transform var(--t-fast); }
.footer__links a:hover { color: #fff; }
.footer__links a:hover::before { transform: scale(1.6); }

.footer__contact { display: grid; gap: 15px; }
.footer__contact-item { display: flex; gap: 13px; align-items: flex-start; }
.footer__contact-icon {
    flex: 0 0 auto; display: grid; place-items: center;
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(143, 208, 250, .12); color: var(--blue-400);
}
.footer__contact-item small { display: block; font-size: .76rem; color: #7EA5CE; }
.footer__contact-item b, .footer__contact-item a { color: #fff; font-weight: 600; font-size: .95rem; }

.footer__social { display: flex; gap: 9px; margin-top: var(--space-3); }
.footer__social a {
    display: grid; place-items: center;
    width: 42px; height: 42px; border-radius: 13px;
    background: rgba(255, 255, 255, .07);
    color: #A9C8E8;
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.footer__social a:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }

.footer__newsletter { display: flex; gap: 8px; margin-top: var(--space-3); }
.footer__newsletter input {
    flex: 1; min-width: 0;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(143, 208, 250, .22);
    border-radius: var(--r-md);
    color: #fff; font-size: .92rem;
}
.footer__newsletter input::placeholder { color: #7EA5CE; }
.footer__newsletter input:focus { outline: none; border-color: var(--blue-500); background: rgba(255, 255, 255, .1); }
.footer__newsletter button {
    display: grid; place-items: center;
    width: 50px; border-radius: var(--r-md);
    background: var(--blue-600); color: #fff;
    transition: background var(--t-fast);
}
.footer__newsletter button:hover { background: var(--blue-500); }

.footer__areas { padding-block: var(--space-4); border-top: 1px solid rgba(143, 208, 250, .12); }
.footer__areas-list { display: flex; flex-wrap: wrap; gap: 7px; }
.footer__areas-list a {
    font-size: .82rem; color: #8FB4DB;
    background: rgba(255, 255, 255, .05);
    padding: 6px 13px; border-radius: var(--r-pill);
    transition: background var(--t-fast), color var(--t-fast);
}
.footer__areas-list a:hover { background: var(--blue-600); color: #fff; }

.footer__bottom {
    border-top: 1px solid rgba(143, 208, 250, .12);
    padding-block: var(--space-3);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2);
    font-size: .85rem; color: #7EA5CE;
}
.footer__bottom a { color: #A9C8E8; }
.footer__bottom a:hover { color: #fff; }
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------------------------------------------------------------
   26. YÜZEN EYLEM DÜĞMELERİ
   --------------------------------------------------------------- */
.fab-stack {
    position: fixed; right: 18px; bottom: 18px; z-index: 90;
    display: flex; flex-direction: column; gap: 11px;
}
.fab {
    display: grid; place-items: center;
    width: 56px; height: 56px; border-radius: 50%;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.fab:hover { transform: scale(1.08); color: #fff; }
.fab--whatsapp { background: var(--whatsapp); }
.fab--phone    { background: var(--blue-600); }
.fab--top      { background: var(--navy-800); opacity: 0; visibility: hidden; }
.fab--top.is-visible { opacity: 1; visibility: visible; }

/* Mobil alt eylem çubuğu */
.mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(10, 42, 102, .1);
    padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    height: 67px; padding: 6px;
    font-family: var(--font-heading); font-size: .74rem; font-weight: 600;
    color: var(--ink-700);
}
.mobile-bar a + a { border-left: 1px solid var(--line-soft); }
.mobile-bar { padding-left: env(safe-area-inset-left, 0px); padding-right: env(safe-area-inset-right, 0px); }
.mobile-bar .icon { color: var(--blue-600); }
.mobile-bar a.is-accent { color: var(--whatsapp); }
.mobile-bar a.is-accent .icon { color: var(--whatsapp); }

@media (max-width: 767px) {
    .mobile-bar { display: grid; }
    .fab-stack {
        bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 16px);
        right: 14px;
    }
    .fab { width: 50px; height: 50px; }
    .fab--whatsapp, .fab--phone { display: none; }
    body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
}

/* ---------------------------------------------------------------
   27. ÇEREZ BİLDİRİMİ
   --------------------------------------------------------------- */
.cookie {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
    max-width: 520px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    padding: 20px 22px;
    display: none;
    gap: var(--space-2);
    flex-direction: column;
}
.cookie.is-visible { display: flex; }
.cookie p { font-size: .88rem; color: var(--ink-500); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 9px; }
@media (max-width: 767px) {
    .cookie { bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 12px); }
}

/* ---------------------------------------------------------------
   28. HAREKET / GİRİŞ ANİMASYONLARI
   --------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .62s cubic-bezier(.22, 1, .36, 1), transform .62s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .marquee__track { animation: none; }
}

/* ---------------------------------------------------------------
   29. YAZDIRMA
   --------------------------------------------------------------- */
@media print {
    .topbar, .header, .footer-cta, .fab-stack, .mobile-bar, .cookie, .hero__dots { display: none !important; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}

/* ---------------------------------------------------------------
   30. FOOTER LOGO (gerçek marka logosu)
   --------------------------------------------------------------- */
.footer__logo { display: inline-block; }
.footer__logo img { height: 56px; width: auto; }
