/* İzmir Oto Çekici — Tam siyah & sarı tema */
:root {
    --black: #0a0a0a;
    --black-soft: #111111;
    --surface: #161616;
    --surface-2: #1e1e1e;
    --yellow: #ffc107;
    --yellow-light: #ffd54f;
    --yellow-dark: #e6ac00;
    --yellow-glow: rgba(255, 193, 7, 0.22);
    --text: #f5f5f5;
    --text-muted: #b0b0b0;
    --border: #2a2a2a;
    --radius: 10px;
    --radius-lg: 14px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-yellow: 0 8px 28px rgba(255, 193, 7, 0.18);
    --hazard-stripe: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 5px,
        var(--black) 5px,
        var(--black) 10px
    );
    --hazard-h: 5px;
    --hazard-h-sm: 3px;
    --hazard-h-lg: 6px;
    --hazard-bar: 3px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--black);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--yellow);
    transition: color 0.15s;
    text-decoration: none;
}

a:hover { color: var(--yellow-light); }

/* ── Çekici uyarı bandı (sarı/siyah şerit) ── */
.hazard-band {
    display: block;
    width: 100%;
    height: var(--hazard-h);
    background: var(--hazard-stripe);
    flex-shrink: 0;
}

.hazard-band-sm { height: var(--hazard-h-sm); }
.hazard-band-lg { height: var(--hazard-h-lg); }

/* ── Header ── */
.site-header {
    background: var(--black);
    color: var(--text);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.site-header::after {
    content: '';
    display: block;
    height: var(--hazard-h);
    background: var(--hazard-stripe);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    color: var(--text);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover { color: var(--yellow); }

.logo::before {
    content: '';
    width: 4px;
    height: 1.4rem;
    background: var(--yellow);
    border-radius: 2px;
}

.main-nav { display: flex; gap: 1.15rem; flex-wrap: wrap; align-items: center; }

.main-nav .menu-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.main-nav .menu-link:hover { color: var(--yellow); }

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
}

.menu-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
    line-height: 0;
}

.menu-link:hover .menu-link-icon { color: var(--yellow-light); }

.menu-link-text { line-height: 1.2; }

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--yellow);
    color: var(--black) !important;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(255, 193, 7, 0.25);
}

.header-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-call:hover {
    background: var(--yellow-light);
    color: var(--black) !important;
    transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
    background: var(--black-soft);
    color: var(--text);
    padding: 2.75rem 0 3.25rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
}

.hero h1 strong,
.hero-lead strong { color: var(--yellow); }

.hero-sub, .hero-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    align-items: stretch;
}

.hero-cta .btn {
    padding: 0.7rem 1rem;
    min-height: 0;
    gap: 0.6rem;
    border-radius: 10px;
    flex: 1 1 11rem;
    max-width: 100%;
}

.hero-cta .btn-icon-wrap {
    width: 34px;
    height: 34px;
}

.hero-cta .btn-label {
    font-size: 0.9rem;
    line-height: 1.25;
}

.hero-cta .btn-sub {
    font-size: 0.68rem;
    line-height: 1.2;
}

.hero-cta .btn-icon-wrap .icon {
    width: 18px;
    height: 18px;
}
.hero-with-photo { padding: 2.25rem 0 2.75rem; }

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-fleet-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-yellow);
    border: 3px solid var(--yellow);
}

.hero-fleet-photo img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.fleet-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2rem 0.75rem 0.65rem;
    text-align: center;
}

.fleet-badge-title {
    font-size: clamp(0.72rem, 2.2vw, 0.9rem);
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.35;
    padding: 2.25rem 0.85rem 0.75rem;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--yellow);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
    color: var(--yellow-light);
    border-bottom-color: var(--yellow);
}

