﻿
/* ════════════════════════════════════════
       1. DESIGN TOKENS
       Tüm renk, boyut ve geçiş değerleri buradan
       yönetilir. Diğer sayfalarda kullanmak için
       yalnızca bu bloğu kopyalamanız yeterlidir.
    ════════════════════════════════════════ */
:root {
    /* Marka renkleri */
    --c-accent: #F5A623;
    --c-accent-dark: #E8941A;
    --c-accent-faint: rgba(245,166,35,.08);
    --c-accent-subtle: rgba(245,166,35,.15);
    --c-accent-border: rgba(245,166,35,.20);
    --c-accent-border-hover: rgba(245,166,35,.35);
    --c-on-accent: #111010;
    /* Yüzeyler */
    --c-bg: #111010;
    --c-bg-alt: #1a1917;
    --c-bg-raised: rgba(20,19,18,.92);
    --c-bg-modal: #161513;
    --c-bg-sidebar: #0f0e0d;
    --c-bg-footer: #080807;
    --c-overlay: rgba(0,0,0,.75);
    --c-scrim: rgba(0,0,0,.60);
    --c-surface-low: rgba(255,255,255,.04);
    --c-surface-mid: rgba(255,255,255,.06);
    --c-surface-hi: rgba(255,255,255,.08);
    /* Metin */
    --c-text: #f0ede8;
    --c-text-muted: #9a9690;
    --c-text-dim: rgba(255,255,255,.75);
    --c-text-faint: rgba(255,255,255,.35);
    /* Kenarlık */
    --c-border: rgba(255,255,255,.08);
    --c-border-accent: rgba(245,166,35,.25);
    /* Yazı tipi */
    --font: 'Nunito', sans-serif;
    --fw-regular: 400;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 800;
    /* Köşe yarıçapı */
    --r-sm: 8px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-pill: 50px;
    /* Boşluk */
    --sp-xs: 6px;
    --sp-sm: 10px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    /* Geçiş */
    --t-fast: .2s ease;
    --t-base: .3s ease;
    --t-spring: .38s cubic-bezier(.4,0,.2,1);
    --t-modal: .35s cubic-bezier(.4,0,.2,1);
    /* Z-index */
    --z-nav: 1000;
    --z-sidebar-bg: 1100;
    --z-sidebar: 1200;
    --z-modal: 2000;
}

/* ════════════════════════════════════════
       2. RESET & TEMEL
    ════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--c-accent);
    border-radius: 3px;
}

/* ════════════════════════════════════════
       3. YARDIMCI SINIFLAR
    ════════════════════════════════════════ */
.text-accent {
    color: var(--c-accent);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up.delay-1 {
        transition-delay: .1s;
    }

/* ════════════════════════════════════════
       4. BUTONLAR
    ════════════════════════════════════════ */

/* Sarı ana eylem butonu */
.btn-yk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-xs);
    width: 100%;
    padding: 13px 22px;
    background: var(--c-accent);
    color: var(--c-on-accent);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-black);
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast), color var(--t-fast);
}

    .btn-yk:hover {
        background: var(--c-accent-dark);
        transform: translateY(-1px);
        color: #0a0900;
    }

    .btn-yk .btn-arrow {
        font-size: 16px;
        transition: transform var(--t-fast);
    }

    .btn-yk:hover .btn-arrow {
        transform: translateX(3px);
    }

/* Şeffaf / ghost buton */
.btn-ghost {
    padding: 9px 22px;
    border-radius: var(--r-pill);
    border: 1.5px solid rgba(255,255,255,.30);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: border-color var(--t-fast), color var(--t-fast);
}

    .btn-ghost:hover {
        border-color: var(--c-accent);
        color: var(--c-accent);
    }

/* ════════════════════════════════════════
       5. FORM SİSTEMİ
       Tüm formlarda, tüm sayfalarda kullanılabilir.
       Sadece bu bloğu diğer sayfaya kopyalayın.
    ════════════════════════════════════════ */

/* Temel input / select / textarea */
.yk-input,
.yk-select,
.yk-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--c-surface-mid);
    border: 1.5px solid var(--c-surface-hi);
    border-radius: var(--r-md);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: var(--fw-semibold);
    appearance: none;
    -webkit-appearance: none;
    transition: border-color var(--t-fast), background var(--t-fast);
}

    .yk-input::placeholder,
    .yk-textarea::placeholder {
        color: var(--c-text-faint);
    }

    .yk-input:focus,
    .yk-select:focus,
    .yk-textarea:focus {
        outline: none;
        border-color: var(--c-accent);
        background: var(--c-accent-faint);
    }

/* Select: ok ikonu */
.yk-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

    .yk-select option {
        background: var(--c-bg-alt);
        color: var(--c-text);
    }

/* Textarea */
.yk-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Field grubu: label + input */
.yk-field {
    margin-bottom: var(--sp-sm);
}

    .yk-field label {
        display: block;
        font-size: 13px;
        font-weight: var(--fw-bold);
        color: var(--c-text-dim);
        margin-bottom: 5px;
    }

/* İki sütunlu satır */
.yk-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-sm);
}

    .yk-field-row .yk-field {
        margin-bottom: 0;
    }

/* Checkbox grubu */
.yk-check-group {
    margin-bottom: var(--sp-md);
}

    .yk-check-group legend {
        display: block;
        font-size: 13px;
        font-weight: var(--fw-bold);
        color: var(--c-text-dim);
        margin-bottom: var(--sp-sm);
        float: left;
        width: 100%;
    }

.yk-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xs);
}

.yk-check-grid--single {
    grid-template-columns: 1fr;
}

