/* ykd */

/* --------------------------------------------------------------------------
   1. Değişkenler (:root)
   -------------------------------------------------------------------------- */
:root {
    /* Koyu tonlar */
    --dark-header: #2a2f3a;
    --dark-header-2: #242833;
    --dark-hero: #1b2130;
    --dark-navy: #161b2b;
    --footer: #0d1220;

    /* Aksan */
    --primary: #3d6fb4;
    --primary-2: #4a7fc4;
    --primary-soft: rgba(61, 111, 180, .12);

    /* Açık tonlar */
    --light-bg: #f6f8fb;
    --light-bg-2: #eef1f6;
    --white: #ffffff;

    /* Metin */
    --text: #1f2733;
    --text-invert: #eef2f8;
    --muted: #7a8494;
    --muted-invert: #9aa6ba;
    --border: #e6eaf1;
    --border-dark: rgba(255, 255, 255, .08);

    /* Tipografi */
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-head: 'Plus Jakarta Sans', sans-serif;

    /* Ölçüler */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 100px;
    --container: 1200px;

    /* Gölge */
    --shadow-sm: 0 2px 8px rgba(22, 27, 43, .05);
    --shadow: 0 12px 30px rgba(22, 27, 43, .07);
    --shadow-lg: 0 24px 60px rgba(22, 27, 43, .12);

    /* Geçiş */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --transition: all .3s var(--ease);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.01em;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------------------------------
   3. Yardımcı / ortak bileşenler
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container);
}

.section {
    padding: 100px 0;
}

@media (max-width: 767px) {
    .section {
        padding: 64px 0;
    }
}

/* Bölüm etiketi (küçük üst yazı) */
.eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.eyebrow--muted {
    color: var(--muted);
}

/* Bölüm başlığı */
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--text);
    max-width: 620px;
}

.section-desc {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.0625rem;
    max-width: 560px;
}

/* Butonlar */
.btn {
    --btn-bg: var(--primary);
    --btn-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--btn-bg);
    color: var(--btn-color);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(61, 111, 180, .35);
    color: var(--btn-color);
}

.btn i {
    font-size: .9em;
}

.btn--primary {
    --btn-bg: var(--primary);
}

.btn--light {
    --btn-bg: #fff;
    --btn-color: var(--text);
}

.btn--light:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-color: var(--text-invert);
    border-color: rgba(255, 255, 255, .22);
}

.btn--ghost:hover {
    --btn-bg: rgba(255, 255, 255, .08);
    box-shadow: none;
    transform: translateY(-2px);
}

.btn--block {
    width: 100%;
}

/* Metin linki (ok ile) */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary);
}

.text-link i {
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-2);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* Giriş animasyonu (JS ile .is-visible) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   4. #header — Navbar
   -------------------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark-header);
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

#header.is-scrolled {
    background: var(--dark-header-2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

#header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 116px;
}

/* Marka */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
    flex-shrink: 0;
}

.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 0;
}

/* Ana menü */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-invert);
}

.main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -2px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #fff;
}

.main-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Açılır menü (dropdown) */
.nav-dd {
    position: relative;
    display: inline-flex;
}

.nav-dd__caret {
    font-size: .6rem;
    transition: transform .3s var(--ease);
}

.nav-dd__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--dark-header-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    z-index: 1001;
}

/* Köprü: hover boşluğunda menü kapanmasın */
.nav-dd__menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dd__menu a {
    display: block;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--muted-invert);
    text-transform: none;
}

.nav-dd__menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding-left: 18px;
}

/* Masaüstü: hover ile aç */
@media (min-width: 992px) {
    .nav-dd:hover .nav-dd__menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-dd:hover .nav-dd__caret {
        transform: rotate(180deg);
    }
}

/* Header sağ blok */
.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-pill);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
}

.phone-pill i {
    color: var(--primary-2);
}

.phone-pill:hover {
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}

/* Mobil menü butonu */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
}

