/* ============================================================
   Meski Personel A.Ş. — style.css
   #0C3291 | #3EB0DB | #6F7070
   Font: Poppins
   ============================================================ */
:root {
    --pri: #0C3291;
    --pri-d: #091f5c;
    --pri-m: #1648c0;
    --acc: #3EB0DB;
    --acc-l: #7dcfee;
    --gray: #6F7070;
    --gray2: #707070;
    --gray-l: #f4f6f9;
    --gray-bg: #f0f1f3;
    --white: #fff;
    --text: #1a1a2e;
    --text-m: #444;
    --sh-s: 0 2px 12px rgba(12,50,145,.08);
    --sh: 0 8px 32px rgba(12,50,145,.12);
    --sh-l: 0 16px 48px rgba(12,50,145,.18);
    --r: 10px;
    --r-l: 16px;
    --tr: .3s cubic-bezier(.4,0,.2,1);
    --hh: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 15px
}

body {
    font-family: 'Poppins',sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul, ol {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

/* ---- LOADER ---- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s,visibility .6s
}

    #page-loader.gone {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

.ld-inner {
    text-align: center
}

    .ld-inner svg {
        animation: ldp 1s ease-in-out infinite alternate
    }

.ld-bar-wrap {
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    margin: 14px auto 0;
    overflow: hidden
}

.ld-bar {
    height: 100%;
    width: 0;
    background: var(--acc);
    animation: ldb 1.4s ease-out forwards
}

@keyframes ldp {
    from {
        opacity: .6;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1.1)
    }
}

@keyframes ldb {
    to {
        width: 100%
    }
}

/* ---- HEADER ---- */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12,50,145,.06);
    transition: box-shadow var(--tr)
}

    #site-header.scrolled {
        box-shadow: 0 4px 24px rgba(12,50,145,.14)
    }

.hdr-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: var(--hh);
    display: flex;
    align-items: center;
    gap: 20px
}

/* Logo */
.hdr-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0
}

    .hdr-logo img {
        height: 75px;
        width: auto;
        object-fit: contain
    }

.logo-svg {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.lt-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--pri);
    letter-spacing: 2px
}

.lt-sub {
    font-size: 8px;
    font-weight: 600;
    color: var(--acc);
    letter-spacing: 1.5px;
    text-transform: uppercase
}

/* Nav */
.hdr-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end
}

    .hdr-nav ul {
        display: flex;
        gap: 2px
    }

    .hdr-nav a {
        display: block;
        padding: 8px 14px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text-m);
        border-radius: 6px;
        transition: color var(--tr),background var(--tr);
        white-space: nowrap
    }

        .hdr-nav a:hover, .hdr-nav a.active {
            color: var(--pri);
            background: rgba(12,50,145,.06)
        }

/* Right */
.hdr-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.btn-ilanlar {
    display: inline-flex;
    align-items: center;
    padding: 9px 24px;
    background: var(--acc);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(62,176,219,.35);
    transition: all var(--tr)
}

    .btn-ilanlar:hover, .btn-ilanlar.active {
        background: var(--pri);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(12,50,145,.32)
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--pri);
        border-radius: 2px;
        transition: all var(--tr)
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

/* Mobile nav */
.mob-nav {
    background: #fff;
    border-top: 1px solid rgba(12,50,145,.06);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease
}

    .mob-nav.open {
        max-height: 360px
    }

    .mob-nav a {
        display: block;
        padding: 13px 28px;
        font-size: 14px;
        font-weight: 500;
        border-bottom: 1px solid var(--gray-l);
        color: var(--text-m);
        transition: all var(--tr)
    }

        .mob-nav a:hover {
            color: var(--pri);
            background: var(--gray-l)
        }

    .mob-nav .mob-ilan {
        background: var(--acc);
        color: #fff;
        font-weight: 600;
        text-align: center
    }

/* ============================================================
   HERO – referans görsel 1'e birebir
   ============================================================ */
.hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: var(--hh)
}

/* Üst gri alan */
.hero-upper {
    flex: 1;
    background: var(--gray-bg);
    display: flex;
    align-items: stretch
}

.hero-upper-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: calc(100vh - var(--hh) - 320px)
}

/* Sol metin */
.hero-text {
    padding: 60px 0 72px;
    max-width: 560px
}

.hero-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray2);
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0;
    animation: aFU .6s ease 1s both
}

.hero-h1 {
    font-size: clamp(26px,4vw,50px);
    font-weight: 800;
    color: var(--pri);
    line-height: 1.08;
    opacity: 0;
    animation: aFU .6s ease 1.15s both
}

.hero-h1-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px
}

.hero-line {
    flex: 1;
    height: 1px;
    background: rgba(12,50,145,.15);
    max-width: 160px;
    opacity: 0;
    animation: aFI .5s ease 1.4s both
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    opacity: 0;
    animation: aFI .6s ease 2s both;
    transition: color var(--tr);
    user-select: none;
    background: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: var(--sh-s)
}

    .hero-scroll i {
        color: var(--acc);
        animation: bounce 1.8s ease infinite
    }

    .hero-scroll:hover {
        color: var(--pri)
    }

/* Sağ: fotoğraf + kart */
.hero-right {
    display: flex;
    align-items: flex-end;
    gap: 0;
    opacity: 0;
    animation: aFU .8s ease .9s both;
    align-self: flex-end;
    position: relative
}