.yk-check-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,.70);
    cursor: pointer;
    padding: 5px 0;
    transition: color var(--t-fast);
}

    .yk-check-item:hover {
        color: #fff;
    }

    .yk-check-item input[type="checkbox"] {
        width: 14px;
        height: 14px;
        min-width: 14px;
        accent-color: var(--c-accent);
        cursor: pointer;
    }

.yk-check-item--full {
    grid-column: 1 / -1;
}

/* Form alt notu */
.yk-form-note {
    font-size: 11.5px;
    color: var(--c-text-muted);
    text-align: center;
    margin-top: var(--sp-sm);
}

/* ════════════════════════════════════════
       6. NAVBAR
    ════════════════════════════════════════ */
.yk-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 14px 0;
    background: rgba(14,13,12,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
    transition: background var(--t-base);
}

    .yk-nav.scrolled {
        background: rgba(10,9,8,.97);
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    font-weight: var(--fw-black);
    font-size: 18px;
    color: #fff;
}

.nav-logo__icon {
    width: 36px;
    height: 36px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-links a {
        padding: 8px 16px;
        border-radius: var(--r-sm);
        font-size: 14px;
        font-weight: var(--fw-semibold);
        color: var(--c-text-dim);
        transition: color var(--t-fast), background var(--t-fast);
    }

        .nav-links a:hover {
            color: #fff;
            background: var(--c-surface-hi);
        }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        transition: all var(--t-spring);
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ════════════════════════════════════════
       7. SIDEBAR
    ════════════════════════════════════════ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-sidebar-bg);
    background: var(--c-scrim);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-spring);
}

    .sidebar-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: var(--z-sidebar);
    width: min(300px, 85vw);
    background: var(--c-bg-sidebar);
    border-right: 1px solid var(--c-accent-border);
    transform: translateX(-100%);
    transition: transform var(--t-spring);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

    .sidebar.open {
        transform: translateX(0);
    }

.sidebar__header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar__close {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--c-surface-hi);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), color var(--t-fast);
}

    .sidebar__close:hover {
        background: var(--c-accent-subtle);
        color: var(--c-accent);
    }

.sidebar__nav {
    padding: 16px 0;
    flex: 1;
}

    .sidebar__nav a {
        display: flex;
        align-items: center;
        gap: var(--sp-sm);
        padding: 13px 20px;
        font-size: 15px;
        font-weight: var(--fw-semibold);
        color: rgba(255,255,255,.80);
        border-left: 3px solid transparent;
        transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
    }

        .sidebar__nav a:hover {
            color: #fff;
            background: var(--c-accent-faint);
            border-left-color: var(--c-accent);
        }

.sidebar__divider {
    height: 1px;
    background: var(--c-border);
    margin: var(--sp-sm) 20px;
}

.sidebar__footer {
    padding: 20px;
    border-top: 1px solid var(--c-border);
}

.sidebar__cta {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--c-accent);
    border-radius: var(--r-md);
    text-align: center;
    font-weight: var(--fw-black);
    font-size: 15px;
    color: var(--c-on-accent);
    transition: background var(--t-fast);
}

    .sidebar__cta:hover {
        background: var(--c-accent-dark);
    }

/* ════════════════════════════════════════
       8. HERO SLİDER  (Swiper.js)
       .NET panelinden dinamik slide eklenir:
       her .swiper-slide data-bg, badge, title,
       subtitle, btn1Label/Url, btn2Label/Url alır.
    ════════════════════════════════════════ */

.hero-swiper-wrap {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

    .hero-swiper .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

/* Ken Burns arka plan */
.hs-bg {
    position: absolute;
    inset: -6%;
    background-size: cover;
    background-position: center;
    filter: brightness(.55) saturate(1.15);
    transform: scale(1);
    will-change: transform;
}

.swiper-slide-active .hs-bg {
    animation: kbPan 8s ease-in-out forwards;
}

.swiper-slide-prev .hs-bg,
.swiper-slide-duplicate-prev .hs-bg {
    animation: none;
    transform: scale(1.1);
}

@keyframes kbPan {
    0% {
        transform: scale(1) translate(0,0)
    }

    100% {
        transform: scale(1.12) translate(-1.5%,-1%)
    }
}

@keyframes kbPan2 {
    0% {
        transform: scale(1) translate(0,0)
    }

    100% {
        transform: scale(1.12) translate(1.5%,-1%)
    }
}

@keyframes kbPan3 {
    0% {
        transform: scale(1) translate(0,0)
    }

    100% {
        transform: scale(1.10) translate(-1%,1.5%)
    }
}

.swiper-slide:nth-child(2).swiper-slide-active .hs-bg {
    animation-name: kbPan2;
}

.swiper-slide:nth-child(3).swiper-slide-active .hs-bg {
    animation-name: kbPan3;
}

/* Gradient katmanı */
.hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(10,9,8,.22) 0%, rgba(10,9,8,.08) 30%, rgba(10,9,8,.50) 68%, rgba(10,9,8,.94) 100% );
}

/* Işık zinciri */
.hs-lights {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="80"><path d="M0 10 Q50 0 100 10 Q150 20 200 10" stroke="%23333" stroke-width="1" fill="none" opacity="0.3"/><circle cx="50" cy="5" r="4" fill="%23F5A623" opacity="0.6"/><circle cx="100" cy="10" r="4" fill="%23F5A623" opacity="0.7"/><circle cx="150" cy="7" r="4" fill="%23F5A623" opacity="0.5"/></svg>') repeat-x top;
    opacity: .45;
    pointer-events: none;
    z-index: 2;
}

/* Metin bloğu */
.hs-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 120px 16px 80px;
    max-width: 780px;
    margin: 0 auto;
}

