/* ============================================================
   AYSA NAKLİYAT — Kurumsal Stylesheet (v1.0)
   Sıcak, enerjik, güven veren. Sarı–turuncu marka paleti.
   ============================================================ */

/* ------- Design Tokens ------- */
:root {
    /* --- Koyu zemin: sıcak kömür (turuncuyla uyumlu, lacivert değil) --- */
    --ink:       #17120D;   /* en koyu — hero, footer, koyu bölümler */
    --ink-2:     #221B13;
    --ink-3:     #302619;

    /* --- Marka: sarı → turuncu --- */
    --brand:     #F7931E;   /* ana marka rengi (sarı-turuncu) */
    --brand-d:   #DE7208;   /* koyu turuncu — hover/aktif */
    --brand-l:   #FFB84D;   /* açık — koyu zeminde metin/ikon */
    --brand-t:   #A85400;   /* METİN turuncusu — beyaz üstünde AA kontrast */
    --sun:       #FFC940;   /* sarı uç — degrade için */
    --brand-grad: linear-gradient(135deg, #FFC940 0%, #F7931E 55%, #EF7215 100%);
    --brand-soft: #FFF1DC;  /* çok açık turuncu zemin */
    --sand:      #F6E7CE;

    /* --- Nötrler (sıcak tonlu) --- */
    --cream:     #FDF9F3;   /* sayfa arkaplanı */
    --paper:     #FFFFFF;
    --line:      #EFE4D4;   /* saç teli çizgi */
    --line-2:    #E0D0B8;
    --text:      #26201A;
    --muted:     #6E6155;
    --muted-2:   #9A8D80;
    --danger:    #B23A3A;
    --success:   #2E7D52;

    /* Type */
    --serif: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --mono:  'JetBrains Mono', ui-monospace, monospace;

    /* Sizing */
    --container: 1240px;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Elevation */
    --shadow-sm: 0 2px 8px -2px rgba(23,18,13,.08);
    --shadow:    0 12px 32px -12px rgba(23,18,13,.16);
    --shadow-lg: 0 28px 60px -20px rgba(23,18,13,.24);
    --shadow-brand: 0 16px 40px -14px rgba(247,147,30,.55);

    /* Motion */
    --ease: cubic-bezier(.2,.7,.2,1);
    --t:    .35s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ------- Reset ------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--brand-t); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.55rem); font-weight: 600; }
p  { color: var(--text); }

::selection { background: var(--sun); color: var(--ink); }

/* ------- Layout helpers ------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-tight { padding: clamp(56px, 7vw, 100px) 0; }
.section--ink { background: var(--ink); color: #D7DCE4; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--paper { background: var(--paper); }

/* Eyebrow & dividers */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--brand-t);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--brand);
    display: inline-block;
}
.section--ink .eyebrow { color: var(--brand-l); }
.section--ink .eyebrow::before { background: var(--brand-l); }

.section-head { max-width: 760px; margin: 0 0 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

.divider { width: 48px; height: 1px; background: var(--brand); margin: 28px 0; border: 0; }

/* Icons */
.icon { stroke: currentColor; flex-shrink: 0; }

/* ------- Buttons ------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--t);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    flex-wrap: nowrap;
}
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Turuncu zemin + koyu metin: hem markanın enerjisi hem AA kontrast (≈9:1) */
.btn--primary {
    background: var(--brand-grad);
    color: var(--ink);
    box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px -14px rgba(247,147,30,.7);
    filter: saturate(1.08) brightness(1.03);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn:focus-visible { outline: 3px solid var(--brand-d); outline-offset: 3px; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brand-t);
    font-size: .9rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all var(--t);
}
.text-link:hover { color: var(--brand-d); border-color: var(--brand-d); }
.text-link .icon { width: 16px; height: 16px; transition: transform var(--t); }
.text-link:hover .icon { transform: translateX(4px); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--ink);
    color: #C2CCD8;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-list { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar-list li { display: inline-flex; align-items: center; gap: 8px; }
.topbar-list .icon { width: 14px; height: 14px; color: var(--brand-l); }
.topbar a { color: #C2CCD8; }
.topbar a:hover { color: var(--brand-l); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: 0 6px 30px -20px rgba(22,18,14,.25); }
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 32px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .02em;
    line-height: 1;
    text-decoration: none;
}
.brand-logo {
    display: block;
    height: 65px;
    width: auto;
    object-fit: contain;
}
.brand-logo--footer {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.brand-mark {
    width: 44px;
    height: 44px;
    border: 1px solid var(--brand);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -.02em;
    border-radius: 2px;
}
.brand-text small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; font-weight: 500; margin-top: 4px; white-space: nowrap; }

.nav-list { display: flex; gap: 28px; align-items: center; }
.nav-list a {
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: .06em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}
.nav-list a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--brand);
    transition: width var(--t);
}
.nav-list a:hover::after { width: 100%; }

.nav-cta { display: inline-flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: .95rem; font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}
.nav-phone .icon { width: 18px; height: 18px; color: var(--brand); }

.nav-toggle { display: none; padding: 8px; color: var(--ink); }
.nav-toggle .icon { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}
.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(.55);
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(22,18,14,.92) 0%, rgba(22,18,14,.65) 45%, rgba(22,18,14,.25) 100%);
    z-index: 1;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 760px;
    color: #fff;
    padding: 100px 10px 80px;
}
.hero .eyebrow { color: var(--brand-l); }
.hero .eyebrow::before { background: var(--brand-l); }
.hero h1 {
    color: #fff;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
}
.hero h1 strong { font-weight: 600; font-style: normal; color: #fff; display: block; }
.hero h1 .accent { color: var(--brand-l); font-style: normal; font-weight: 600; }
.hero-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
    max-width: 580px;
    margin-bottom: 40px;
}
.hero-cta { display: inline-flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
    display: flex;
    gap: 36px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
    flex-wrap: wrap;
}
.hero-trust li {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .85rem; color: rgba(255,255,255,.78);
    font-weight: 500;
}
.hero-trust .icon { width: 18px; height: 18px; color: var(--brand-l); }

/* Scroll cue */
.hero-scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,.55);
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    text-align: center;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px; height: 36px;
    background: rgba(255,255,255,.45);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { transform: scaleY(1); opacity: .6; }
    50%     { transform: scaleY(.5); opacity: 1; }
}

/* ============================================================
   TRUST STRIP / CERTIFICATIONS
   ============================================================ */
