﻿
:root {
    /* ── Koyu temel ── */
    --ink:       #0d1f3c;
    --ink-soft:  #162e55;
    --ink-deep:  #081526;
    /* ── Kurumsal mavi ── */
    --primary:      #1a5cb8;
    --primary-dark: #134a9a;
    --primary-bg:   #eef4fd;   /* bölüm arka plan açık mavi */
    --primary-line: rgba(26,92,184,.14);
    /* ── Altın (logo rengi) ── */
    --gold:      #bf9450;
    --gold-2:    #d6b576;
    --gold-deep: #a87f3d;
    /* ── Yüzey ── */
    --paper:   #ffffff;
    --paper-2: #eef4fd;        /* eski krem → açık mavi */
    /* ── Çizgi / gölge ── */
    --line:      rgba(13,31,60,.11);
    --line-soft: rgba(13,31,60,.06);
    /* ── Metin ── */
    --text: #0d1f3c;
    --mute: #546078;
    /* ── Tipografi ── */
    --serif: 'Fraunces',Georgia,serif;
    --sans:  'Manrope',system-ui,sans-serif;
    /* ── Gölgeler ── */
    --shadow:    0 24px 60px -28px rgba(13,31,60,.22);
    --shadow-sm: 0 14px 40px -22px rgba(13,31,60,.18);
}
 

body {
    font-family: var(--sans);
    color: var(--text);
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.65
}

 

::selection {
    background: var(--gold);
    color: #fff
}
 
/* ===== Tipografi yardımcıları ===== */
.eyebrow {
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .7rem;
}

    .eyebrow::before {
        content: "";
        width: 34px;
        height: 1px;
        background: var(--gold);
        opacity: .8
    }

    .eyebrow.center {
        justify-content: center
    }

        .eyebrow.center::after {
            content: "";
            width: 34px;
            height: 1px;
            background: var(--gold);
            opacity: .8
        }

.display {
    font-family: var(--serif);
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.06;
    letter-spacing: -.01em;
    color: var(--ink);
}

    .display em {
        font-style: italic;
        color: var(--gold)
    }


#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg,var(--primary),var(--gold));
    z-index: 1200
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--ink-deep);
    color: rgba(255,255,255,.7);
    font-size: .8rem;
    font-family: var(--sans);
    padding: 7px 0;
    position: relative;
    z-index: 1101
}
.topbar .container-xl {
    display: flex;
    align-items: center;
    justify-content: space-between
}
.tb-left {
    display: flex;
    align-items: center;
    gap: 18px
}
.tb-right {
    display: flex;
    align-items: center;
    gap: 14px
}
.topbar a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 5px
}
.topbar a:hover { color: var(--gold) }
.tb-right a { font-size: .95rem }
.tb-sep {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.2)
}
.topbar span:not(.tb-sep) {
    display: inline-flex;
    align-items: center;
    gap: 5px
}
@media (max-width: 768px) {
    .tb-left span, .tb-left a:last-of-type { display: none }
    .tb-sep { display: none }
}

/* ===== NAVBAR (HS solda, Oda sağda) ===== */
.nav-wrap {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1100;
    transition: all .45s ease
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 90px;
    transition: height .45s ease
}

.nav-inner > a:first-child {
    display: inline-flex;
    flex: 0 0 auto
}

.nav-wrap.scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    top: 0
}

    .nav-wrap.scrolled .nav-inner {
        height: 74px
    }

.logo-hs {
    height: 45px;
    width: auto;
    transition: height .45s ease
}

.nav-wrap.scrolled .logo-hs {
    height: 48px
}

.nav-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 22px
}

.language-switch {
    position: relative;
    z-index: 2
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(13,31,60,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: var(--text);
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    box-shadow: 0 12px 28px -22px rgba(13,31,60,.28);
    transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease
}

.language-trigger i:first-child {
    color: var(--gold);
    font-size: .95rem
}

.language-trigger i:last-child {
    font-size: .6rem;
    transition: transform .25s ease
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 190px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 50px rgba(13,31,60,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease
}

.language-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 14px
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 6px;
    color: var(--ink);
    text-decoration: none;
    transition: background .2s ease, color .2s ease
}

.language-menu a + a {
    margin-top: 2px
}

.language-menu a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    border-radius: 6px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 900
}

.language-menu a b {
    font-size: .82rem;
    font-weight: 800
}

.language-menu a:hover,
.language-menu a.active {
    background: var(--primary-bg);
    color: var(--primary)
}

.language-menu a.active span {
    background: var(--gold);
    color: #fff
}

.language-switch:hover .language-trigger,
.language-switch:focus-within .language-trigger {
    border-color: rgba(191,148,80,.45);
    transform: translateY(-1px)
}

.language-switch:hover .language-trigger i:last-child,
.language-switch:focus-within .language-trigger i:last-child {
    transform: rotate(180deg)
}

.language-switch:hover .language-menu,
.language-switch:focus-within .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.oda-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 22px;
    border-right: 1px solid rgba(255,255,255,.18)
}

.nav-wrap.scrolled .oda-badge {
    border-color: var(--line)
}

.oda-badge .logo-oda {
    height: 46px;
    width: auto;
    transition: height .45s ease
}

.nav-wrap.scrolled .oda-badge .logo-oda {
    height: 40px
}

.oda-badge .ob-txt {
    line-height: 1.15
}

    .oda-badge .ob-txt b {
        display: block;
        font-size: .72rem;
        color: var(--gold);
        font-weight: 700;
        letter-spacing: .04em
    }

    .oda-badge .ob-txt span {
        font-size: .66rem;
        color:var(--text)
    }

.nav-wrap.scrolled .oda-badge .ob-txt span {
    color: var(--mute)
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0
}

    .nav-links a {
        font-size: .83rem;
        font-weight: 600;
        letter-spacing: .04em;
        color: var(--text);
        position: relative;
        padding: 6px 0;
        white-space: nowrap;
        transition: color .3s
    }

.nav-wrap.scrolled .nav-links a {
    color: var(--text)
}

/* Koyu banner'lı sayfalarda (hakkımızda vb.) nav linkleri beyaz */
.has-dark-banner .nav-links a,
.has-dark-banner .nav-links .nav-dropdown-trigger {
    color: rgba(255,255,255,.8)
}

.has-dark-banner .ob-txt b,
.has-dark-banner .ob-txt span {
    color: rgba(255,255,255,.85)
}

.has-dark-banner .language-trigger {
    color: rgba(255,255,255,.88);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    box-shadow: none
}

.has-dark-banner .nav-wrap.scrolled .ob-txt b,
.has-dark-banner .nav-wrap.scrolled .ob-txt span {
    color: var(--text)
}

.has-dark-banner .nav-wrap.scrolled .language-trigger {
    color: var(--text);
    border-color: rgba(13,31,60,.12);
    background: rgba(255,255,255,.72);
    box-shadow: 0 12px 28px -22px rgba(13,31,60,.28)
}