@media (max-width: 991px) {
    #header .header-inner {
        height: 116px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        inset: 116px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--dark-header-2);
        padding: 12px 20px 24px;
        border-top: 1px solid var(--border-dark);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
        max-height: calc(100vh - 116px);
        overflow-y: auto;
        /* Kapalı: tamamen gizli (panel yüksekliğinden bağımsız) */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    }

    #header.nav-open .main-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav .nav-link {
        padding: 14px 4px;
        border-bottom: 1px solid var(--border-dark);
        justify-content: space-between;
    }

    .main-nav .nav-link::after {
        display: none;
    }

    /* Mobil dropdown: akordeon şeklinde açılır */
    .nav-dd {
        display: block;
    }

    .nav-dd__caret {
        font-size: .7rem;
        margin-left: auto;
    }

    .nav-dd.open .nav-dd__caret {
        transform: rotate(180deg);
    }

    .nav-dd__menu {
        position: static;
        transform: none;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0 0 0 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s var(--ease);
    }

    .nav-dd__menu::before {
        display: none;
    }

    .nav-dd.open .nav-dd__menu {
        max-height: 240px;
    }

    .nav-dd__menu a {
        border-bottom: 1px solid var(--border-dark);
        border-radius: 0;
    }

    .header-cta .phone-pill span {
        display: none;
    }

    .header-cta .phone-pill {
        padding: 11px 14px;
    }
}

@media (max-width: 575px) {
    #header .header-inner {
        gap: 12px;
    }

    /* Dar ekranda telefon pill'i gizle (numara footer + mobil menüde mevcut) */
    .header-cta .phone-pill {
        display: none;
    }

    .header-cta {
        gap: 10px;
    }

    .header-cta .btn {
        padding: 10px 16px;
        font-size: .85rem;
    }

    .brand {
        gap: 10px;
        font-size: 1rem;
    }

    .brand span {
        font-size: .95rem;
    }
}

/* --------------------------------------------------------------------------
   5. #hero
   -------------------------------------------------------------------------- */
#hero {
    position: relative;
    background: var(--dark-hero);
    color: var(--text-invert);
    overflow: hidden;
    padding: 150px 0 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .22;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, var(--dark-hero) 30%, rgba(27, 33, 48, .78) 60%, rgba(27, 33, 48, .55) 100%),
        radial-gradient(circle at 80% 0%, rgba(61, 111, 180, .25), transparent 55%);
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 26px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-invert);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-pill);
}

.hero-badge i {
    color: var(--primary-2);
}

.hero-title {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    max-width: 640px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.075rem;
    line-height: 1.7;
    color: var(--muted-invert);
    max-width: 540px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Cam efektli istatistik kartı */
.hero-card {
    background: rgba(20, 25, 40, .55);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.hero-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.hero-stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 18px 20px;
}

.hero-stat__label {
    display: block;
    font-size: .78rem;
    color: var(--muted-invert);
    margin-bottom: 8px;
}

.hero-stat__value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}

.hero-card__row {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 18px;
}

.hero-card__row .hero-stat__label {
    margin-bottom: 6px;
}

.hero-card__note {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
}

.hero-card__text {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--muted-invert);
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 4px;
    padding-top: 18px;
}

@media (max-width: 991px) {
    #hero {
        padding: 120px 0 70px;
    }

    .hero-card {
        margin-top: 16px;
    }
}

/* --------------------------------------------------------------------------
   6. #services
   -------------------------------------------------------------------------- */
#services {
    background: var(--white);
}

.section-head {
    margin-bottom: 48px;
}

.service-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: var(--transition);
}

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

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

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

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Koyu bölümlerde başlık/metin rengi */
.text-invert {
    color: var(--text-invert) !important;
}

.desc-invert {
    color: var(--muted-invert) !important;
}

/* --------------------------------------------------------------------------
   7. #corporate (koyu navy)
   -------------------------------------------------------------------------- */
#corporate {
    background: var(--dark-navy);
    color: var(--text-invert);
}

.corporate-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.corporate-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.corporate-content .eyebrow {
    color: var(--primary-2);
}