.trust-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.trust-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.trust-item:last-child { border-right: 0; }
.trust-item .icon { width: 28px; height: 28px; color: var(--brand); }
.trust-item-label {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 600;
}
.trust-item-sub {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .15em;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
    background: var(--ink);
    color: #fff;
    padding: 80px 0;
    position: relative;
}
.stats::before {
    content: '';
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
    width: 60px; height: 1px;
    background: var(--brand);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}
.stat {
    background: var(--ink);
    padding: 44px 28px;
    text-align: center;
}
.stat-num {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    font-weight: 500;
    color: var(--brand-l);
    line-height: 1;
    letter-spacing: -.02em;
}
.stat-suffix { font-family: var(--serif); color: var(--brand-l); font-size: 1.6rem; font-weight: 400; vertical-align: top; margin-left: 2px; }
.stat-label {
    margin-top: 14px;
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-figure {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure::before {
    content: '';
    position: absolute;
    top: 24px; left: 24px;
    width: 100%; height: 100%;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    z-index: -1;
}
.about-figure-wrap { position: relative; }
.about-stat-pill {
    position: absolute;
    bottom: 30px; left: 30px;
    background: var(--ink);
    color: #fff;
    padding: 22px 28px;
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 18px;
    box-shadow: 0 20px 40px -10px rgba(22,18,14,.35);
}
.about-stat-pill strong { font-family: var(--serif); font-size: 2.4rem; color: var(--brand-l); font-weight: 500; line-height: 1; }
.about-stat-pill span { font-size: .8rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .15em; max-width: 130px; }

.about-text h2 { margin-bottom: 24px; }
.about-text .lead { font-size: 1.15rem; color: var(--ink); font-weight: 400; line-height: 1.6; margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.feature-list { margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: .95rem; color: var(--text);
    font-weight: 500;
}
.feature-list .icon { width: 20px; height: 20px; color: var(--brand); margin-top: 2px; flex-shrink: 0; }

.signature {
    margin-top: 32px;
    display: flex; align-items: center; gap: 20px;
    padding-top: 24px; border-top: 1px solid var(--line);
}
.signature-name { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--ink); }
.signature-title { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .15em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.service {
    background: var(--paper);
    padding: 44px 36px;
    transition: background var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
.service:hover { background: #FBF8F2; }
.service-num {
    font-family: var(--serif);
    font-size: .85rem;
    color: var(--brand-t);
    letter-spacing: .15em;
    margin-bottom: 20px;
}
.service-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--line-2);
    color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: all var(--t);
}
.service:hover .service-icon { background: var(--brand); color: #fff; border-color: var(--brand); }
.service-icon .icon { width: 26px; height: 26px; }
.service h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service p { color: var(--muted); font-size: .95rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service .text-link { font-size: .8rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}
.process::before {
    content: '';
    position: absolute;
    top: 28px; left: 8%; right: 8%;
    height: 1px;
    background: var(--line-2);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 56px; height: 56px;
    background: var(--cream);
    border: 1px solid var(--brand);
    color: var(--brand);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 22px;
    transition: all var(--t);
}
.process-step:hover .step-num { background: var(--brand); color: #fff; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .9rem; }

/* ============================================================
   GALLERY (PHOTO)
   ============================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--ink);
    border-radius: var(--radius);
}
.gallery-item:nth-child(7n+1) { grid-row: span 2; }
.gallery-item:nth-child(11n+5) { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), opacity var(--t);
    opacity: .9;
}
.gallery-item:hover img { transform: scale(1.06); opacity: 1; }
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(22,18,14,.7));
    opacity: 0;
    transition: opacity var(--t);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
    position: absolute; left: 18px; bottom: 14px; right: 18px;
    color: #fff;
    font-family: var(--serif);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--t);
    z-index: 2;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

.gallery-cta { text-align: center; margin-top: 56px; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(14,11,8,.96);
    display: none;
    align-items: center; justify-content: center;
    z-index: 9999;
    padding: 40px;
}
.lightbox.is-open { display: flex; }
.lb-img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); }
.lb-btn {
    position: absolute;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t);
}
.lb-btn:hover { background: var(--brand); border-color: var(--brand); }
.lb-btn .icon { width: 22px; height: 22px; }
.lb-close { top: 28px; right: 28px; }
.lb-prev  { left: 28px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 28px; top: 50%; transform: translateY(-50%); }
.lb-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.75); letter-spacing: .25em; font-size: .8rem;
    font-family: var(--serif);
}

/* ============================================================
   VIDEO PLAYER + GALLERY
   ============================================================ */
.video-stage {
    max-width: 1080px;
    margin: 0 auto 40px;
}
.vplayer {
    position: relative;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
}
.vplayer video { width: 100%; height: 100%; object-fit: cover; }
.vplayer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.55));
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: opacity var(--t);
}
.vplayer.is-playing .vplayer-overlay { opacity: 0; pointer-events: none; }
.vplayer-bigplay {
    width: 96px; height: 96px;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
    transition: all var(--t);
}
.vplayer-bigplay:hover { background: var(--brand); border-color: var(--brand); transform: scale(1.05); }
.vplayer-bigplay .icon { width: 32px; height: 32px; margin-left: 4px; }

.vplayer-title {
    position: absolute;
    top: 22px; left: 24px;
    color: #fff;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(0,0,0,.45);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(6px);
}

.vplayer-controls {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
    display: flex; align-items: center; gap: 14px;
    opacity: 0;
    transition: opacity var(--t);
}
.vplayer:hover .vplayer-controls,
.vplayer.is-playing .vplayer-controls { opacity: 1; }
.vp-btn {
    color: #fff;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 4px;
    transition: background var(--t);
}
.vp-btn:hover { background: rgba(255,255,255,.12); }
.vp-btn .icon { width: 20px; height: 20px; }
.vp-progress {
    flex: 1; height: 3px;
    background: rgba(255,255,255,.25);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.vp-progress-fill { height: 100%; background: var(--brand-l); border-radius: 2px; width: 0%; transition: width .1s linear; }
.vp-time {
    color: #fff; font-size: .8rem;
    font-variant-numeric: tabular-nums;
    min-width: 100px; text-align: center;
    font-family: var(--mono);
    letter-spacing: .04em;
}
.vp-vol { display: flex; align-items: center; gap: 6px; }
.vp-vol input[type=range] { width: 70px; accent-color: var(--brand-l); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}
.vthumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 16/10;
    border: 1px solid transparent;
    transition: all var(--t);
}
.vthumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .55;
    transition: all var(--t);
}
.vthumb:hover img { opacity: .85; }
.vthumb.is-active { border-color: var(--brand); }
.vthumb.is-active img { opacity: 1; }
.vthumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85));
}
.vthumb-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(4px);
    z-index: 2;
    transition: all var(--t);
}
.vthumb:hover .vthumb-play { background: var(--brand); border-color: var(--brand); }
.vthumb-play .icon { width: 16px; height: 16px; margin-left: 2px; }
.vthumb-cap {
    position: absolute;
    left: 12px; bottom: 10px; right: 12px;
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    z-index: 2;
    line-height: 1.4;
}