.has-dark-banner .nav-links a:hover,
.has-dark-banner .nav-links a.active,
.has-dark-banner .nav-links .nav-dropdown-trigger:hover,
.has-dark-banner .nav-dropdown:hover .nav-dropdown-trigger,
.has-dark-banner .nav-dropdown:focus-within .nav-dropdown-trigger {
    color: var(--gold-2)
}

.has-dark-banner .nav-wrap.scrolled .nav-links a,
.has-dark-banner .nav-wrap.scrolled .nav-links .nav-dropdown-trigger {
    color: var(--text)
}

.has-dark-banner .nav-wrap.scrolled .nav-links a:hover,
.has-dark-banner .nav-wrap.scrolled .nav-links a.active,
.has-dark-banner .nav-wrap.scrolled .nav-dropdown:hover .nav-dropdown-trigger,
.has-dark-banner .nav-wrap.scrolled .nav-dropdown:focus-within .nav-dropdown-trigger {
    color: var(--gold)
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .35s ease
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold)
}

.nav-dropdown-trigger.active {
    color: var(--gold)
}

    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%
    }

.nav-dropdown {
    position: relative
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--sans);
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    white-space: nowrap;
    transition: color .3s
}

.nav-dropdown-trigger i {
    font-size: .62rem;
    transition: transform .25s ease
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 245px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(13,31,60,.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%,8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 16px
}

.nav-dropdown-menu li + li {
    border-top: 1px solid rgba(13,31,60,.07)
}

.nav-links .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    color: var(--ink);
    font-size: .8rem;
    letter-spacing: 0;
    border-radius: 6px;
    white-space: normal
}

.nav-links .nav-dropdown-menu a::after {
    display: none
}

.nav-links .nav-dropdown-menu a i {
    width: 18px;
    color: var(--gold-deep);
    font-size: .9rem;
    text-align: center
}

.nav-links .nav-dropdown-menu a:hover {
    color: var(--primary);
    background: var(--primary-bg)
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,0)
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
    color: var(--gold)
}

.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
    transform: rotate(180deg)
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 50px;
    border: 1px solid rgba(191,148,80,.55);
    color: var(--gold);
    font-weight: 700;
    font-size: .85rem;
    transition: all .35s ease
}

    .nav-cta:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
        transform: translateY(-1px)
    }

@media (max-width: 1600px) {
    .nav-inner {
        gap: 14px
    }

    .logo-hs {
        height: 48px
    }

    .nav-wrap.scrolled .logo-hs {
        height: 44px
    }

    .nav-links {
        gap: 18px
    }

    .nav-links a,
    .nav-dropdown-trigger {
        font-size: .78rem;
        letter-spacing: .02em
    }

    .nav-right {
        gap: 12px
    }

    .language-trigger {
        min-height: 38px;
        padding: 0 10px
    }

    .oda-badge {
        gap: 8px;
        padding-right: 12px
    }

    .oda-badge .logo-oda {
        height: 40px
    }

    .oda-badge .ob-txt b {
        font-size: .66rem
    }

    .oda-badge .ob-txt span {
        font-size: .6rem
    }

    .nav-cta {
        padding: 10px 15px;
        font-size: .78rem
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer
}

.nav-wrap.scrolled .nav-toggle {
    color: var(--ink)
}

@media (max-width: 1320px) {
    .nav-inner {
        gap: 16px
    }

    .logo-hs {
        height: 48px
    }

    .nav-wrap.scrolled .logo-hs {
        height: 44px
    }

    .nav-links {
        gap: 18px
    }

    .nav-links a,
    .nav-dropdown-trigger {
        font-size: .78rem
    }

    .nav-right {
        gap: 14px
    }

    .language-trigger {
        min-height: 38px;
        padding: 0 11px
    }

    .oda-badge {
        gap: 8px;
        padding-right: 14px
    }

    .oda-badge .logo-oda {
        height: 40px
    }

    .oda-badge .ob-txt b {
        font-size: .66rem
    }

    .oda-badge .ob-txt span {
        font-size: .6rem
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: .78rem
    }
}

@media (max-width: 1450px) {
    .oda-badge {
        display: none
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ink-deep);
    z-index: 1150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all .45s ease
}

    .mobile-menu.open {
        opacity: 1;
        visibility: visible
    }

    .mobile-menu a {
        font-family: var(--serif);
        font-size: 1.6rem;
        color: #fff
    }

        .mobile-menu a:hover {
            color: var(--gold)
        }

    .mobile-menu .close {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2rem;
        color: var(--gold);
        background: none;
        border: none
    }

    .mobile-menu .mm-oda {
        margin-top: 14px;
        height: 64px;
        opacity: .85
    }

/* ===== HERO — split card ===== */
.hero {
    background: var(--primary-bg);
    color: var(--text);
    overflow: hidden;
    padding: 140px 0 72px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items: center;
    min-height: unset
}

/* ---- Sol: resim kartı ---- */
.hero-img-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.hero-img-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--ink-soft);
    /*box-shadow: 0 40px 80px -20px rgba(0,0,0,.55)*/
}

#owl-carouselslide {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

#owl-carouselslide:active {
    cursor: grabbing;
}

.hero-img-card .slide-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease
}

.hero-img-card .slide-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%
}

.hero-img-card .slide-img.active {
    opacity: 1
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

/* Resim üstü küçük badge */
.hero-img-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(26,92,184,.18);
    border-radius: 50px;
    padding: 7px 16px 7px 10px;
    box-shadow: 0 4px 16px rgba(13,31,60,.14)
}

.hero-img-badge img {
    height: 22px;
    width: auto
}

.hero-img-badge span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary)
}
.hero-thumbs-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--primary-line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 4px 20px rgba(26,92,184,.08);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(26,92,184,.45) transparent;
    -webkit-overflow-scrolling: touch;
}

.hero-thumbs-row::-webkit-scrollbar {
    height: 6px;
}

.hero-thumbs-row::-webkit-scrollbar-track {
    background: transparent;
}

.hero-thumbs-row::-webkit-scrollbar-thumb {
    background: rgba(26,92,184,.35);
    border-radius: 999px;
}

.hero-thumb {
    flex: 0 0 calc((100% - 48px) / 4);
    height: 78px;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    opacity: .55;
    transition: all .35s ease;
    scroll-snap-align: start;
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-thumb.active {
    opacity: 1;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(26,92,184,.22);
}

.hero-thumb:hover {
    opacity: 1;
}
/* İstatistik satırı kart altında */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid var(--primary-line);
    border-radius: 18px;
    padding: 18px 28px;
    box-shadow: 0 4px 20px rgba(26,92,184,.08)
}

.hsr-item {
    flex: 1;
    text-align: center
}