/* Giriş animasyonları */
.hs-badge, .hs-title, .hs-sub, .hs-actions {
    opacity: 0;
    transform: translateY(20px);
}

.swiper-slide-active .hs-badge {
    animation: hsIn .6s .25s ease forwards;
}

.swiper-slide-active .hs-title {
    animation: hsIn .6s .42s ease forwards;
}

.swiper-slide-active .hs-sub {
    animation: hsIn .6s .58s ease forwards;
}

.swiper-slide-active .hs-actions {
    animation: hsIn .6s .72s ease forwards;
}

@keyframes hsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hs-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--c-accent-subtle);
    border: 1px solid rgba(245,166,35,.30);
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    letter-spacing: .5px;
    margin-bottom: var(--sp-md);
}

.hs-title {
    font-size: clamp(28px, 5.5vw, 56px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0,0,0,.55);
    margin-bottom: var(--sp-md);
}

.hs-sub {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,.85);
    line-height: 1.65;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
    margin-bottom: var(--sp-xl);
}

.hs-actions {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Slide butonları */
.hs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    padding: 13px 28px;
    background: var(--c-accent);
    color: var(--c-on-accent);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-black);
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--t-fast), transform var(--t-fast);
}

    .hs-btn-primary:hover {
        background: var(--c-accent-dark);
        transform: translateY(-1px);
        color: #0a0900;
    }

.hs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}

    .hs-btn-ghost:hover {
        border-color: var(--c-accent);
        background: var(--c-accent-subtle);
        color: var(--c-accent);
    }

/* Navigasyon okları */
.hero-swiper-wrap .swiper-button-prev,
.hero-swiper-wrap .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.hero-swiper-wrap .swiper-button-prev {
    left: 20px;
}

.hero-swiper-wrap .swiper-button-next {
    right: 20px;
}

    .hero-swiper-wrap .swiper-button-prev:hover,
    .hero-swiper-wrap .swiper-button-next:hover {
        background: var(--c-accent);
        border-color: var(--c-accent);
    }

    .hero-swiper-wrap .swiper-button-prev::after,
    .hero-swiper-wrap .swiper-button-next::after {
        font-size: 13px;
        font-weight: 700;
        color: #fff;
    }

/* Pagination dots */
.hero-swiper-wrap .swiper-pagination {
    bottom: 28px;
    z-index: 10;
}

.hero-swiper-wrap .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.45);
    border-radius: 4px;
    opacity: 1;
    transition: width var(--t-base), background var(--t-base);
}

.hero-swiper-wrap .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--c-accent);
    border-radius: 4px;
}



/* Slide sayacı */
.hs-counter {
    position: absolute;
    bottom: 32px;
    right: 24px;
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: rgba(255,255,255,.50);
    z-index: 10;
    font-variant-numeric: tabular-nums;
}

    .hs-counter strong {
        color: var(--c-accent);
    }

/* ════════════════════════════════════════
       9. KART BÖLÜMÜ
    ════════════════════════════════════════ */
.cards-section {
    position: relative;
    z-index: 3;
    padding: 0 0 60px;
    margin-top: -40px;
}
/* Arka plan resimli kart */
.dual-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--t-base);
    border: 1px solid var(--c-accent-border);
}

    .dual-card:hover {
        transform: translateY(-4px);
        border-color: var(--c-accent-border-hover);
    }

/* Arka plan görseli */
.dual-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.40) saturate(1.1);
    transition: filter var(--t-base), transform var(--t-base);
}

.dual-card:hover .dual-card__bg {
    filter: brightness(.52) saturate(1.2);
    transform: scale(1.04);
}
/* Gradient: alttan metni okunaklı yapar */
.dual-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(10,9,8,.97) 0%, rgba(10,9,8,.70) 40%, rgba(10,9,8,.15) 100% );
}
/* İçerik */
.card-body {
    position: relative;
    z-index: 2;
    padding: var(--sp-xl);
}

.card-title {
    font-size: 20px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: var(--sp-xs);
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
}

    .card-title .emoji {
        font-size: 24px;
    }

.card-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.5;
    margin-bottom: var(--sp-md);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-lg);
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: var(--sp-xs);
        font-size: 13.5px;
        color: rgba(255,255,255,.85);
        padding: 5px 0;
        font-weight: var(--fw-semibold);
    }

        .feature-list li::before {
            content: '';
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: var(--c-accent);
            border-radius: 2px;
            margin-top: 5px;
        }

/* ════════════════════════════════════════
       10. MODAL
    ════════════════════════════════════════ */
.yk-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: var(--c-overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
}

    .yk-modal-backdrop.active {
        opacity: 1;
        pointer-events: all;
    }

.yk-modal {
    background: var(--c-bg-modal);
    border: 1px solid var(--c-border-accent);
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(28px) scale(.97);
    transition: transform var(--t-modal);
}

.yk-modal-backdrop.active .yk-modal {
    transform: translateY(0) scale(1);
}

.yk-modal::-webkit-scrollbar {
    width: 4px;
}

.yk-modal::-webkit-scrollbar-thumb {
    background: rgba(245,166,35,.40);
    border-radius: 2px;
}

.yk-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px var(--sp-lg) var(--sp-md);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    background: var(--c-bg-modal);
    z-index: 1;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.yk-modal__title {
    font-size: 18px;
    font-weight: var(--fw-black);
    color: #fff;
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    margin: 0;
}

    .yk-modal__title .emoji {
        font-size: 22px;
    }

.yk-modal__close {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: var(--c-surface-hi);
    border: none;
    color: var(--c-text-dim);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--t-fast), color var(--t-fast);
}

    .yk-modal__close:hover {
        background: rgba(245,166,35,.18);
        color: var(--c-accent);
    }