/* ============================================================
   WHY US (Pillars)
   ============================================================ */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.pillar {
    padding: 0;
}
.pillar-icon {
    width: 56px; height: 56px;
    color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--brand);
    border-radius: 50%;
    margin-bottom: 22px;
}
.pillar-icon .icon { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   COVERAGE / CITIES
   ============================================================ */
.coverage-featured {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.city-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition: transform var(--t);
}
.city-card:hover { transform: translateY(-6px); color: #fff; }
.city-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.city-card:hover img { transform: scale(1.08); }
.city-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(22,18,14,.05) 30%, rgba(22,18,14,.92));
}
.city-card-body {
    position: relative; z-index: 2;
    padding: 28px;
}
.city-card-body h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: 500;
}
.city-card-body p { color: rgba(255,255,255,.85); font-size: .85rem; margin-bottom: 14px; }
.city-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--brand-l);
    border-bottom: 1px solid var(--brand-l);
    padding-bottom: 4px;
}

.coverage-cloud {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 48px 40px;
}
.coverage-cloud-head {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap; gap: 12px;
    margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.coverage-cloud-head h3 { font-size: 1.5rem; }
.coverage-cloud-head .meta { color: var(--muted); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; }
.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 4px 28px;
}
.cities-list a {
    display: inline-flex;
    /* İki satıra saran maddelerde nokta ortada asılı kalmasın diye üstten hizalanır */
    align-items: flex-start; gap: 8px;
    padding: 8px 0;
    font-size: .9rem;
    line-height: 1.5;
    color: var(--text);
    transition: color var(--t), transform var(--t);
}
.cities-list a::before {
    content: '';
    display: block;
    width: 4px; height: 4px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
    /* Noktayı ilk satırın optik ortasına indir: (satır yüksekliği − nokta) / 2 */
    margin-top: calc((1.5em - 4px) / 2);
    transition: transform var(--t);
}
/* padding-left ile kaydırmak metni zıplatıyordu; transform reflow üretmez.
   --brand beyaz zeminde zayıf kontrast veriyor, metin için --brand-t doğrusu. */