.hsr-item b {
    display: block;
    font-family: var(--serif);
    font-size: 1.65rem;
    color: var(--primary);
    line-height: 1
}

.hsr-item span {
    font-size: .72rem;
    color: var(--mute);
    letter-spacing: .05em;
    margin-top: 5px;
    display: block;
    text-transform: uppercase
}

.hsr-sep {
    width: 1px;
    height: 40px;
    background: var(--line);
    flex: 0 0 auto
}

/* ---- Sağ: metin ---- */
.hero-text {
    padding: 25px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(26,92,184,.08);
    border: 1px solid rgba(26,92,184,.22);
    border-radius: 50px;
    padding: 7px 18px;
    margin-bottom: 28px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary)
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin: 0 0 22px;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    min-height: 2.2em
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold)
    }

.hl {
    position: relative;
    display: inline-block
}

    .hl svg {
        position: absolute;
        left: -3%;
        bottom: -12px;
        width: 106%;
        height: 18px;
        overflow: visible
    }

        .hl svg path {
            fill: none;
            stroke: var(--gold);
            stroke-width: 5;
            stroke-linecap: round;
            stroke-dasharray: 600;
            stroke-dashoffset: 600
        }

.hero p.lead-txt {
    font-size: 1rem;
    color: var(--mute);
    max-width: 460px;
    margin: 0 0 36px;
    line-height: 1.75;
    min-height: 5.25em
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.hero-news-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 22px 0 0;
    padding: 5px;
    border: 1px solid rgba(13,31,60,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 16px 40px rgba(13,31,60,.07)
}

.hero-news-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--text);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s ease
}

.hero-news-actions a i {
    color: var(--gold-deep);
    font-size: .95rem
}

.hero-news-actions a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px)
}

.hero-news-actions a:hover i {
    color: #fff
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 28px;
    border-radius: 50px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 14px 30px -12px rgba(191,148,80,.6)
}

    .btn-gold:hover {
        background: var(--gold-2);
        transform: translateY(-3px);
        box-shadow: 0 20px 38px -12px rgba(191,148,80,.7);
        color: var(--ink)
    }

    .btn-gold i { transition: transform .4s }
    .btn-gold:hover i { transform: translateX(4px) }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(13,31,60,.22);
    color: var(--ink);
    font-weight: 600;
    font-size: .92rem;
    transition: all .4s ease;
    background: transparent
}

.btn-compact {
    padding: 12px 20px;
    gap: 9px;
    font-size: .84rem
}

    .btn-ghost:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-bg);
        transform: translateY(-3px)
    }

/* Koyu arka plan üzerinde ghost buton (cta-strip vb.) */
.cta-strip .btn-ghost {
    border-color: rgba(255,255,255,.35);
    color: #fff
}

.cta-strip .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    color: #fff
}

/* ---- Alt navigasyon: dots sol + oklar sağ ---- */
.hero-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.slider-dots {
    display: flex;
    gap: 10px
}

    .slider-dots button {
        width: 28px;
        height: 4px;
        border-radius: 4px;
        border: none;
        background: rgba(13,31,60,.18);
        cursor: pointer;
        transition: all .4s;
        padding: 0
    }

        .slider-dots button.active {
            background: var(--gold);
            width: 44px
        }

.hero-arrows {
    display: flex;
    gap: 10px
}

.hero-arrows-mobile {
    display: none
}

.har {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--mute);
    font-size: 1rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 2px 10px rgba(13,31,60,.08)
}

.har:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg)
}

.har.har-next {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

.har.har-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08)
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--ink);
    color: rgba(255,255,255,.8);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(26,92,184,.18);
    border-bottom: 1px solid rgba(26,92,184,.18)
}

    .marquee.light {
        background: var(--primary-bg);
        color: var(--ink);
        border-color: var(--primary-line)
    }

    .marquee .track {
        display: inline-flex;
        align-items: center;
        will-change: transform;
        animation: marq 32s linear infinite
    }

    .marquee.reverse .track {
        animation-direction: reverse;
        animation-duration: 38s
    }

    .marquee .track span {
        font-family: var(--serif);
        font-size: 1.5rem;
        font-style: italic;
        padding: 0 8px
    }

    .marquee .track i {
        color: var(--gold);
        font-size: .7rem;
        padding: 0 26px;
        font-style: normal
    }

    .marquee:hover .track {
        animation-play-state: paused
    }

@keyframes marq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== GENEL BÖLÜM ===== */
/* ===== Page Banner (iç sayfa üst başlık) ===== */
.page-banner {
    background: var(--ink-deep);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(26,92,184,.25) 0%, transparent 70%);
    pointer-events: none
}

.pb-inner {
    position: relative;
    z-index: 1
}

.page-banner .eyebrow { color: var(--gold-2) }
.page-banner .eyebrow::before { background: var(--gold-2) }

.page-banner .display {
    color: #fff;
    margin: 16px 0 20px
}

.page-banner .display em { color: var(--gold-2) }

.pb-sub {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
    margin: 0
}

/* ===== İletişim Sayfası ===== */

/* Ana kart — split layout */
.contact-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 60px rgba(13,31,60,.13);
}

/* Sol: koyu bilgi paneli */
.contact-panel {
    background: var(--ink);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.contact-panel .cp-top { position: relative; z-index: 1; }
.cp-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    border: 1px solid rgba(191,148,80,.35);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 20px;
}
.contact-panel h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
}
.contact-panel h2 em { color: var(--gold); font-style: italic; }
.contact-panel p {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 36px;
}

.cp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.cp-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.cp-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.cp-list li div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}
.cp-list li b {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    font-weight: 600;
}
.cp-list li span,
.cp-list li a {
    font-size: 14px;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
}
.cp-list li a:hover { color: var(--gold); }

.cp-socials {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}
.cp-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s, border-color .2s;
    text-decoration: none;
}
.cp-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Dekoratif daire — sol alt */
.cp-deco {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,92,184,.35) 0%, transparent 70%);
    pointer-events: none;
}

/* Sağ: Form alanı */
.contact-form-wrap {
    background: #fff;
    padding: 48px 44px;
}
.cf-head {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.cf-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
}
.cf-head p {
    font-size: 14px;
    color: var(--mute);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cf-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.cf-group label .req { color: var(--primary); }

/* Input sarıcı — ikon + alan */
.cf-input-wrap {
    position: relative;
}
.cf-input-wrap > i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mute);
    font-size: 15px;
    pointer-events: none;
}
.cf-input-wrap input,
.cf-input-wrap select {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--ink);
    background: var(--surface);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.cf-select-wrap::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mute);
    font-size: 13px;
    pointer-events: none;
}
.cf-input-wrap input:focus,
.cf-input-wrap select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,92,184,.1);
    background: #fff;
}
.cf-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--ink);
    background: var(--surface);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    font-family: inherit;
    resize: vertical;
    min-height: 110px;
    box-sizing: border-box;
}
.cf-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,92,184,.1);
    background: #fff;
}