.yk-modal__body {
    padding: var(--sp-lg) var(--sp-lg) var(--sp-xl);
}

.yk-modal__subtitle {
    font-size: 15px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: var(--sp-md);
}

/* Başarı modalı */
.modal--success {
    max-width: 380px;
    text-align: center;
}

    .modal--success .yk-modal__header {
        justify-content: flex-end;
        border-bottom: none;
        padding-bottom: 0;
    }

.modal--success__icon {
    font-size: 56px;
    margin-bottom: var(--sp-md);
}

.modal--success__title {
    font-size: 20px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: var(--sp-sm);
}

.modal--success__text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: var(--sp-lg);
}

/* ════════════════════════════════════════
       11. NASIL ÇALIŞIR
    ════════════════════════════════════════ */
.how-section {
    padding: 70px 0;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
}

.how-section__title {
    text-align: center;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 50px;
}

.how-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(245,166,35,.18);
    transition: transform var(--t-base), border-color var(--t-base);
}

    .how-card:hover {
        transform: translateY(-4px);
        border-color: var(--c-accent-border-hover);
    }

.how-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.35) saturate(1.1);
    transition: filter var(--t-base), transform var(--t-base);
}

.how-card:hover .how-card__bg {
    filter: brightness(.48) saturate(1.2);
    transform: scale(1.04);
}

.how-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,9,8,.97) 0%,rgba(10,9,8,.72) 45%,rgba(10,9,8,.18) 100%);
}

.how-card__body {
    position: relative;
    z-index: 2;
    padding: var(--sp-xl);
}

.how-card__title {
    font-size: 17px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: var(--sp-lg);
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

    .how-card__title .emoji {
        font-size: 24px;
    }

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: var(--sp-md);
}

.step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-black);
    font-size: 13px;
    color: var(--c-on-accent);
    margin-top: 1px;
}

.step-text {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,.85);
    line-height: 1.5;
}

/* ════════════════════════════════════════
       12. FOOTER
    ════════════════════════════════════════ */
.yk-footer {
    background: var(--c-bg-footer);
    border-top: 1px solid var(--c-border);
    padding: 40px 0 24px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    padding-bottom: var(--sp-lg);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: var(--sp-lg);
}

.footer-links {
    display: flex;
    gap: var(--sp-lg);
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: 13px;
        font-weight: var(--fw-semibold);
        color: var(--c-text-muted);
        transition: color var(--t-fast);
    }

        .footer-links a:hover {
            color: var(--c-accent);
        }

.footer-copy {
    font-size: 12px;
    color: var(--c-text-muted);
    text-align: center;
}

/* ════════════════════════════════════════
       13. RESPONSIVE
    ════════════════════════════════════════ */
@media (max-width: 991px) {
    .nav-links, .nav-giris-wrap {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 767px) {
    .yk-field-row {
        grid-template-columns: 1fr;
    }

    .cards-section {
        margin-top: -20px;
        padding: 0 0 40px;
    }

    .hs-content {
        padding: 90px 16px 60px;
    }

    .hero-swiper-wrap .swiper-button-prev,
    .hero-swiper-wrap .swiper-button-next {
        display: none;
    }

    .yk-modal {
        border-radius: var(--r-lg);
    }

    .yk-modal__header {
        padding: 18px 18px 14px;
    }

    .yk-modal__body {
        padding: 16px 18px 20px;
    }
    /* Brands — mobilde kenar boşluğu ve fade yok */
    .brands-fade-wrap {
        padding: 0;
    }

        .brands-fade-wrap::before,
        .brands-fade-wrap::after {
            display: none;
        }
}



/* ════════════════════════════════════════
       15. MARKALAR SLİDER (otomatik kayan)
    ════════════════════════════════════════ */
.brands-section {
    padding: 70px 0;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}
    /* Başlık ve alt yazı — her zaman ortalı */
    .brands-section .section-header {
        margin-bottom: 16px;
        text-align: center;
    }

    .brands-section .section-header__title {
        color: var(--c-text);
        text-align: center;
    }

    .brands-section .section-header__line {
        margin: 12px auto 0;
    }

.brands-count {
    text-align: center;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 40px;
}

    .brands-count strong {
        color: var(--c-accent);
        font-weight: var(--fw-bold);
    }

/* Swiper marka slider */
.brands-swiper {
    overflow: visible;
}

    .brands-swiper .swiper-slide {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Az logo → Swiper kapalı, wrapper flex ile ortala */
    .brands-swiper.is-centered {
        overflow: visible !important;
    }

        .brands-swiper.is-centered .swiper-wrapper {
            display: flex !important;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 16px;
            transform: none !important;
            width: 100% !important;
        }

        .brands-swiper.is-centered .swiper-slide {
            width: auto !important;
            flex-shrink: 0;
        }

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 80px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 12px 16px;
    gap: 4px;
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
    overflow: hidden;
}

    .brand-logo:hover {
        border-color: var(--c-accent-border);
        background: var(--c-accent-faint);
        transform: translateY(-2px);
    }

    .brand-logo svg {
        max-width: 100%;
        height: 36px;
        opacity: .80;
        transition: opacity var(--t-fast), transform var(--t-fast);
    }

    .brand-logo img {
        max-width: 100%;
        max-height: 40px;
        object-fit: contain;
        opacity: .80;
        transition: opacity var(--t-fast), transform var(--t-fast);
    }

    .brand-logo:hover svg,
    .brand-logo:hover img {
        opacity: 1;
        transform: scale(1.05);
    }

/* Kenar silikleştirme + masaüstü yatay boşluk */
.brands-fade-wrap {
    position: relative;
    padding: 0 60px;
}

    .brands-fade-wrap::before,
    .brands-fade-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .brands-fade-wrap::before {
        left: 0;
        background: linear-gradient(to right, var(--c-bg-alt) 30%, transparent);
    }

    .brands-fade-wrap::after {
        right: 0;
        background: linear-gradient(to left, var(--c-bg-alt) 30%, transparent);
    }
    /* Az logo → fade efekti gereksiz */
    .brands-fade-wrap.is-centered::before,
    .brands-fade-wrap.is-centered::after {
        display: none;
    }

/* ════════════════════════════════════════
       16. AKTİF FESTİVALLER
    ════════════════════════════════════════ */
.festivals-section {
    padding: 80px 0;
    background: var(--c-bg);
}

.festival-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--t-base);
    text-decoration: none;
}

    .festival-card:hover {
        transform: translateY(-5px);
    }