.cities-list a:hover { color: var(--brand-t); transform: translateX(2px); }
.cities-list a:hover::before { transform: scale(1.6); }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-wrap { overflow-x: auto; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: .95rem;
}
.pricing-table thead { background: var(--ink); color: #fff; }
.pricing-table th {
    text-align: left;
    padding: 22px 24px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--brand-l);
}
.pricing-table td {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table td:first-child { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 500; }
.pricing-table tr:hover td { background: #FBF8F2; }
.pricing-note {
    margin-top: 16px;
    font-size: .85rem;
    color: var(--muted);
    text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-summary {
    display: inline-flex; align-items: center; gap: 14px;
    margin-top: 18px;
    padding: 14px 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 100px;
}
.rating-stars { color: var(--brand); display: inline-flex; gap: 2px; }
.rating-stars .icon { width: 16px; height: 16px; }
.rating-summary strong { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 600; }
.rating-summary span { font-size: .85rem; color: var(--muted); }

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: all var(--t);
}
.testimonial:hover { border-color: var(--brand); transform: translateY(-4px); }
.testimonial-quote {
    color: var(--brand);
    margin-bottom: 18px;
}
.testimonial-quote .icon { width: 32px; height: 32px; }
.testimonial-stars { color: var(--brand); display: inline-flex; gap: 2px; margin-bottom: 14px; }
.testimonial-stars .icon { width: 14px; height: 14px; }
.testimonial p {
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 28px;
}
.testimonial-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px; border-top: 1px solid var(--line);
}
.testimonial-avatar {
    width: 44px; height: 44px;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.1rem;
}
.testimonial-author strong { display: block; color: var(--ink); font-weight: 600; font-size: .95rem; }
.testimonial-author span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================
   QUOTE CTA STRIP
   ============================================================ */
.quote-cta {
    background: var(--ink);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.quote-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(247,147,30,.18), transparent 50%);
}
.quote-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.quote-cta h2 { color: #fff; margin-bottom: 18px; }
.quote-cta p { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.quote-form {
    background: var(--paper);
    color: var(--ink);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.quote-form h3 { font-size: 1.4rem; margin-bottom: 24px; }
.quote-form .field { margin-bottom: 18px; }
.quote-form label {
    display: block;
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
    margin-bottom: 6px;
}
.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: .95rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color var(--t), background var(--t);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
}
.quote-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.quote-form button { width: 100%; margin-top: 10px; }

/* Quote CTA — utility classes (replaces inline styles) */
.eyebrow--light { color: var(--brand-l); }
.brand-em { font-style: normal; font-weight: 500; color: var(--brand); }
.text-center { text-align: center; }
.text-muted { color: var(--ink-light); }
.text-muted-block { color: var(--ink-light); margin: 0 0 24px; }
.service-icon--filled { margin-bottom: 18px; background: var(--brand); color: #fff; border-color: var(--brand); }

.quote-cta-contacts {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.quote-cta-contacts li { margin: 0; }
.quote-cta-contacts a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-family: var(--serif);
    font-size: 14px;
    transition: color var(--t);
}
.quote-cta-contacts a:hover { color: #fff; }
.quote-cta-contacts a span { color: #fff; }

.quote-action {
    background: var(--paper);
    color: var(--ink);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.quote-action h3 { font-size: 1.4rem; margin: 0; }
.quote-action p { color: var(--ink-light); margin: 0; }
.quote-action .btn { width: 100%; justify-content: center; }
.quote-action .quote-action-foot {
    margin-top: 6px;
    font-size: .85rem;
    color: var(--muted);
    border-top: 1px dashed var(--line);
    padding-top: 18px;
}
.quote-action .quote-action-foot a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}
.quote-action .quote-action-foot a:hover { color: var(--brand-t); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--t);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.blog-meta {
    font-size: .75rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--brand-t); }
.blog-card p { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }

/* ============================================================
   CONTACT BLOCKS
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.contact-cell {
    background: var(--paper);
    padding: 40px 36px;
    text-align: center;
    transition: background var(--t);
}
.contact-cell:hover { background: #FBF8F2; }
.contact-cell .icon { width: 28px; height: 28px; color: var(--brand); margin: 0 auto 16px; }
.contact-cell-label {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 10px;
}
.contact-cell strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}
.contact-cell a:hover strong { color: var(--brand); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 8px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
.faq-toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brand);
    transition: all var(--t);
}
.faq-toggle .icon { width: 16px; height: 16px; }
.faq-item[open] .faq-toggle { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(45deg); }
.faq-item[open] summary { color: var(--brand); }
.faq-body {
    padding: 0 8px 28px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: #C2CCD8;
    padding: 90px 0 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { color: #fff; font-size: 1.65rem; }
.footer-brand .brand-mark { border-color: var(--brand-l); color: var(--brand-l); }
.footer-brand .brand-text small { color: var(--brand-l); }
.footer-brand p {
    color: rgba(255,255,255,.65);
    margin-top: 24px;
    font-size: .92rem;
    line-height: 1.7;
}
.footer-social { display: inline-flex; gap: 12px; margin-top: 24px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.78);
    transition: all var(--t);
}
.footer-social a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.footer-social .icon { width: 18px; height: 18px; }

.footer-col h4 {
    color: #fff;
    font-family: var(--sans);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    transition: all var(--t);
}
.footer-col a:hover { color: var(--brand-l); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: .92rem; }
.footer-contact div { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.78); }
.footer-contact .icon { width: 16px; height: 16px; color: var(--brand-l); margin-top: 4px; flex-shrink: 0; }

.footer-bottom {
    padding: 28px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
}
.footer-bottom a { color: rgba(255,255,255,.88); }
.footer-bottom p { color: inherit; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-whatsapp {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 90;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px -6px rgba(37,211,102,.55);
    transition: transform var(--t);
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }
.fab-whatsapp .icon { width: 28px; height: 28px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .coverage-featured { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
    .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 900px) {
    .nav-list, .nav-phone { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-cta .btn { padding: 10px 16px; font-size: .78rem; }
    .brand-logo { height: 55px; }
    .nav { gap: 12px; padding: 12px 10px !important; justify-content: flex-end;}
    .nav .brand{ margin-right: auto;}
    .topbar { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .about { display: flex; flex-direction: column; gap: 60px; }
    .about-stat-pill { left: 20px; bottom: 20px; padding: 18px 22px; }
    .process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process::before { display: none; }
    .quote-cta-inner { display: flex; flex-direction: column; gap: 40px; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .feature-list { display: flex; flex-direction: column; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item:nth-child(11n+5) { grid-column: span 1; }
    .service { padding: 32px 22px; min-height: auto; }
    .testimonial { padding: 28px 22px; }
    .section-head { margin-bottom: 44px; }
}
@media (max-width: 600px) {
    .container { padding: 0 12px; }
    /* Buttons */
    .btn { padding: 12px 18px; font-size: .8rem; gap: 8px; }
    .btn--lg { padding: 14px 22px; font-size: .85rem; }
    .btn .icon { width: 16px; height: 16px; }
    /* Section headings */
    .section-head { margin-bottom: 32px; }
    /* Hero */
    .hero { min-height: 78vh; }
    .hero-inner { padding: 70px 10px 50px; }
    .hero-trust { gap: 14px; margin-top: 40px; padding-top: 24px; }
    .hero-trust li { font-size: .78rem; }
    /* Trust strip */
    .trust-item { padding: 20px 12px; }
    .trust-item .icon { width: 22px; height: 22px; }
    /* Stats */
    .stats { padding: 44px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat { padding: 22px 10px; }
    .stat-num { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .stat-suffix { font-size: 1.1rem; }
    .stat-label { font-size: .7rem; letter-spacing: .12em; margin-top: 8px; }
    /* Services */
    .services-grid { display: flex; flex-direction: column; }
    .service { padding: 24px 18px; }
    /* Process */
    .process { display: flex; flex-direction: column; gap: 20px; }
    /* Pillars */
    .pillars { display: flex; flex-direction: column; gap: 32px; }
    /* Coverage */
    .coverage-featured { display: flex; flex-direction: column; }
    .coverage-cloud { padding: 22px 16px; }
    .coverage-cloud-head { margin-bottom: 16px; padding-bottom: 14px; }
    .cities-list { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0 16px; }
    /* Testimonials */
    .testimonials { display: flex; flex-direction: column; }
    .testimonial { padding: 24px 16px; }
    /* Blog */
    .blog-grid { display: flex; flex-direction: column; }
    .blog-card { padding: 24px 18px; }
    /* Contact cells */
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .contact-cell { padding: 18px 8px; }
    .contact-cell strong { font-size: 1rem; }
    .contact-cell .icon { width: 22px; height: 22px; margin-bottom: 10px; }
    /* Stats band (city/district/service pages) */
    .stats-band { grid-template-columns: 1fr 1fr; }
    .stats-band .stat-cell { padding: 22px 10px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .stats-band .stat-cell:nth-child(2n) { border-right: 0; }
    .stats-band .stat-num { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .stats-band .stat-label { font-size: .68rem; letter-spacing: .1em; }
    /* Inner page grids */
    .included-grid { display: flex; flex-direction: column; gap: 12px; }
    .included-card { padding: 18px; }
    .split-intro { gap: 24px; }
    /* Coverage cloud cities columns */
    .cities-list { grid-template-columns: 1fr 1fr; }
    /* Hero CTA full width */
    .hero-cta { gap: 10px; width: 100%; }
    .hero-cta .btn { width: 100%; }
    /* Mobile nav phones single col if too cramped */
    .mobile-nav-phones .btn { font-size: .72rem; }
    /* FAQ */
    .faq-item summary { font-size: 1rem; padding: 16px 4px; }
    /* Quote action */
    .quote-action { padding: 24px 18px; }
    /* Footer */
    .footer { padding-top: 56px; }
    .footer-grid { display: flex; flex-direction: column; gap: 36px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 20px 0; font-size: .78rem; }
    .footer-contact div { font-size: .9rem; word-break: break-word; }
    .footer-col h4 { margin-bottom: 16px; }
    /* Inner hero */
    .inner-hero { padding: 80px 0 56px; min-height: auto; }
    .inner-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .inner-hero-inner { padding: 0 4px; }
    /* About */
    .about-figure-wrap { display: none; }
    /* Misc */
    .trust-strip-inner { display: flex; flex-direction: column; }
    .quote-form { padding: 26px 22px; }
    .quote-form .field-row { display: flex; flex-direction: column; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .lb-prev, .lb-next, .lb-close { width: 40px; height: 40px; }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
    .lb-close { top: 16px; right: 16px; }
}

/* Mobile menu open state */
body.menu-open { overflow: hidden; }
.mobile-nav {
    position: fixed; inset: 0;
    background: var(--ink);
    z-index: 200;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    display: flex; flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-links { flex: 1; }
.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: rgba(255,255,255,.88);
    font-family: var(--sans);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color var(--t), padding-left var(--t);
}
.mobile-nav a:hover { color: var(--brand-l); padding-left: 6px; }
.mobile-nav-close {
    position: absolute; top: 24px; right: 24px;
    color: #fff;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
}
.mobile-nav-close .icon { width: 22px; height: 22px; }
.mobile-nav-foot {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-nav-foot > .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .85rem;
}
.mobile-nav-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mobile-nav-phones .btn {
    justify-content: center;
    padding: 12px 8px;
    font-size: .75rem;
    gap: 6px;
    border-color: rgba(255,255,255,.2);
}
.mobile-nav-phones .btn .icon { width: 14px; height: 14px; }

/* ==========================================================
   v3.2 — Inner page system (city / district / service / blog / 404)
   ========================================================== */

/* Inner hero — compact version of the homepage hero */
.inner-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 110px;
    isolation: isolate;
}
img.inner-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(22,18,14,.65) 0%, rgba(22,18,14,.85) 100%);
}
.inner-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}
.inner-hero h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 18px 0 22px;
}
.inner-hero h1 .accent {
    color: var(--brand);
}
.inner-hero .eyebrow {
    color: rgba(255,255,255,.85);
}
.inner-hero .hero-lead {
    color: rgba(255,255,255,.85);
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.65;
}
.inner-hero .hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
}
.breadcrumbs a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.breadcrumbs a:hover { border-color: var(--brand); }
.breadcrumbs .bc-sep {
    color: rgba(255,255,255,.4);
}
.breadcrumbs .bc-current {
    color: var(--brand);
}

/* Section helper for narrow centered content */
.container.narrow {
    max-width: 880px;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 28px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: .98rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.feature-list li .icon {
    color: var(--brand);
    flex-shrink: 0;
}

/* Lead paragraph */
.lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Blog article prose */
.blog-article {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #2A3A4F;
}
.blog-article h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 600;
    color: var(--ink);
    margin: 40px 0 16px;
    letter-spacing: -0.01em;
}
.blog-article h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin: 28px 0 12px;
}
.blog-article p { margin: 0 0 18px; }
.blog-article ul, .blog-article ol {
    padding-left: 22px;
    margin: 0 0 22px;
}
.blog-article li { margin-bottom: 10px; }
.blog-article a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-article blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    border-left: 3px solid var(--brand);
    background: var(--cream);
    font-style: italic;
    color: var(--ink);
}
.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 22px 0;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-light);
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.post-meta .icon { color: var(--brand); }

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 12px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -22px rgba(22,18,14,.25);
    border-color: var(--brand);
}
.blog-card-body { padding: 28px; }
.blog-card-date {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--brand);
    margin-bottom: 12px;
}
.blog-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -0.005em;
}
.blog-card h3 a {
    color: var(--ink);
    text-decoration: none;
    background-image: linear-gradient(var(--brand), var(--brand));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .3s;
}
.blog-card h3 a:hover { background-size: 100% 1px; }
.blog-card p {
    color: var(--ink-light);
    line-height: 1.65;
    margin: 0 0 16px;
}