.corporate-content .section-title {
    margin-bottom: 16px;
}

.corporate-stats {
    margin-top: 30px;
}

.corp-box {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 22px 22px 20px;
    transition: var(--transition);
}

.corp-box:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(61, 111, 180, .5);
}

/* Sağ üst köşe ikonu */
.corp-box__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary-2);
    font-size: .95rem;
    transition: var(--transition);
}

.corp-box:hover .corp-box__icon {
    background: var(--primary);
    color: #fff;
}

.corp-box__value {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    padding-right: 40px;
}

.corp-box__title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.corp-box__desc {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--muted-invert);
}

@media (max-width: 991px) {
    .corporate-media img {
        height: 340px;
    }
}

/* --------------------------------------------------------------------------
   8. #references
   -------------------------------------------------------------------------- */
#references {
    background: var(--white);
    padding-top: 90px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.reference-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 22px 24px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
}

.reference-pill i {
    color: var(--primary);
}

.reference-pill:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

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

/* --------------------------------------------------------------------------
   9. #gallery
   -------------------------------------------------------------------------- */
#gallery {
    background: var(--light-bg);
}

.gallery-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.gallery-card__media {
    overflow: hidden;
    background: var(--dark-navy);
}

.gallery-card__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.gallery-card:hover .gallery-card__media img {
    transform: scale(1.06);
}

.gallery-card__body {
    padding: 22px 24px 26px;
}

.gallery-card__title {
    font-size: 1.075rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-card__desc {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   10. #cta
   -------------------------------------------------------------------------- */
#cta {
    background: var(--white);
}

.cta-box {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(61, 111, 180, .35), transparent 55%),
        var(--dark-navy);
    color: var(--text-invert);
    border-radius: var(--radius-lg);
    padding: 56px;
}

.cta-box .eyebrow {
    color: var(--primary-2);
}

.cta-box .section-title {
    margin-bottom: 14px;
}

.cta-info {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 28px;
}

.cta-info__list {
    margin-bottom: 22px;
}

.cta-info__list li {
    font-size: .92rem;
    line-height: 1.6;
    color: var(--muted-invert);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
}

.cta-info__list li:last-child {
    border-bottom: 0;
}

.cta-info__list span {
    color: #fff;
    font-weight: 600;
    margin-right: 6px;
}

.cta-info__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767px) {
    .cta-box {
        padding: 36px 26px;
    }
}

/* --------------------------------------------------------------------------
   11. #footer
   -------------------------------------------------------------------------- */
#footer {
    background: var(--footer);
    color: var(--muted-invert);
}

.footer-top {
    padding: 72px 0 48px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-about {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--muted-invert);
    max-width: 340px;
    margin-bottom: 22px;
}

.footer-contact {
    margin-bottom: 22px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--muted-invert);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-2);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    color: var(--muted-invert);
    font-size: .95rem;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-col__title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: .92rem;
    color: var(--muted-invert);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 20px 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom__inner p {
    font-size: .85rem;
    color: var(--muted-invert);
}

.scroll-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-pill);
    color: #fff;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .footer-bottom__inner {
        justify-content: center;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   12. Sayfa başlığı (iç sayfalar) — .page-hero
   -------------------------------------------------------------------------- */
.page-hero {
    background: var(--light-bg);
    text-align: center;
    padding: 150px 0 70px;
}

.page-hero__title {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    font-weight: 800;
    color: var(--text);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.page-hero__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: var(--primary);
}

.page-hero__desc {
    max-width: 640px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   13. Kurumsal — about card / values / stats bar / mini cta
   -------------------------------------------------------------------------- */
.about-intro {
    background: var(--light-bg);
    padding: 0 0 60px;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 48px 52px;
}

.about-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text);
}

.about-card p {
    color: var(--muted);
    font-size: 1.0125rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Değer kartları */
.values {
    background: var(--light-bg);
    padding: 20px 0 80px;
}

.value-card {
    height: 100%;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    transition: var(--transition);
}

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

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.value-card:hover .value-card__icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-6deg);
}

