/* ==========================================================================
   SKS MOTORS — Kurumsal Web Sitesi
   Tek dosya tasarim sistemi (framework yok, saf CSS)
   ========================================================================== */

/* ---------- 1. Tokenlar ---------- */
:root {
    --bordo: #a93439;
    --bordo-dark: #7a1f23;
    --bordo-deep: #4d1113;
    --amber: #f59e0b;
    --amber-soft: #fde68a;

    --ink: #101720;
    --ink-2: #1c2531;
    --body: #46505f;
    --muted: #7b8698;
    --line: #e5e9f0;
    --line-soft: #eef1f6;
    --bg: #f6f8fb;
    --bg-soft: #fbfcfe;
    --white: #fff;

    --green: #25d366;

    --radius-s: 10px;
    --radius: 16px;
    --radius-l: 24px;

    --shadow-s: 0 4px 14px rgba(16, 23, 32, .06);
    --shadow: 0 14px 34px rgba(16, 23, 32, .08);
    --shadow-l: 0 26px 60px rgba(16, 23, 32, .14);
    --shadow-bordo: 0 14px 30px rgba(169, 52, 57, .28);

    --container: 1200px;
    --header-h: 76px;

    --font: "Manrope", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.02em;
}

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

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

/* ---------- 3. Yardimcilar ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 92px 0; }
.section--tight { padding: 68px 0; }
.section--bg { background: var(--bg); }
.section--soft { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }

.sec-head { max-width: 720px; margin: 0 0 44px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bordo);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: linear-gradient(90deg, var(--bordo), var(--amber));
    border-radius: 2px;
}
.sec-head--center .eyebrow::before { display: none; }

.sec-head h2 { font-size: clamp(1.7rem, 3.1vw, 2.5rem); margin-bottom: .35em; }
.sec-head p { font-size: 1.03rem; color: var(--muted); margin: 0; }

.text-grad {
    background: linear-gradient(96deg, var(--bordo) 0%, #d2565c 55%, var(--amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- 4. Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    font-size: .93rem;
    letter-spacing: .01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
    background: linear-gradient(135deg, var(--bordo) 0%, var(--bordo-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-bordo);
}
.btn--primary:hover { box-shadow: 0 18px 38px rgba(169, 52, 57, .4); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--bordo); color: var(--bordo); }

.btn--light {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .5); }

.btn--white { background: #fff; color: var(--bordo-dark); box-shadow: var(--shadow); }
.btn--wa { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(37, 211, 102, .3); }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- 5. Ust bar ---------- */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
}
.topbar .container {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 40px;
    flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--bordo); flex: none; }
.topbar .tb-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.topbar .tb-sep { width: 1px; height: 16px; background: rgba(255, 255, 255, .14); }
.tb-hide-sm { display: inline-flex; }