/* 404 page */
.page-404 {
    padding: 160px 0 80px;
    background: var(--cream);
    text-align: center;
}
.page-404-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.page-404-num {
    font-family: var(--serif);
    font-size: clamp(7rem, 18vw, 12rem);
    font-weight: 600;
    color: var(--brand);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 18px 0 8px;
}
.page-404 h1 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}
.page-404 h1 .accent { color: var(--brand); }
.page-404 p {
    color: var(--ink-light);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 30px;
}
.page-404-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.page-404-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    text-align: left;
    border-top: 1px solid var(--line);
    padding-top: 50px;
}
.page-404-grid h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.link-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.link-list a {
    color: var(--ink);
    text-decoration: none;
    font-size: .95rem;
    transition: color .2s;
}
.link-list a:hover { color: var(--brand-t); }

@media (max-width: 720px) {
    .inner-hero { padding: 110px 0 60px; min-height: 48vh; }
    .feature-list { display: flex; flex-direction: column; }
    .blog-card-body { padding: 22px; }
}

/* v3.2 hotfixes */
.inner-hero h1 { color: #fff; }
.inner-hero h1 em { font-style: normal; color: var(--brand); }
.feature-list li:last-child { border-bottom: 0; }
.feature-list li:nth-last-child(2):nth-child(odd) { border-bottom: 0; }

/* Topbar whatsapp icon should not be filled */
.topbar .icon { stroke-width: 1.6; }

/* Contact page */
.contact-grid--split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
}
@media (max-width: 880px) { .contact-grid--split { display: flex; flex-direction: column; gap: 40px; } }
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 36px;
    border-radius: 4px;
}
.contact-card h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci-icon {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--cream);
    color: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-list .ci-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-light);
    margin-bottom: 4px;
}
.contact-list .ci-value {
    color: var(--ink);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}
.contact-list .ci-value:hover { color: var(--brand); }
.contact-map {
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}
.contact-map iframe { display: block; width: 100%; height: 360px; border: 0; }

/* FAQ accordion */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 0;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:hover { color: var(--brand); }
.faq-toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--brand);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--brand); color: #fff; border-color: var(--brand); }
.faq-item p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--ink-light);
    line-height: 1.75;
    font-size: .98rem;
    max-width: 760px;
}

/* Price table */
.price-table-wrap { overflow-x: auto; margin-top: 12px; }
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
    font-size: .95rem;
    min-width: 540px;
}
.price-table thead th {
    background: var(--ink);
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    font-family: var(--serif);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.price-table tbody td {
    padding: 14px 20px;
    border-top: 1px solid var(--line);
    color: var(--ink);
}
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table .row-label {
    font-weight: 600;
    color: var(--brand);
    background: var(--cream) !important;
}
.price-note {
    font-size: .85rem;
    color: var(--ink-light);
    margin-top: 14px;
    line-height: 1.6;
}

/* Stats band */
.stats-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    background: var(--ink);
    color: #fff;
}
.stats-band .stat-cell {
    padding: 44px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.stats-band .stat-cell:last-child { border-right: 0; }
.stats-band .stat-num {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--brand);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}
.stats-band .stat-label {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.75);
}

