:root {
    --bg: #f8f9fa;
    --surface: #ffffff;
    --text: #1a1f2b;
    --muted: #6b7280;
    --primary: #14233b;
    --primary-dark: #0c1726;
    --primary-light: #24405f;
    --accent: #d4af37;
    --accent-dark: #b8941f;
    --accent-soft: rgba(212, 175, 55, 0.14);
    --border: #e6e9ee;
    --success: #059669;
    --danger: #dc2626;
    --shadow-sm: 0 1px 3px rgba(20, 35, 59, 0.08);
    --shadow: 0 12px 32px rgba(20, 35, 59, 0.10);
    --shadow-lg: 0 24px 50px rgba(20, 35, 59, 0.18);
    --radius: 16px;
    --radius-sm: 12px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 6px 24px rgba(8, 23, 38, 0.18);
}

/* Top bar */
.topbar {
    background: #081726;
    color: #cdddea;
    font-size: .85rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: .55rem 0; flex-wrap: wrap;
}
.topbar-info { display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.topbar-info a, .topbar-hours { color: #cdddea; display: inline-flex; align-items: center; gap: .4rem; }
.topbar-info a:hover { color: #fff; }
.topbar .ti { opacity: .85; }
.topbar-social { display: flex; gap: 1rem; }
.topbar-social a { color: #9fb6c9; font-weight: 600; font-size: .82rem; }
.topbar-social a:hover { color: var(--accent); }

/* Full-width navy menu bar */
.header-main {
    background: linear-gradient(135deg, #0c1726 0%, #14233b 55%, #1f3554 100%);
    position: relative;
}
.header-main::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 20px 20px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: .8rem 0;
    position: relative;
    z-index: 1;
}
.header-inner { align-items: center !important; }
.logo { display: flex; align-items: center !important; gap: .9rem; color: inherit; position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; }
.logo-mark {
    width: 52px; height: 52px; border-radius: 14px;
    background: #fff; color: var(--primary);
    display: grid; place-items: center; font-weight: 800; font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}
.logo-image {
    max-height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.logo-text strong { display: block; font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.logo-text small { display: block; color: #b9d2e6; font-size: .82rem; }
.main-nav { display: flex; gap: .35rem; flex-wrap: wrap; align-items: center !important; position: relative; z-index: 1; }
.main-nav a { display: inline-flex; align-items: center; }
.header-actions { align-items: center !important; }
.main-nav a {
    color: #e6eef5; font-weight: 600; font-size: .95rem;
    padding: .6rem .95rem; border-radius: 10px; position: relative;
    transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: rgba(255,255,255,.14); color: #fff; }
.main-nav a.active { color: #fff; background: rgba(255,255,255,.16); }
.main-nav a.active::after {
    content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .28rem; height: 2px;
    border-radius: 2px; background: var(--accent);
}
.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; cursor: pointer; color: #fff; position: relative; z-index: 1; }
.header-actions { display: flex; gap: .5rem; position: relative; z-index: 1; }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { background: #1fbd5a; color: #fff; }

/* Hero — modern video/slider background */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #0c1726;
    width: 100%;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 4.5rem 0;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(8,18,32,.86) 0%, rgba(8,18,32,.66) 45%, rgba(8,18,32,.5) 100%),
        linear-gradient(180deg, rgba(8,18,32,.35) 0%, transparent 35%, rgba(8,18,32,.55) 100%);
}
.hero-slide-fallback {
    background:
        radial-gradient(900px 500px at 0% 110%, rgba(36, 64, 95, 0.6), transparent 55%),
        linear-gradient(135deg, #0c1726 0%, #14233b 45%, #1f3554 100%);
    opacity: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(212,175,55,.16); border: 1px solid rgba(212,175,55,.4);
    color: #f1d98a;
    padding: .4rem .9rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
    margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 0 0 1rem; font-weight: 800; line-height: 1.12; max-width: 18ch; }
.hero-slogan { opacity: .92; font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 400; max-width: 58ch; margin: 0 0 2rem; }

/* Glassmorphism horizontal search bar */
.hero-search {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: .75rem;
    align-items: end;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 50px rgba(8,18,32,.4);
}
.hero-search-field { display: flex; flex-direction: column; gap: .35rem; text-align: left; }
.hero-search-field label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.hero-search-field select {
    width: 100%; padding: .7rem .8rem;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.92);
    color: var(--text); font-family: inherit; font-size: .92rem; font-weight: 600;
    cursor: pointer; transition: box-shadow .2s ease, border-color .2s ease;
}
.hero-search-field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,175,55,.3); }
.hero-search-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .75rem 1.5rem; height: 46px;
    border: 0; border-radius: var(--radius-sm); cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #1a1f2b; font-family: inherit; font-weight: 800; font-size: .95rem;
    box-shadow: 0 10px 24px rgba(212,175,55,.4);
    transition: transform .15s ease, box-shadow .2s ease;
}
.hero-search-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212,175,55,.5); }
.hero-search-btn svg { flex: 0 0 auto; }

/* Stats bar */
.stats-bar {
    position: relative; z-index: 2;
    margin-top: 2.5rem;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    background: var(--surface); border-radius: var(--radius);
    padding: 1.4rem; box-shadow: var(--shadow); margin-top: -3.5rem;
}
.stat { text-align: center; padding: .4rem; }
.stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.stat span { color: var(--muted); font-size: .9rem; }
.stat-rating .rating-stars { display: inline-flex; gap: 2px; margin-bottom: .15rem; }
.stat-rating .rating-stars svg { width: 18px; height: 18px; color: var(--accent); }
.stat-rating strong { font-size: 1.35rem; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.8rem; }
.section-head h1, .section-head h2 { margin: 0; position: relative; padding-left: .9rem; }
.section-head h1::before, .section-head h2::before {
    content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 5px;
    border-radius: 6px; background: linear-gradient(var(--primary), var(--accent));
}
.section-head a { font-weight: 600; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Features / Why us */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature {
    position: relative;
    background: var(--surface);
    border: 1px solid #dbe3ee;
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    box-shadow: 0 10px 28px rgba(15, 76, 129, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}
.feature::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0; transition: opacity .25s ease;
}
.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 76, 129, 0.18);
    border-color: transparent;
}
.feature:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent); font-size: 1.6rem; margin-bottom: 1rem;
    box-shadow: 0 10px 22px rgba(20, 35, 59, 0.28);
}
.feature-icon svg { width: 26px; height: 26px; }