/* ── Icons ── */
.icon {
    display: block;
    flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.35rem;
    border-radius: var(--radius);
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
    text-align: left;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.25;
    min-height: 52px;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn:focus-visible {
    outline: 2px solid var(--yellow-light);
    outline-offset: 3px;
}

.btn-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.15s;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.btn-label { font-size: 1rem; letter-spacing: 0.01em; }
.btn-sub { font-size: 0.75rem; font-weight: 500; opacity: 0.85; }

.btn-call {
    background: var(--yellow);
    color: var(--black) !important;
    box-shadow: var(--shadow-yellow);
}

.btn-call .btn-icon-wrap {
    background: rgba(0, 0, 0, 0.12);
    color: var(--black);
}

.btn-call:hover {
    background: var(--yellow-light);
    color: var(--black) !important;
    box-shadow: 0 6px 28px rgba(255, 193, 7, 0.45);
}

.btn-whatsapp {
    background: transparent;
    color: var(--yellow) !important;
    border-color: var(--yellow);
}

.btn-whatsapp .btn-icon-wrap {
    background: rgba(255, 193, 7, 0.12);
    color: var(--yellow);
}

.btn-whatsapp:hover {
    background: var(--yellow);
    color: var(--black) !important;
    box-shadow: var(--shadow-yellow);
}

.btn-whatsapp:hover .btn-icon-wrap {
    background: rgba(0, 0, 0, 0.12);
    color: var(--black);
}

.btn-call .btn-sub { color: rgba(0, 0, 0, 0.7); }
.btn-whatsapp .btn-sub { color: var(--text-muted); }
.btn-whatsapp:hover .btn-sub { color: rgba(0, 0, 0, 0.7); }

.btn-sm {
    padding: 0.65rem 1.1rem;
    min-height: 46px;
    gap: 0.6rem;
}

.btn-sm .btn-icon-wrap {
    width: 36px;
    height: 36px;
}

.btn-sm .btn-label { font-size: 0.95rem; }

/* ── CTA ── */
.cta-block {
    background: var(--surface);
    border: 2px solid var(--yellow);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    padding: 1.75rem;
    box-shadow: var(--shadow-yellow);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-text h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: var(--yellow);
    font-weight: 800;
}

.cta-text p { margin: 0; color: var(--text-muted); }
.cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Page content ── */
.page-content {
    padding: 2.5rem 0 4rem;
    color: var(--text);
    background: var(--black);
}

/* Bölüm başlıkları */
.page-content h1,
.page-content h2,
.blog-post h1 {
    font-size: 1.45rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: var(--yellow);
    padding-left: 0.85rem;
    border-left: 4px solid var(--yellow);
}

.page-content .services-block h2,
.page-content .districts-hub h2,
.page-content .faq-block h2,
.page-content .content-cluster h2,
.page-content .optional-form h2,
.page-content .intro-block h2,
.blog-post h1 {
    margin-top: 0;
}

.intro-block p,
.page-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-desc {
    color: var(--text-muted);
    margin-top: -0.25rem;
    margin-bottom: 0.5rem;
}

/* Kart yüzeyi — tüm kutular */
.services-block,
.districts-hub,
.faq-block,
.content-cluster,
.optional-form,
.pillar-link {
    background: var(--surface);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.services-block h2,
.districts-hub h2,
.faq-block h2,
.content-cluster h2,
.optional-form h2,
.fleet-gallery h2,
.trust-block h2,
.nearby-districts h2 {
    color: var(--yellow);
    border-left: 4px solid var(--yellow);
    padding-left: 0.85rem;
    margin-top: 0;
}

.service-list {
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.service-list li { margin-bottom: 0.65rem; }
.service-list strong { color: var(--yellow); }

/* Acil kutu */
.urgency-block {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.urgency-block h2 {
    color: var(--yellow);
    border: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
}

.urgency-block p { color: var(--text-muted); margin-bottom: 0.75rem; }
.urgency-block p:last-child { margin-bottom: 0; }
.urgency-block strong { color: var(--yellow); }

.action-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
}

.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Güven kartları */
.trust-block { margin: 2rem 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.trust-item {
    background: var(--surface);
    padding: 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-top: 3px solid var(--yellow);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.trust-item:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow-yellow);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: var(--yellow);
}
.trust-item h3 { margin: 0 0 0.4rem; font-size: 1rem; color: var(--text); font-weight: 700; }
.trust-item p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Galeri */
.fleet-gallery { margin: 2.5rem 0; }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.fleet-item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--yellow);
    background: var(--black);
}

.fleet-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.25s;
    opacity: 0.9;
}