.cf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.cf-note {
    font-size: 13px;
    color: var(--mute);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cf-note i { color: #27ae60; font-size: 15px; }
.cf-submit {
    padding: 12px 28px;
    font-size: 14px;
}
.cf-feedback {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}
.cf-feedback.cf-ok {
    background: #e9f7ef;
    color: #1a7f45;
    border: 1px solid #a3d9b7;
}
.cf-feedback.cf-err {
    background: #fef0f0;
    color: #c0392b;
    border: 1px solid #f5b7b1;
}

/* Harita */
.map-section { line-height: 0; }
.map-section iframe {
    display: block;
    width: 100%;
    height: 420px;
}

@media (max-width: 960px) {
    .contact-card { grid-template-columns: 1fr; }
    .contact-panel { padding: 36px 28px; }
    .contact-form-wrap { padding: 36px 28px; }
}
@media (max-width: 640px) {
    .cf-row { grid-template-columns: 1fr; }
    .cf-footer { flex-direction: column; align-items: flex-start; }
}

/* ===== CTA Strip ===== */
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--ink-deep);
    border-radius: 20px;
    padding: 56px 60px;
    position: relative;
    overflow: hidden
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 120% at 80% 50%, rgba(26,92,184,.35) 0%, transparent 70%);
    pointer-events: none
}

.cta-strip-text { position: relative; z-index: 1 }

.cta-strip-text .eyebrow { color: var(--gold-2) }
.cta-strip-text .eyebrow::before { background: var(--gold-2) }

.cta-strip-text .display {
    color: #fff;
    margin: 14px 0 12px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem)
}

.cta-strip-text .display em { color: var(--gold-2) }

.cta-strip-text p {
    color: rgba(255,255,255,.6);
    margin: 0;
    max-width: 480px
}

.cta-strip-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 36px 28px;
        border-radius: 16px;
    }
    .cta-strip-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-strip-actions .btn-gold,
    .cta-strip-actions .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.section {
    padding: 120px 0;
    position: relative
}

    .section.alt {
        background: var(--paper-2)
    }

.sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px
}

    .sec-head .eyebrow {
        margin-bottom: 20px
    }

    .sec-head h2 {
        font-size: clamp(2rem,3.6vw,3.1rem);
        margin: 0
    }

.sec-lead {
    color: var(--mute);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: 16px
}

/* ===== HAKKIMDA ===== */
/* ===== HAKKIMDA ===== */
.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: start
}

/* ---- Sol: fotoğraf paneli ---- */
.about-media {
    position: relative
}

.ab-photo-wrap {
    position: relative;
    border-radius: 22px;
    overflow: visible
}

.ab-photo {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--ink-soft), var(--ink-deep));
    box-shadow: 0 32px 64px -20px rgba(13,31,60,.3)
}

    .ab-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.ab-exp-badge {
    position: absolute;
    top: 28px;
    right: -22px;
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(13,31,60,.35);
    border: 1px solid rgba(191,148,80,.4)
}

    .ab-exp-badge b {
        font-family: var(--serif);
        font-size: 2.2rem;
        color: var(--gold-2);
        line-height: 1;
        display: block
    }

    .ab-exp-badge span {
        font-size: .7rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
        margin-top: 4px;
        display: block
    }

.ab-stats-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(13,31,60,.07)
}

.ab-stat {
    flex: 1;
    text-align: center
}

    .ab-stat b {
        display: block;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.1
    }

    .ab-stat span {
        font-size: .72rem;
        color: var(--mute);
        margin-top: 3px;
        display: block
    }

.ab-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--line)
}

/* ---- Sağ: metin paneli ---- */
.about-text h2 {
    font-size: clamp(1.9rem,3vw,2.6rem);
    margin: 18px 0 22px
}

.about-text > p {
    color: var(--mute);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.75
}

.ab-features {
    display: grid;
    gap: 14px;
    margin-bottom: 36px
}

.ab-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-line);
    border-radius: 14px;
    padding: 18px 20px;
    transition: box-shadow .3s, transform .3s
}

    .ab-feat:hover {
        box-shadow: 0 8px 28px rgba(26,92,184,.1);
        transform: translateX(4px)
    }

.ab-feat-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.ab-feat div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

    .ab-feat div b {
        font-size: .9rem;
        font-weight: 700;
        color: var(--ink)
    }

    .ab-feat div span {
        font-size: .82rem;
        color: var(--mute);
        line-height: 1.5
    }

/* ab-features içine CKEditor'dan gelen <blockquote> ile aynı kart görünümü */
.ab-features blockquote {
    position: relative;
    background: var(--primary-bg);
    border: 1px solid var(--primary-line);
    border-left: none;
    border-radius: 14px;
    padding: 18px 20px 18px 74px;
    min-height: 78px;
    margin: 0;
    font-size: .82rem;
    color: var(--mute);
    line-height: 1.5;
    transition: box-shadow .3s, transform .3s
}

.ab-features blockquote::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    display: grid;
    place-items: center
}

.ab-features blockquote:hover {
    box-shadow: 0 8px 28px rgba(26,92,184,.1);
    transform: translateX(4px)
}

.ab-features blockquote b,
.ab-features blockquote strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.ab-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--line)
}

.signature {
    display: flex;
    align-items: center;
    gap: 16px
}

    .signature .sg-name {
        font-family: var(--serif);
        font-style: italic;
        font-size: 1.45rem;
        color: var(--ink)
    }

    .signature .sg-role {
        font-size: .75rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 700;
        margin-top: 4px
    }

/* ===== SERTİFİKALAR ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.cert-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 28px;
    text-align: center;
    transition: all .45s
}

    .cert-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
        border-color: transparent
    }

.cert-ico {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 2rem;
    transition: all .45s
}

.cert-card:hover .cert-ico {
    background: var(--primary);
    color: #fff
}

.cert-ico img {
    height: 54px;
    width: auto
}

.cert-card h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0 0 6px;
    font-weight: 500
}

.cert-card .ct-sub {
    font-size: .82rem;
    color: var(--mute)
}

.cert-card .ct-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: .76rem;
    color: var(--gold-deep);
    font-weight: 600
}

/* ===== HİZMETLER (numaralı + foto) ===== */
.svc-wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    align-items: center
}

.svc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 30px
}

.svc-item {
    display: flex;
    gap: 18px
}

    .svc-item .num {
        flex: 0 0 auto;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 1px solid var(--primary-line);
        background: var(--primary-bg);
        display: grid;
        place-items: center;
        font-family: var(--serif);
        font-size: 1.2rem;
        color: var(--primary);
        font-weight: 600;
        transition: all .4s
    }

    .svc-item:hover .num {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        transform: rotate(-6deg)
    }

    .svc-item h4 {
        font-family: var(--serif);
        font-size: 1.22rem;
        color: var(--ink);
        margin: 6px 0 8px;
        font-weight: 500
    }

    .svc-item p {
        font-size: .9rem;
        color: var(--mute);
        margin: 0
    }