/* ---------- 6. Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow .2s, background .2s;
}
.site-header.is-stuck { box-shadow: 0 8px 26px rgba(16, 23, 32, .09); background: rgba(255, 255, 255, .96); }

.site-header .container {
    display: flex;
    align-items: center;
    gap: 26px;
    height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 40px; width: auto; }
.brand-txt { display: none; line-height: 1.1; }
.brand-txt strong { display: block; font-size: .98rem; color: var(--ink); font-weight: 900; letter-spacing: -.01em; }
.brand-txt span { font-size: .68rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    display: block;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink-2);
    transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.is-active { background: rgba(169, 52, 57, .08); color: var(--bordo); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- 7. Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 520px at 78% -10%, rgba(245, 158, 11, .17), transparent 62%),
        linear-gradient(140deg, #24090b 0%, var(--bordo-deep) 38%, var(--bordo-dark) 78%, #8f272c 100%);
    color: #fff;
    padding: 86px 0 96px;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://b2b.sksmotors.com.tr/Content/SliderResimler/orj/Mockup4.jpg");
    background-size: cover;
    background-position: center;
    opacity: .1;
    mix-blend-mode: luminosity;
    pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.hero-badge b {
    background: var(--amber);
    color: #3b2504;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .08em;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: .45em;
}
.hero h1 .accent {
    background: linear-gradient(92deg, #fde68a 0%, var(--amber) 60%, #fca5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .82);
    max-width: 560px;
    margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-marks { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-marks span {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .82);
}

/* Hero kart */
.hero-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-l);
    padding: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
}
.hero-card h3 { color: #fff; font-size: 1.16rem; margin-bottom: 6px; }
.hero-card > p { color: rgba(255, 255, 255, .7); font-size: .9rem; margin-bottom: 20px; }

.hero-card ul { display: grid; gap: 12px; margin-bottom: 24px; }
.hero-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .91rem;
    color: rgba(255, 255, 255, .88);
}
.hero-card li svg { width: 20px; height: 20px; flex: none; color: var(--amber); margin-top: 2px; }
.hero-card li b { display: block; color: #fff; font-weight: 800; }
.hero-card li small { color: rgba(255, 255, 255, .6); font-size: .82rem; }

.hero-card .btn { width: 100%; }
.hero-card-note {
    margin: 14px 0 0;
    font-size: .78rem;
    text-align: center;
    color: rgba(255, 255, 255, .55);
}

/* ---------- 8. Istatistik seridi ---------- */
.stats {
    position: relative;
    z-index: 5;
    margin-top: -46px;
}
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-l);
    overflow: hidden;
}
.stat { padding: 28px 24px; text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat-num {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1;
}
.stat-num span { color: var(--bordo); }
.stat-num [data-count] { color: var(--ink); }
.stat-lbl { font-size: .85rem; color: var(--muted); margin-top: 8px; font-weight: 600; }

/* ---------- 9. Kartlar / hizmetler ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--bordo), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #f0d3d5; }
.card:hover::before { transform: scaleX(1); }

.card-ico {
    width: 52px; height: 52px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdecec, #fbe0e1);
    color: var(--bordo);
    margin-bottom: 18px;
    transition: background .25s, color .25s, transform .25s;
}
.card-ico svg { width: 25px; height: 25px; }
.card:hover .card-ico {
    background: linear-gradient(135deg, var(--bordo), var(--bordo-dark));
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.card h3 { font-size: 1.1rem; margin-bottom: .45em; }
.card p { font-size: .93rem; color: var(--muted); margin: 0; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: .86rem;
    font-weight: 800;
    color: var(--bordo);
}
.card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- 10. Neden biz (split) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}
.split-media {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-l);
    background: linear-gradient(135deg, var(--bordo-dark), var(--bordo-deep));
    aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.split-media .media-tag {
    position: absolute;
    left: 22px; bottom: 22px;
    background: rgba(255, 255, 255, .95);
    border-radius: var(--radius-s);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}
.split-media .media-tag b { display: block; color: var(--ink); font-size: 1.05rem; }
.split-media .media-tag span { font-size: .8rem; color: var(--muted); }

.feature-list { display: grid; gap: 20px; margin-top: 26px; }
.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-ico {
    width: 44px; height: 44px;
    flex: none;
    border-radius: 13px;
    background: #fdecec;
    color: var(--bordo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.feature-ico svg { width: 21px; height: 21px; }
.feature h4 { font-size: 1rem; margin-bottom: .2em; }
.feature p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- 11. Marka seridi ---------- */
.marquee {
    position: relative;
    overflow: hidden;
    padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee + .marquee { margin-top: 16px; }
.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 62s linear infinite;
}
.marquee--rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-card {
    width: 158px;
    height: 92px;
    flex: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.logo-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .78;
    transition: filter .25s, opacity .25s;
}
.logo-card:hover { border-color: #f0d3d5; box-shadow: var(--shadow-s); transform: translateY(-3px); }
.logo-card:hover img { filter: none; opacity: 1; }

.brand-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.brand-search {
    position: relative;
    width: min(360px, 100%);
}
.brand-search input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font: inherit;
    font-size: .92rem;
    color: var(--ink);
    transition: border-color .18s, box-shadow .18s;
}
.brand-search input:focus {
    outline: 0;
    border-color: var(--bordo);
    box-shadow: 0 0 0 4px rgba(169, 52, 57, .12);
}
.brand-search svg {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--muted);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.brand-grid .logo-card { width: 100%; height: 86px; }
.brand-grid.is-hidden { display: none; }
.brand-empty { text-align: center; color: var(--muted); padding: 24px 0; font-size: .92rem; }

/* ---------- 12. Arac markalari ---------- */
.car-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.car-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 14px 16px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #f0d3d5; }
.car-card img { height: 46px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.car-card span { font-size: .82rem; font-weight: 800; color: var(--ink-2); letter-spacing: .04em; }

/* ---------- 13. CTA bant ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-l);
    padding: 54px 48px;
    background:
        radial-gradient(700px 300px at 88% 0%, rgba(245, 158, 11, .2), transparent 60%),
        linear-gradient(135deg, var(--bordo-dark) 0%, var(--bordo) 55%, #8f272c 100%);
    color: #fff;
    box-shadow: var(--shadow-l);
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-band::after {
    content: "";
    position: absolute;
    right: -70px; bottom: -110px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}
.cta-band-txt { flex: 1 1 420px; position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: .3em; }
.cta-band p { color: rgba(255, 255, 255, .82); margin: 0; max-width: 560px; }
.cta-band-act { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- 13.b Satis kanallari (B2B / perakende) ---------- */
.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.channel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-l);
    padding: 34px 32px 30px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-s);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
}
.channel:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.channel--b2b {
    background:
        radial-gradient(620px 260px at 100% 0%, rgba(245, 158, 11, .18), transparent 62%),
        linear-gradient(140deg, var(--bordo-deep) 0%, var(--bordo-dark) 60%, var(--bordo) 100%);
    border-color: transparent;
    color: rgba(255, 255, 255, .84);
}
.channel--b2b h3 { color: #fff; }
.channel--b2b .channel-tag { background: rgba(255, 255, 255, .14); color: #fde68a; }

.channel-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    background: #fdecec;
    color: var(--bordo);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.channel h3 { font-size: 1.35rem; margin-bottom: .3em; }
.channel > p { font-size: .95rem; margin-bottom: 18px; }

.channel ul { display: grid; gap: 9px; margin-bottom: 24px; }
.channel li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .92rem;
    color: var(--body);
}
.channel li svg { width: 18px; height: 18px; flex: none; color: var(--bordo); margin-top: 3px; }

/* Koyu zeminli B2B karti: yazi beyaz, ikonlar sari.
   Bu kurallar acik zeminli .channel kurallarindan SONRA gelmeli
   (ayni ozgullukte olduklari icin sonraki kazanir). */
.channel--b2b li { color: #fff; }
.channel--b2b li svg { color: var(--amber); }

.channel-foot { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.channel-url {
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .02em;
}
.channel--b2b .channel-url { color: rgba(255, 255, 255, .6); }

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

/* ---------- 14. Kurumsal ---------- */
.about-txt p { font-size: 1rem; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    font-weight: 700;
    color: var(--ink-2);
}
.about-points svg { width: 19px; height: 19px; color: var(--bordo); flex: none; }

/* ---------- 15. SSS ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item.is-open { border-color: #f0d3d5; box-shadow: var(--shadow-s); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}
.faq-q svg { width: 20px; height: 20px; flex: none; color: var(--bordo); transition: transform .25s; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-a > div { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- 16. Iletisim ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.info-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #f0d3d5; }
.info-ico {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #fdecec;
    color: var(--bordo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background .22s, color .22s, transform .22s;
}
.info-ico svg { width: 24px; height: 24px; }
.info-card:hover .info-ico {
    background: linear-gradient(135deg, var(--bordo), var(--bordo-dark));
    color: #fff;
    transform: scale(1.06);
}
.info-card h4 {
    font-size: .73rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5em;
}
.info-card p { margin: 0; color: var(--ink); font-weight: 700; font-size: .95rem; word-break: break-word; }

.contact-main {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 22px;
}
.contact-form-wrap { padding: 36px 38px; }
.contact-map { min-height: 520px; border-left: 1px solid var(--line); background: var(--bg); }
.contact-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }

.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--bg-soft);
    font: inherit;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .16s, box-shadow .16s, background .16s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
    outline: 0;
    border-color: var(--bordo);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(169, 52, 57, .12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req { color: var(--bordo); }

/* Hatali alan + hata mesaji */
.field input.is-invalid,
.field textarea.is-invalid {
    border-color: #dc2626;
    background: #fef2f2;
}
.field input.is-invalid:focus,
.field textarea.is-invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .13);
}
.field-err {
    display: none;
    margin-top: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: #b91c1c;
    line-height: 1.35;
}
.field-err.is-on { display: block; }
.form-note { font-size: .8rem; color: var(--muted); margin: 14px 0 0; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ---------- 17. Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .66);
    padding: 68px 0 0;
    font-size: .93rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 40px;
    padding-bottom: 46px;
}
.footer-brand img {
    height: 42px;
    margin-bottom: 18px;
    /* Koyu zeminde logo okunakli kalsin diye beyaz kart uzerinde */
    background: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    box-sizing: content-box;
}
.footer-brand p { max-width: 330px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    transition: background .18s, color .18s, transform .18s;
}
.footer-social a:hover { background: var(--bordo); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer-social svg { width: 17px; height: 17px; }

.site-footer h5 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.site-footer li { margin-bottom: 11px; }
.site-footer li a { transition: color .16s, padding-left .16s; }
.site-footer li a:hover { color: #fff; padding-left: 4px; }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--bordo); flex: none; margin-top: 4px; }

.footer-pay {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-pay span.lbl { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badges b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 32px;
    padding: 0 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .84rem;
    color: rgba(255, 255, 255, .48);
}
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- 18. Yuzen butonlar ---------- */
.fab-wa {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 950;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .42);
    transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 29px; height: 29px; }
.fab-wa::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--green);
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: .7; }
    100% { transform: scale(1.55); opacity: 0; }
}