.value-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.value-card__desc {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--muted);
}

/* İstatistik bar */
.stats-section {
    background: var(--light-bg);
    padding: 0 0 80px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--light-bg-2);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 46px;
    background: var(--border);
}

.stat-item__value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item__label {
    display: block;
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500;
}

/* Mini CTA */
.mini-cta {
    background: var(--light-bg);
    text-align: center;
    padding: 20px 0 100px;
}

.mini-cta__title {
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.mini-cta__desc {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 1rem;
}

.mini-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 767px) {
    .about-card {
        padding: 32px 26px;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 420px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   14. İletişim — split layout / form / harita
   -------------------------------------------------------------------------- */
.contact {
    margin-top: 116px; /* sabit header'ı temizle */
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 116px);
}

.contact__panel {
    display: flex;
    justify-content: flex-end;
    padding: 70px 60px;
}

.contact__inner {
    width: 100%;
    max-width: 620px;
}

.contact__title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.contact__desc {
    color: var(--muted);
    font-size: 1.0125rem;
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 460px;
}

/* Bilgi kartları */
.contact-info {
    margin-bottom: 34px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    color: var(--text);
    transition: var(--transition);
}

.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.05rem;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.info-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-card__label {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 3px;
}

.info-card__value {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    overflow-wrap: anywhere;
    line-height: 1.4;
}

/* Form */
.contact-form {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.req {
    color: #e0564f;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    appearance: none;
}

.form-control::placeholder {
    color: #aab2c0;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Dosya ekle */
.file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    background: var(--light-bg);
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

/* Gönder butonu (koyu navy) */
.btn--send {
    --btn-bg: var(--dark-navy);
    --btn-color: #fff;
    padding: 16px 26px;
}

.btn--send:hover {
    --btn-bg: #1f2740;
    box-shadow: 0 12px 26px rgba(22, 27, 43, .25);
}

/* Sosyal */
.contact-social {
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.contact-social__label {
    display: block;
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.contact-social .footer-social a {
    border-color: var(--border);
    color: var(--muted);
}

.contact-social .footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Harita */
.contact__map {
    position: relative;
    min-height: 480px;
    background: var(--light-bg-2);
}

.contact__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .contact {
        margin-top: 116px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact__panel {
        justify-content: center;
        padding: 54px 28px;
        order: 1;
    }

    .contact__map {
        order: 2;
        min-height: 380px;
        height: 60vh;
    }
}

@media (max-width: 575px) {
    .contact__panel {
        padding: 40px 20px;
    }
}

/* --------------------------------------------------------------------------
   15. Yazılım entegrasyonu — ek sınıflar
   -------------------------------------------------------------------------- */
/* Header/footer logo görseli (DB'den gelen logo) */
.brand__logo {
    height: 100px;
    width: auto;
    display: block;
}

.footer-brand .brand__logo {
    height: 60px;
}

@media (max-width: 575px) {
    .brand__logo {
        height: 100px;
    }
}

/* --------------------------------------------------------------------------
   16. Carousel bölümleri (ürünler / foto galeri / iş ortakları) + slick
   -------------------------------------------------------------------------- */
#products { background: var(--white); }
#gallery { background: var(--light-bg); }
#partners { background: var(--white); border-top: 1px solid var(--border); }

/* Ortak medya slider (ürün + galeri) */
.media-slider {
    position: relative;
    margin: 0 -10px;
}

.media-slider .slick-track {
    display: flex;
}

.media-slider .slick-slide {
    height: auto;
    padding: 8px 10px;
}

.media-slider .slick-slide > div {
    height: 100%;
}

.slide-item {
    height: 100%;
}

/* Medya kartı */
.media-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.media-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--dark-navy);
}

.media-card__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.media-card:hover .media-card__media img {
    transform: scale(1.06);
}

.media-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 27, 43, .55);
    color: #fff;
    font-size: 1.15rem;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.media-card:hover .media-card__overlay {
    opacity: 1;
}

.media-card__body {
    padding: 18px 22px;
}

.media-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

/* Slick özel oklar */
.slick-prev-ykd,
.slick-next-ykd {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: .95rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.slick-prev-ykd { left: -10px; }
.slick-next-ykd { right: -10px; }

.slick-prev-ykd:hover,
.slick-next-ykd:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 575px) {
    .slick-prev-ykd { left: 2px; }
    .slick-next-ykd { right: 2px; }
}

/* İş ortakları logo şeridi */
.logo-slider {
    margin-top: 10px;
}

.logo-slider .slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 0 22px;
}

.logo-slider .slide img,
.logo-slider .slide .logo {
    max-height: 64px;
    max-width: 100%;
    width: auto;
    filter: grayscale(1);
    opacity: .65;
    transition: var(--transition);
}

.logo-slider .slide:hover img,
.logo-slider .slide:hover .logo {
    filter: grayscale(0);
    opacity: 1;
}

/* Ortalanmış bölüm başlığı yardımcıları */
.section-head.text-center .section-title {
    max-width: 640px;
}

/* --------------------------------------------------------------------------
   17. İç sayfa (sayfa modülü) — içerik / akordiyon / foto galeri
   -------------------------------------------------------------------------- */
.page-body {
    background: var(--light-bg);
    padding: 0 0 90px;
}

/* İçerik kartı (prose) */
.page-content {
    line-height: 1.8;
    color: var(--text);
}

.page-content > *:first-child { margin-top: 0; }
.page-content > *:last-child { margin-bottom: 0; }

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--text);
    margin: 28px 0 14px;
    line-height: 1.3;
}