.fleet-item:hover img { transform: scale(1.04); opacity: 1; }

/* İlçe kartları */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.district-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text) !important;
    transition: all 0.15s;
}

.district-card:hover {
    border-color: var(--yellow);
    background: var(--surface-2);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-2px);
    color: var(--yellow) !important;
}

.district-card:hover .district-meta { color: var(--yellow); }

.district-name { font-weight: 700; font-size: 0.95rem; }
.district-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }

/* FAQ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    padding: 0 1rem;
    background: var(--black-soft);
    transition: border-color 0.15s;
}

.faq-item[open] {
    border-color: var(--yellow);
    background: var(--surface-2);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    padding: 1rem 0;
    color: var(--text);
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
    content: '+';
    display: inline-block;
    width: 1.25rem;
    color: var(--yellow);
    font-weight: 800;
}

.faq-item[open] summary::before { content: '−'; }
.faq-item p { margin: 0 0 1rem; color: var(--text-muted); }

/* Link listeleri */
.district-links,
.blog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    padding: 0;
}

.district-links a,
.blog-links a {
    font-weight: 600;
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow-dark);
    padding-bottom: 1px;
}

.district-links a:hover,
.blog-links a:hover { color: var(--yellow-light); }

.pillar-link {
    color: var(--text-muted);
    border-left: 4px solid var(--yellow);
    padding-left: 1rem;
}

.pillar-link a { color: var(--yellow); font-weight: 700; }

/* Form */
.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    background: var(--black-soft);
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.15s;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #666; }

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: var(--surface-2);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note { font-size: 0.85rem; color: var(--text-muted); }
.form-note a { color: var(--yellow); }
.lead-form .btn-call { border: none; cursor: pointer; font-size: 1rem; }

/* Blog */
.blog-grid { display: grid; gap: 1rem; margin: 1.5rem 0; }

.blog-card {
    display: block;
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.blog-card:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow-yellow);
}

.blog-card h2 { margin: 0 0 0.5rem; font-size: 1.1rem; color: var(--text); }
.blog-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

.blog-post .post-body { color: var(--text-muted); line-height: 1.75; }

.blog-post .post-body h2 {
    color: var(--yellow);
    border-left: 4px solid var(--yellow);
    padding-left: 0.85rem;
    margin-top: 2rem;
}

.blog-post .post-body strong { color: var(--text); }
.blog-post .post-body a { color: var(--yellow); font-weight: 600; }
.blog-post .post-body a:hover { color: var(--yellow-light); }

/* Internal SEO sayfası */
.seo-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.seo-table th,
.seo-table td {
    border: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    text-align: left;
    color: var(--text-muted);
}

.seo-table th { background: var(--black-soft); color: var(--yellow); }
.seo-table td { background: var(--surface); }

.contact-info-block { margin: 2rem 0; }

.contact-info-block h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    color: var(--text);
    border-left: 4px solid var(--yellow);
    padding-left: 0.75rem;
}

.contact-info-table th {
    width: 38%;
    font-weight: 600;
    vertical-align: top;
}

.contact-info-table td a {
    color: var(--yellow);
    font-weight: 700;
}

.contact-info-table td a:hover { color: var(--yellow-light); }

.contact-info-stars { color: var(--yellow); letter-spacing: 0.08em; }

@media (max-width: 640px) {
    .contact-info-table th,
    .contact-info-table td { display: block; width: 100%; }
    .contact-info-table th { border-bottom: none; padding-bottom: 0.25rem; }
}

