/* Özoğlu Otomotiv — renkler logodan alınmıştır:
   siyah gövde, krom yazı, kırmızı şerit, mavi farlar. */
:root {
    --bg: #09090b;
    --bg-alt: #0f0f12;
    --card: #151518;
    --card-hover: #1b1b1f;
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f5f7;
    --text-dim: #a3a6ad;
    --text-mute: #6f727a;

    --red: #e0321f;
    --red-deep: #a3120e;
    --red-soft: rgba(224, 50, 31, 0.14);
    --blue: #4fc3e8;
    --blue-deep: #1f7fae;
    --blue-soft: rgba(79, 195, 232, 0.12);

    --accent: var(--red);
    --accent-light: #ff6a4d;
    --accent-gradient: linear-gradient(135deg, #ff4b2b 0%, #d4210f 55%, #a3120e 100%);
    --chrome-gradient: linear-gradient(180deg, #ffffff 0%, #e6e8ec 38%, #8b9098 52%, #d9dce1 70%, #ffffff 100%);

    --font-display: 'Exo 2', 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1200px;
    --header-h: 84px;
    --shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.8);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 200;
    background: var(--red);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
}
.skip-link:focus { top: 12px; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 12px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transform: skewX(-24deg);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; margin: 0 0 12px; letter-spacing: -0.005em; line-height: 1.15; }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: 19px; }
p { color: var(--text-dim); }

.text-chrome {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s var(--ease), box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .18s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-accent {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 12px 28px -10px rgba(224, 50, 31, .7), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn-accent:hover { box-shadow: 0 16px 34px -10px rgba(224, 50, 31, .85), inset 0 1px 0 rgba(255, 255, 255, .22); }
.btn-outline { border-color: var(--card-border-strong); color: var(--text); background: rgba(255, 255, 255, .03); }
.btn-outline:hover { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .07); }
.btn-ghost { color: var(--text-dim); background: transparent; }
.btn-ghost:hover { color: var(--text); }
.btn[disabled] { opacity: .7; pointer-events: none; }

.link-btn {
    background: none;
    border: none;
    color: var(--accent-light);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
}
.link-btn:hover { text-decoration: underline; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 9, 11, 0.72);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(9, 9, 11, 0.9);
    border-bottom-color: var(--card-border);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .9);
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
    opacity: 0;
    transition: opacity .25s ease;
}
.site-header.is-scrolled::after { opacity: .55; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
    transition: height .25s ease;
}
.site-header.is-scrolled .header-inner { height: 70px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 64px; width: auto; transition: height .25s ease; filter: drop-shadow(0 4px 12px rgba(0,0,0,.6)); }
.site-header.is-scrolled .brand-logo { height: 52px; }
.nav { display: flex; gap: 6px; }
.nav a {
    position: relative;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dim);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color .15s, background-color .15s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .04); }