.page-content h3 { font-size: 1.35rem; }
.page-content h4 { font-size: 1.15rem; }

.page-content p {
    color: var(--muted);
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    color: var(--muted);
    margin: 0 0 16px;
    padding-left: 22px;
}

.page-content li { margin-bottom: 8px; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content a {
    color: var(--primary);
    font-weight: 600;
}

.page-content a:hover { color: var(--primary-2); }

.page-content img { max-width: 100%; height: auto; border-radius: var(--radius); }

.page-content__figure {
    display: block;
    float: right;
    max-width: 42%;
    margin: 4px 0 20px 26px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-content__figure {
        float: none;
        max-width: 100%;
        margin: 0 0 20px;
    }
}

/* Akordiyon */
.faq {
    max-width: 900px;
    margin: 34px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: 0;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}

.faq-item__head i {
    color: var(--primary);
    font-size: .85rem;
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.faq-item.is-open .faq-item__head i { transform: rotate(180deg); }

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-item.is-open .faq-item__body { max-height: 600px; }

.faq-item__inner {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.75;
}

/* Sayfa foto galerisi */
.page-gallery { margin-top: 40px; }

.page-gallery__item {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-navy);
}

.page-gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.page-gallery__item:hover img { transform: scale(1.07); }

.page-gallery__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 27, 43, .5);
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.page-gallery__item:hover .page-gallery__zoom { opacity: 1; }

/* --------------------------------------------------------------------------
   18. İç sayfa listeleri — sidebar / pagination / filtre / video
   -------------------------------------------------------------------------- */
/* Liste kartı başlık linki + meta + özet */
.media-card__title a { color: inherit; }
.media-card__title a:hover { color: var(--primary); }

.media-card__meta {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 8px;
}

.media-card__meta i { color: var(--primary); margin-right: 4px; }

.media-card__desc {
    font-size: .88rem;
    line-height: 1.65;
    color: var(--muted);
    margin-top: 10px;
}

/* Kategori sidebar (SolKolon) */
.mobilkatmenu { margin-bottom: 16px; }

.mobilkatmenu .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    font-weight: 600;
}

.sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 132px;
}

.sidebar > .border-bottom {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 14px !important;
    margin-bottom: 14px !important;
    border-bottom: 1px solid var(--border) !important;
}

.nav-list { display: flex; flex-direction: column; gap: 2px; }
.nav-list ul { padding-left: 14px; margin-top: 2px; }