.svc-photo {
    position: relative
}

    .svc-photo .ph {
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 3/3.6;
        box-shadow: var(--shadow);
        background: linear-gradient(135deg,var(--ink-soft),var(--ink-deep))
    }

        .svc-photo .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

    .svc-photo .ph-accent {
        position: absolute;
        right: -18px;
        top: -18px;
        width: 90px;
        height: 90px;
        background: var(--gold);
        border-radius: 18px;
        z-index: -1
    }

    .svc-photo .ph-quote {
        position: absolute;
        left: -24px;
        bottom: 34px;
        background: #fff;
        border-radius: 14px;
        padding: 16px 20px;
        box-shadow: var(--shadow);
        max-width: 230px;
        display: flex;
        gap: 12px;
        align-items: flex-start
    }

        .svc-photo .ph-quote i {
            color: var(--gold);
            font-size: 1.3rem;
            flex: 0 0 auto
        }

        .svc-photo .ph-quote span {
            font-size: .84rem;
            color: var(--ink);
            font-weight: 500;
            line-height: 1.45
        }

/* ===== YAZILIM & ARAÇLAR ===== */
.soft-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px
}

.soft-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 14px;
    text-align: center;
    transition: all .4s
}

    .soft-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-sm);
        border-color: var(--gold)
    }

    .soft-card i {
        font-size: 1.9rem;
        color: var(--ink);
        transition: color .4s
    }

    .soft-card:hover i {
        color: var(--gold)
    }

    .soft-card b {
        display: block;
        margin-top: 12px;
        font-size: .9rem;
        color: var(--ink);
        font-family: var(--serif);
        font-weight: 500
    }

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

    .stats::before {
        content: "";
        position: absolute;
        left: -8%;
        top: -40%;
        width: 45%;
        height: 160%;
        background: radial-gradient(circle,rgba(255,255,255,.08),transparent 60%)
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    position: relative
}

.stat {
    position: relative;
    padding-left: 26px
}

    .stat::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: var(--gold);
        opacity: .5
    }

    .stat .num {
        font-family: var(--serif);
        font-size: clamp(2.6rem,4.5vw,3.6rem);
        color: var(--gold-2);
        line-height: 1;
        display: flex;
        align-items: baseline
    }

        .stat .num .suf {
            font-size: 1.6rem;
            margin-left: 4px
        }

    .stat .lbl {
        font-size: .92rem;
        color: rgba(255,255,255,.7);
        margin-top: 12px
    }

/* ===== DENEYİM & EĞİTİM ===== */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px
}

.exp-col h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 12px
}

    .exp-col h3 i {
        color: var(--gold)
    }

.tl {
    position: relative;
    padding-left: 30px
}

    .tl::before {
        content: "";
        position: absolute;
        left: 6px;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: var(--line)
    }

.tl-item {
    position: relative;
    margin-bottom: 30px
}

    .tl-item:last-child {
        margin-bottom: 0
    }

    .tl-item::before {
        content: "";
        position: absolute;
        left: -27px;
        top: 5px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--gold)
    }

.tl-date {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--gold-deep);
    background: rgba(191,148,80,.12);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px
}

.tl-item h5 {
    font-family: var(--serif);
    font-size: 1.12rem;
    color: var(--ink);
    margin: 0 0 3px;
    font-weight: 500
}

.tl-item .tl-org {
    font-size: .86rem;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 6px
}

.tl-item p {
    font-size: .9rem;
    color: var(--mute);
    margin: 0
}

/* ===== REFERANSLAR ===== */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 60px
}

/* ===== REFERANS MÜŞTERİ GRİDİ ===== */
.ref-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 56px;
    margin-bottom: 0;
    padding-top: 48px;
    border-top: 1px solid var(--line)
}

.rcl-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    transition: all .3s ease
}

.rcl-logo {
    display: block;
    width: 54px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0
}

    .rcl-item:hover {
        border-color: var(--primary-line);
        box-shadow: 0 8px 32px rgba(26,92,184,.1);
        transform: translateY(-2px)
    }

.rcl-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0
}

.rcl-more .rcl-ico.rcl-plus {
    background: var(--ink);
    color: #fff
}

.rcl-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

    .rcl-info b {
        font-size: .85rem;
        font-weight: 700;
        color: var(--ink);
        line-height: 1.2
    }

    .rcl-info span {
        font-size: .72rem;
        color: var(--mute)
    }

.rcl-detail {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: .72rem;
    line-height: 1.35;
    color: var(--mute)
}

.rcl-detail p {
    margin: 0
}

.ref-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center
}

.rs-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-line);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 600
}

@media (max-width:1024px) {
    .ref-clients-grid { grid-template-columns: repeat(3, 1fr) }
}

@media (max-width:640px) {
    .ref-clients-grid { grid-template-columns: repeat(2, 1fr) }
    .rcl-item { padding: 14px }
}

/* ===== REFERANS YORUMLARI ===== */
.ref-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 32px;
    transition: all .45s
}

    .ref-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-sm)
    }

    .ref-card .quote {
        font-size: 2.4rem;
        font-family: var(--serif);
        color: var(--gold);
        line-height: .6;
        opacity: .6
    }

.ref-stars {
    color: var(--gold);
    font-size: .95rem;
    margin: 14px 0 16px;
    letter-spacing: 2px
}

.ref-card p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.04rem;
    color: var(--ink);
    line-height: 1.6;
    margin: 0 0 26px
}

.ref-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line)
}

    .ref-person .av {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--ink);
        color: var(--gold);
        display: grid;
        place-items: center;
        font-family: var(--serif);
        font-weight: 600;
        flex: 0 0 auto
    }

    .ref-person b {
        display: block;
        color: var(--ink);
        font-size: .96rem
    }

    .ref-person span {
        font-size: .82rem;
        color: var(--mute)
    }

.clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 50px
}

    .clients .cl {
        font-family: var(--serif);
        font-size: 1.3rem;
        color: var(--ink);
        font-weight: 500;
        opacity: .5;
        transition: all .4s
    }

        .clients .cl:hover {
            opacity: 1;
            color: var(--gold)
        }

/* ===== SSS (akordeon) ===== */
.faq-layout {
    grid-template-columns: 1.15fr .85fr;
    align-items: start
}

.faq-col .eyebrow {
    margin-bottom: 20px
}

.faq-col .display {
    margin-bottom: 18px
}

.faq-intro {
    color: var(--mute);
    font-size: .95rem;
    margin-bottom: 36px
}

.faq-wrap {
    margin: 0
}