.festival-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--t-base), filter var(--t-base);
    filter: brightness(.55);
}

.festival-card:hover .festival-card__bg {
    transform: scale(1.05);
    filter: brightness(.65);
}

.festival-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(10,9,8,.95) 0%, rgba(10,9,8,.50) 50%, transparent 100% );
}

.festival-card__body {
    position: relative;
    z-index: 2;
    padding: 20px 20px 20px;
}

.festival-card__title {
    font-size: 18px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.festival-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.60);
    margin-bottom: 12px;
    font-weight: var(--fw-semibold);
}

    .festival-card__meta svg {
        flex-shrink: 0;
    }

.festival-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.festival-tag {
    padding: 3px 9px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    font-size: 11px;
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,.80);
}

.festival-tag--accent {
    background: var(--c-accent-subtle);
    border-color: var(--c-accent-border);
    color: var(--c-accent);
}

.festival-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 18px;
    background: var(--c-accent);
    color: var(--c-on-accent);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 13px;
    font-weight: var(--fw-black);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--t-fast), transform var(--t-fast);
}

    .festival-card__btn:hover {
        background: var(--c-accent-dark);
        transform: translateY(-1px);
        color: #0a0900;
    }



/* ─── Login Layout ─── */
.login-wrap {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    padding-top: 65px
}

/* Sol yarı — arka plan görseli */
.login-left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 48px;
    min-height: calc(100vh - 65px);
}

.login-left__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?w=1400&q=85');
    background-size: cover;
    background-position: center;
    filter: brightness(.45) saturate(1.2);
}

.login-left__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(10,9,8,.5) 0%,rgba(10,9,8,.15) 50%,rgba(10,9,8,.7) 100%);
}

.login-left__overlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,transparent 60%,rgba(10,9,8,.95) 100%);
}

.login-left__content {
    position: relative;
    z-index: 2;
    max-width: 420px
}

.login-left__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: rgba(245,166,35,.18);
    border: 1px solid rgba(245,166,35,.35);
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.login-left__title {
    font-size: clamp(28px,3.2vw,44px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

    .login-left__title em {
        color: var(--c-accent);
        font-style: normal
    }

.login-left__desc {
    font-size: 15px;
    color: rgba(255,255,255,.70);
    line-height: 1.65;
    margin-bottom: 36px
}

.login-stats {
    display: flex;
    gap: 28px
}

.login-stat .num {
    font-size: 30px;
    font-weight: var(--fw-black);
    color: var(--c-accent);
    line-height: 1
}

.login-stat .lbl {
    font-size: 12px;
    color: rgba(255,255,255,.50);
    font-weight: var(--fw-semibold);
    margin-top: 3px
}

/* Sağ yarı — form */
.login-right {
    width: 460px;
    min-width: 460px;
    background: var(--c-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    border-left: 1px solid var(--c-border);
}

/* Logo */
.login-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px
}

.login-brand__icon {
    width: 40px;
    height: 40px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.login-brand__name {
    font-size: 20px;
    font-weight: var(--fw-black);
    color: #fff
}

.login-heading {
    font-size: 26px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 6px
}

.login-subhead {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 32px;
    line-height: 1.5
}

/* Şifre toggle */
.pwd-wrap {
    position: relative
}

    .pwd-wrap .yk-input {
        padding-right: 46px
    }

.btn-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--t-fast)
}

    .btn-eye:hover {
        color: var(--c-accent)
    }

/* Seçenekler */
.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--c-text-muted);
    cursor: pointer
}

    .login-remember input {
        width: 14px;
        height: 14px;
        accent-color: var(--c-accent);
        cursor: pointer
    }

.login-forget {
    font-size: 13px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    transition: color var(--t-fast)
}

    .login-forget:hover {
        color: var(--c-accent-dark)
    }

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0
}

    .login-divider::before, .login-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--c-border)
    }

    .login-divider span {
        font-size: 12px;
        color: var(--c-text-muted);
        font-weight: var(--fw-bold);
        white-space: nowrap
    }

/* Sosyal */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    background: var(--c-surface-mid);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: var(--c-text-dim);
    cursor: pointer;
    transition: background var(--t-fast),border-color var(--t-fast),color var(--t-fast)
}

    .btn-social:hover {
        background: var(--c-surface-hi);
        border-color: rgba(245,166,35,.25);
        color: #fff
    }

/* Hata */
.login-error {
    display: none;
    background: rgba(220,50,50,.10);
    border: 1px solid rgba(220,50,50,.28);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    font-size: 13px;
    color: #ff7070;
    margin-bottom: 16px
}

    .login-error.show {
        display: block
    }