.gbp-desc {
    background: var(--surface);
    padding: 1rem 1rem 1rem 1.15rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--yellow);
    color: var(--text-muted);
}

.district-list-inline { columns: 2; gap: 2rem; color: var(--text-muted); }

/* Sticky — sadece siyah sarı */
.whatsapp-sticky,
.call-sticky {
    position: fixed;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.15s, box-shadow 0.15s;
}

.sticky-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.whatsapp-sticky:hover,
.call-sticky:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

.whatsapp-sticky:focus-visible,
.call-sticky:focus-visible,
.header-call:focus-visible {
    outline: 2px solid var(--yellow-light);
    outline-offset: 3px;
}

.call-sticky {
    background: var(--yellow);
    color: var(--black);
    bottom: 22px;
    right: 22px;
    border: 3px solid var(--black);
}

.whatsapp-sticky {
    background: var(--black);
    color: var(--yellow);
    bottom: 92px;
    right: 22px;
    border: 3px solid var(--yellow);
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s infinite;
    z-index: -1;
    opacity: 0.4;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Footer */
.site-footer {
    background: var(--black-soft);
    color: var(--text-muted);
    padding: 2.75rem 0 1.5rem;
    border-top: 1px solid var(--border);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer strong { color: var(--text); font-size: 1rem; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover,
.site-footer .menu-link:hover { color: var(--yellow); }
.site-footer .menu-link { color: var(--text-muted); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }

/* ── Müsaitlik bandı ── */
.availability-bar {
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
}

.availability-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0;
    flex-wrap: wrap;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 8px var(--yellow);
    animation: pulse-dot 2s infinite;
}

.is-offline .availability-dot {
    background: #888;
    box-shadow: none;
    animation: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.availability-text { color: var(--text-muted); flex: 1; }
.availability-phone {
    color: var(--yellow) !important;
    font-weight: 700;
}

/* ── Acil rehber ── */
.emergency-guide { margin: 2rem 0; }

.emergency-steps {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.emergency-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    flex-shrink: 0;
}

.emergency-step p { margin: 0.25rem 0 0; color: var(--text-muted); font-size: 0.92rem; }

/* ── Fiyat bloğu ── */
.pricing-block { margin: 2rem 0; }

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--yellow);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.pricing-from { font-size: 1.35rem; color: var(--text); margin: 0 0 0.5rem; }
.pricing-from strong { color: var(--yellow); font-size: 1.6rem; }
.pricing-area, .pricing-note, .pricing-cta { color: var(--text-muted); }
.pricing-factors {
    margin: 1rem 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

/* ── Yorumlar ── */
.reviews-block { margin: 2.5rem 0; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.review-stars { color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.review-text { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 0.75rem; font-style: italic; }
.review-meta { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

@media (min-width: 641px) {
    .hero-cta .btn {
        flex: 0 1 auto;
    }
}

.hero-service,
.hero-landing { padding: 2rem 0 2.5rem; }

.blog-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.blog-card-sm h2 { font-size: 0.95rem; }

/* Mobile */
@media (max-width: 640px) {
    .main-nav { display: none; }
    .hero-split { grid-template-columns: 1fr; }
    .hero-fleet-photo { order: -1; max-height: 240px; }
    .hero-fleet-photo img { aspect-ratio: 16/9; }
    .hero-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .hero-cta .btn {
        flex: none;
        padding: 0.62rem 0.5rem;
        justify-content: center;
        text-align: center;
    }
    .hero-cta .btn-content {
        align-items: center;
    }
    .hero-cta .btn-label {
        font-size: 0.8rem;
    }
    .hero-cta .btn-sub {
        font-size: 0.62rem;
    }
    .hero-cta .btn-icon-wrap {
        width: 30px;
        height: 30px;
    }
    .cta-inner { flex-direction: column; align-items: stretch; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .district-list-inline { columns: 1; }
    .header-call { font-size: 0.85rem; padding: 0.5rem 0.9rem; }
}