.faq {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow .35s
}

    .faq.open {
        box-shadow: var(--shadow-sm)
    }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 500
}

    .faq-q .ic {
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--primary-line);
        background: var(--primary-bg);
        color: var(--primary);
        display: grid;
        place-items: center;
        transition: all .4s;
        font-size: 1.1rem
    }

.faq.open .faq-q .ic {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: rotate(45deg)
}

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

    .faq-a p {
        padding: 0 26px 24px;
        margin: 0;
        color: var(--mute);
        font-size: .95rem
    }

.faq-answer {
    padding: 0 26px 24px;
    color: var(--mute);
    font-size: .95rem
}

.faq-answer p {
    padding: 0;
    margin: 0 0 10px
}

.faq-answer p:last-child {
    margin-bottom: 0
}

/* ===== İLETİŞİM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff
}

.contact-info {
    background: var(--ink);
    color: #fff;
    padding: 60px 50px;
    position: relative;
    overflow: hidden
}

    .contact-info::after {
        content: "";
        position: absolute;
        right: -30%;
        bottom: -30%;
        width: 80%;
        height: 80%;
        background: radial-gradient(circle,rgba(191,148,80,.14),transparent 65%)
    }

    .contact-info h3 {
        font-family: var(--serif);
        font-size: 1.9rem;
        margin: 18px 0 14px;
        position: relative
    }

    .contact-info > p {
        color: rgba(255,255,255,.7);
        margin-bottom: 36px;
        position: relative
    }

.ci-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative
}

    .ci-row .ic {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255,255,255,.07);
        color: var(--gold);
        display: grid;
        place-items: center;
        font-size: 1.15rem;
        flex: 0 0 auto
    }

    .ci-row .lbl {
        font-size: .72rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 700
    }

    .ci-row .val {
        color: #fff;
        font-weight: 500;
        font-size: .96rem
    }

.ci-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    position: relative
}

    .ci-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.18);
        display: grid;
        place-items: center;
        color: #fff;
        transition: all .35s
    }

        .ci-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--ink);
            transform: translateY(-3px)
        }

.contact-form {
    padding: 56px 50px
}

    .contact-form h3 {
        font-family: var(--serif);
        font-size: 1.7rem;
        color: var(--ink);
        margin: 0 0 8px
    }

    .contact-form .fp {
        color: var(--mute);
        font-size: .92rem;
        margin-bottom: 26px
    }

.fld {
    margin-bottom: 18px
}

    .fld label {
        display: block;
        font-size: .8rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 8px
    }

    .fld input, .fld select, .fld textarea {
        width: 100%;
        padding: 13px 16px;
        border: 1px solid var(--line);
        border-radius: 11px;
        font-family: var(--sans);
        font-size: .94rem;
        color: var(--text);
        background: var(--paper);
        transition: all .3s
    }

        .fld input:focus, .fld select:focus, .fld textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(191,148,80,.12)
        }

    .fld textarea {
        resize: vertical;
        min-height: 96px
    }

.fld-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.radio-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px
}

.radio-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    cursor: pointer;
    font-size: .86rem;
    color: var(--text);
    transition: all .3s
}

    .radio-opt:hover {
        border-color: var(--gold)
    }

    .radio-opt input {
        accent-color: var(--gold);
        flex: 0 0 auto
    }

    .radio-opt.sel {
        border-color: var(--gold);
        background: rgba(191,148,80,.07)
    }

.kvkk {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: .84rem;
    color: var(--mute)
}

    .kvkk input {
        margin-top: 3px;
        flex: 0 0 auto;
        accent-color: var(--gold)
    }

    .kvkk a {
        color: var(--gold);
        font-weight: 600
    }

.form-ok {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(191,148,80,.12);
    border: 1px solid var(--gold);
    color: var(--ink);
    padding: 14px 18px;
    border-radius: 11px;
    font-weight: 600;
    font-size: .9rem;
    margin-top: 8px
}

    .form-ok.show {
        display: flex
    }

/* ===== CTA BANDI ===== */
.cta-band {
    background: var(--ink);
    padding: 28px 0
}

.cta-layout {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--primary-bg);
    border-radius: 18px;
    padding: 28px 32px;
    border: 1px solid var(--line)
}

.cta-left { flex: 0 0 auto; width: 36% }
.cta-left .eyebrow { color: var(--gold); margin-bottom: 8px }
.cta-left h2 {
    font-family: var(--serif);
    font-size: clamp(1.1rem,1.6vw,1.5rem);
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.25
}
.cta-left h2 em { color: var(--gold-deep); font-style: italic }
.cta-left p { color: var(--mute); font-size: .82rem; margin: 0 }

.cta-right {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: center
}

.cta-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #fff;
    transition: background .25s, border-color .25s, transform .25s
}
.cta-card:hover {
    background: var(--ink-soft);
    border-color: rgba(191,148,80,.4);
    transform: translateY(-3px)
}
.cta-card-ico {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; flex-shrink: 0;
    transition: background .25s, color .25s
}
.cta-card:hover .cta-card-ico { background: var(--gold); color: var(--ink-deep) }
.cta-card-wa .cta-card-ico { background: rgba(37,211,102,.18) }
.cta-card-wa:hover .cta-card-ico { background: #25d366; color: #fff }
.cta-card-body { flex: 1; min-width: 0 }
.cta-card-lbl {
    font-size: .62rem; color: rgba(255,255,255,.4);
    font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 2px
}
.cta-card-val {
    font-size: .85rem; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis
}
.cta-card-sub { font-size: .7rem; color: rgba(255,255,255,.35) }
.cta-card-arr {
    font-size: .9rem; color: rgba(255,255,255,.2);
    transition: transform .25s, color .25s; flex-shrink: 0
}
.cta-card:hover .cta-card-arr { transform: translate(2px,-2px); color: var(--gold) }

.cta-check-list, .cta-actions { display: none }

@media (max-width: 860px) {
    .cta-layout { flex-direction: column; gap: 20px; padding: 24px 20px }
    .cta-left { width: 100% }
    .cta-right { width: 100%; flex-direction: column }
}
@media (max-width: 540px) {
    .cta-right { flex-direction: column }
}

/* ===== FOOTER ===== */
.foot-gold-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent)
}

footer {
    background: var(--ink-deep);
    color: rgba(255,255,255,.55);
 
    position: relative
}
.footer1 {
    padding: 80px 0 0;
}
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 64px;
    position: relative
}

/* Marka kolonu */
.foot-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px
}

.foot-logos .logo-hs { height: 62px }

.foot-logos .sep {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,.13)
}

.foot-logos .logo-oda { height: 58px }

.foot-brand p {
    font-size: .88rem;
    line-height: 1.78;
    max-width: 280px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.5)
}

.foot-social {
    display: flex;
    gap: 9px
}

.foot-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: background .25s, border-color .25s, color .25s, transform .25s
}