.to-top {
    position: fixed;
    right: 22px; bottom: 88px;
    z-index: 940;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s;
    box-shadow: var(--shadow);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- 19. Sayfa basligi (ic sayfalar) ---------- */
.page-head {
    position: relative;
    overflow: hidden;
    padding: 62px 0 66px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(700px 300px at 85% -30%, rgba(245, 158, 11, .16), transparent 60%),
        linear-gradient(135deg, var(--bordo-deep) 0%, var(--bordo-dark) 55%, var(--bordo) 100%);
}
.page-head h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .3em; }
.page-head p { color: rgba(255, 255, 255, .8); max-width: 620px; margin: 0 auto; }
.crumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 16px;
}
.crumbs a:hover { color: #fff; }

/* ---------- 20. Giris animasyonu ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------- 21. Duyarli ---------- */
/* Logo yanindaki yazi ancak menuyu sikistirmayacak genislikte gorunsun */
@media (min-width: 1200px) {
    .brand-txt { display: block; }
}

@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 520px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .car-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; }
    .contact-map { border-left: 0; border-top: 1px solid var(--line); min-height: 340px; }
    .contact-map iframe { min-height: 340px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

/* Yatay menu sigmadigi genislikten itibaren hamburger menuye gec */
@media (max-width: 1080px) {
    :root { --header-h: 68px; }

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

    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-l);
        padding: 12px 20px 22px;
        display: none;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .main-nav.is-open { display: block; }
    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
    .main-nav a { padding: 13px 14px; border-radius: 12px; font-size: 1rem; }

    .header-cta .btn span.cta-long { display: none; }
    .split { grid-template-columns: 1fr; gap: 34px; }
    .split--flip .split-media { order: -1; }
    .topbar .tb-hide-sm { display: none; }
    .section { padding: 68px 0; }
    .cta-band { padding: 38px 26px; }
}

@media (max-width: 640px) {
    .cards { grid-template-columns: 1fr; }
    .car-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-points { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 26px 20px; }
    .stats { margin-top: -32px; }
    .stat { padding: 20px 14px; }
    .hero { padding: 58px 0 80px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .footer-bottom { justify-content: center; text-align: center; }
}