.nav-list li a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-weight: 500;
    color: var(--muted);
}

.nav-list li a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.nav-list li.aktifmenu > a,
.nav-list li a.aktifmenu {
    background: var(--primary-soft) !important;
    color: var(--primary) !important;
    font-weight: 600;
}

@media (max-width: 767px) {
    .sidebar { position: static; margin-bottom: 8px; }
}

/* Sayfalama (pagination) */
#Sayfalar {
    margin-top: 44px;
    display: flex;
    justify-content: center;
}

#Sayfalar .sayfing {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

#Sayfalar .sayfing li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

#Sayfalar .sayfing li a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Aktif sayfa (href'siz <a>) */
#Sayfalar .sayfing li a:not([href]) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    cursor: default;
}

/* Filtre chip'leri (projeler) */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.filter-chip {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
}

.filter-chip:hover { border-color: var(--primary); color: var(--primary); }

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Video kartı */
.video-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.video-card:hover { box-shadow: var(--shadow); }

.video-card__frame { background: var(--dark-navy); }
.video-card__frame iframe { border: 0; }

.video-card__body { padding: 18px 22px; }

.video-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

/* Detay geri linki */
.page-back { margin-top: 34px; }

/* --------------------------------------------------------------------------
   19. Anasayfa üst alan slider (full-width manşet) — slick
   -------------------------------------------------------------------------- */
#heroSlider {
    margin-top: 116px; /* sabit header'ı temizle */
    background: var(--dark-navy);
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

/* Slick init olmadan önce sadece ilk slaytı göster (FOUC engeli) */
.hero-slider:not(.slick-initialized) .hero-slide:nth-child(n+2) {
    display: none;
}

.hero-slide {
    position: relative;
    height: 640px;
    overflow: hidden;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 18, 32, .85) 0%, rgba(13, 18, 32, .55) 42%, rgba(13, 18, 32, .12) 100%),
        linear-gradient(0deg, rgba(13, 18, 32, .5) 0%, transparent 40%);
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-slide__inner {
    max-width: 640px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}

/* Aktif slaytta içerik animasyonla girsin */
.slick-active .hero-slide__inner {
    animation: heroSlideIn .8s var(--ease) .25s forwards;
}

@keyframes heroSlideIn {
    to { opacity: 1; transform: none; }
}

.hero-slide__title {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.hero-slide__desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-slide__desc p { margin-bottom: 10px; }
.hero-slide__desc p:last-child { margin-bottom: 0; }

/* Oklar */
.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(20, 25, 40, .35);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: var(--transition);
}

.hero-slider__arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-slider__arrow--prev { left: 26px; }
.hero-slider__arrow--next { right: 26px; }

/* Noktalar */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 5;
}

.hero-slider .slick-dots li { width: auto; height: auto; margin: 0; }

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    text-indent: -9999px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider .slick-dots li button:before { content: none; }

.hero-slider .slick-dots li.slick-active button {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    #heroSlider { margin-top: 116px; }
    .hero-slide { height: 500px; }
    .hero-slider__arrow { width: 44px; height: 44px; }
    .hero-slider__arrow--prev { left: 14px; }
    .hero-slider__arrow--next { right: 14px; }
}

@media (max-width: 575px) {
    .hero-slide { height: 440px; }
    .hero-slide__overlay {
        background: linear-gradient(0deg, rgba(13, 18, 32, .82) 0%, rgba(13, 18, 32, .35) 60%, rgba(13, 18, 32, .2) 100%);
    }
    .hero-slide__content { text-align: left; }
    .hero-slider__arrow { display: none !important; }
}

/* --------------------------------------------------------------------------
   20. İnce ayarlar
   -------------------------------------------------------------------------- */
/* Hero / slider hemen altındaki ilk bölümün üst boşluğunu yarıya indir */
#hero + .section,
#heroSlider + .section {
    padding-top: 50px;
}

@media (max-width: 767px) {
    #hero + .section,
    #heroSlider + .section {
        padding-top: 32px;
    }
}
/*ykdsoft*/