.foot-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink-deep);
    transform: translateY(-2px)
}

/* Kolon başlıkları */
footer h5 {
    color: rgba(255,255,255,.92);
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

/* Link listeleri */
.foot-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px
}

.foot-links a {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .22s, padding-left .22s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.foot-links a i {
    color: var(--gold);
    font-size: .62rem;
    transition: transform .22s;
    flex-shrink: 0
}

.foot-links a:hover {
    color: rgba(255,255,255,.9);
    padding-left: 4px
}

.foot-links a:hover i { transform: translateX(3px) }

/* İletişim kolonu */
.foot-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px
}

.foot-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: .87rem;
    line-height: 1.6;
    color: rgba(255,255,255,.5)
}

.fci {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(191,148,80,.13);
    border: 1px solid rgba(191,148,80,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px
}

.foot-contact-list a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .22s
}

.foot-contact-list a:hover { color: var(--gold) }

/* Alt bar */
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative
}

.foot-bottom p {
    margin: 0;
    font-size: .82rem;
    color: rgba(255,255,255,.32)
}

.fb-links {
    display: flex;
    gap: 20px
}

.fb-links a {
    font-size: .82rem;
    color: rgba(255,255,255,.32);
    text-decoration: none;
    transition: color .22s
}

.fb-links a:hover { color: var(--gold) }

@media (max-width: 1100px) {
    .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .foot-contact { grid-column: 1 / -1 }
    .foot-contact-list { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 680px) {
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px }
    .foot-brand { grid-column: 1 / -1 }
    .foot-contact { grid-column: 1 / -1 }
    .foot-contact-list { grid-template-columns: 1fr 1fr }
}

@media (max-width: 440px) {
    .foot-grid { grid-template-columns: 1fr }
    .foot-contact-list { grid-template-columns: 1fr }
}

.floating-whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 10px 24px rgba(37,211,102,.32);
    animation: whatsappFloat 2.4s ease-in-out infinite;
    transition: bottom .4s ease, background .25s ease
}

.floating-whatsapp.with-to-top {
    bottom: 86px
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(37,211,102,.5);
    border-radius: 50%;
    animation: whatsappPulse 2.4s ease-out infinite
}

.floating-whatsapp:hover {
    color: #fff;
    background: #1fbd59
}

@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-6px) }
}

@keyframes whatsappPulse {
    0% { transform: scale(.9); opacity: .8 }
    70%, 100% { transform: scale(1.25); opacity: 0 }
}

#toTop {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    border: 1px solid rgba(191,148,80,.4);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .4s;
    z-index: 1000;
    box-shadow: var(--shadow-sm)
}

    #toTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    #toTop:hover {
        background: var(--gold);
        color: var(--ink)
    }

[data-reveal] {
    opacity: 0;
    transform: translate3d(0,34px,0);
    transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0,0,0)
}

[data-reveal="left"] {
    transform: translate3d(-34px,0,0)
}

[data-reveal="right"] {
    transform: translate3d(34px,0,0)
}

[data-reveal="zoom"] {
    transform: translate3d(0,20px,0) scale(.96)
}

@media (max-width:1100px) {
    .hero-grid {
        gap: 40px
    }

    .cert-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .ref-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .soft-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .svc-wrap {
        gap: 44px
    }
}

@media (max-width:900px) {
    .nav-links, .nav-cta, .oda-badge {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .hero {
        padding: 130px 0 48px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hero-img-card {
        aspect-ratio: 16/9
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .about-media {
        max-width: 480px;
        margin: 0 auto
    }

    .ab-exp-badge {
        right: 0 !important
    }

    .ab-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .svc-wrap {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .svc-photo {
        max-width: 380px;
        margin: 0 auto
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 36px
    }

    .exp-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:600px) {
    .container-xl {
        padding: 0 18px
    }

    .section {
        padding: 78px 0
    }

    .cert-grid, .ref-grid, .soft-grid {
        grid-template-columns: 1fr 1fr
    }

    .svc-list {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .radio-opts, .fld-2 {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .contact-info, .contact-form {
        padding: 40px 26px
    }

    .hero-mini {
        gap: 24px
    }

    .foot-bottom {
        flex-direction: column;
        text-align: center
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto
    }

    .hl svg path {
        stroke-dashoffset: 0
    }
}

/* ===== Güven şeridi (özellikler) ===== */
.trust {
    background: var(--paper);
    position: relative;
    z-index: 3;
    padding-top: 56px;
    padding-bottom: 56px
}

@keyframes trustSlideUp {
    from { opacity: 0; transform: translateY(28px) }
    to   { opacity: 1; transform: translateY(0) }
}


.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.trust-item {
    padding: 42px 34px;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: background .4s, box-shadow .35s, transform .35s, border-color .35s
}

    .trust-item.ti-visible {
        animation: trustSlideUp .55s cubic-bezier(.22,.68,0,1.2) forwards
    }

    .trust-item.ti-visible:nth-child(1) { animation-delay: .05s }
    .trust-item.ti-visible:nth-child(2) { animation-delay: .15s }
    .trust-item.ti-visible:nth-child(3) { animation-delay: .25s }
    .trust-item.ti-visible:nth-child(4) { animation-delay: .35s }

    .trust-item:last-child {
        border-right: none
    }

    .trust-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(26,92,184,.045) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .4s
    }

    .trust-item:hover {
        background: #fff;
        box-shadow: 0 12px 40px -12px rgba(26,92,184,.18);
        transform: translateY(-4px);
        border-color: var(--primary-line)
    }

    .trust-item:hover::before {
        opacity: 1
    }

    .trust-item .ti-ico {
        font-size: 1.9rem;
        color: var(--primary);
        margin-bottom: 18px;
        display: block;
        transition: color .3s
    }


    .trust-item h4 {
        font-family: var(--serif);
        font-size: 1.22rem;
        color: var(--ink);
        margin: 0 0 10px;
        font-weight: 500;
        transition: color .3s
    }

    .trust-item:hover h4 {
        color: var(--primary)
    }

    .trust-item p {
        font-size: .9rem;
        color: var(--mute);
        margin: 0
    }

/* ===== HİZMETLER ===== */
/* ===== HİZMETLER ===== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}
 
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.svc-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px 34px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
    position:relative;
    color: inherit;
    text-decoration: none;
}

.svc-card:hover {
    color: inherit;
    text-decoration: none;
}

    .svc-card::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: var(--gold);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .4s cubic-bezier(.2,.8,.2,1)
    }

    .svc-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px -16px rgba(191,148,80,.2);
        border-color: rgba(191,148,80,.3)
    }

    .svc-card:hover::after { transform: scaleY(1) }

.svc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.svc-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: -.02em;
    opacity: .2;
    transition: opacity .35s
}

.svc-card:hover .svc-num { opacity: .6 }

.svc-ico {
    font-size: 2rem;
    color: var(--ink);
    transition: color .35s, transform .35s
}

.svc-card:hover .svc-ico {
    color: var(--gold);
    transform: translateY(-4px)
}

.svc-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--ink);
    margin: 0 0 12px;
    font-weight: 500;
    transition: color .3s
}

.svc-card:hover h3 { color: var(--ink) }

.svc-card p {
    color: var(--mute);
    font-size: .92rem;
    line-height: 1.7;
    margin: 0 0 24px
}

/* Alt kategori listesi (hizmetler sayfası) */
.svc-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.svc-sub-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--mute)
}

.svc-sub-ico {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0
}

.svc-more {
    font-size: .82rem;
    font-weight: 700;
    color: var(--mute);
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .35s, color .35s
}

.svc-card:hover .svc-more {
    color: var(--gold);
    gap: 14px
}

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

@media (max-width: 560px) {
    .svc-grid { grid-template-columns: 1fr }
}

/* ===== HİZMET DETAY ===== */
.service-detail-banner .pb-inner {
    max-width: 860px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.service-detail-main,
.service-side-card,
.service-side-cta {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(13,31,60,.06);
}

.service-detail-main {
    overflow: hidden;
}

.service-detail-media {
    position: relative;
    min-height: 340px;
    background: var(--paper-2);
    overflow: hidden;
}

.service-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.service-detail-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,31,60,0) 40%, rgba(13,31,60,.55) 100%);
}

.service-detail-icon {
    position: absolute;
    left: 28px;
    bottom: 26px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    color: var(--gold-deep);
    box-shadow: 0 18px 38px rgba(13,31,60,.18);
}

.service-detail-icon svg,
.service-detail-icon i {
   /* width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;*/
    font-size: 34px;
}

.service-detail-content {
    padding: 42px 46px 48px;
}

.service-detail-content h2 {
    margin: 12px 0 18px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
}

.service-rich-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
}