.hero-chairman {
    background: #fff;
    padding: 18px 16px 14px;
    width: 160px;
    border-radius: 12px;
    box-shadow: -4px -4px 24px rgba(12,50,145,.12);
    flex-shrink: 0;
    text-align: center;
    margin-left: -8px;
    align-self: flex-end;
    margin-bottom: 12px
}

    .hero-chairman img {
        width: 82px;
        height: auto;
        margin: 0 auto 10px;
        object-fit: contain
    }

.ch-logo-fb {
    width: 82px;
    height: 52px;
    margin: 0 auto 10px;
    background: var(--pri);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff
}

.ch-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 5px
}

.ch-title {
    font-size: 10.5px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 10px
}

.ch-link {
    font-size: 11px;
    color: var(--acc);
    font-weight: 600;
    text-decoration: underline;
    display: block;
    margin-bottom: 14px
}

.hero-photo {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

    .hero-photo img {
        height: auto;
        max-height: 500px;
        width: auto;
        object-fit: contain;
        object-position: bottom;
        filter: drop-shadow(0 8px 24px rgba(12,50,145,.14))
    }

.hero-photo-ph {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: .2
}

/* Alt şehir fotoğrafı */
.hero-city {
    position: relative;
    flex-shrink: 0;
    opacity: 0;
    animation: aFI 1s ease 1.8s both
}

    .hero-city img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
        object-position: center 65%;
        filter: grayscale(100%);
        display: block
    }

.hero-city-svg {
    width: 100%;
    height: 280px;
    background: #b8b8b8;
    overflow: hidden;
    position: relative
}

    .hero-city-svg svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%
    }

/* Scroll hint overlay */
.hero-city-hint {
    position: absolute;
    top: 28px;
    left: 40px;
    z-index: 2
}

/* ============================================================
   HAKKIMIZDA / TAB
   ============================================================ */
.about-section {
    padding: 88px 0;
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 72px;
    align-items: start
}

.about-side {
    padding-top: 48px
}

.about-side-title {
    font-size: clamp(28px,3.5vw,46px);
    font-weight: 300;
    color: #d0d0d0;
    line-height: 1.15
}

    .about-side-title strong {
        display: block;
        font-weight: 700;
        color: var(--text)
    }

.tab-bar {
    display: flex;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 32px;
    gap: 0
}

.tab-btn {
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray);
    background: none;
    position: relative;
    transition: color var(--tr);
    white-space: nowrap
}

    .tab-btn::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--text);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--tr)
    }

    .tab-btn.active {
        color: var(--text);
        font-weight: 600
    }

        .tab-btn.active::after {
            transform: scaleX(1)
        }

.tab-pane {
    display: none
}

    .tab-pane.active {
        display: block;
        animation: aFI .4s ease
    }

    .tab-pane p {
        font-size: 13.5px;
        color: var(--gray);
        line-height: 1.9;
        margin-bottom: 16px
    }

.read-more {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pri);
    border-bottom: 1px solid var(--acc);
    padding-bottom: 2px;
    display: inline-block;
    transition: color var(--tr)
}

    .read-more:hover {
        color: var(--acc)
    }

/* ============================================================
   CTA (İlanlar)
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg,var(--pri) 0%,var(--pri-m) 55%,var(--pri-d) 100%)
}

.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    pointer-events: none
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.cta-title {
    font-size: clamp(22px,3vw,36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px
}

.cta-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    max-width: 440px
}

.cta-stats {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap
}

.cta-stat {
    padding: 12px 16px;
    text-align: center;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r)
}

.cta-stat-n {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

    .cta-stat-n sup {
        font-size: 13px;
        color: var(--acc)
    }

.cta-stat-l {
    font-size: 9px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 3px
}

.cta-btns {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px
}

.btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: #fff;
    color: var(--pri);
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    transition: all var(--tr)
}

    .btn-white:hover {
        background: var(--acc);
        color: #fff;
        transform: translateY(-2px)
    }

.btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
    transition: all var(--tr)
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.2);
        transform: translateY(-2px)
    }

/* ============================================================
   HABERLER GRID (renkli overlay – ana sayfa)
   ============================================================ */
.news-home {
    padding: 50px 0;
    background: #fff
}

.sec-hd {
    margin-bottom: 48px
}

.sec-ey {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 9px
}

.sec-ttl {
    font-size: clamp(24px,3vw,38px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px
}

.sec-sub {
    font-size: 13.5px;
    color: var(--gray);
    max-width: 520px;
    line-height: 1.8
}

.sec-hd.center {
    text-align: center
}

    .sec-hd.center .sec-sub {
        margin: 0 auto
    }

.ng-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.ng-row {
    display: grid;
    gap: 5px
}

.row-12 {
    grid-template-columns: 1.35fr 1fr
}

.row-21 {
    grid-template-columns: 1fr 1.35fr
}

.row-11 {
    grid-template-columns: 1fr 1fr
}

.nc {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    min-height: 200px
}

    .nc.tall {
        min-height: 290px
    }

.nc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .55s ease
}

.nc:hover .nc-bg {
    transform: scale(1.06)
}

.ov-blue .nc-bg {
    background-color: #4a5a7a
}

.ov-teal .nc-bg {
    background-color: #2a6868
}

.ov-dark .nc-bg {
    background-color: #444
}