/* Kayıt linki */
.login-register {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--c-text-muted)
}

    .login-register a {
        color: var(--c-accent);
        font-weight: var(--fw-bold);
        transition: color var(--t-fast)
    }

        .login-register a:hover {
            color: var(--c-accent-dark)
        }

/* Responsive */
@media(max-width:991px) {
    .nav-links, .nav-giris-wrap {
        display: none
    }

    .hamburger {
        display: flex
    }

    .login-left {
        display: none
    }

    .login-right {
        width: 100%;
        min-width: 0;
        border-left: none;
        padding: 40px 24px;
        justify-content: flex-start;
        padding-top: 40px;
        background: var(--c-bg-alt)
    }

    .login-wrap {
        background-image: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?w=900&q=80');
        background-size: cover;
        background-position: center
    }

        .login-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10,9,8,.82);
            z-index: 0
        }

    .login-right {
        position: relative;
        z-index: 1;
        background: transparent;
        display: flex;
        align-items: center
    }

    .login-right-inner {
        width: 100%;
        max-width: 420px;
        margin: 0 auto
    }
}

@media(max-width:480px) {
    .login-right {
        padding: 28px 16px
    }
}


/* Buttons */
.btn-yk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-xs);
    width: 100%;
    padding: 14px 22px;
    background: var(--c-accent);
    color: var(--c-on-accent);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 15px;
    font-weight: var(--fw-black);
    cursor: pointer;
    transition: background var(--t-fast),transform var(--t-fast)
}

    .btn-yk:hover {
        background: var(--c-accent-dark);
        transform: translateY(-1px);
        color: #0a0900
    }

.btn-ghost {
    padding: 9px 22px;
    border-radius: var(--r-pill);
    border: 1.5px solid rgba(255,255,255,.30);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: border-color var(--t-fast),color var(--t-fast)
}

    .btn-ghost:hover {
        border-color: var(--c-accent);
        color: var(--c-accent)
    }

/* Form */
.yk-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.10);
    border-radius: var(--r-md);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    appearance: none;
    -webkit-appearance: none;
    transition: border-color var(--t-fast),background var(--t-fast)
}

    .yk-input::placeholder {
        color: var(--c-text-faint)
    }

    .yk-input:focus {
        outline: none;
        border-color: var(--c-accent);
        background: var(--c-accent-faint)
    }

.yk-field {
    margin-bottom: 14px
}

    .yk-field label {
        display: block;
        font-size: 12.5px;
        font-weight: var(--fw-bold);
        color: var(--c-text-dim);
        margin-bottom: 5px;
        letter-spacing: .3px
    }

/* ════════════════════════════════
       6. HERO
    ════════════════════════════════ */
.nc-hero {
    position: relative;
    padding: 130px 0 80px;
    background: var(--c-bg);
    overflow: hidden;
}
    /* Subtle arka plan efekti */
    .nc-hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -80px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(245,166,35,.10) 0%, transparent 70%);
        pointer-events: none;
    }

    .nc-hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -60px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(245,166,35,.06) 0%, transparent 70%);
        pointer-events: none;
    }
/* Izgara doku */
.nc-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--c-border) 1px, transparent 1px), linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: .35;
    pointer-events: none;
}

.nc-hero__content {
    position: relative;
    z-index: 2;
}

.nc-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--c-accent-subtle);
    border: 1px solid var(--c-accent-border);
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    letter-spacing: .5px;
    margin-bottom: var(--sp-md);
}

.nc-hero__title {
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.1;
    margin-bottom: var(--sp-lg);
}

    .nc-hero__title em {
        color: var(--c-accent);
        font-style: normal;
    }

.nc-hero__desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--c-text-muted);
    line-height: 1.8;
    max-width: 640px;
}

/* Sağdaki dekoratif süreç özeti */
.nc-hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
}

.nc-hero__step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--r-md);
    transition: background var(--t-fast);
}

    .nc-hero__step:hover {
        background: var(--c-surface-low);
    }

.nc-hero__step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--c-accent-faint);
    border: 1.5px solid var(--c-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: var(--fw-black);
    color: var(--c-accent);
}

.nc-hero__step-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.nc-hero__step-text {
    font-size: 13.5px;
    font-weight: var(--fw-bold);
    color: var(--c-text-dim);
}
/* Bağlayıcı çizgi */
.nc-hero__connector {
    width: 2px;
    height: 14px;
    background: var(--c-accent-border);
    margin-left: 27px;
    border-radius: 1px;
}


/* ════════════════════════════════
       7. TİMELİNE
    ════════════════════════════════ */
.timeline-section {
    padding: 80px 0;
    background: var(--c-bg);
    overflow: hidden;
}

/* Bölüm başlığı */
.section-heading {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--c-accent-subtle);
    border: 1px solid var(--c-accent-border);
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    letter-spacing: .5px;
    margin-bottom: var(--sp-sm);
}

.section-heading__title {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0;
}

    .section-heading__title em {
        color: var(--c-accent);
        font-style: normal;
    }

.section-heading__line {
    width: 52px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ── Masaüstü yatay timeline ── */
.timeline-desktop {
    display: block;
}

.timeline-mobile {
    display: none;
}

/* Üst sıra: tek numaralı adımlar (1,3,5) */
/* Alt sıra: çift numaralı adımlar (2,4) */
.tl-track {
    position: relative;
    padding: 0 20px;
}

/* Yatay hat */
.tl-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent-border) 10%, var(--c-accent-border) 90%, transparent);
    transform: translateY(-50%);
    pointer-events: none;
}

/* 5 adım — grid */
.tl-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

/* Tek adım kapsayıcısı */
.tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