.nav > a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform .25s var(--ease);
}
.nav > a.is-active { color: var(--text); }
.nav > a.is-active::after { transform: scaleX(1); }
.nav-mobile-cta { display: none; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; }
.header-phone-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--blue-soft);
    color: var(--blue);
    border: 1px solid rgba(79, 195, 232, .25);
}
.header-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone-text small { font-size: 11px; font-weight: 500; color: var(--text-mute); }
.header-phone:hover .header-phone-icon { background: rgba(79, 195, 232, .2); }
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 11px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: min(calc(100vh - var(--header-h)), 820px);
    display: flex;
    align-items: center;
    padding: 90px 0 110px;
}
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--bg); }
.hero-video, .hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video { opacity: 0; transition: opacity 1.1s ease; }
.hero-video.is-ready { opacity: 1; }
.hero-fallback {
    background:
        radial-gradient(ellipse 45% 55% at 78% 45%, rgba(79, 195, 232, .16), transparent 65%),
        radial-gradient(ellipse 50% 40% at 90% 100%, rgba(224, 50, 31, .22), transparent 65%),
        radial-gradient(ellipse 40% 50% at 0% 0%, rgba(255, 255, 255, .05), transparent 60%),
        var(--bg);
    transition: opacity .8s ease;
    overflow: hidden;
}
.hero-fallback.is-hidden { opacity: 0; }
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, #000 20%, transparent 75%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg, rgba(9, 9, 11, .9) 0%, rgba(9, 9, 11, .6) 45%, rgba(9, 9, 11, .2) 75%, rgba(9, 9, 11, .5) 100%),
        linear-gradient(0deg, var(--bg) 0%, transparent 25%);
}
.light-sweep {
    position: absolute;
    top: 0;
    left: -35%;
    width: 30%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .07) 45%, rgba(79, 195, 232, .04) 55%, transparent 100%);
    transform: skewX(-18deg);
    animation: sweep 9s ease-in-out infinite;
}
.light-sweep.l2 { animation-duration: 13s; animation-delay: 2.2s; opacity: .7; }
.light-sweep.l3 { animation-duration: 16.5s; animation-delay: 5s; opacity: .5; }
@keyframes sweep {
    0% { transform: translateX(0) skewX(-18deg); }
    50% { transform: translateX(420%) skewX(-18deg); }
    100% { transform: translateX(420%) skewX(-18deg); }
}
.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}
.hero-inner { max-width: 640px; position: relative; }
.hero h1 { font-size: clamp(36px, 5.2vw, 62px); line-height: 1.05; font-weight: 900; margin-bottom: 20px; }
.hero h1 .text-chrome { font-style: italic; padding-right: .08em; }
.hero-sub { font-size: 17.5px; max-width: 540px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 34px;
    margin: 44px 0 0;
    padding-top: 26px;
    border-top: 1px solid var(--card-border);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats dt { font-family: var(--font-display); font-size: 28px; font-weight: 800; line-height: 1.1; }
.hero-stats dd { margin: 4px 0 0; font-size: 13px; color: var(--text-dim); }
.hero-emblem { position: relative; display: flex; justify-content: center; }
.hero-emblem img {
    position: relative;
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .7));
    animation: emblemFloat 6s ease-in-out infinite;
}
.hero-emblem-glow {
    position: absolute;
    inset: 12% 8% 20%;
    background:
        radial-gradient(circle at 28% 40%, rgba(79, 195, 232, .45), transparent 40%),
        radial-gradient(circle at 72% 40%, rgba(79, 195, 232, .45), transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(224, 50, 31, .35), transparent 55%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes emblemFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes glowPulse {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}

.hero-fade {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp .9s var(--ease) forwards;
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    color: var(--text-dim);
    opacity: .7;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--card-border-strong);
    border-radius: 50%;
    animation: bounceCue 2.2s ease-in-out infinite;
}
.hero-scroll-cue:hover { color: var(--text); opacity: 1; border-color: var(--red); }
@keyframes bounceCue {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Trust bar */
.trust-bar {
    position: relative;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: var(--bg-alt);
}
.trust-bar::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--red-deep) 30%, var(--red) 50%, var(--red-deep) 70%, transparent 95%);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 26px 24px;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 600; font-size: 14.5px; }
.trust-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid; place-items: center;
    background: var(--blue-soft);
    color: var(--blue);
    border: 1px solid rgba(79, 195, 232, .2);
}

/* Sections */
.section { padding: 100px 0; }
.section-alt {
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 255, 255, .025), transparent 70%),
        var(--bg-alt);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin-bottom: 0; }
.section-head p { margin: 14px 0 0; font-size: 16px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transform: skewX(-24deg);
}

/* Reveal on scroll (JS varsa) */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Filters */
.filters {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 12px;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.filters select, .filter-search input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    height: 46px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.filters select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3a6ad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}
.filters select:hover, .filter-search input:hover { border-color: var(--card-border-strong); }
.filters select:focus, .filter-search input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.filters select.is-set { border-color: rgba(224, 50, 31, .55); }
.filter-search { position: relative; display: block; }
.filter-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-mute); pointer-events: none; }
.filter-search input { padding-left: 42px; }
.filter-search input::placeholder { color: var(--text-mute); }
.filter-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 14px;
    color: var(--text-dim);
    min-height: 28px;
}