.ov-purple .nc-bg {
    background-color: #5a4078
}

.ov-pink .nc-bg {
    background-color: #784050
}

.ov-navy .nc-bg {
    background-color: #283868
}

.ov-blue .nc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12,50,145,.64)
}

.ov-teal .nc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,100,100,.66)
}

.ov-dark .nc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,.62)
}

.ov-purple .nc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(65,15,100,.65)
}

.ov-pink .nc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(160,18,70,.63)
}

.ov-navy .nc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6,22,70,.72)
}

.nc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top,rgba(0,0,0,.5) 0%,transparent 100%);
    z-index: 2
}

.nc-cat {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.nc-ttl {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35
}

    .nc-ttl.sm {
        font-size: 13px
    }

/* ============================================================
   SAYFA HERO (iç sayfalar)
   ============================================================ */
.pg-hero {
    padding-top: var(--hh);
    background: var(--pri)
}

.pg-hero-inner {
    padding: 52px 0 44px
}

.pg-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--acc);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 11px
}

.pg-title {
    font-size: clamp(26px,4vw,44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px
}

.pg-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.72);
    max-width: 480px;
    line-height: 1.8
}

.breadcrumb {
    background: rgba(0,0,0,.15);
    padding: 11px 0
}

    .breadcrumb ol {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        color: rgba(255,255,255,.6)
    }

        .breadcrumb ol li a {
            color: rgba(255,255,255,.7);
            transition: color var(--tr)
        }

            .breadcrumb ol li a:hover {
                color: var(--acc)
            }

        .breadcrumb ol li + li::before {
            content: '/';
            margin-right: 7px;
            opacity: .4
        }

        .breadcrumb ol li:last-child {
            color: rgba(255,255,255,.9)
        }

/* ============================================================
   İLANLAR SAYFASI – görsel 2 birebir
   ============================================================ */
.ilanlar-hero {
    padding-top: var(--hh);
    background: var(--pri);
    padding-bottom: 0
}

.ilanlar-hero-inner {
    padding: 56px 28px 48px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto
}

.ilanlar-hero-title {
    font-size: clamp(28px,4.5vw,52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px
}

.ilanlar-hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    max-width: 660px;
    margin: 0 auto
}

.ilanlar-body {
    background: var(--gray-l);
    min-height: 60vh;
    padding: 40px 0 80px
}

/* Arama */
.ilan-search-wrap {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--sh);
    padding: 6px 10px 6px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid transparent;
    transition: border-color var(--tr)
}

    .ilan-search-wrap:focus-within {
        border-color: var(--acc)
    }

    .ilan-search-wrap i {
        color: var(--gray);
        font-size: 17px;
        flex-shrink: 0
    }

.ilan-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    color: var(--text);
    padding: 10px 0
}

    .ilan-search-input::placeholder {
        color: #b0b0b0
    }

.ilan-filter-btn {
    padding: 9px 14px;
    border-radius: 8px;
    background: var(--gray-l);
    color: var(--gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--tr);
    flex-shrink: 0
}

    .ilan-filter-btn:hover {
        background: var(--pri);
        color: #fff
    }

/* Filtre chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: #fff;
    border: 1.5px solid rgba(12,50,145,.18);
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--pri);
    cursor: pointer;
    transition: all var(--tr)
}

    .chip:hover {
        background: var(--gray-l)
    }

    .chip .chip-x {
        font-size: 11px;
        color: var(--gray);
        transition: color var(--tr)
    }

    .chip:hover .chip-x {
        color: var(--pri)
    }

    .chip.active {
        background: var(--pri);
        color: #fff;
        border-color: transparent
    }

        .chip.active .chip-x {
            color: rgba(255,255,255,.7)
        }

/* İlan listesi */
.ilan-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sh-s)
}

.ilan-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background var(--tr),border-color var(--tr);
    cursor: pointer
}

    .ilan-card:last-child {
        border-bottom: none
    }

    .ilan-card:hover {
        background: rgba(62,176,219,.04)
    }

    .ilan-card.son-gun .ic-tarih {
        color: #e53935
    }

.ic-tarih-wrap {
}

.ic-tarih-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.ic-tarih {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-m);
    margin-bottom: 3px
}

.ic-gun {
    font-size: 11.5px;
    font-weight: 500;
    color: #e53935
}

.ic-bilgi {
}

.ic-baslik {
    font-size: 15px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 4px
}

.ic-kurum {
    font-size: 12.5px;
    color: var(--text-m);
    margin-bottom: 7px
}

.ic-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--gray)
}

    .ic-meta i {
        font-size: 11px;
        color: var(--acc);
        margin-right: 3px
    }

.ic-action {
    flex-shrink: 0
}

.btn-detay {
    padding: 10px 22px;
    background: var(--pri);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    white-space: nowrap
}

    .btn-detay:hover {
        background: var(--acc);
        transform: translateY(-1px)
    }

/* Boş durum */
.ilan-empty {
    padding: 64px 0;
    text-align: center;
    color: var(--gray)
}

    .ilan-empty i {
        font-size: 48px;
        opacity: .3;
        display: block;
        margin-bottom: 12px
    }

/* ============================================================
   İLAN DETAY SAYFASI
   ============================================================ */
.ilan-detay-section {
    padding: 60px 0 80px;
    background: var(--gray-l)
}