/* Two-column intro */
.split-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 880px) { .split-intro { display: flex; flex-direction: column; gap: 30px; } }
.split-intro img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
}
.split-intro h2 { margin-top: 0; margin-bottom: 24px; }
/* Global reset paragraf boşluklarını sıfırlıyor; .about-text ile aynı ritim. */
.split-intro p { color: var(--muted); margin-bottom: 16px; }
.split-intro p:last-child { margin-bottom: 0; }

/* Compact card grid for "what is included" */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.included-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-radius: 4px;
}
.included-card .icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.included-card strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--serif);
    font-size: 1rem;
}
.included-card p { margin: 0; color: var(--ink-light); font-size: .9rem; line-height: 1.55; }

/* ============================================================
   AYSA — REFRESH LAYER
   Marka paleti üzerine tasarım güncellemeleri ve yeni bileşenler.
   Bu blok, yukarıdaki temel katmanı ezer.
   ============================================================ */

/* ---------- Yazı logosu (logo.png yüklenene kadar) ---------- */
.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ink);
    line-height: 1;
}
.brand-wordmark .bw-a { color: var(--brand-t); }
/* .bw-sub, .brand-wordmark'ın KARDEŞİDİR (çocuğu değil) — seçici ona göre */
.bw-sub {
    display: block;
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
    white-space: nowrap;
}
.brand-wordmark-wrap { display: inline-flex; flex-direction: column; line-height: 1; }
.footer .brand-wordmark { color: #fff; }
.footer .brand-wordmark .bw-a { color: var(--brand-l); }
.footer .bw-sub { color: rgba(255,255,255,.45); }
.mobile-nav .brand-wordmark { color: #fff; }
.mobile-nav .brand-wordmark .bw-a { color: var(--brand-l); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #C9BEB0; }
.topbar a { color: #C9BEB0; }
.topbar a:hover { color: var(--brand-l); }
.topbar-list .icon { color: var(--brand-l); }

/* ---------- Header ---------- */
.site-header { background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(14px); }
.site-header.is-scrolled { box-shadow: 0 8px 30px -18px rgba(23,18,13,.35); background: rgba(255,255,255,.96); }
.nav-list a::after { background: var(--brand); height: 2px; border-radius: 2px; }
.nav-phone .icon { color: var(--brand-t); }

/* ---------- Hero ---------- */
.hero { min-height: 92vh; }
.hero::after {
    background:
      radial-gradient(1200px 620px at 12% 18%, rgba(247,147,30,.20), transparent 60%),
      linear-gradient(100deg, rgba(23,18,13,.94) 0%, rgba(23,18,13,.78) 46%, rgba(23,18,13,.42) 100%);
}
.hero-bg { filter: brightness(.5) saturate(1.05); }
.hero h1 { font-style: normal; font-weight: 700; letter-spacing: -.025em; }
.hero h1 .accent {
    background: var(--brand-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.hero .eyebrow { color: var(--brand-l); }
.hero .eyebrow::before { background: var(--brand-l); }
.hero-trust .icon { color: var(--brand-l); }

/* Hero içi güven rozetleri */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9);
    font-size: .78rem; font-weight: 600; letter-spacing: .02em;
}
.hero-badge .icon { width: 15px; height: 15px; color: var(--brand-l); }

/* ---------- Bölüm zeminleri ---------- */
.section--brand-soft { background: var(--brand-soft); }
.section--ink { background: var(--ink); color: #CFC4B6; }
.section--ink .eyebrow { color: var(--brand-l); }
.section--ink .eyebrow::before { background: var(--brand-l); }
.section--ink p { color: rgba(255,255,255,.72); }
.section-head h2 em { font-style: normal; color: var(--brand-t); }
.section--ink .section-head h2 em { color: var(--brand-l); }

/* ---------- Trust strip ---------- */
.trust-item .icon { color: var(--brand-t); }
.trust-strip-inner { border-radius: var(--radius); overflow: hidden; }

/* ---------- Stats ---------- */
.stats::before { background: var(--brand-grad); width: 90px; height: 3px; border-radius: 3px; }
.stat-num, .stat-suffix { color: var(--brand-l); }
.stats-grid { border-radius: var(--radius); overflow: hidden; }

/* ---------- Services ---------- */
.services-grid { border-radius: var(--radius-lg); }
.service { transition: transform var(--t), background var(--t), box-shadow var(--t); }
.service:hover { background: var(--brand-soft); }
.service-icon { border-radius: var(--radius-sm); color: var(--brand-t); border-color: var(--line-2); }
.service:hover .service-icon { background: var(--brand-grad); color: var(--ink); border-color: transparent; }
.service::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--brand-grad);
    transform: scaleY(0); transform-origin: top;
    transition: transform var(--t);
}
.service:hover::before { transform: scaleY(1); }

/* ---------- Process ---------- */
.step-num { border-color: var(--brand); color: var(--brand-t); background: var(--paper); font-weight: 700; }
.process-step:hover .step-num { background: var(--brand-grad); color: var(--ink); border-color: transparent; box-shadow: var(--shadow-brand); }
.process::before { background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); }

/* ---------- Pillars ---------- */
.pillar { border-radius: var(--radius); transition: transform var(--t), box-shadow var(--t); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-icon { border-radius: var(--radius-sm); color: var(--brand-t); }
.pillar:hover .pillar-icon { background: var(--brand-grad); color: var(--ink); border-color: transparent; }

/* ---------- Cities ---------- */
.city-card { border-radius: var(--radius); }
.city-card-link { color: var(--brand-t); }
/* Not: Buradaki hap (pill) görünümü kaldırıldı. .cities-list bir metin-link
   listesi; yatay padding'i yok. Dolayısıyla border-radius + degrade dolgu,
   yazıya yapışan kaçık bir turuncu leke olarak çıkıyordu. Hover davranışı
   liste tanımının yanında (bkz. .cities-list a:hover). */

/* ---------- Testimonials ---------- */
.testimonial { border-radius: var(--radius); }
.testimonial-quote .icon { color: var(--brand); opacity: .35; }
.testimonial-stars { color: var(--brand); }
.testimonial-avatar { background: var(--brand-grad); color: var(--ink); font-weight: 700; }
.rating-stars { color: var(--brand); }

/* ---------- FAQ ---------- */
.faq-item { border-radius: var(--radius-sm); }
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item[open] summary { color: var(--brand-t); }
.faq-toggle { color: var(--brand-t); }
.faq-item[open] .faq-toggle { background: var(--brand-grad); color: var(--ink); }

/* ---------- Blog ---------- */
.blog-card { border-radius: var(--radius); }
.blog-article a { color: var(--brand-t); }
.blog-article h2 { border-left: 3px solid var(--brand); padding-left: 14px; }
.blog-article blockquote { border-left-color: var(--brand); background: var(--brand-soft); }
/* Blog içi tablolar (yazılarda karşılaştırma tablosu var) */
.blog-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: .94rem;
}
.blog-article thead { background: var(--ink); }
.blog-article th {
    color: #fff; text-align: left; padding: 14px 16px;
    font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
}
.blog-article td { padding: 14px 16px; border-bottom: 1px solid var(--line); }
.blog-article tbody tr:nth-child(even) { background: var(--cream); }
.blog-article td:first-child { font-weight: 600; color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); }
.footer-col h4 { color: #fff; }
.footer-col h4::after { background: var(--brand-grad); }
.footer-col a:hover { color: var(--brand-l); }
.footer-contact .icon { color: var(--brand-l); }
.footer-social a:hover { background: var(--brand-grad); color: var(--ink); border-color: transparent; }

/* ---------- FAB ---------- */
.fab-whatsapp { box-shadow: 0 14px 34px -10px rgba(37,211,102,.6); }

/* ============================================================
   YENİ BİLEŞEN — FİYAT TAHMİN ARACI
   ============================================================ */
.estimator {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
}
.est-form { padding: 44px 40px; }
.est-field { margin-bottom: 22px; }
.est-field > label {
    display: block;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--muted); margin-bottom: 10px;
}
.est-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.est-opts input { position: absolute; opacity: 0; width: 0; height: 0; }
.est-opts label {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 18px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: .88rem; font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all var(--t);
    user-select: none;
}
.est-opts label:hover { border-color: var(--brand); background: var(--brand-soft); }
.est-opts input:checked + label {
    background: var(--brand-grad);
    border-color: transparent;
    color: var(--ink);
    box-shadow: var(--shadow-brand);
}
.est-opts input:focus-visible + label { outline: 3px solid var(--brand-d); outline-offset: 2px; }
.est-result {
    background: var(--ink);
    color: #fff;
    padding: 44px 40px;
    display: flex; flex-direction: column; justify-content: center;
}
.est-result-label {
    font-size: .74rem; text-transform: uppercase; letter-spacing: .2em;
    color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.est-range {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--brand-l);
    letter-spacing: -.02em;
}
.est-note {
    margin-top: 16px;
    font-size: .86rem;
    line-height: 1.65;
    color: rgba(255,255,255,.62);
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.est-result .btn { margin-top: 22px; }
.est-breakdown { margin-top: 18px; display: grid; gap: 8px; }
.est-breakdown div {
    display: flex; justify-content: space-between; gap: 12px;
    font-size: .84rem; color: rgba(255,255,255,.7);
}
.est-breakdown span:last-child { color: #fff; font-weight: 600; }

/* ============================================================
   YENİ BİLEŞEN — DAHİL / HARİÇ TABLOSU
   ============================================================ */
.incl-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
}
.incl-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
}
.incl-row:last-child { border-bottom: 0; }
.incl-row--head { background: var(--ink); }
.incl-row--head > div {
    color: #fff; font-weight: 700; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .12em;
    padding: 18px 22px;
}
.incl-row--head > div:not(:first-child) { text-align: center; }
.incl-row > div { padding: 16px 22px; font-size: .94rem; display: flex; align-items: center; }
.incl-row > div:not(:first-child) { justify-content: center; border-left: 1px solid var(--line); }
.incl-row:nth-child(even):not(.incl-row--head) { background: var(--cream); }
.incl-label { font-weight: 600; color: var(--ink); }
.incl-yes { color: var(--success); }
.incl-no  { color: var(--muted-2); }
.incl-yes .icon, .incl-no .icon { width: 22px; height: 22px; }
.incl-opt {
    font-size: .78rem; font-weight: 700; color: var(--brand-t);
    text-transform: uppercase; letter-spacing: .08em;
}

/* ============================================================
   YENİ BİLEŞEN — POPÜLER ROTALAR
   ============================================================ */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}