/* Vehicle grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vehicle-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.js .vehicle-card.reveal.is-visible { transition: opacity .7s var(--ease), transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; transition-delay: 0ms; }
.vehicle-card:hover, .js .vehicle-card.reveal.is-visible:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(0, 0, 0, .9), 0 0 0 1px rgba(224, 50, 31, .25); border-color: rgba(224, 50, 31, .35); }
.vehicle-card[hidden] { display: none; }
.vehicle-photo { position: relative; aspect-ratio: 4/3; background: #1a1a1e; overflow: hidden; }
.vehicle-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 9, 11, .55), transparent 40%);
    pointer-events: none;
}
.vehicle-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.vehicle-card:hover .vehicle-photo img { transform: scale(1.06); }
.badge {
    position: absolute; top: 14px; left: 14px;
    z-index: 1;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 12px 6px 10px;
    border-radius: 6px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    padding-right: 16px;
}
.badge--inline { position: static; display: inline-block; margin-bottom: 10px; }
.photo-count {
    position: absolute;
    right: 12px; bottom: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
}
.vehicle-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 6px;
}
.vehicle-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--text-mute); }
.vehicle-body h3 { font-size: 20px; margin-bottom: 0; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dim);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--card-border);
    padding: 5px 11px;
    border-radius: 8px;
}
.vehicle-specs svg { color: var(--text-mute); }
.vehicle-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--card-border-strong);
}
.vehicle-footer small, .vehicle-modal-footer small {
    display: block;
    font-size: 11.5px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
.price { font-family: var(--font-display); color: var(--text); font-size: 23px; font-weight: 800; letter-spacing: .005em; }
.btn-round {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid var(--card-border-strong);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s var(--ease);
}
.vehicle-card:hover .btn-round { background: var(--accent-gradient); border-color: transparent; transform: rotate(-45deg); }
.empty-state { text-align: center; padding: 50px 20px; color: var(--text-dim); }
.empty-state p { margin: 0 0 16px; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--card-hover), var(--card));
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 24px;
}
.js .feature-card.reveal.is-visible { transition: opacity .7s var(--ease), transform .25s var(--ease), border-color .25s ease; }
.feature-card::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.feature-card:hover, .js .feature-card.reveal.is-visible:hover { transform: translateY(-4px); border-color: var(--card-border-strong); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-num {
    position: absolute;
    top: 16px; right: 20px;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
}
.feature-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: grid; place-items: center;
    margin-bottom: 20px;
    background: var(--red-soft);
    color: var(--accent-light);
    border: 1px solid rgba(224, 50, 31, .25);
}
.feature-card h3 { font-size: 18px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-text { font-size: 16px; margin-bottom: 22px; }
.about-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-left: 32px; font-weight: 500; }
.about-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 3px;
    width: 20px; height: 20px;
    border-radius: 6px;
    background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a4d' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
    border: 1px solid rgba(224, 50, 31, .3);
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.about-logo {
    position: relative;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 35%, rgba(79, 195, 232, .16), transparent 45%),
        radial-gradient(circle at 70% 35%, rgba(79, 195, 232, .16), transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(224, 50, 31, .18), transparent 60%),
        var(--card);
    border: 1px solid var(--card-border);
}
.about-logo img { filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .6)); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px; align-items: start; }
.contact-form {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { position: relative; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--text); font-weight: 600; }
.contact-form .optional { color: var(--text-mute); font-weight: 400; }
.contact-form input, .contact-form textarea {
    background: var(--bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    resize: vertical;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-mute); }
.contact-form input:hover, .contact-form textarea:hover { border-color: var(--card-border-strong); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.contact-form input:user-invalid, .contact-form textarea:user-invalid { border-color: var(--red); }
.char-count { position: absolute; right: 12px; bottom: 10px; font-size: 11.5px; color: var(--text-mute); font-weight: 500; pointer-events: none; }
.form-note { margin: 0; font-size: 12.5px; color: var(--text-mute); text-align: center; }
.form-vehicle-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--blue-soft);
    border: 1px solid rgba(79, 195, 232, .3);
    font-size: 14px;
}
.form-vehicle-note[hidden] { display: none; }
.form-vehicle-note button { background: none; border: none; color: var(--text-dim); font-size: 20px; cursor: pointer; line-height: 1; }
.form-vehicle-note button:hover { color: var(--text); }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.info-card--link { transition: border-color .2s ease, background-color .2s ease, transform .2s var(--ease); }
.info-card--link:hover { border-color: var(--card-border-strong); background: var(--card-hover); }
.info-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid; place-items: center;
    background: var(--red-soft);
    color: var(--accent-light);
}
.info-icon--wa { background: rgba(37, 211, 102, .12); color: #25d366; }
.info-card h4 { margin: 0 0 3px; font-family: inherit; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); font-weight: 700; }
.info-card p { margin: 0; font-size: 15px; color: var(--text); font-weight: 500; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--card-border);
    font-weight: 600;
    font-size: 14px;
    transition: border-color .2s ease, background-color .2s ease;
}
.social-links a:hover { border-color: var(--card-border-strong); background: var(--card-hover); }
.map-wrap { margin-top: 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); }
.map-wrap iframe { display: block; filter: grayscale(.4) contrast(1.05); }

/* Footer */
.site-footer {
    position: relative;
    padding: 64px 0 0;
    background: #060607;
    border-top: 1px solid var(--card-border);
}
.site-footer::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red) 50%, transparent);
    opacity: .6;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { height: 90px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 340px; margin: 0; }