.ilan-detay-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start
}

.ilan-detay-main {
    background: #fff;
    border-radius: var(--r-l);
    overflow: hidden;
    box-shadow: var(--sh-s)
}

.ilan-detay-doc {
    width: 100%;
    min-height: 600px;
    border: none;
    display: block
}

.ilan-detay-img-wrap {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 20px
}

    .ilan-detay-img-wrap img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: var(--sh-s)
    }

.ilan-detay-nocalc {
    padding: 60px;
    text-align: center;
    color: var(--gray)
}

.ilan-detay-info {
    background: #fff;
    border-radius: var(--r-l);
    padding: 28px;
    box-shadow: var(--sh-s);
    position: sticky;
    top: calc(var(--hh) + 20px)
}

.idi-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--acc);
    background: rgba(62,176,219,.12);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.idi-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 16px;
    line-height: 1.35
}

.idi-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-l)
}

    .idi-row:last-of-type {
        border-bottom: none
    }

.idi-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(12,50,145,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: var(--pri)
}

.idi-lbl {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px
}

.idi-val {
    font-size: 13px;
    color: var(--text-m);
    font-weight: 500
}

.idi-son {
    color: #e53935;
    font-weight: 600
}

.btn-basvur {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--acc);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(62,176,219,.35);
    transition: all var(--tr)
}

    .btn-basvur:hover {
        background: var(--pri);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(12,50,145,.3)
    }

    .btn-basvur.disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none
    }

/* ============================================================
   BAŞVURU FORMU – görsel 5 birebir
   ============================================================ */
.basvuru-hero {
    padding-top: var(--hh);
    background: var(--pri);
    padding-bottom: 0
}

.basvuru-hero-inner {
    padding: 44px 28px 36px;
    text-align: center
}

.basvuru-hero-title {
    font-size: clamp(22px,4vw,40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px
}

.basvuru-hero-desc {
    font-size: 13px;
    color: rgba(255,255,255,.72);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75
}

.basvuru-form-wrap {
    background: var(--gray-l);
    padding: 40px 0 80px
}

.basvuru-form-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--r-l);
    box-shadow: var(--sh);
    overflow: hidden
}

/* Form bölüm başlıkları */
.form-section {
    border-top: 2px dashed #e0e0e0
}

    .form-section:first-child {
        border-top: none
    }

.form-section-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    cursor: pointer;
    background: #fff;
    transition: background var(--tr)
}

    .form-section-hd:hover {
        background: var(--gray-l)
    }

.form-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--pri)
}

.form-section-body {
    padding: 0 28px 24px
}

    .form-section-body.collapsed {
        display: none
    }

.btn-ekle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--acc);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--tr)
}

    .btn-ekle:hover {
        background: var(--pri)
    }

/* Form alanları */
.frow {
    display: grid;
    gap: 14px;
    margin-bottom: 14px
}

    .frow.cols2 {
        grid-template-columns: 1fr 1fr
    }

    .frow.cols3 {
        grid-template-columns: 1fr 1fr 1fr
    }

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px
}

    .fg label {
        font-size: 11.5px;
        font-weight: 600;
        color: var(--gray2);
        text-transform: uppercase;
        letter-spacing: .5px
    }

        .fg label .req {
            color: #e53935;
            margin-left: 3px
        }

    .fg input, .fg select, .fg textarea {
        padding: 10px 13px;
        border: 1.5px solid #e0e0e0;
        border-radius: 7px;
        font-family: 'Poppins',sans-serif;
        font-size: 13.5px;
        color: var(--text);
        outline: none;
        transition: border-color var(--tr),box-shadow var(--tr);
        width: 100%;
        background: #fff
    }

        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--acc);
            box-shadow: 0 0 0 3px rgba(62,176,219,.14)
        }

    .fg textarea {
        min-height: 90px;
        resize: vertical
    }

    .fg .hint {
        font-size: 11px;
        color: var(--gray);
        margin-top: 2px
    }

    .fg .file-label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 13px;
        border: 1.5px dashed #d0d8f0;
        border-radius: 7px;
        cursor: pointer;
        transition: border-color var(--tr),background var(--tr)
    }

        .fg .file-label:hover {
            border-color: var(--acc);
            background: rgba(62,176,219,.05)
        }

        .fg .file-label i {
            font-size: 18px;
            color: var(--acc)
        }

    .fg input[type="file"] {
        display: none
    }

    .fg .file-name {
        font-size: 12px;
        color: var(--gray);
        margin-top: 4px
    }

/* Radio / Checkbox grup */
.rc-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.rc-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    cursor: pointer;
    font-size: 13px;
    transition: all var(--tr)
}

    .rc-item:hover {
        border-color: var(--acc);
        background: rgba(62,176,219,.06)
    }

    .rc-item input {
        width: 15px;
        height: 15px;
        accent-color: var(--pri);
        cursor: pointer
    }

    .rc-item.selected {
        border-color: var(--pri);
        background: rgba(12,50,145,.06);
        color: var(--pri);
        font-weight: 600
    }

/* Dinamik satır (eğitim vb.) */
.dyn-row {
    background: var(--gray-l);
    border-radius: 9px;
    padding: 14px;
    margin-bottom: 10px;
    position: relative
}

.dyn-row-del {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform var(--tr)
}

    .dyn-row-del:hover {
        transform: scale(1.1)
    }

