/* ==========================================================================
   İzmir Kiralık Mini Kepçe — style.css
   Tek ana stylesheet. Mobile-first yaklaşım.
   ========================================================================== */

/* ---------- 1. Değişkenler ---------- */
:root {
    --primary: #F6A800;
    --primary-dark: #D89200;
    --secondary: #111111;
    --dark: #2C2C2C;
    --light: #D9D9D9;
    --white: #FFFFFF;

    --light-bg: #F5F5F3;
    --text-body: #3A3A3A;
    --text-muted: #6B6B6B;
    --border-soft: #E7E5E1;

    --font: "Barlow Condensed", sans-serif;

    --radius: 6px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 10px rgba(17, 17, 17, 0.06);
    --shadow-md: 0 12px 30px rgba(17, 17, 17, 0.12);
    --container: 1180px;
    --header-h: 104px;
}

/* ---------- 2. Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body {
    margin: 0;
    font-family: var(--font);
    font-weight: 700;
    font-style: normal;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.2px;
    line-height: 1.08;
    margin: 0 0 0.5em;
    color: var(--secondary);
    text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: 0.3px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.55rem); }
p { margin: 0 0 1em; color: var(--text-body); }

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

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- 3. Genel Bileşenler ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section { padding: 64px 0; }
.section--light { background: var(--light-bg); }
.section--dark { background: var(--secondary); color: var(--light); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #C9C9C9; }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--primary); color: var(--secondary); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline-dark:hover { background: var(--secondary); color: var(--white); }
.btn-block { width: 100%; }

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246,168,0,0.14);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 7px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ---------- 4. Header ---------- */
/* Header JS ile enjekte edilene kadar yer ayırır; aksi halde header aniden
   belirip sayfayı aşağı iter ve bu geçiş sırasında hero ile header arasında
   kısa süreli boş/gri bir alan görünür (özellikle yavaş mobil bağlantılarda). */
#header-placeholder { display: block; min-height: calc(var(--header-h) + 1px); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: var(--header-h);
}
.logo-link { display: flex; align-items: center; height: 88px; flex-shrink: 0; }
.logo-link img { height: 100%; width: auto; max-width: 280px; object-fit: contain; }

.main-nav {
    display: none;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-list > li { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: var(--radius);
    color: var(--secondary);
    transition: color 0.15s ease, background 0.15s ease;
}
.nav-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--primary-dark); background: rgba(246,168,0,0.10); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.header-phone svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.header-phone:hover { background: var(--primary); color: var(--secondary); }
.header-phone:hover svg { color: var(--secondary); }
.header-phone small { display: block; font-size: 0.68rem; font-weight: 700; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-active .icon-open { display: none; }
.menu-toggle.is-active .icon-close { display: block; }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    z-index: 450;
    overflow-y: auto;
    padding: 18px 20px 40px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-list > li { border-bottom: 1px solid var(--border-soft); }
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--secondary);
}
.mobile-nav-phone { margin-top: 20px; }

/* ---------- 5. Hero (arka plan görselli, her sayfada) ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}
.hero--page { min-height: 46vh; align-items: center; }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.35) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 8px;
    background: var(--primary);
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 56px; width: 100%; }
.hero--page .hero-content { padding-top: 46px; padding-bottom: 46px; }
.hero-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    color: rgba(255,255,255,0.75); margin-bottom: 16px; letter-spacing: 0.4px;
}
.hero-breadcrumb a:hover { color: var(--primary); }
.hero h1 { color: var(--white); max-width: 820px; }
.hero-lead { max-width: 620px; font-size: 1.12rem; color: rgba(255,255,255,0.9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-stats {
    display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px;
    padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-stat strong { display: block; font-family: var(--font); font-weight: 800; font-style: italic; font-size: 1.7rem; color: var(--primary); text-transform: uppercase; }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.4px; }

/* ---------- 6. Hizmet Kartları ---------- */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-media { position: relative; height: 190px; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0) 55%);
}
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { color: var(--text-muted); font-size: 0.96rem; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-transform: uppercase; font-size: 0.88rem; color: var(--secondary); margin-top: 12px; }
.service-card-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }
.service-card-link:hover { color: var(--primary-dark); }

/* İlçe grid (index sayfası öne çıkanlar) */
.district-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.district-chip {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius);
    padding: 14px 16px; font-weight: 700; transition: border-color 0.15s ease, background 0.15s ease;
}
.district-chip:hover { border-color: var(--primary); background: rgba(246,168,0,0.08); }
.district-chip svg { width: 17px; height: 17px; color: var(--primary-dark); flex-shrink: 0; }

/* ---------- 7. Neden Biz / Özellik Listesi ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
}
.feature-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--secondary);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h3 { margin-bottom: 6px; font-size: 1.15rem; }
.feature-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.section--dark .feature-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section--dark .feature-item p { color: #B9B9B9; }

/* ---------- 8. Süreç (gerçek sıralı adım olduğu için numaralandırma) ---------- */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    counter-reset: step;
    padding-left: 30px;
}
.process-step {
    position: relative;
    padding: 26px 0 26px 62px;
    border-left: 2px solid var(--border-soft);
}
.process-step:last-child { border-left-color: transparent; }
.process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: -26px; top: 22px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    font-family: var(--font); font-weight: 800; font-style: italic;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 0 0 6px var(--white);
}
.section--light .process-step::before { box-shadow: 0 0 0 6px var(--light-bg); }
.process-step h3 { margin-bottom: 6px; }
.process-step p { color: var(--text-muted); margin: 0; }