.site-footer h4 { font-family: inherit; font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-mute); margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; color: var(--text-dim); }
.site-footer ul a:hover { color: var(--text); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid var(--card-border);
}
.footer-bottom p { margin: 0; font-size: 13px; color: var(--text-mute); }
.footer-admin-link { font-size: 12.5px; color: var(--text-mute); opacity: .6; }
.footer-admin-link:hover { opacity: 1; }

/* WhatsApp float + back to top */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px -8px rgba(37, 211, 102, .6);
    z-index: 40;
    transition: transform .2s var(--ease);
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPing 2.4s ease-out infinite;
}
@keyframes waPing {
    0% { transform: scale(1); opacity: .7; }
    80%, 100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.08); }
.back-to-top {
    position: fixed;
    right: 31px;
    bottom: 96px;
    z-index: 40;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--card-border-strong);
    background: rgba(21, 21, 24, .9);
    backdrop-filter: blur(8px);
    color: var(--text);
    display: grid; place-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s, border-color .2s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { border-color: var(--red); }

.mobile-action-bar { display: none; }

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: calc(100% - 32px);
    padding: 14px 16px 14px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: var(--shadow);
    animation: toastIn .4s var(--ease);
    transition: opacity .4s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -12px); } }
.toast--success { background: #14613d; color: #eafff2; border: 1px solid #1f8f5a; }
.toast--error { background: #7d1a12; color: #ffecec; border: 1px solid var(--red); }
.toast-close { background: none; border: none; color: inherit; font-size: 22px; line-height: 1; cursor: pointer; opacity: .7; padding: 0 4px; }
.toast-close:hover { opacity: 1; }

/* Vehicle modal */
.vehicle-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 20px; }
.vehicle-modal[hidden] { display: none; }
.vehicle-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .8); backdrop-filter: blur(6px); animation: fadeIn .25s ease; }
.vehicle-modal-panel {
    position: relative;
    background: var(--card);
    border: 1px solid var(--card-border-strong);
    border-radius: 20px;
    max-width: 860px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9);
    animation: modalIn .35s var(--ease);
    overscroll-behavior: contain;
}
.vehicle-modal-panel:focus { outline: none; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.98); } }
.vehicle-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: background .2s ease;
}
.vehicle-modal-close:hover { background: var(--red); }
.vehicle-modal-gallery { position: relative; aspect-ratio: 16/10; background: #0c0c0e; touch-action: pan-y; }
.vehicle-modal-gallery img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.vehicle-modal-gallery img.is-loading { opacity: .4; }
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center;
    transition: background .2s ease;
}
.gallery-nav:hover { background: rgba(0, 0, 0, .8); }
.gallery-nav[hidden] { display: none; }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-counter {
    position: absolute;
    left: 14px; bottom: 14px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .6);
}
.gallery-counter:empty { display: none; }
.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 16px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}
.gallery-thumbs:empty { display: none; }
.gallery-thumbs button {
    flex: 0 0 76px;
    height: 54px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #0c0c0e;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s ease, border-color .2s ease;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button:hover { opacity: .85; }
.gallery-thumbs button.is-active { opacity: 1; border-color: var(--red); }
.vehicle-modal-body { padding: 24px 28px 28px; }
.vehicle-modal-body h3 { font-size: 26px; }
.vehicle-modal-body #modalDescription { font-size: 15px; white-space: pre-line; }
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin: 16px 0 18px;
}
.spec-grid div {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--card-border);
}
.spec-grid dt { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); font-weight: 600; }
.spec-grid dd { margin: 2px 0 0; font-weight: 700; font-size: 15px; }
.vehicle-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
    gap: 16px;
}
.vehicle-modal-footer .price { font-size: 28px; }
.vehicle-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-fade { animation: none; opacity: 1; transform: none; }
    .light-sweep, .hero-scroll-cue, .hero-emblem img, .hero-emblem-glow, .whatsapp-float::before { animation: none; }
    .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 1080px) {
    .header-phone-text small { display: none; }
    .filters { grid-template-columns: repeat(2, 1fr); }
    .filter-search { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-emblem { order: -1; max-width: 300px; margin: 0 auto -10px; }
    .hero-inner { max-width: none; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero .eyebrow::after {
        content: "";
        width: 26px;
        height: 3px;
        border-radius: 2px;
        background: var(--accent-gradient);
        transform: skewX(-24deg);
    }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-logo { order: -1; padding: 30px; max-width: 460px; width: 100%; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
    :root { --header-h: 70px; }
    .nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .brand-logo, .site-header.is-scrolled .brand-logo { height: 52px; }
    .site-header.is-scrolled .header-inner { height: var(--header-h); }
    .site-header.nav-open .nav {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        height: calc(100vh - var(--header-h));
        height: calc(100dvh - var(--header-h));
        background: rgba(9, 9, 11, .98);
        flex-direction: column;
        padding: 20px 24px 32px;
        gap: 4px;
        overflow-y: auto;
        animation: fadeIn .2s ease;
    }
    .site-header.nav-open .nav > a {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 700;
        color: var(--text);
        padding: 14px 4px;
        border-bottom: 1px solid var(--card-border);
        border-radius: 0;
    }
    .site-header.nav-open .nav > a::after { display: none; }
    .site-header.nav-open .nav > a.is-active { color: var(--accent-light); }
    .site-header.nav-open .nav-mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
    body.nav-locked { overflow: hidden; }
}
@media (max-width: 720px) {
    .section { padding: 70px 0; }
    .section-head { margin-bottom: 34px; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 22px; }
    .hero { padding: 40px 0 70px; min-height: auto; }
    .hero-emblem { max-width: 240px; }
    .hero-stats { gap: 22px; margin-top: 34px; }
    .hero-stats dt { font-size: 22px; }
    .hero-stats dd { font-size: 12px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-scroll-cue { display: none; }
    .trust-grid { gap: 14px; padding: 20px 24px; }
    .trust-item { font-size: 13px; gap: 10px; }
    .trust-icon { width: 36px; height: 36px; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Mobilde sabit alt iletişim çubuğu, yüzen WhatsApp butonunun yerini alır */
    .whatsapp-float { display: none; }
    .back-to-top { right: 16px; bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
    body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
    .mobile-action-bar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 45;
        display: grid;
        grid-template-columns: 1fr 1fr 1.3fr;
        gap: 8px;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
        background: rgba(9, 9, 11, .94);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--card-border);
    }
    .mobile-action-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        height: 48px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 14px;
        background: rgba(255, 255, 255, .05);
        border: 1px solid var(--card-border);
    }
    .mobile-action-bar a.is-wa { background: #25d366; border-color: #25d366; color: #fff; }

    .vehicle-modal { padding: 0; align-items: flex-end; }
    .vehicle-modal-panel { max-height: 94vh; border-radius: 20px 20px 0 0; animation-name: sheetIn; }
    .vehicle-modal-body { padding: 20px 20px calc(24px + env(safe-area-inset-bottom, 0px)); }
    .vehicle-modal-body h3 { font-size: 22px; }
    .vehicle-modal-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
    .vehicle-modal-actions #modalWhatsapp { grid-column: 1 / -1; order: -1; padding: 14px; font-size: 15px; }
    .gallery-nav { width: 38px; height: 38px; }
}
@keyframes sheetIn { from { transform: translateY(100%); } }
@media (max-width: 420px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item span:last-child { line-height: 1.3; }
    .filters { gap: 8px; padding: 10px; }
    .filters select { font-size: 13px; padding-left: 10px; }
}