/* Koşul uyarısı */
.kosul-uyari {
    background: #fff3cd;
    border: 1.5px solid #ffc107;
    border-radius: 9px;
    padding: 14px 18px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #856404;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

    .kosul-uyari i {
        font-size: 17px;
        color: #ffc107;
        flex-shrink: 0;
        margin-top: 1px
    }

.kosul-hata {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24
}

    .kosul-hata i {
        color: #dc3545
    }

/* Form alt */
.form-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 28px;
    font-size: 12.5px;
    color: var(--gray)
}

    .form-kvkk input {
        width: 16px;
        height: 16px;
        margin-top: 1px;
        accent-color: var(--pri);
        flex-shrink: 0
    }

    .form-kvkk a {
        color: var(--acc)
    }

.form-submit-wrap {
    padding: 0 28px 28px
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--acc);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    box-shadow: 0 4px 16px rgba(62,176,219,.3)
}

    .btn-submit:hover {
        background: var(--pri);
        transform: translateY(-2px)
    }

/* ============================================================
   HABERLER LİSTESİ
   ============================================================ */
.haberler-section {
    padding: 64px 0 88px;
    background: var(--gray-l)
}

.haber-filter-bar {
    background: #fff;
    padding: 14px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: var(--hh);
    z-index: 50
}

.haber-filter-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.hf-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1.5px solid rgba(12,50,145,.15);
    font-family: 'Poppins',sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--tr);
    background: #fff
}

    .hf-btn.active, .hf-btn:hover {
        background: var(--pri);
        color: #fff;
        border-color: transparent
    }

.haber-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.haber-card {
    background: #fff;
    border-radius: var(--r-l);
    overflow: hidden;
    box-shadow: var(--sh-s);
    transition: transform var(--tr),box-shadow var(--tr)
}

    .haber-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh)
    }

.haber-img {
    height: 190px;
    overflow: hidden;
    background: var(--gray-l)
}

    .haber-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease
    }

.haber-card:hover .haber-img img {
    transform: scale(1.05)
}

.haber-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#e8edf8,#c8d4ef)
}

    .haber-img-ph i {
        font-size: 36px;
        color: rgba(12,50,145,.25)
    }

.haber-body {
    padding: 20px
}

.haber-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px
}

.haber-kat {
    font-size: 10px;
    font-weight: 600;
    color: var(--acc);
    background: rgba(62,176,219,.1);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.haber-date {
    font-size: 11px;
    color: var(--gray)
}

.haber-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--pri);
    line-height: 1.5;
    margin-bottom: 9px
}

.haber-ozet {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 14px
}

.haber-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--acc);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--tr),color var(--tr)
}

.haber-card:hover .haber-more {
    gap: 10px
}

/* ============================================================
   HABER DETAY
   ============================================================ */
.haber-detay-section {
    padding: 60px 0 80px
}

.haber-detay-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 44px;
    align-items: start
}

.haber-detay-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--r-l);
    margin-bottom: 28px
}

.haber-detay-img-ph {
    height: 400px;
    background: linear-gradient(135deg,#e8edf8,#c8d4ef);
    border-radius: var(--r-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px
}

    .haber-detay-img-ph i {
        font-size: 64px;
        color: rgba(12,50,145,.2)
    }

.haber-detay-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

.detail-title {
    font-size: clamp(20px,3vw,32px);
    font-weight: 700;
    color: var(--pri);
    line-height: 1.3;
    margin-bottom: 24px
}

.detail-body p {
    font-size: 14px;
    color: var(--text-m);
    line-height: 1.9;
    margin-bottom: 18px
}

.detail-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--pri);
    margin: 24px 0 10px
}

.detail-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-l)
}

.share-lbl {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-mid)
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--gray-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--pri);
    transition: all var(--tr)
}

    .share-btn:hover {
        background: var(--pri);
        color: #fff
    }

/* Sidebar */
.haber-sidebar .sb-card {
    background: var(--gray-l);
    border-radius: var(--r-l);
    padding: 22px;
    margin-bottom: 20px
}

.sb-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(12,50,145,.1)
}

.sb-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(12,50,145,.07)
}

    .sb-item:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

.sb-img {
    width: 58px;
    height: 58px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-l)
}

.sb-img-ph {
    width: 58px;
    height: 58px;
    border-radius: 7px;
    background: linear-gradient(135deg,#e8edf8,#c8d4ef);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

    .sb-img-ph i {
        font-size: 20px;
        color: rgba(12,50,145,.2)
    }

.sb-item-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--pri);
    line-height: 1.4;
    margin-bottom: 3px
}

.sb-item-date {
    font-size: 11px;
    color: var(--gray)
}

/* ============================================================
   KURUMSAL SAYFA
   ============================================================ */
.kurumsal-section {
    padding: 72px 0 88px
}

.kurumsal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 72px
}

.kurumsal-text p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px
}

.feat-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-l);
    border-radius: var(--r);
    transition: all var(--tr)
}

    .feat-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--sh-s)
    }

.feat-ic {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--pri);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.feat-txt h5 {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pri);
    margin-bottom: 3px
}

.feat-txt p {
    font-size: 11.5px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5
}

.kurumsal-img-wrap {
    border-radius: var(--r-l);
    overflow: hidden;
    box-shadow: var(--sh);
    position: relative
}

    .kurumsal-img-wrap img {
        width: 100%;
        height: 420px;
        object-fit: cover
    }