.route-card {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--t);
}
.route-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: inherit;
}
.route-card .icon { color: var(--brand-t); flex-shrink: 0; }
.route-from-to { font-weight: 600; color: var(--ink); font-size: .96rem; line-height: 1.3; }
.route-meta { font-size: .78rem; color: var(--muted); margin-top: 3px; }

/* ============================================================
   YENİ BİLEŞEN — KEŞİF/GÜVEN ŞERİDİ
   ============================================================ */
.promise-band {
    background: var(--brand-grad);
    padding: 26px 0;
}
.promise-inner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 14px 40px;
}
.promise-inner li {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink);
    font-weight: 700; font-size: .95rem;
}
.promise-inner .icon { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE — yeni bileşenler
   ============================================================ */
@media (max-width: 980px) {
    .estimator { grid-template-columns: 1fr; }
    .est-form, .est-result { padding: 34px 26px; }
}
@media (max-width: 760px) {
    .incl-row { grid-template-columns: 1.2fr .8fr .8fr; }
    .incl-row > div { padding: 13px 12px; font-size: .86rem; }
    .incl-row--head > div { padding: 14px 12px; font-size: .68rem; letter-spacing: .06em; }
    .promise-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .promise-inner li { font-size: .88rem; }
    .hero-badges { gap: 8px; }
    .hero-badge { font-size: .72rem; padding: 6px 11px; }
}

/* ---------- Skip link (erişilebilirlik) ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 14px 22px;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Partner (Ucuza Taşın) şeridi ---------- */
.partner-band {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 40px 0;
}
.partner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}
.partner-left { display: flex; align-items: center; gap: 26px; min-width: 0; }
.partner-logo { flex-shrink: 0; }
.partner-logo img { height: 46px; width: auto; }
.partner-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 12px; margin-bottom: 9px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    color: var(--brand-t);
    font-size: .71rem; font-weight: 700; letter-spacing: .04em;
}
.partner-badge .icon { width: 14px; height: 14px; }
.partner-title { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.partner-title a { color: var(--brand-t); }
.partner-desc { margin-top: 7px; font-size: .93rem; color: var(--muted); line-height: 1.6; max-width: 620px; }
.partner-desc a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.partner-desc a:hover { color: var(--brand-t); }
.partner-cta { flex-shrink: 0; }

@media (max-width: 900px) {
    .partner-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
    .partner-left { flex-direction: column; align-items: flex-start; gap: 16px; }
    .partner-cta { width: 100%; }
    .partner-title { font-size: 1.15rem; }
}

/* ---------- Ekran okuyucu ---------- */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- İletişim sayfası teklif kartı ---------- */
.quote-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: sticky;
    top: 100px;
}
.quote-card h3 { color: #fff; font-size: 1.5rem; line-height: 1.35; margin-bottom: 14px; }
.quote-card-eyebrow {
    display: inline-block;
    color: var(--brand-l);
    font-size: .74rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    margin-bottom: 14px;
}
.quote-card .text-muted-block { color: rgba(255,255,255,.7); font-size: .94rem; line-height: 1.7; }
.quote-card .quote-action { margin-top: 24px; display: grid; gap: 10px; }
.quote-card .btn { width: 100%; }
.quote-card .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.quote-card .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 980px) { .quote-card { position: static; } }