/* Çift: kart üstte, nokta altta — Tek: nokta üstte, kart altta */
.tl-step--top .tl-card {
    order: 1;
    margin-bottom: 0;
}

.tl-step--top .tl-stem {
    order: 2;
}

.tl-step--top .tl-dot {
    order: 3;
}

.tl-step--top .tl-spacer {
    order: 4;
}

.tl-step--bot .tl-spacer {
    order: 1;
}

.tl-step--bot .tl-dot {
    order: 2;
}

.tl-step--bot .tl-stem {
    order: 3;
}

.tl-step--bot .tl-card {
    order: 4;
}

/* Kart */
.tl-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 18px 16px;
    width: 100%;
    max-width: 180px;
    text-align: center;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.tl-step:hover .tl-card,
.tl-step.active .tl-card {
    border-color: var(--c-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245,166,35,.12);
}

.tl-card__icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.tl-card__title {
    font-size: 13px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Nokta */
.tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--c-bg);
    border: 2.5px solid var(--c-accent-border);
    position: relative;
    z-index: 2;
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.tl-step:hover .tl-dot,
.tl-step.active .tl-dot {
    background: var(--c-accent);
    border-color: var(--c-accent);
    transform: scale(1.25);
}

/* Dikey bağlayıcı kart→hat */
.tl-stem {
    width: 2px;
    height: 36px;
    background: var(--c-accent-border);
    flex-shrink: 0;
}

/* Boşluk (diğer taraf için) */
.tl-spacer {
    height: 60px; /* kart yüksekliğiyle uyumlu */
}

/* Detay paneli (tıklanan adımın açıklaması) */
.tl-detail {
    margin-top: 48px;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-accent-border);
    border-radius: var(--r-xl);
    padding: 32px 36px;
    display: none;
    animation: detailIn .35s ease;
}

    .tl-detail.show {
        display: flex;
        gap: 28px;
        align-items: flex-start;
    }

@keyframes detailIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tl-detail__icon {
    font-size: 44px;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: var(--c-accent-faint);
    border: 1px solid var(--c-accent-border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-detail__num {
    font-size: 11px;
    font-weight: var(--fw-black);
    color: var(--c-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tl-detail__title {
    font-size: 20px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tl-detail__text {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ── Mobil dikey timeline ── */
.tl-mobile-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 0 0 32px;
    position: relative;
    cursor: pointer;
}
    /* dikey çizgi */
    .tl-mobile-step::before {
        content: '';
        position: absolute;
        left: 19px;
        top: 38px;
        bottom: -2px;
        width: 2px;
        background: var(--c-accent-border);
    }

    .tl-mobile-step:last-child::before {
        display: none;
    }

.tl-mobile-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.tl-mobile-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--c-accent-faint);
    border: 2px solid var(--c-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.tl-mobile-step.open .tl-mobile-dot,
.tl-mobile-step:hover .tl-mobile-dot {
    background: var(--c-accent);
    border-color: var(--c-accent);
}

.tl-mobile-right {
    flex: 1;
    padding-top: 6px;
}

.tl-mobile-num {
    font-size: 11px;
    font-weight: var(--fw-black);
    color: var(--c-accent);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tl-mobile-title {
    font-size: 16px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 0;
}

.tl-mobile-desc {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65;
    transition: max-height .35s ease, margin var(--t-fast);
}

.tl-mobile-step.open .tl-mobile-desc {
    max-height: 200px;
    margin-top: 10px;
}



/* ════════════════════════════════
       8. OPSİYONEL HİZMETLER
    ════════════════════════════════ */
.optional-section {
    padding: 80px 0;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
}

.optional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.optional-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--t-base), transform var(--t-base);
}

    .optional-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--c-accent-faint), transparent);
        opacity: 0;
        transition: opacity var(--t-base);
    }

    .optional-card:hover {
        border-color: var(--c-accent);
        transform: translateY(-4px);
    }

        .optional-card:hover::before {
            opacity: 1;
        }
    /* Köşe aksan */
    .optional-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--c-accent);
        opacity: 0;
        transition: opacity var(--t-base);
    }

    .optional-card:hover::after {
        opacity: 1;
    }

.optional-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--c-accent-faint);
    border: 1px solid var(--c-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--sp-lg);
    position: relative;
    z-index: 1;
}

.optional-card__title {
    font-size: 18px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: var(--sp-sm);
    position: relative;
    z-index: 1;
}

.optional-card__text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}
/* Opsiyonel etiketi */
.optional-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    background: var(--c-surface-mid);
    border: 1px solid var(--c-border);
    font-size: 11px;
    font-weight: var(--fw-bold);
    color: var(--c-text-muted);
    letter-spacing: .3px;
}

/* ════════════════════════════════
       9. CTA BÖLÜMÜ
    ════════════════════════════════ */
.cta-section {
    padding: 100px 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(245,166,35,.10) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-section__content {
    position: relative;
    z-index: 2;
}

.cta-section__title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.1;
    margin-bottom: var(--sp-md);
}

    .cta-section__title em {
        color: var(--c-accent);
        font-style: normal;
    }

.cta-section__desc {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto var(--sp-xl);
}

.cta-section__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════
       11. RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 991px) {
    .nav-links, .nav-giris-wrap {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .timeline-desktop {
        display: none;
    }

    .timeline-mobile {
        display: block;
    }

    .nc-hero__visual {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .optional-grid {
        grid-template-columns: 1fr;
    }

    .nc-hero {
        padding: 100px 0 60px;
    }

    .tl-detail.show {
        flex-direction: column;
    }
}

/* ════════════════════════════════
       HERO
    ════════════════════════════════ */
.mk-hero {
    position: relative;
    padding: 130px 0 80px;
    background: var(--c-bg);
    overflow: hidden;
}
/* Izgara doku */
.mk-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--c-border) 1px,transparent 1px),linear-gradient(90deg,var(--c-border) 1px,transparent 1px);
    background-size: 64px 64px;
    opacity: .30;
    pointer-events: none
}
/* Glow */
.mk-hero__glow {
    position: absolute;
    top: -100px;
    right: -60px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle,rgba(245,166,35,.12) 0%,transparent 68%);
    pointer-events: none
}