.kurumsal-img-ph {
    height: 420px;
    background: linear-gradient(135deg,#e8edf8,#c8d4ef);
    display: flex;
    align-items: center;
    justify-content: center
}

    .kurumsal-img-ph i {
        font-size: 72px;
        color: rgba(12,50,145,.2)
    }

/* Misyon Vizyon kartlar */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 72px
}

.mv-card {
    background: #fff;
    border-radius: var(--r-l);
    padding: 32px;
    box-shadow: var(--sh-s)
}

.mv-icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 19px;
    color: #fff
}

.mv-card:nth-child(2) .mv-icon {
    background: var(--acc)
}

.mv-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 12px
}

.mv-card p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.85
}

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */
.iletisim-section {
    padding: 64px 0 80px
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
    align-items: start
}

.iletisim-info h3 {
    font-size: clamp(18px,2.5vw,26px);
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 8px
}

.iletisim-lead {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-l)
}

    .contact-item:last-of-type {
        border-bottom: none
    }

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--pri);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.ci-body label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.ci-body span, .ci-body a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pri);
    display: block;
    transition: color var(--tr)
}

    .ci-body a:hover {
        color: var(--acc)
    }

.contact-form-box {
    background: var(--gray-l);
    border-radius: var(--r-l);
    padding: 32px;
    box-shadow: var(--sh-s)
}

    .contact-form-box h4 {
        font-size: 17px;
        font-weight: 700;
        color: var(--pri);
        margin-bottom: 22px
    }

.map-wrap {
    border-radius: var(--r-l);
    overflow: hidden;
    height: 360px;
    box-shadow: var(--sh);
    margin-top: 52px
}

    .map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block
    }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--pri)
}

.ft-main {
    padding: 64px 0 40px
}

.ft-grid {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 44px;
    align-items: start
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px
}

.ft-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    display: block;
    letter-spacing: 1px
}

.ft-sub {
    font-size: 8px;
    font-weight: 500;
    color: var(--acc);
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.ft-about {
    font-size: 12.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 20px
}

.ft-social {
    display: flex;
    gap: 9px
}

    .ft-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all var(--tr)
    }

        .ft-social a:hover {
            background: var(--acc);
            transform: translateY(-3px)
        }

.ft-col h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    position: relative
}

    .ft-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--acc);
        border-radius: 2px
    }

.ft-col ul li {
    margin-bottom: 9px
}

    .ft-col ul li a {
        font-size: 12.5px;
        color: rgba(255,255,255,.68);
        transition: all var(--tr);
        display: inline-block
    }

        .ft-col ul li a:hover {
            color: var(--acc);
            padding-left: 4px
        }

.ft-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,.7);
    line-height: 1.6
}

    .ft-contact li i {
        color: var(--acc);
        margin-top: 2px;
        flex-shrink: 0;
        width: 13px
    }

    .ft-contact li a {
        color: rgba(255,255,255,.7);
        transition: color var(--tr)
    }

        .ft-contact li a:hover {
            color: var(--acc)
        }

.ft-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 0
}

    .ft-bottom .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap
    }

    .ft-bottom span {
        font-size: 11.5px;
        color: rgba(255,255,255,.42)
    }

.ft-legal {
    display: flex;
    gap: 16px
}

    .ft-legal a {
        font-size: 11.5px;
        color: rgba(255,255,255,.42);
        transition: color var(--tr)
    }

        .ft-legal a:hover {
            color: var(--acc)
        }

/* ============================================================
   GENEL BUTONLAR
   ============================================================ */
.btn-pri {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--pri);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(12,50,145,.28);
    transition: all var(--tr)
}

    .btn-pri:hover {
        background: var(--acc);
        transform: translateY(-2px)
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    color: var(--pri);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 7px;
    border: 2px solid var(--pri);
    transition: all var(--tr)
}

    .btn-outline:hover {
        background: var(--pri);
        color: #fff
    }

/* ============================================================
   SCROLL ANİMASYONLAR
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease,transform .65s ease
}

.reveal-l {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .65s ease,transform .65s ease
}

.reveal-r {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .65s ease,transform .65s ease
}

    .reveal.in, .reveal-l.in, .reveal-r.in {
        opacity: 1;
        transform: none
    }

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes aFU {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes aFI {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes bounce {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(5px)
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px) {
    .hero-right {
        display: none
    }

    .haber-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .ilan-detay-grid {
        grid-template-columns: 1fr
    }

    .haber-detay-grid {
        grid-template-columns: 1fr
    }

    .haber-sidebar {
        display: none
    }

    .kurumsal-grid {
        grid-template-columns: 1fr
    }

    .iletisim-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .ft-col:first-child {
        grid-column: 1/-1
    }
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .about-side {
        padding-top: 0
    }

    .cta-inner {
        flex-direction: column;
        text-align: center
    }

    .cta-btns {
        width: 100%;
        flex-direction: row;
        justify-content: center
    }

    .cta-stats {
        justify-content: center
    }

    .cta-desc {
        max-width: 100%
    }

    .row-12, .row-21 {
        grid-template-columns: 1fr
    }

    .row-11 {
        grid-template-columns: 1fr 1fr
    }

    .mv-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    :root {
        --hh: 60px
    }

    .hdr-nav {
        display: none
    }

    .hamburger {
        display: flex
    }

    .ilan-card {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .ic-action {
        justify-self: start
    }

    .haber-grid {
        grid-template-columns: 1fr
    }

    .frow.cols2, .frow.cols3 {
        grid-template-columns: 1fr
    }

    .feature-grid, .ft-grid {
        grid-template-columns: 1fr
    }

    .ft-bottom .container {
        flex-direction: column;
        text-align: center
    }

    .ft-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px
    }

    .row-11 {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .tab-bar {
        overflow-x: auto
    }

    .tab-btn {
        font-size: 12.5px;
        padding: 9px 14px;
        white-space: nowrap
    }

    .cta-btns {
        flex-direction: column
    }

    .ilanlar-hero-title {
        font-size: 28px
    }
}

/* ════ SABİT SAĞ BAR ════ */
#fixed-right-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 4px 24px rgba(12,50,145,.14);
    padding: 10px 0;
    overflow: hidden;
    border: 1px solid rgba(12,50,145,.08);
    border-right: none;
}