/* ---------- Hero tipografi ölçeği ----------
   H1 iki parçadan oluşur: anahtar kelime (büyük) + slogan cümlesi (daha küçük).
   Slogan uzun bir cümle olduğu için başlık ölçeğiyle yazılınca CTA'yı ekranın
   altına itiyordu; ölçek burada dengeleniyor. */
.hero h1 {
    font-size: clamp(1.85rem, 3.1vw, 2.75rem);
    margin-bottom: 20px;
}
.hero h1 .accent {
    display: block;
    font-size: 1.32em;
    line-height: 1.05;
    margin-bottom: 6px;
}
.hero h1 strong {
    font-size: .86em;
    font-weight: 600;
    line-height: 1.22;
    color: rgba(255,255,255,.94);
}
.hero-inner { padding: 76px 10px 64px; }
.hero-lead { font-size: 1.05rem; margin-bottom: 26px; max-width: 620px; }
.hero-trust { margin-top: 40px; padding-top: 24px; gap: 28px; }
.hero .hero-badges { margin-bottom: 24px; }

@media (max-width: 700px) {
    .hero { min-height: auto; }
    .hero-inner { padding: 56px 10px 52px; }
    .hero h1 { font-size: clamp(1.6rem, 6.4vw, 2.1rem); }
    .hero h1 .accent { font-size: 1.28em; }
    .hero-trust { gap: 14px 22px; margin-top: 30px; }
    .hero-cta .btn { width: 100%; }
}

/* ---------- Başlıklardaki <em> vurgusu ----------
   Şablonlarda <em> anahtar kelimeyi vurgulamak için kullanılıyor; italik değil
   marka rengiyle gösterilir. (.section-head dışındaki başlıkları da kapsar.) */
h1 em, h2 em, h3 em {
    font-style: normal;
    color: var(--brand-t);
}
.section--ink h1 em, .section--ink h2 em, .section--ink h3 em,
.hero h1 em, .inner-hero h1 em, .quote-cta h2 em {
    color: var(--brand-l);
}

/* ============================================================
   SSS SAYFASI
   ============================================================ */
.faq-nav {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.faq-nav a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: .86rem; font-weight: 600;
    color: var(--text);
    transition: all var(--t);
}
.faq-nav a:hover { background: var(--brand-grad); border-color: transparent; color: var(--ink); }
.faq-nav a span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 5px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-t);
    font-size: .7rem; font-weight: 700;
}
.faq-nav a:hover span { background: rgba(23,18,13,.14); color: var(--ink); }

.faq-group { margin-bottom: 52px; scroll-margin-top: 120px; }
.faq-group-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.35rem; font-weight: 700;
    margin-bottom: 20px;
    color: var(--ink);
}
.faq-group-title .icon { color: var(--brand-t); }

/* ============================================================
   YASAL METİNLER
   ============================================================ */
.legal-doc h2 {
    font-size: 1.3rem;
    margin-top: 40px;
    border-left: 3px solid var(--brand);
    padding-left: 14px;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc table td:first-child { width: 34%; color: var(--muted); font-weight: 600; }
.legal-doc ul { margin: 14px 0; }
.legal-links {
    display: flex; flex-wrap: wrap; gap: 24px;
    margin-top: 48px; padding-top: 28px;
    border-top: 1px solid var(--line);
}

/* ============================================================
   FOOTER — yasal linkler
   ============================================================ */
.footer-legal {
    display: flex; flex-wrap: wrap; gap: 6px 20px;
    justify-content: center;
}
.footer-legal a { color: rgba(255,255,255,.55); font-size: .84rem; }
.footer-legal a:hover { color: var(--brand-l); }

@media (max-width: 900px) {
    .footer-legal { justify-content: flex-start; }
}

/* Menü kalabalıklaştı — biraz daralt */
@media (min-width: 1025px) {
    .nav-list { gap: 20px; }
    .nav-list a { font-size: .78rem; letter-spacing: .04em; }
}

/* ============================================================
   COĞRAFİ VERİ ŞERİDİ (il sayfası)
   ============================================================ */
.geo-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 26px 0;
}
.geo-facts > div {
    background: var(--paper);
    padding: 14px 12px;
    text-align: center;
    display: flex; flex-direction: column; gap: 4px;
}
.gf-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.gf-value { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--brand-t); line-height: 1.2; }
.price-table .row-label a { color: var(--ink); font-weight: 600; }
.price-table .row-label a:hover { color: var(--brand-t); }
@media (max-width: 600px) {
    .geo-facts { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HİZMET ÇİPLERİ — il/ilçe sayfalarında kompakt hizmet linkleri
   (14 hizmet kartı her sayfada birebir tekrarlanınca sayfaları
    birbirine benzetiyordu; iç linkleme korunur, boilerplate düşer)
   ============================================================ */
.svc-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.svc-chip {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 15px;
    background: var(--paper);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: .89rem; font-weight: 600;
    color: var(--text);
    transition: all var(--t);
}
.svc-chip .icon { color: var(--brand-t); flex-shrink: 0; }
.svc-chip .icon:last-child { opacity: .4; }
.svc-chip:hover {
    border-color: transparent;
    background: var(--brand-grad);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}
.svc-chip:hover .icon { color: var(--ink); }
.section--paper .svc-chip { background: var(--cream); }
