/* RentaCar V5 — Ön yüz: modern indigo/violet tema, koyu mod + RTL destekli */
:root {
    --ink: #0f172a;
    --ink-2: #334155;
    --muted: #64748b;
    --bg: #f6f7fb;
    --card: #ffffff;
    --border: #e5e9f2;
    --brand: #4f46e5;
    --brand-2: #7c3aed;
    --brand-soft: #eef0ff;
    --accent: #22c55e;
    --amber: #f59e0b;
    --grad: linear-gradient(135deg, #4338ca 0%, #4f46e5 45%, #7c3aed 100%);
    --radius: 16px;
    --shadow: 0 8px 30px rgba(15, 23, 42, .07);
    --shadow-lg: 0 22px 60px rgba(49, 46, 129, .18);
}
html[data-theme="dark"] {
    --ink: #e2e8f0;
    --ink-2: #cbd5e1;
    --muted: #8fa0bd;
    --bg: #0b1020;
    --card: #131a30;
    --border: #232e4e;
    --brand-soft: #1b2144;
    --shadow: 0 8px 30px rgba(0, 0, 0, .35);
    --shadow-lg: 0 22px 60px rgba(0, 0, 0, .5);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    background: var(--bg); color: var(--ink); font-size: 15.5px; line-height: 1.6;
}
html[dir="rtl"] body { font-family: 'Segoe UI', Tahoma, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Üst bar + menü ---------- */
.topline { background: #0e1526; color: #97a2bd; font-size: 12.5px; }
.topline .container { display: flex; align-items: center; gap: 18px; height: 36px; }
.topline .right { margin-left: auto; display: flex; gap: 12px; align-items: center; }
html[dir="rtl"] .topline .right { margin-left: 0; margin-right: auto; }
.topline a:hover { color: #fff; }
.topline select {
    background: transparent; color: #97a2bd; border: none; font-size: 12.5px; cursor: pointer;
}
.topline select option { color: #0f172a; }

header.site {
    position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--card) 88%, transparent);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
header.site .container { display: flex; align-items: center; gap: 14px; height: 68px; max-width: 1320px; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 20px; font-weight: 800; letter-spacing: -.5px; white-space: nowrap; flex-shrink: 0; }
.logo .mark {
    width: 38px; height: 38px; border-radius: 11px; background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 19px; box-shadow: var(--shadow);
}
.logo b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
nav.main { display: flex; gap: 2px; margin-left: auto; min-width: 0; }
html[dir="rtl"] nav.main { margin-left: 0; margin-right: auto; }
nav.main a { padding: 9px 10px; border-radius: 9px; font-weight: 600; font-size: 14px; color: var(--ink-2); white-space: nowrap; }
nav.main a:hover, nav.main a.active { background: var(--brand-soft); color: var(--brand); }
.header-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.header-cta .btn { white-space: nowrap; }
@media (max-width: 1200px) {
    nav.main a { font-size: 13px; padding: 8px 8px; }
    .logo { font-size: 18px; }
}
.burger { display: none; background: none; border: 1px solid var(--border); border-radius: 9px; padding: 7px 11px; font-size: 17px; cursor: pointer; color: var(--ink); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: 11px; font-weight: 700; font-size: 14px;
    border: 1px solid transparent; cursor: pointer; transition: .18s;
}
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(79, 70, 229, .35); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(79, 70, 229, .45); }
.btn-ghost { border-color: var(--border); color: var(--ink); background: var(--card); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-white { background: #fff; color: #4338ca; }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 9px; }
.icon-btn { background: none; border: none; font-size: 17px; cursor: pointer; color: var(--ink-2); padding: 6px; }

/* ---------- Hero Slider (tam genişlik, dönen araç görselleri) ---------- */
.hero-slider { position: relative; height: min(88vh, 720px); min-height: 520px; overflow: hidden; background: #0e1526; }
.hero-slider .slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 6.5s linear;
    pointer-events: none;
}
.hero-slider .slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(8, 10, 30, .88) 0%, rgba(30, 27, 75, .62) 42%, rgba(15, 23, 42, .15) 75%),
                linear-gradient(0deg, rgba(8, 10, 30, .75) 0%, transparent 35%);
}
html[dir="rtl"] .slide-overlay {
    background: linear-gradient(-100deg, rgba(8, 10, 30, .88) 0%, rgba(30, 27, 75, .62) 42%, rgba(15, 23, 42, .15) 75%),
                linear-gradient(0deg, rgba(8, 10, 30, .75) 0%, transparent 35%);
}
.slide-content {
    position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start; color: #fff; padding-bottom: 60px;
}
html[dir="rtl"] .slide-content { align-items: flex-start; }
.slide-content h1 {
    font-size: clamp(32px, 5.2vw, 58px); line-height: 1.08; letter-spacing: -1.5px;
    max-width: 640px; margin: 18px 0 14px; text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}
.slide-content p { font-size: clamp(15px, 1.6vw, 18px); color: #dbe2ff; max-width: 520px; margin-bottom: 26px; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.slide-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.btn-glass {
    background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }

/* slayt içi metin animasyonu */
.reveal { opacity: 0; transform: translateY(26px); transition: .7s ease; }
.slide.active .reveal { opacity: 1; transform: none; }
.slide.active .r1 { transition-delay: .15s; }
.slide.active .r2 { transition-delay: .3s; }
.slide.active .r3 { transition-delay: .45s; }
.slide.active .r4 { transition-delay: .6s; }
.slide.active .r5 { transition-delay: .75s; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1); backdrop-filter: blur(8px); color: #fff;
    font-size: 26px; line-height: 1; cursor: pointer; transition: .18s;
    display: flex; align-items: center; justify-content: center; padding-bottom: 4px;
}
.slider-arrow:hover { background: rgba(255, 255, 255, .28); transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }
.slider-dots { position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 9px; }
.slider-dots .dot {
    width: 10px; height: 10px; border-radius: 99px; border: none; cursor: pointer;
    background: rgba(255, 255, 255, .38); transition: .25s;
}
.slider-dots .dot.active { width: 30px; background: #fff; }
@media (max-width: 700px) {
    .hero-slider { height: 78vh; }
    .slider-arrow { display: none; }
    .slider-dots { bottom: 88px; }
}

/* ---------- Hero (eski kart — iç sayfalarda kullanılabilir) ---------- */
.hero { padding: 46px 0 110px; position: relative; }
.hero-card {
    background: var(--grad); border-radius: 28px; padding: 56px 54px; color: #fff;
    position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-card::before {
    content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.14), transparent 65%);
    top: -180px; right: -120px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; position: relative; }
.ai-pill {
    display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.35);
    padding: 8px 18px; border-radius: 99px; font-size: 12px; letter-spacing: 2px; font-weight: 700;
    background: rgba(255,255,255,.08); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(30px, 4.6vw, 48px); line-height: 1.12; letter-spacing: -1px; margin-bottom: 18px; }
.hero h1 .lt { color: #b9c0ff; }
.hero p.lead { font-size: 16.5px; color: #d9ddff; max-width: 480px; margin-bottom: 26px; }
.lang-row { display: flex; gap: 10px; flex-wrap: wrap; }
.lang-chip {
    width: 52px; height: 44px; display: flex; align-items: center; justify-content: center;
    border-radius: 11px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
    font-weight: 800; font-size: 14px; color: #fff; transition: .18s;
}
.lang-chip:hover, .lang-chip.active { background: #fff; color: #4338ca; transform: translateY(-3px); }

.float-stage { position: relative; height: 320px; }
.float-card {
    position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    border-radius: 13px; padding: 13px 22px; font-weight: 600; font-size: 14.5px; color: #fff;
    backdrop-filter: blur(6px); animation: floaty 5s ease-in-out infinite;
}
.float-card.big {
    background: #fff; color: #0f172a; font-size: 19px; font-weight: 700; padding: 26px 34px;
    border-radius: 18px; box-shadow: 0 25px 60px rgba(0,0,0,.35); z-index: 2; animation-duration: 6s;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Arama kutusu ---------- */
.search-wrap { margin-top: -72px; position: relative; z-index: 5; padding-bottom: 20px; }
.search-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: var(--shadow-lg); padding: 26px;
}
.search-card h3 { font-size: 17px; margin-bottom: 16px; display: flex; gap: 9px; align-items: center; }
.search-grid { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 12px; align-items: end; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .6px; }
.field input, .field select {
    width: 100%; padding: 12px 13px; border-radius: 11px; border: 1.5px solid var(--border);
    background: var(--bg); color: var(--ink); font-size: 14px; font-family: inherit;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); }

/* ---------- Bölümler ---------- */
section.block { padding: 58px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.sec-head .kicker { color: var(--brand); font-weight: 800; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; }
.sec-head h2 { font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.8px; margin: 8px 0 10px; }
.sec-head p { color: var(--muted); }

/* ---------- Kampanya kayar yazısı (slider üstü) ---------- */
.camp-ticker {
    position: absolute; top: 0; left: 0; right: 0; z-index: 6;
    background: rgba(8, 10, 30, .55); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden; display: block; height: 42px;
}
.camp-ticker-track {
    display: flex; align-items: center; gap: 46px; width: max-content; height: 42px;
    animation: ticker-scroll 28s linear infinite; will-change: transform;
    padding-left: 46px;
}
.camp-ticker:hover .camp-ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.camp-ticker-item {
    display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
    color: #e6e9ff; font-size: 13.5px; font-weight: 600;
}
.camp-ticker-item .tk-badge {
    background: #fbbf24; color: #78350f; font-size: 10.5px; font-weight: 800;
    padding: 3px 10px; border-radius: 99px; letter-spacing: .6px;
}
.camp-ticker-item code {
    font-family: Consolas, monospace; font-weight: 800; letter-spacing: 1.5px; font-size: 12.5px;
    border: 1.5px dashed rgba(255, 255, 255, .45); border-radius: 7px; padding: 2px 9px; color: #fff;
}
.camp-ticker-item i { font-style: normal; color: #8b93d8; margin-left: 12px; }
html[dir="rtl"] .camp-ticker-track { animation-name: ticker-scroll-rtl; padding-left: 0; padding-right: 46px; }
@keyframes ticker-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (max-width: 700px) { .camp-ticker { height: 38px; } .camp-ticker-track { height: 38px; } }

/* ---------- Kampanyalar ---------- */
.camp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.camp-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: .2s; display: flex; flex-direction: column;
}
.camp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.camp-card .img { aspect-ratio: 16/7; }
.camp-card .img img { width: 100%; height: 100%; object-fit: cover; }
.camp-card .body { padding: 24px; flex: 1; }
.camp-card h3 { font-size: 19px; letter-spacing: -.4px; margin: 10px 0 8px; }
.camp-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.camp-card.home { background: var(--grad); border: none; color: #fff; box-shadow: var(--shadow-lg); }
.camp-card.home p { color: #d9ddff; }
.camp-badge {
    display: inline-block; background: #fbbf24; color: #78350f; font-size: 11px; font-weight: 800;
    padding: 4px 12px; border-radius: 99px; letter-spacing: .8px;
}
.coupon-line { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.coupon-code {
    font-family: Consolas, monospace; font-weight: 800; font-size: 15px; letter-spacing: 2px;
    border: 2px dashed color-mix(in srgb, currentColor 45%, transparent);
    padding: 7px 14px; border-radius: 10px;
}
.camp-until { display: block; margin-top: 10px; font-size: 12px; opacity: .75; }

/* Kayan marka şeridi */
.brand-marquee {
    overflow: hidden; position: relative; padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-track { display: flex; gap: 16px; width: max-content; animation: brand-scroll 36s linear infinite; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .brand-track { animation-name: brand-scroll-rtl; }
@keyframes brand-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.brand-card {
    display: flex; align-items: center; justify-content: center;
    min-width: 230px; height: 98px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, .05); transition: .2s;
}
.brand-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.brand-card img { height: 46px; width: auto; max-width: 130px; object-fit: contain; transition: .25s; }
.brand-card:hover img { transform: scale(1.12); }
.brand-card .mono {
    width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 24px;
}
html[data-theme="dark"] .brand-card { background: #fff; border-color: #2c3a5e; }

.brand-strip { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.brand-chip {
    padding: 11px 22px; border: 1px solid var(--border); background: var(--card); border-radius: 12px;
    font-weight: 700; font-size: 14px; color: var(--ink-2); transition: .18s;
}
.brand-chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Araç kartları ---------- */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 22px; }
.car-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: .22s; display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--brand) 35%, var(--border)); }
.car-card .img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg); }
.car-card .img img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.car-card:hover .img img { transform: scale(1.05); }
.car-card .tag {
    position: absolute; top: 12px; left: 12px; background: var(--grad); color: #fff;
    font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 99px; letter-spacing: .5px;
}
.car-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.car-card h3 { font-size: 17px; letter-spacing: -.3px; }
.car-card .meta { color: var(--muted); font-size: 12.5px; margin: 2px 0 12px; }
.spec-row { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-2); border-top: 1px dashed var(--border); padding-top: 12px; margin-top: auto; }
.spec-row span { display: inline-flex; gap: 5px; align-items: center; }
.car-card .foot { display: flex; align-items: center; margin-top: 14px; }
.price { font-size: 20px; font-weight: 800; color: var(--brand); }
.price small { font-size: 12px; color: var(--muted); font-weight: 600; }
.car-card .foot .btn { margin-left: auto; }
html[dir="rtl"] .car-card .foot .btn { margin-left: 0; margin-right: auto; }
.car-card .name-row { display: flex; align-items: center; gap: 10px; }
.car-card .name-row h3 { flex: 1; min-width: 0; }
.car-card .make-logo {
    width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; opacity: .78; transition: .18s;
}
.car-card:hover .make-logo { opacity: 1; transform: scale(1.12); }
html[data-theme="dark"] .car-card .make-logo { background: #fff; border-radius: 8px; padding: 3px; box-sizing: border-box; }
.stars { color: var(--amber); font-size: 13px; letter-spacing: 1px; }

/* ---------- Tipler ---------- */
.types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.type-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px; text-align: center;
    padding: 24px 12px; transition: .18s; font-weight: 700;
}
.type-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.type-card .emoji { font-size: 30px; display: block; margin-bottom: 8px; }
.type-card small { display: block; color: var(--muted); font-weight: 500; font-size: 12px; }

/* ---------- Neden biz ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.feat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: .18s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat-card .ic {
    width: 52px; height: 52px; border-radius: 15px; background: var(--brand-soft); color: var(--brand);
    display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px;
}
.feat-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.feat-card p { color: var(--muted); font-size: 13.5px; }

/* ---------- Yorumlar ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.testi-card p { font-size: 14.5px; color: var(--ink-2); margin: 12px 0 16px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-who .av {
    width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.testi-who b { display: block; font-size: 14px; }
.testi-who span { font-size: 12px; color: var(--muted); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.post-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .2s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card .img { aspect-ratio: 16/9; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.post-card .img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 20px; }
.post-card .cat { color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.post-card h3 { font-size: 16.5px; margin: 7px 0; line-height: 1.35; }
.post-card p { color: var(--muted); font-size: 13.5px; }

/* ---------- Bülten ---------- */
.newsletter { background: var(--grad); border-radius: 24px; padding: 46px; color: #fff; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.newsletter h2 { font-size: 26px; letter-spacing: -.5px; }
.newsletter p { color: #d9ddff; }
.newsletter form { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
html[dir="rtl"] .newsletter form { margin-left: 0; margin-right: auto; }
.newsletter input {
    padding: 13px 18px; border-radius: 11px; border: none; min-width: 260px; font-size: 14px;
}

/* ---------- Footer ---------- */
footer.site { background: #0e1526; color: #97a2bd; margin-top: 70px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding: 54px 0 34px; }
footer.site h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
footer.site a { display: block; padding: 4px 0; font-size: 13.5px; }
footer.site a:hover { color: #fff; }
footer.site .about p { font-size: 13.5px; margin: 12px 0; }
footer.site .contact-line { display: flex; gap: 9px; padding: 4px 0; font-size: 13.5px; }
.footer-bottom { border-top: 1px solid #1a2440; padding: 18px 0; font-size: 12.5px; display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom .pay { margin-left: auto; display: flex; gap: 8px; }
html[dir="rtl"] .footer-bottom .pay { margin-left: 0; margin-right: auto; }
.pay-badge { background: #1a2440; border-radius: 6px; padding: 3px 10px; font-size: 11px; font-weight: 700; color: #cbd5e1; }

/* ---------- İç sayfalar ---------- */
.page-hero { background: var(--grad); color: #fff; padding: 46px 0; margin-bottom: 40px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -.8px; }
.page-hero .crumbs { font-size: 13px; color: #c7cdff; margin-top: 6px; }

.layout-2 { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.layout-2r { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
@media (max-width: 950px) { .layout-2, .layout-2r { grid-template-columns: 1fr; } }
.side-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.side-card h3 { font-size: 15px; margin-bottom: 14px; }
.side-card .field { margin-bottom: 12px; }

.detail-hero { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.detail-hero .img { aspect-ratio: 16/8; background: var(--bg); }
.detail-hero .img img { width: 100%; height: 100%; object-fit: cover; }
.detail-body { padding: 28px; }
.detail-body h1 { font-size: 27px; letter-spacing: -.6px; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin: 22px 0; }
.spec-box { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.spec-box small { display: block; color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .5px; }
.spec-box b { font-size: 14.5px; }
.amen-list { display: flex; flex-wrap: wrap; gap: 8px; }
.amen-chip { background: var(--brand-soft); color: var(--brand); border-radius: 99px; padding: 6px 14px; font-size: 12.5px; font-weight: 700; }

.summary-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; border-bottom: 1px dashed var(--border); }
.summary-line.total { font-weight: 800; font-size: 17px; border: none; color: var(--brand); }

.pay-option { display: flex; gap: 12px; align-items: center; border: 1.5px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; cursor: pointer; transition: .15s; }
.pay-option:hover, .pay-option.sel { border-color: var(--brand); background: var(--brand-soft); }
.pay-option b { font-size: 14.5px; }
.pay-option small { display: block; color: var(--muted); font-size: 12px; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; border: 1px solid; }
.alert.success { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.alert.error { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
html[data-theme="dark"] .alert.success { background: #052e1f; border-color: #065f46; color: #6ee7b7; }
html[data-theme="dark"] .alert.error { background: #2d0a0a; border-color: #7f1d1d; color: #fca5a5; }

.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 13px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 16px 20px; font-weight: 700; cursor: pointer; list-style: none; display: flex; }
.faq-item summary::after { content: '+'; margin-left: auto; font-size: 19px; color: var(--brand); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .ans { padding: 0 20px 16px; color: var(--muted); font-size: 14px; }

.success-box { text-align: center; max-width: 560px; margin: 40px auto; background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 46px; box-shadow: var(--shadow-lg); }
.success-box .big { font-size: 56px; }
.success-box .code { font-size: 26px; font-weight: 800; letter-spacing: 2px; background: var(--brand-soft); color: var(--brand); border-radius: 12px; padding: 12px 22px; display: inline-block; margin: 16px 0; }

.prose h2, .prose h3 { margin: 20px 0 8px; letter-spacing: -.4px; }
.prose p { margin-bottom: 12px; color: var(--ink-2); }
.prose ul { margin: 0 0 12px 22px; color: var(--ink-2); }

.whatsapp-fab {
    position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%;
    background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 12px 30px rgba(34, 197, 94, .45); transition: .18s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
html[dir="rtl"] .whatsapp-fab { right: auto; left: 22px; }

/* ---------- Kale Asistan (AI sohbet) ---------- */
.chat-fab {
    position: fixed; bottom: 22px; left: 22px; z-index: 70; width: 60px; height: 60px;
    border-radius: 50%; border: none; cursor: pointer; background: var(--grad); color: #fff;
    font-size: 28px; box-shadow: 0 12px 32px rgba(79, 70, 229, .5); transition: .2s;
    display: flex; align-items: center; justify-content: center;
}
.chat-fab:hover { transform: scale(1.1); }
.chat-fab.hidden { transform: scale(0); opacity: 0; pointer-events: none; }
.chat-fab-dot {
    position: absolute; top: 4px; right: 4px; width: 13px; height: 13px; border-radius: 50%;
    background: #22c55e; border: 2.5px solid #fff; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
html[dir="rtl"] .chat-fab { left: auto; right: 22px; }
html[dir="rtl"] .whatsapp-fab { left: 22px; right: auto; }

.chat-teaser {
    position: fixed; bottom: 94px; left: 22px; z-index: 69; max-width: 260px; cursor: pointer;
    background: var(--card); color: var(--ink); border: 1px solid var(--border); border-radius: 16px 16px 16px 4px;
    padding: 13px 34px 13px 16px; font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-lg);
    animation: teaser-in .4s ease;
}
.chat-teaser .x { position: absolute; top: 8px; right: 10px; color: var(--muted); font-weight: 400; }
@keyframes teaser-in { from { opacity: 0; transform: translateY(14px); } }
html[dir="rtl"] .chat-teaser { left: auto; right: 22px; }

.chat-panel {
    position: fixed; bottom: 22px; left: 22px; z-index: 71;
    width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 60px);
    background: var(--card); border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .35); display: flex; flex-direction: column;
    overflow: hidden; opacity: 0; transform: translateY(24px) scale(.96); pointer-events: none; transition: .25s;
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
html[dir="rtl"] .chat-panel { left: auto; right: 22px; }
.chat-head { background: var(--grad); color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 11px; }
.chat-ava {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .18);
    display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.chat-head b { display: block; font-size: 15px; }
.chat-head small { font-size: 11.5px; color: #d9ddff; display: flex; align-items: center; gap: 5px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; }
.chat-close { margin-left: auto; background: none; border: none; color: #fff; font-size: 16px; cursor: pointer; opacity: .8; }
.chat-close:hover { opacity: 1; }
html[dir="rtl"] .chat-close { margin-left: 0; margin-right: auto; }

.chat-msgs { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); }
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg .bubble {
    max-width: 82%; padding: 10px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.55;
    background: var(--card); border: 1px solid var(--border); color: var(--ink);
    border-bottom-left-radius: 5px; white-space: pre-line;
}
.chat-msg.user .bubble {
    background: var(--grad); color: #fff; border: none;
    border-radius: 16px; border-bottom-right-radius: 5px;
}
.bubble.typing { display: flex; gap: 5px; padding: 14px 16px; }
.bubble.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.bubble.typing i:nth-child(2) { animation-delay: .2s; }
.bubble.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .25; } 40% { opacity: 1; } }

.chat-cars { display: flex; gap: 10px; overflow-x: auto; padding: 2px 0 6px; }
.chat-car {
    min-width: 150px; max-width: 150px; background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; font-size: 12px; transition: .15s; display: block;
}
.chat-car:hover { border-color: var(--brand); transform: translateY(-2px); }
.chat-car img, .chat-car .noimg { width: 100%; height: 78px; object-fit: cover; display: flex; align-items: center; justify-content: center; font-size: 26px; background: var(--brand-soft); }
.chat-car b { display: block; padding: 7px 9px 0; font-size: 12.5px; }
.chat-car small { display: block; padding: 2px 9px; color: var(--muted); font-size: 10.5px; }
.chat-car .p { display: block; padding: 3px 9px 8px; color: var(--brand); font-weight: 800; font-size: 13px; }

.chat-chips { display: flex; gap: 7px; flex-wrap: wrap; padding: 10px 14px 4px; background: var(--bg); }
.chat-chips button {
    background: var(--card); border: 1px solid var(--border); border-radius: 99px;
    padding: 7px 13px; font-size: 12px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: .15s;
}
.chat-chips button:hover { border-color: var(--brand); color: var(--brand); }

.chat-input { display: flex; gap: 9px; padding: 12px 14px; background: var(--card); border-top: 1px solid var(--border); }
.chat-input input {
    flex: 1; padding: 11px 14px; border-radius: 12px; border: 1.5px solid var(--border);
    background: var(--bg); color: var(--ink); font-size: 13.5px; font-family: inherit;
}
.chat-input input:focus { outline: none; border-color: var(--brand); }
.chat-input button {
    width: 44px; border-radius: 12px; border: none; background: var(--grad); color: #fff;
    font-size: 16px; cursor: pointer; transition: .15s;
}
.chat-input button:hover { filter: brightness(1.1); }

@media (max-width: 500px) {
    .chat-panel { bottom: 12px; left: 12px; right: 12px; width: auto; height: 70vh; }
}

.announce-bar { background: linear-gradient(90deg, #f59e0b, #f97316); color: #fff; font-size: 13.5px; font-weight: 600; }
.announce-bar .container { display: flex; align-items: center; gap: 10px; padding: 8px 20px; }
.announce-bar button { margin-left: auto; background: none; border: none; color: #fff; font-size: 16px; cursor: pointer; }

@media (max-width: 950px) {
    .hero-grid { grid-template-columns: 1fr; }
    .float-stage { display: none; }
    .search-grid { grid-template-columns: 1fr 1fr; }
    nav.main { display: none; }
    nav.main.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); padding: 12px; }
    .burger { display: block; margin-left: auto; }
    footer.site .cols { grid-template-columns: 1fr 1fr; }
    .hero-card { padding: 36px 26px; }
}
@media (max-width: 560px) {
    .search-grid { grid-template-columns: 1fr; }
    footer.site .cols { grid-template-columns: 1fr; }
}