.frb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 10px;
    width: 68px;
    cursor: pointer;
    transition: background var(--tr),transform var(--tr);
    text-decoration: none;
    position: relative;
}

    .frb-item:hover {
        background: var(--gray-l);
        transform: translateX(-3px);
    }

.frb-logo-wrap {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .frb-logo-wrap img {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }

.frb-fallback {
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

    .frb-fallback svg {
        width: 36px;
        height: 36px;
    }

.frb-label {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
    line-height: 1.3;
    letter-spacing: .2px;
}

.frb-item:hover .frb-label {
    color: var(--pri);
}

.frb-divider {
    width: 40px;
    height: 1px;
    background: #eee;
    flex-shrink: 0;
}
/* Tooltip sağdan */
.frb-item::before {
    content: attr(title);
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--pri);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--tr);
}

.frb-item::after {
    content: '';
    position: absolute;
    right: calc(100% + 2px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--pri);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--tr);
}

.frb-item:hover::before,
.frb-item:hover::after {
    opacity: 1;
}

@media(max-width:768px) {
    #fixed-right-bar {
        top: auto;
        bottom: 70px;
        transform: none;
        border-radius: 10px 0 0 10px;
        padding: 6px 0;
    }

    .frb-item {
        width: 54px;
        padding: 9px 7px;
    }

    .frb-logo-wrap, .frb-fallback svg, .frb-logo-wrap img {
        width: 28px;
        height: 28px;
    }

    .frb-label {
        font-size: 8.5px
    }

    .frb-item::before, .frb-item::after {
        display: none
    }
}
/* ════════════════════════ */

.idi-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px
}

    .idi-head-row > div {
        flex: 1;
        min-width: 0
    }

.idi-belge-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid rgba(62,176,219,.3);
    background: rgba(62,176,219,.06);
    color: var(--acc);
    text-decoration: none;
    transition: all var(--tr);
    flex-shrink: 0;
    min-width: 60px;
    text-align: center
}

    .idi-belge-btn i {
        font-size: 22px
    }

    .idi-belge-btn span {
        font-size: 9.5px;
        font-weight: 600;
        line-height: 1.3;
        color: var(--gray)
    }

    .idi-belge-btn:hover {
        background: var(--acc);
        border-color: var(--acc);
        color: #fff
    }

        .idi-belge-btn:hover span {
            color: rgba(255,255,255,.85)
        }

/* ════ İLAN DETAY - açıklama blokları ════ */
.ilan-aciklama-blok {
    background: #fff;
    border-radius: var(--r-l);
    padding: 28px 32px;
    box-shadow: var(--sh-s);
    margin-bottom: 20px
}

.ilan-aciklama-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

    .ilan-aciklama-title i {
        color: var(--acc)
    }

.ilan-aciklama-icerik {
    font-size: 14px;
    color: var(--text-m);
    line-height: 1.9
}

/* ════ İLAN LİSTESİ - belge ikonu ════ */
.ic-belge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid rgba(62,176,219,.35);
    color: var(--acc);
    font-size: 17px;
    flex-shrink: 0;
    transition: all var(--tr);
    text-decoration: none
}

    .ic-belge-btn:hover {
        background: var(--acc);
        border-color: var(--acc);
        color: #fff
    }

.ic-action {
    display: flex;
    align-items: center;
    gap: 8px
}

/* ════ FİLTRE CHIP PANELİ ════ */
/* Desktop: her zaman görünür */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 6px;
    transition: all .3s
}
/* Mobil: toggle ile aç */
@media(max-width:600px) {
    .filter-chips {
        display: none
    }

        .filter-chips.chips-open {
            display: flex
        }
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid #dde1f0;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-m);
    cursor: pointer;
    transition: all var(--tr);
    user-select: none
}

    .chip.active {
        background: var(--pri);
        border-color: var(--pri);
        color: #fff
    }

.chip-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0,0,0,.15);
    font-size: 9px;
    flex-shrink: 0
}

.chip.active .chip-x {
    background: rgba(255,255,255,.3)
}

.ilan-filter-btn.active {
    background: var(--pri);
    color: #fff;
    border-color: var(--pri)
}

/* ════ PROJELER ════ */
.projeler-home {
    padding: 88px 0;
    background: var(--gray-l)
}