/* Partners / trusted-by strip */
.partners { padding: 2.5rem 0 3.5rem; }
.partners-title {
    text-align: center; color: var(--muted); font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; margin: 0 0 1.6rem;
}
.partners-grid {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 1.2rem 2.4rem;
}
.partner-logo {
    display: inline-flex; flex-direction: column; align-items: center; gap: .55rem;
    font-weight: 800; font-size: 1.05rem; color: #1a1f2b; letter-spacing: -.01em;
    filter: grayscale(1) opacity(.55);
    transition: filter .3s ease, transform .3s ease;
}
.partner-logo img {
    width: 52px; height: 52px; object-fit: contain; display: block;
}
.partner-logo:hover { filter: grayscale(0) opacity(1); transform: translateY(-2px); }
.pl-name { white-space: nowrap; }
.feature h3 { margin: 0 0 .4rem; font-size: 1.08rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Campaign cards (home) */
.campaign-card {
    position: relative;
    background: var(--surface);
    border: 1px solid #dbe3ee;
    border-left: 5px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: 0 10px 28px rgba(15, 76, 129, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.campaign-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(15, 76, 129, 0.16); }
.campaign-card .vehicle-badge { position: static; display: inline-block; margin-bottom: .8rem; }
.campaign-card h3 { margin: 0 0 .5rem; font-size: 1.15rem; }
.campaign-card p { margin: 0 0 1.1rem; color: var(--muted); }

/* Alternating section background so white cards stand out */
.section-soft { background: linear-gradient(180deg, #eef3f9, #f7fafd); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem; padding: .8rem 1.3rem; border-radius: 12px;
    border: 1px solid transparent; font-weight: 700; cursor: pointer;
    font-family: inherit; font-size: .95rem; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 8px 20px rgba(20,35,59,.28); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(20,35,59,.36); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #1a1f2b; box-shadow: 0 8px 20px rgba(212,175,55,.32); }
.btn-accent:hover { box-shadow: 0 12px 26px rgba(212,175,55,.42); color: #1a1f2b; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: .5rem .85rem; font-size: .88rem; }

/* Vehicle cards */
.vehicle-card {
    background: #fff; border-radius: 14px;
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eef1f5;
    transition: transform .3s ease, box-shadow .3s ease;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(0,0,0,0.12); }
.vehicle-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #0f172a; }
.vehicle-card-image-link { display: block; width: 100%; height: 100%; }
.vehicle-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.vehicle-card:hover .vehicle-card-image img { transform: scale(1.05); }

/* Quick action icon buttons (top-right) */
.vehicle-card-quick { position: absolute; top: .7rem; right: .7rem; display: flex; flex-direction: column; gap: .45rem; z-index: 2; }
.icon-btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.85); color: var(--primary);
    border: 1px solid rgba(255,255,255,.6); cursor: pointer;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transition: transform .18s ease, background .2s ease, color .2s ease;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { transform: scale(1.1); background: #fff; color: var(--accent-dark); }
.icon-btn.is-active { background: var(--accent); color: #1a1f2b; border-color: var(--accent); }
.icon-btn.is-active svg { fill: currentColor; }

.vehicle-card-body { padding: 1.15rem 1.2rem 1.25rem; }
.vehicle-card-body h3 { font-size: 1.1rem; margin: 0 0 .9rem; line-height: 1.3; }

/* Spec badges with icons + dividers */
.vehicle-specs {
    list-style: none; padding: .7rem 0; margin: 0 0 1.1rem;
    display: flex; flex-wrap: wrap;
    border-top: 1px solid #eef1f5; border-bottom: 1px solid #eef1f5;
}
.vehicle-specs li {
    display: flex; align-items: center; gap: .4rem;
    padding: .15rem .85rem; font-size: .82rem; color: #475569; font-weight: 600;
    border-right: 1px solid #e6e9ee;
}
.vehicle-specs li:first-child { padding-left: 0; }
.vehicle-specs li:last-child { border-right: 0; }
.spec-ico { display: inline-flex; color: var(--accent-dark); }
.spec-ico svg { width: 15px; height: 15px; }

.vehicle-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { color: var(--accent-dark); white-space: nowrap; font-size: 1.32rem; font-weight: 800; letter-spacing: -.01em; }

.vehicle-badges { position: absolute; top: .8rem; left: .8rem; display: flex; gap: .35rem; flex-wrap: wrap; z-index: 2; }
.vehicle-badge { background: rgba(15,23,42,.78); color: #fff; padding: .25rem .65rem; border-radius: 999px; font-size: .75rem; font-weight: 600; backdrop-filter: blur(4px); }
.badge-campaign { background: var(--accent); color: #1a1f2b; }
.status-reserved { background: var(--accent-dark); }
.status-sold { background: var(--danger); }

/* Filters */
.filters {
    background: var(--surface); border-radius: var(--radius);
    padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.8rem; border: 1px solid var(--border);
}
.filters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.field label { display: block; font-size: .88rem; margin-bottom: .4rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
    width: 100%; padding: .75rem .9rem; border: 1px solid var(--border);
    border-radius: 10px; background: #fff; font-family: inherit; font-size: .95rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(20,35,59,.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.honeypot { display: none !important; }
.offer-form-wrap { max-width: 720px; margin: 0 auto; }
.field-actions { display: flex; align-items: end; gap: .5rem; }

/* Detail */
.detail-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 2rem; align-items: start; }
.detail-main { min-width: 0; }
.form-card, .compare-table-wrap {
    background: var(--surface); border-radius: var(--radius);
    padding: 1.6rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}

/* Gallery carousel */
.vehicle-gallery { margin-bottom: 1.6rem; }
.gallery-stage {
    position: relative; border-radius: 12px; overflow: hidden;
    background: #0f172a; aspect-ratio: 16/10; box-shadow: var(--shadow);
    touch-action: pan-y;
}
.gallery-stage img { width: 100%; height: 100%; object-fit: contain; transition: opacity .3s ease, transform .4s ease; }
.gallery-stage img.is-swapping { opacity: 0; }
.gallery-badge-status { position: absolute; top: 1rem; left: 1rem; z-index: 3; }
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
    display: grid; place-items: center; font-size: 1.3rem; color: #1a1f2b;
    background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: background .2s ease, transform .2s ease;
}
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-nav.prev { left: 1rem; }
.gallery-nav.next { right: 1rem; }
.gallery-counter {
    position: absolute; bottom: 1rem; right: 1rem; z-index: 3;
    background: rgba(15,23,42,.7); color: #fff; padding: .3rem .8rem;
    border-radius: 999px; font-size: .8rem; font-weight: 600; backdrop-filter: blur(4px);
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; margin-top: .8rem; }
.gallery-thumbs img { border-radius: 10px; cursor: pointer; aspect-ratio: 16/10; object-fit: cover; border: 2px solid transparent; transition: border-color .2s ease, transform .2s ease; }
.gallery-thumbs img:hover { transform: translateY(-2px); }
.gallery-thumbs img.is-active { border-color: var(--accent); }

/* Headline */
.detail-headline { margin-bottom: 1.4rem; }
.detail-headline h1 { margin: 0 0 .3rem; font-size: 1.7rem; letter-spacing: -.01em; }
.detail-sub { margin: 0; color: var(--muted); font-weight: 600; }

/* Feature blocks */
.feature-blocks { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-bottom: 1.6rem; }
.feature-block {
    display: flex; align-items: center; gap: .75rem;
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    padding: .9rem 1rem; box-shadow: 0 4px 14px rgba(15,23,42,.04);
}
.fb-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: #f1f3f7; color: #94a3b8; font-size: 1.2rem; }
.fb-meta { display: flex; flex-direction: column; min-width: 0; }
.fb-label { color: var(--muted); font-size: .78rem; font-weight: 600; }
.fb-value { color: var(--text); font-weight: 700; font-size: .98rem; }

/* Trust / expertise */
.trust-section { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.6rem; }
.trust-title { margin: 0 0 1rem; font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; }
.trust-title i { color: var(--accent-dark); }
.trust-badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.trust-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 999px; font-weight: 700; font-size: .9rem; }
.trust-badge.ok { background: rgba(5,150,105,.12); color: #047857; border: 1px solid rgba(5,150,105,.28); }
.trust-badge.soft { background: rgba(20,35,59,.06); color: var(--primary); border: 1px solid rgba(20,35,59,.12); }
.trust-badge.neutral { background: #f1f3f7; color: #64748b; font-weight: 600; }
.trust-report { margin-top: 1rem; }
.trust-badge-btn { cursor: pointer; font-family: inherit; transition: background .2s ease, transform .2s ease; }
.trust-badge-btn:hover { background: rgba(20,35,59,.12); transform: translateY(-1px); }
.trust-badge-btn .tb-arrow { font-size: .72rem; opacity: .6; }

/* Noter / Resmi satış modalı */
.notary-modal { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.notary-modal[hidden] { display: none; }
.notary-modal-overlay { position: absolute; inset: 0; background: rgba(10,18,32,.55); backdrop-filter: blur(3px); animation: notaryFade .25s ease; }
.notary-modal-dialog { position: relative; z-index: 1; width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 18px; padding: 2rem 1.8rem 1.8rem; box-shadow: 0 30px 80px rgba(10,18,32,.35); animation: notaryPop .28s cubic-bezier(.18,.89,.32,1.28); }
.notary-modal-close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border: none; border-radius: 50%; background: #f1f3f7; color: #475569; font-size: 1rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease; }
.notary-modal-close:hover { background: #e2e6ee; }
.notary-modal-head { text-align: center; margin-bottom: 1.5rem; }
.notary-modal-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(212,175,55,.15); color: var(--accent); font-size: 1.6rem; margin-bottom: .8rem; }
.notary-modal-head h3 { margin: 0 0 .5rem; font-size: 1.35rem; color: var(--primary); }
.notary-modal-head p { margin: 0; color: #64748b; font-size: .95rem; line-height: 1.5; }
.notary-steps { list-style: none; margin: 0 0 1.4rem; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.notary-steps li { display: flex; gap: .9rem; align-items: flex-start; }
.notary-steps .ns-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; justify-content: center; }
.notary-steps li strong { display: block; color: var(--primary); font-size: .98rem; margin-bottom: .2rem; }
.notary-steps li p { margin: 0; color: #64748b; font-size: .88rem; line-height: 1.5; }
.notary-assure { list-style: none; margin: 0 0 1.5rem; padding: 1rem 1.1rem; background: rgba(20,35,59,.04); border-radius: 12px; display: flex; flex-direction: column; gap: .55rem; }
.notary-assure li { display: flex; align-items: center; gap: .6rem; color: #334155; font-weight: 600; font-size: .9rem; }
.notary-assure li i { color: #047857; }
.notary-modal-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.notary-modal-actions .btn { flex: 1 1 auto; justify-content: center; }
body.notary-open { overflow: hidden; }
@keyframes notaryFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes notaryPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.detail-block { margin-bottom: 1.6rem; }
.detail-block h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; margin: 0 0 .8rem; }
.detail-block h3 i { color: var(--accent-dark); }
.detail-desc { color: #374151; line-height: 1.8; margin: 0; }

/* Sticky price box */
.detail-aside { position: sticky; top: 100px; }
.price-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; box-shadow: 0 18px 48px rgba(15,23,42,.1); }
.price-box-label { display: block; color: var(--muted); font-size: .85rem; font-weight: 600; }
.price-box-value { display: block; color: var(--accent-dark); font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em; margin: .2rem 0 .6rem; }
.price-box-status { display: inline-block; margin-bottom: 1.2rem; }
.price-box-actions { display: grid; gap: .65rem; }
.btn-wa-lg { background: #25d366; color: #fff; font-size: 1.02rem; padding: .9rem 1rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-wa-lg:hover { background: #1ebe5b; color: #fff; transform: translateY(-1px); }
.btn-takas { background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1rem; }
.btn-takas:hover { background: #1a3354; color: #fff; }
.btn-block-cta { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.price-box-mini { display: flex; gap: .6rem; margin-top: 1rem; }
.mini-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; background: #f1f3f7; border: 0; border-radius: 10px; padding: .6rem; cursor: pointer; font-weight: 600; color: #475569; font-family: inherit; transition: background .2s ease, color .2s ease; }
.mini-cta:hover, .mini-cta.is-active { background: var(--accent); color: #1a1f2b; }
.price-box-trust { list-style: none; padding: 1.2rem 0 0; margin: 1.2rem 0 0; border-top: 1px solid var(--border); display: grid; gap: .6rem; }
.price-box-trust li { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .88rem; font-weight: 600; }
.price-box-trust i { color: var(--accent-dark); }

/* Alerts */
.alert { padding: .9rem 1.1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #14233b, #0c1726);
    color: #cbd5e1; margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 2.5rem; padding: 3.8rem 0 2.8rem; }
.footer-col h4 { color: #fff; margin: 0 0 1.1rem; font-size: 1rem; position: relative; padding-bottom: .6rem; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer-col a { color: #cbd5e1; display: block; margin-bottom: .55rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }

/* Footer brand */
.footer-logo {
    max-height: 55px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1.1rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.footer-logo-text { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 1.1rem; }
.footer-manifesto { color: #93a4b8; font-size: .92rem; line-height: 1.7; margin: 0 0 1.3rem; max-width: 38ch; }
.footer-brand .footer-social { display: flex; gap: 1rem; }
.footer-brand .footer-social a { display: inline; margin: 0; color: #93a4b8; font-size: .9rem; font-weight: 600; }
.footer-brand .footer-social a:hover { color: var(--accent); }

/* Footer contact list */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .85rem; color: #cbd5e1; font-size: .92rem; line-height: 1.5; }
.footer-contact li svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--accent); margin-top: .15rem; }
.footer-contact a { display: inline; margin: 0; }
.footer-hours { display: flex; align-items: flex-start; gap: .7rem; color: #cbd5e1; font-size: .92rem; line-height: 1.6; margin: 0 0 1.2rem; }
.footer-hours svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--accent); margin-top: .15rem; }
.footer-map-btn {
    display: inline-flex !important; align-items: center; gap: .5rem;
    padding: .6rem 1.1rem; border: 1px solid rgba(212,175,55,.5); border-radius: var(--radius-sm);
    color: var(--accent) !important; font-weight: 700; font-size: .9rem; margin: 0 !important;
    transition: background .2s ease, transform .2s ease;
}
.footer-map-btn svg { width: 16px; height: 16px; }
.footer-map-btn:hover { background: rgba(212,175,55,.12); transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.3rem 0 1.6rem; color: #7e8ea3; font-size: .86rem; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-credit { color: #6b7c91; }

/* Credit / Compare */
.credit-calc { display: grid; gap: .75rem; }
.credit-result { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.compare-head h1::before { background: linear-gradient(var(--accent), var(--accent-dark)); }
.compare-count-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--accent-soft); color: var(--accent-dark);
    border: 1px solid rgba(212,175,55,.35);
    padding: .35rem .85rem; border-radius: 999px;
    font-size: .82rem; font-weight: 700; white-space: nowrap;
}
.compare-intro { margin-bottom: 1.4rem; }
.compare-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.2rem; }
.compare-actions .btn-sm { border-radius: 8px; }
.btn-clear-compare {
    display: inline-flex; align-items: center; gap: .4rem;
    background: transparent; border: 0; cursor: pointer;
    color: #dc2626; font-weight: 700; font-family: inherit; font-size: .9rem;
    padding: .5rem .75rem; border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}
.btn-clear-compare:hover { background: rgba(220,38,38,.08); color: #b91c1c; }

.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
    padding: .95rem .85rem; text-align: center;
    border-bottom: 1px solid #eef1f5;
}
.compare-table thead th { border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tbody tr { transition: background .15s ease; }
.compare-table.table-hover tbody tr:hover { background: #faf9f4; }

.compare-corner { background: #f6f8fb; border-radius: 10px 0 0 0; }
.compare-row-label {
    text-align: left; font-weight: 700; color: var(--primary);
    background: #f6f8fb; white-space: nowrap;
}
.compare-vehicle-col { min-width: 160px; }
.compare-thumb {
    display: block; margin: 0 auto .6rem; width: 100%; max-width: 140px;
    border-radius: 10px; overflow: hidden; box-shadow: 0 4px 14px rgba(15,23,42,.1);
    transition: transform .2s ease;
}
.compare-thumb img { display: block; width: 100%; max-height: 80px; object-fit: cover; }
.compare-thumb:hover { transform: translateY(-2px); }
.compare-col-title { display: block; margin-bottom: .5rem; font-weight: 700; color: var(--primary); font-size: .95rem; }
.compare-remove {
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); background: #fff; color: #94a3b8;
    width: 30px; height: 30px; border-radius: 999px;
    font-size: .8rem; line-height: 1; cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.compare-remove:hover { background: #dc2626; color: #fff; border-color: #dc2626; transform: scale(1.08); }

.compare-price-row td {
    color: var(--accent-dark); font-weight: 800; font-size: 1.1rem;
}
.compare-price-row .compare-row-label { color: var(--accent-dark); }

.compare-empty { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3.5rem 1rem; }
.compare-empty i { font-size: 3rem; color: var(--accent-dark); opacity: .55; }
.compare-empty p { margin: 0; color: var(--muted); }
.empty-state { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }

/* Contact page */
.contact-section .grid-2 { align-items: stretch; }
.contact-info-card {
    position: relative;
    border-radius: var(--radius);
    padding: 2.2rem;
    color: #fff;
    background: linear-gradient(135deg, #0c1726 0%, #14233b 55%, #1f3554 100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.contact-info-card::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 20px 20px;
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h1 { color: #fff; margin-bottom: .6rem; }
.contact-info-lead { color: rgba(255,255,255,.82); margin-bottom: 1.8rem; }
.contact-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-info-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px; padding: 1rem 1.1rem;
    transition: background .2s ease, transform .2s ease;
}
.contact-info-list li:hover { background: rgba(255,255,255,.14); transform: translateX(4px); }
.contact-ico {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); font-size: 1.25rem;
    box-shadow: 0 6px 16px rgba(212,175,55,.4);
}
.contact-text { display: flex; flex-direction: column; gap: .15rem; line-height: 1.5; }
.contact-text strong { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.7); font-weight: 700; }
.contact-text a { color: #fff; font-weight: 600; }
.contact-text a:hover { color: var(--accent); }
.contact-map { margin-top: 1.4rem; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); }
.contact-map iframe { display: block; width: 100%; border: 0; }
.contact-form-card {
    border-top: 4px solid var(--primary);
    background: var(--surface);
}
.contact-form-card h2 { margin-bottom: 1.2rem; }

/* Hakkımızda */
.about-section { padding-top: 2.5rem; padding-bottom: 3.5rem; }
.about-card {
    max-width: 960px; margin: 0 auto; background: #fff;
    border-radius: 16px; padding: 3.2rem 2.6rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .05);
}
.about-head { text-align: center; margin-bottom: 1.8rem; }
.about-eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--accent-soft); color: var(--accent-dark);
    padding: .3rem .85rem; border-radius: 999px;
    font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: .9rem;
}
.about-title { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin: 0; letter-spacing: -.02em; }
.about-story { color: #475569; font-size: 1.05rem; line-height: 1.8; }
.about-story p { margin: 0 0 1.1rem; }
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { color: var(--primary); }
.about-story p:first-child strong:first-child,
.about-story > strong:first-child {
    color: #111827 !important;
    font-weight: 800 !important;
}

.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
    margin: 2.5rem 0; padding: 2rem 1rem;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-stat { text-align: center; }
.about-stat-value {
    display: block; font-size: 2.6rem; font-weight: 800; line-height: 1;
    color: var(--accent-dark); letter-spacing: -.02em; margin-bottom: .5rem;
}
.about-stat-label { display: block; color: #475569; font-weight: 600; font-size: .95rem; }

.about-vm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: .5rem; }
.about-vm-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border-radius: 14px; padding: 1.8rem 1.6rem;
    box-shadow: 0 12px 30px rgba(20, 35, 59, .2);
}
.about-vm-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; border-radius: 12px; margin-bottom: 1rem;
    background: var(--accent); color: #1a1f2b; font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(212,175,55,.4);
}
.about-vm-card h3 { margin: 0 0 .6rem; font-size: 1.25rem; color: #fff; }
.about-vm-card p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.65; font-size: .96rem; }

@media (max-width: 768px) {
    .about-card { padding: 2.2rem 1.4rem; }
    .about-title { font-size: 1.7rem; }
    .about-stats { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.6rem 0; }
    .about-stat-value { font-size: 2.2rem; }
    .about-vm { grid-template-columns: 1fr; }
}

/* Takas Formu */
.trade-section { padding-top: 2.5rem; padding-bottom: 3.5rem; }
.trade-card {
    max-width: 820px; margin: 0 auto; background: #fff;
    border-radius: 16px; padding: 2.6rem 2.4rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .05);
}
.trade-card-head { text-align: center; margin-bottom: 2rem; }
.trade-head-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 18px; margin-bottom: 1rem;
    background: var(--accent-soft); color: var(--accent-dark); font-size: 1.8rem;
}
.trade-title { font-size: 2rem; font-weight: 800; color: var(--primary); margin: 0 0 .5rem; letter-spacing: -.02em; }
.trade-lead { max-width: 560px; margin: 0 auto; font-size: 1.02rem; line-height: 1.6; }
.text-muted { color: var(--muted); }
.lead { font-weight: 500; }

.trade-form { display: grid; gap: 2rem; }
.trade-fieldset { border: 0; margin: 0; padding: 0; }
.trade-legend {
    display: flex; align-items: center; gap: .65rem; width: 100%;
    font-size: 1.15rem; font-weight: 700; color: var(--primary);
    padding-bottom: .9rem; margin-bottom: 1.3rem;
    border-bottom: 1px solid var(--border);
}
.trade-step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--primary); color: #fff; font-size: .95rem; font-weight: 700; flex: 0 0 auto;
}
.trade-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.trade-grid .field { margin: 0; }
.trade-grid .field-full { grid-column: 1 / -1; }

.trade-form .form-control {
    width: 100%; padding: .8rem .95rem; border: 1px solid var(--border);
    border-radius: 8px; background: #fff; font-family: inherit; font-size: .95rem;
    color: var(--text); transition: border-color .2s ease, box-shadow .2s ease;
}
.trade-form textarea.form-control { min-height: 120px; resize: vertical; }
.trade-form .form-control::placeholder { color: #9aa5b5; }
.trade-form .form-control:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 35, 59, .14);
}

.trade-dropzone {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .35rem; text-align: center; cursor: pointer;
    border: 2px dashed #dee2e6; border-radius: 12px; padding: 2rem 1.5rem;
    background: #fbfcfe; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.trade-dropzone:hover { border-color: var(--accent); background: #fffdf5; transform: translateY(-2px); }
.trade-dropzone i { font-size: 2.2rem; color: var(--accent-dark); margin-bottom: .3rem; }
.trade-dropzone-title { font-weight: 700; color: var(--primary); font-size: 1rem; }
.trade-dropzone-hint { font-size: .85rem; color: var(--muted); }
.trade-dropzone-file { margin-top: .5rem; font-size: .85rem; font-weight: 600; color: var(--accent-dark); }
.trade-dropzone.has-file { border-color: var(--accent); background: #fffdf5; }

.trade-actions { display: flex; justify-content: center; }
.trade-submit {
    width: 100%; max-width: 340px; justify-content: center;
    padding: .95rem 1.5rem; font-size: 1.05rem; border-radius: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.trade-submit:hover { transform: translateY(-2px); }

@media (max-width: 600px) {
    .trade-card { padding: 1.8rem 1.3rem; }
    .trade-grid { grid-template-columns: 1fr; }
    .trade-title { font-size: 1.6rem; }
}

/* WhatsApp float — animated */
.whatsapp-float {
    position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
    background: #25d366; color: #fff; padding: .85rem 1.25rem .85rem 1rem;
    border-radius: 999px; font-weight: 700;
    display: inline-flex; align-items: center; gap: .55rem;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
    transition: transform .2s ease, box-shadow .2s ease;
    animation: waPulse 2.2s infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; flex: 0 0 auto; }
.whatsapp-float:hover { transform: scale(1.07); color: #fff; box-shadow: 0 14px 34px rgba(37, 211, 102, .6); animation-play-state: paused; }
@keyframes waPulse {
    0% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
    70% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
    .whatsapp-float-text { display: none; }
    .whatsapp-float { padding: .9rem; right: 1rem; bottom: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { animation: none; }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3, .filters-grid, .features, .stats-grid { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-aside { position: static; }
    .feature-blocks { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-search { grid-template-columns: 1fr 1fr; }
    .hero-search-btn { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: #14233b; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.1);
        flex-direction: column; align-items: stretch !important; box-shadow: var(--shadow);
    }
    .main-nav a { justify-content: flex-start; }
    .main-nav.open { display: flex; }
    .main-nav a { width: 100%; }
    .main-nav a.active::after { display: none; }
    .hero { min-height: 0; padding: 3rem 0; }
    .detail-layout, .grid-3, .grid-2, .filters-grid, .features, .stats-grid { grid-template-columns: 1fr; }
    .feature-blocks { grid-template-columns: 1fr 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .hero-search { grid-template-columns: 1fr; gap: .65rem; }
    .hero-search-btn { grid-column: auto; height: 50px; }
    .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 1.5rem; }
    .header-actions { display: none; }
    .topbar-info { gap: .9rem; font-size: .8rem; }
    .topbar-hours, .topbar-social { display: none; }
    .logo-image { max-height: 48px; }
    .logo-text small { display: none; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}