/* ---------- 9. SSS Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 18px 20px;
    font-weight: 700; font-size: 1.02rem; color: var(--secondary);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; color: var(--primary-dark); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 20px 20px; color: var(--text-muted); }

/* ---------- 10. İletişim Mini / CTA Blokları ---------- */
.cta-banner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(246,168,0,0.16);
}
.cta-banner-text { position: relative; z-index: 1; max-width: 520px; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #C9C9C9; margin: 0; }
.cta-banner-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon-box {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px;
    background: rgba(246,168,0,0.14); color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon-box svg { width: 22px; height: 22px; }
.contact-info-item strong { display: block; margin-bottom: 3px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.4px; color: var(--text-muted); }
.contact-info-item span, .contact-info-item a { font-size: 1.05rem; font-weight: 700; color: var(--secondary); }
.contact-info-item a:hover { color: var(--primary-dark); }

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    background:
        repeating-linear-gradient(45deg, #e9e7e1, #e9e7e1 12px, #f2f0ea 12px, #f2f0ea 24px);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-soft);
}
.map-placeholder-content { text-align: center; padding: 20px; }
.map-placeholder-content svg { width: 40px; height: 40px; color: var(--primary-dark); margin: 0 auto 10px; }
.map-placeholder-content p { margin: 0; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.4px; font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea {
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 13px 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    background: var(--white);
    transition: border-color 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); outline: none; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.form-success {
    display: none;
    align-items: center; gap: 10px;
    background: rgba(70, 160, 90, 0.12); color: #2E7D42;
    border: 1px solid rgba(70,160,90,0.3);
    padding: 14px 16px; border-radius: var(--radius);
    font-weight: 700; margin-top: 10px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- 11. İlgili Hizmetler / Bağlantı Listeleri ---------- */
.link-pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.link-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 1.5px solid var(--border-soft);
    border-radius: 100px;
    font-weight: 700; font-size: 0.92rem;
    color: var(--secondary);
}
.link-pill svg { width: 15px; height: 15px; color: var(--primary-dark); }
.link-pill:hover { border-color: var(--primary); background: rgba(246,168,0,0.08); }

/* ---------- 12. Footer ---------- */
.site-footer { background: var(--secondary); color: #BFBFBF; }
.footer-top { padding-top: 60px; padding-bottom: 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-brand img { height: 86px; width: auto; max-width: 280px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { color: #A6A6A6; font-size: 0.94rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--primary); color: var(--secondary); }

.footer-col h4 {
    color: var(--white); font-size: 1rem; letter-spacing: 0.6px;
    margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.footer-col h4::before { content: ""; width: 18px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.93rem; color: #BFBFBF; }
.footer-col a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.footer-regions { padding-top: 34px; padding-bottom: 34px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-regions h4 {
    color: var(--white); font-size: 1rem; letter-spacing: 0.6px;
    margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.footer-regions h4::before { content: ""; width: 18px; height: 3px; background: var(--primary); border-radius: 2px; }
.region-links {
    column-count: 1;
    column-gap: 28px;
}
.region-links a { font-size: 0.86rem; color: #A6A6A6; display: block; padding: 5px 0; break-inside: avoid; }
.region-links a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
    font-size: 0.85rem; color: #8C8C8C;
}
.footer-bottom a:hover { color: var(--primary); }

/* Whatsapp / call floating button */
.float-actions {
    position: fixed; right: 18px; bottom: 18px; z-index: 300;
    display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--primary); color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
}
.float-btn svg { width: 25px; height: 25px; }
.float-btn:hover { background: var(--primary-dark); }

/* ---------- 13. Yardımcı sınıflar ---------- */
.mt-0 { margin-top: 0; }
.text-muted { color: var(--text-muted); }
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); height: 280px; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 640px) {
    .img-frame { height: 340px; }
}
@media (min-width: 900px) {
    .img-frame { height: 420px; }
}

.breadcrumb-strip { background: var(--light-bg); border-bottom: 1px solid var(--border-soft); }
.breadcrumb-strip .container { padding-top: 12px; padding-bottom: 12px; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-strip a:hover { color: var(--primary-dark); }
.breadcrumb-strip svg { width: 14px; height: 14px; }

/* ---------- 14. Responsive: Tablet / Masaüstü ---------- */
@media (min-width: 640px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .district-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .region-links { column-count: 2; }
}

@media (min-width: 900px) {
    .main-nav { display: block; }
    .menu-toggle { display: none; }
    .header-phone { display: flex; }
    .mobile-nav { display: none !important; }

    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid { grid-template-columns: repeat(4, 1fr); }
    .district-grid { grid-template-columns: repeat(3, 1fr); }
    .two-col { grid-template-columns: 1.05fr 0.95fr; }
    .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
    .region-links { column-count: 3; }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 26px; padding-left: 0; }
    .process-step { border-left: none; border-top: 2px solid var(--border-soft); padding: 40px 10px 0 0; }
    .process-step::before { left: 0; top: -26px; box-shadow: 0 0 0 6px var(--white); }
    .section--light .process-step::before { box-shadow: 0 0 0 6px var(--light-bg); }
}

/* ---------- Hata Sayfaları (404 / 502) ---------- */
.error-page {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
    background: var(--secondary);
    color: var(--white);
}
.error-page-inner { max-width: 560px; margin: 0 auto; }
.error-icon {
    width: 84px; height: 84px; border-radius: 50%;
    background: var(--primary); color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 26px;
}
.error-icon svg { width: 38px; height: 38px; }
.error-code {
    font-family: var(--font); font-weight: 800; font-style: italic;
    font-size: clamp(3.2rem, 12vw, 5.5rem); line-height: 1; color: var(--primary);
    margin: 0 0 10px;
}
.error-page h1 {
    font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 0 0 14px; color: var(--white);
}
.error-page p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 0 0 30px; }
.error-page .hero-cta { justify-content: center; margin-top: 0; }