.projeler-section {
    padding: 48px 0 88px;
    background: var(--gray-l)
}

/* Sol filtre + sağ grid layout */
.prj-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start
}

@media(max-width:900px) {
    .prj-layout {
        grid-template-columns: 1fr
    }
}

/* Filtre paneli (sol) */
.prj-filter-panel {
    background: #fff;
    border-radius: var(--r-l);
    box-shadow: var(--sh-s);
    overflow: hidden;
    position: sticky;
    top: calc(var(--hh)+20px)
}

.prj-filter-hd {
    background: var(--pri);
    padding: 14px 20px
}

    .prj-filter-hd span {
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 1.5px;
        text-transform: uppercase
    }

.prj-filter-body {
    padding: 20px
}

.prj-filter-group {
    margin-bottom: 18px
}

    .prj-filter-group label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: .6px;
        margin-bottom: 7px
    }

    .prj-filter-group input,
    .prj-filter-group select {
        width: 100%;
        padding: 9px 12px;
        border: 1.5px solid #e0e0e0;
        border-radius: 7px;
        font-family: 'Poppins',sans-serif;
        font-size: 13px;
        color: var(--text);
        outline: none;
        transition: border-color var(--tr)
    }

        .prj-filter-group input:focus,
        .prj-filter-group select:focus {
            border-color: var(--acc)
        }

.prj-filter-btn {
    width: 100%;
    padding: 11px;
    background: var(--pri);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background var(--tr);
    letter-spacing: .5px;
    text-transform: uppercase
}

    .prj-filter-btn:hover {
        background: var(--acc)
    }

/* Ana sayfa filtre (yatay) */
.prj-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px
}

/* Grid */
.prj-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

@media(max-width:1100px) {
    .prj-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:600px) {
    .prj-grid {
        grid-template-columns: 1fr
    }
}

/* Kart */
.prj-card {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh-s);
    transition: transform var(--tr),box-shadow var(--tr);
    text-decoration: none;
    color: inherit;
    display: block
}

    .prj-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh)
    }

.prj-img {
    height: 185px;
    overflow: hidden;
    background: var(--gray-l);
    position: relative
}

    .prj-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
        display: block
    }

.prj-card:hover .prj-img img {
    transform: scale(1.05)
}

.prj-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#e8edf8,#c8d4ef)
}

    .prj-img-ph i {
        font-size: 42px;
        color: rgba(12,50,145,.2)
    }

.prj-durum {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px
}

.prj-body {
    padding: 16px
}

.prj-kat {
    font-size: 10px;
    font-weight: 600;
    color: var(--acc);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px
}

.prj-baslik {
    font-size: 14px;
    font-weight: 700;
    color: var(--pri);
    line-height: 1.4;
    margin-bottom: 6px
}

.prj-ozet {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 8px
}

.prj-tarih {
    font-size: 11px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px
}

    .prj-tarih i {
        color: var(--acc);
        font-size: 10px
    }

/* Sonuç başlığı */
.prj-results-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(12,50,145,.1)
}

.prj-results-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pri);
    border-left: 3px solid var(--pri);
    padding-left: 12px
}

.prj-results-count {
    font-size: 12px;
    color: var(--gray)
}

@media(max-width:900px) {
    .prj-filter-panel {
        position: static
    }
}
/* ── Başvuru Formu ─────────────────────────────────────────── */
.basvuru-section {
    padding: 40px 0 80px;
    background: #f4f6fb
}

.basvuru-wrap {
    max-width: 900px;
    margin: 0 auto
}

.ilan-ozet-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px
}

.iob-item {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

    .iob-item i {
        font-size: 16px;
        color: var(--acc,#3eb0db);
        margin-top: 3px
    }

    .iob-item small {
        display: block;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: var(--gray,#888);
        margin-bottom: 2px
    }

    .iob-item span {
        font-size: 13px;
        font-weight: 600;
        color: var(--pri,#0c3291)
    }

.form-bolum {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    overflow: hidden
}

.form-bolum-hd {
    padding: 13px 20px;
    background: var(--pri,#0c3291);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px
}

    .form-bolum-hd i {
        font-size: 14px;
        opacity: .85
    }

.form-bolum-body {
    padding: 20px
}

.basvuru-submit-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px
}

.basvuru-btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .15s
}

    .basvuru-btn.pri {
        background: var(--acc,#3eb0db);
        color: #fff
    }

        .basvuru-btn.pri:hover {
            background: #2d9bc4
        }

    .basvuru-btn.sec {
        background: #f0f2f7;
        color: var(--pri,#0c3291);
        border: 1px solid #dde1ee
    }

        .basvuru-btn.sec:hover {
            background: #e2e6f0
        }

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 4px
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text,#333);
    cursor: pointer
}

    .checkbox-item input[type=checkbox] {
        width: 16px;
        height: 16px;
        accent-color: var(--acc,#3eb0db)
    }

.basvuru-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

    .basvuru-alert.success {
        background: #e8f7ef;
        border: 1px solid #a8dfc0;
        color: #1a5c38
    }

    .basvuru-alert.error {
        background: #fde8e8;
        border: 1px solid #f5c2c2;
        color: #7a1f1f
    }

@media(max-width:640px) {
    .basvuru-wrap {
        padding: 0 12px
    }

    .ilan-ozet-box {
        flex-direction: column;
        gap: 12px
    }
}