.mk-hero__glow2 {
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle,rgba(245,166,35,.06) 0%,transparent 68%);
    pointer-events: none
}

.mk-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--c-accent-subtle);
    border: 1px solid var(--c-accent-border);
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    letter-spacing: .5px;
    margin-bottom: var(--sp-md)
}

.mk-hero__title {
    font-size: clamp(32px,5.5vw,60px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.05;
    margin-bottom: var(--sp-lg)
}

    .mk-hero__title em {
        color: var(--c-accent);
        font-style: normal
    }

.mk-hero__desc {
    font-size: clamp(14px,1.7vw,17px);
    color: var(--c-text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: var(--sp-xl)
}

.mk-hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* Sağ: Neden Yemekalanı? kartı */
.mk-why-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-accent-border);
    border-radius: var(--r-xl);
    padding: 28px;
    position: relative;
    z-index: 2;
}

.mk-why-card__title {
    font-size: 14px;
    font-weight: var(--fw-black);
    color: var(--c-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--sp-lg)
}

.mk-why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px
}

    .mk-why-item:last-child {
        margin-bottom: 0
    }

.mk-why-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
    background: rgba(74,222,128,.12);
    border: 1px solid rgba(74,222,128,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .mk-why-check svg {
        color: #4ade80
    }

.mk-why-text {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--c-text-dim);
    line-height: 1.4
}

    .mk-why-text strong {
        color: #fff;
        font-weight: var(--fw-black)
    }

/* Başvur CTA alt band */
.mk-why-cta {
    margin-top: var(--sp-lg);
    padding-top: var(--sp-lg);
    border-top: 1px solid var(--c-border);
}

    .mk-why-cta p {
        font-size: 12px;
        color: var(--c-text-muted);
        margin-bottom: 10px;
        text-align: center
    }

/* ════════════════════════════════
       SECTION HEADING
    ════════════════════════════════ */
.sec-head {
    text-align: center;
    margin-bottom: 52px
}

.sec-head__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--c-accent-subtle);
    border: 1px solid var(--c-accent-border);
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    letter-spacing: .5px;
    margin-bottom: var(--sp-sm)
}

.sec-head__title {
    font-size: clamp(24px,4vw,38px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0
}

    .sec-head__title em {
        color: var(--c-accent);
        font-style: normal
    }

.sec-head__line {
    width: 52px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 14px auto 0
}

/* ════════════════════════════════
       KONSEPTLER
    ════════════════════════════════ */
.concepts-section {
    padding: 80px 0;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
}

/* Konsept kartı */
.concept-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 100%;
    transition: border-color var(--t-base),transform var(--t-base);
}

    .concept-card:hover {
        border-color: var(--c-accent-border-hover);
        transform: translateY(-4px)
    }

/* Kart başlık bandı */
.concept-card__head {
    padding: 22px 20px 18px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.concept-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    flex-shrink: 0;
    background: var(--c-accent-faint);
    border: 1px solid var(--c-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.concept-card__name {
    font-size: 15px;
    font-weight: var(--fw-black);
    color: #fff;
    margin-bottom: 2px
}

.concept-card__sub {
    font-size: 12px;
    color: var(--c-text-muted)
}

/* Ürün listesi */
.concept-card__body {
    padding: 16px 20px 20px
}

.concept-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.concept-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 13.5px;
    font-weight: var(--fw-semibold);
    color: var(--c-text-dim);
    transition: color var(--t-fast);
}

    .concept-item:last-child {
        border-bottom: none
    }

    .concept-item::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--c-accent);
        flex-shrink: 0;
        opacity: .7;
    }

    .concept-item:hover {
        color: #fff
    }

/* ════════════════════════════════
       CTA BAND
    ════════════════════════════════ */
.mk-cta {
    padding: 100px 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .mk-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 700px;
        height: 350px;
        background: radial-gradient(ellipse,rgba(245,166,35,.09) 0%,transparent 70%);
        pointer-events: none
    }

.mk-cta__content {
    position: relative;
    z-index: 2
}

.mk-cta__title {
    font-size: clamp(28px,4.5vw,50px);
    font-weight: var(--fw-black);
    color: #fff;
    line-height: 1.1;
    margin-bottom: var(--sp-md)
}

    .mk-cta__title em {
        color: var(--c-accent);
        font-style: normal
    }

.mk-cta__desc {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto var(--sp-xl)
}

.mk-cta__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

/* ── Responsive ── */
@media(max-width:991px) {
    .nav-links, .nav-giris-wrap {
        display: none
    }

    .hamburger {
        display: flex
    }
}

@media(max-width:767px) {
    .mk-why-card {
        margin-top: 36px
    }

    .yk-field-row {
        grid-template-columns: 1fr
    }

    .mk-hero {
        padding: 100px 0 60px
    }
}
 / *   S w i p e r   M a r k a   S l i d e r   K e s i n t i s i z   K a y m a   * / 
 . b r a n d s - s w i p e r   . s w i p e r - w r a p p e r   { 
         t r a n s i t i o n - t i m i n g - f u n c t i o n :   l i n e a r   ! i m p o r t a n t ; 
 } 
  
 