.service-rich-text p,
.service-detail-content p {
    margin: 0 0 18px;
}

.service-rich-text ul,
.service-rich-text ol {
    margin: 20px 0;
    padding-left: 22px;
}

.service-rich-text li {
    margin: 8px 0;
}

.service-rich-text h1,
.service-rich-text h2,
.service-rich-text h3,
.service-rich-text h4 {
    margin: 30px 0 14px;
    color: var(--ink);
    font-family: var(--serif);
}

.service-detail-side {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.service-side-card {
    padding: 24px;
}

.service-side-card h3 {
    margin: 0 0 16px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.service-side-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-side-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 650;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.service-side-card a:hover,
.service-side-card a.active {
    border-color: rgba(191,148,80,.28);
    background: var(--primary-bg);
    color: var(--primary);
}

.service-side-card a i {
    flex-shrink: 0;
    color: var(--gold-deep);
    font-size: .78rem;
}

.service-side-cta {
    padding: 26px;
    background: var(--ink-deep);
    color: #fff;
}

.service-side-cta span {
    display: block;
    color: var(--gold-2);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-side-cta p {
    margin: 12px 0 20px;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .service-detail-content {
        padding: 30px 24px 34px;
    }

    .service-detail-media,
    .service-detail-media img {
        min-height: 240px;
    }

    .service-detail-icon {
        left: 18px;
        bottom: 18px;
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }

    .service-detail-icon svg,
    .service-detail-icon i {
       /* width: 25px;
        height: 25px;
        max-width: 25px;
        max-height: 25px;*/
        font-size: 25px;
    }
}

/* ===== HABERLER / DUYURULAR ===== */
.news-banner .pb-inner,
.news-detail-banner .pb-inner {
    max-width: 900px;
}

.news-tabs {
    display: inline-flex;
    position: relative;
    gap: 4px;
    margin-bottom: 34px;
    padding: 5px;
    border: 1px solid rgba(13,31,60,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 45px rgba(13,31,60,.08);
    backdrop-filter: blur(10px);
}

.news-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    color: var(--mute);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .01em;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.news-tabs a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.news-tabs a.active {
    background: var(--ink-deep);
    color: #fff;
    box-shadow: 0 10px 24px rgba(13,31,60,.18);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 48px rgba(13,31,60,.06);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}

.news-card:hover {
    border-color: rgba(191,148,80,.34);
    color: inherit;
    text-decoration: none;
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(13,31,60,.12);
}

.news-card-img {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-2);
}

.news-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.04);
}

.news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--mute);
    font-size: .78rem;
    font-weight: 700;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    color: var(--gold-deep);
}

.news-type {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--primary-bg);
    color: var(--primary);
}

.news-card strong {
    margin-bottom: 12px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.3;
}

.news-summary {
    display: block;
    color: var(--mute);
    font-size: .92rem;
    line-height: 1.7;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--gold-deep);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    transition: gap .25s ease;
}

.news-card:hover .news-more {
    gap: 14px;
}

.news-empty {
    max-width: 560px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 18px 48px rgba(13,31,60,.06);
}

.news-empty i {
    color: var(--gold-deep);
    font-size: 2.1rem;
}

.news-empty h2 {
    margin: 16px 0 8px;
    color: var(--ink);
    font-family: var(--serif);
}

.news-empty p {
    margin: 0;
    color: var(--mute);
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.news-detail-main,
.news-side-card,
.news-side-cta {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(13,31,60,.06);
}

.news-detail-main {
    overflow: hidden;
}

.news-detail-image {
    overflow: hidden;
    background: var(--paper-2);
}

.news-detail-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.news-detail-content {
    padding: 42px 46px 48px;
}

.news-detail-meta {
    margin-bottom: 24px;
}

.news-rich-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
}

.news-rich-text p {
    margin: 0 0 18px;
}

.news-rich-text ul,
.news-rich-text ol {
    margin: 20px 0;
    padding-left: 22px;
}

.news-rich-text li {
    margin: 8px 0;
}

.news-rich-text h1,
.news-rich-text h2,
.news-rich-text h3,
.news-rich-text h4 {
    margin: 30px 0 14px;
    color: var(--ink);
    font-family: var(--serif);
}

.news-detail-side {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.news-side-card {
    padding: 24px;
}

.news-side-card h3 {
    margin: 0 0 16px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.news-side-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-side-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 8px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 650;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.news-side-card a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.news-side-card a i {
    flex-shrink: 0;
    color: var(--gold-deep);
    font-size: .78rem;
}

.news-side-card p {
    margin: 0;
    color: var(--mute);
}

.news-side-cta {
    padding: 26px;
    background: var(--ink-deep);
    color: #fff;
}

.news-side-cta span {
    display: block;
    color: var(--gold-2);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-side-cta p {
    margin: 12px 0 20px;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-detail-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .news-tabs {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
    }

    .news-tabs a {
        justify-content: center;
        min-width: 0;
        border-radius: 12px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-content {
        padding: 30px 24px 34px;
    }

}
