/* ============================================================
   ÇİZGİ LAZER — TASARIM SİSTEMİ (TEK KAYNAK)
   Endüstriyel / fiber lazer kesim. Grafit zemin + korlu turuncu.
   Tipografi: IBM Plex Sans Condensed (başlık) + IBM Plex Sans (gövde)
   Bu dosya en sonda yüklenir; tema (Xcare) stillerini override eder.
   Yeni bölümler "cz-" ön ekli kendi sınıflarını kullanır.
   ============================================================ */

/* ---------- 1. TASARIM TOKEN'LARI ---------- */
:root {
    /* Zemin katmanları — AÇIK TEMA (Mikro paleti) */
    --cz-bg:          #ffffff;   /* sayfa zemini, beyaz */
    --cz-bg-2:        #f7f7f7;   /* alternatif bölüm zemini */
    --cz-surface:     #ffffff;   /* panel / kart (beyaz + border) */
    --cz-surface-2:   #fbfbfc;   /* yükseltilmiş kart / hover */
    --cz-line:        #e1e2e3;   /* belirgin ayraç */
    --cz-hairline:    rgba(0,0,0,.08); /* ince çizgi (koyu, açık zeminde) */

    /* Koyu lacivert (footer, CTA, vurgu bloklar) */
    --cz-dark:        #202a34;
    --cz-dark-2:      #2a3540;

    /* Vurgu — amber (Mikro) */
    --cz-accent:      #faa61a;   /* ana vurgu (amber) */
    --cz-accent-700:  #e0900f;   /* basılı/hover koyu */
    --cz-accent-300:  #ffbe4d;   /* açık amber */
    --cz-amber:       #faa61a;   /* ikincil sıcak */
    --cz-red:         #ff3821;   /* Mikro ikincil kırmızı */
    --cz-accent-soft: rgba(250,166,26,.14); /* amber zemin tonu */

    /* Metin */
    --cz-text:        #454e57;   /* gövde metni (koyu gri) */
    --cz-heading:     #202a34;   /* başlık (lacivert/koyu) */
    --cz-muted:       #79838e;   /* ikincil metin */
    --cz-faint:       #9aa3ad;   /* en silik (etiket/altyazı) */

    /* Yapı */
    --cz-radius:      3px;       /* keskin — endüstriyel */
    --cz-radius-lg:   4px;
    --cz-shadow:      0 14px 40px rgba(32,42,52,.12);
    --cz-shadow-sm:   0 4px 18px rgba(32,42,52,.08);

    /* Tipografi aileleri */
    --cz-font-head:   "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
    --cz-font-body:   "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --cz-font-mono:   "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;

    /* Düzen */
    --cz-container:   1200px;
    --cz-section-y:   96px;       /* bölüm dikey boşluk */
    --cz-ease:        cubic-bezier(.2,.6,.2,1);
}

/* ---------- 2. TEMEL / RESET KATMANI ---------- */
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body,
.page-wrapper.pbmit-bg-color-white {
    background-color: var(--cz-bg) !important;
    color: var(--cz-text);
    font-family: var(--cz-font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5,h6,
.pbmit-title,
.widget-title,
.site-title {
    font-family: var(--cz-font-head);
    color: var(--cz-heading);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: .2px;
}

a { color: var(--cz-accent); text-decoration: none; transition: color .2s var(--cz-ease); }
a:hover { color: var(--cz-accent-300); }

p { margin: 0 0 1.1em; }
img { max-width: 100%; height: auto; }

::selection { background: var(--cz-accent); color: #14171a; }

/* İnce, koyu kaydırma çubuğu */
* { scrollbar-width: thin; scrollbar-color: var(--cz-line) var(--cz-bg); }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--cz-bg); }
*::-webkit-scrollbar-thumb { background: var(--cz-line); border-radius: 0; }
*::-webkit-scrollbar-thumb:hover { background: #3a414c; }

/* ---------- 3. DÜZEN YARDIMCILARI ---------- */
.cz-container { max-width: var(--cz-container); margin: 0 auto; padding: 0 24px; }
.cz-section { padding: var(--cz-section-y) 0; position: relative; }
.cz-section--tight { padding: 64px 0; }
.cz-bg-2 { background: var(--cz-bg-2); }
.cz-surface { background: var(--cz-surface); }

/* İnce üst çizgi ile bölüm ayrımı */
.cz-section--ruled { border-top: 1px solid var(--cz-hairline); }

/* ---------- 4. BÖLÜM BAŞLIĞI (eyebrow + title) ---------- */
.cz-head { margin-bottom: 48px; max-width: 720px; }
.cz-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.cz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--cz-font-head);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cz-accent);
    margin-bottom: 16px;
}
.cz-eyebrow::before {
    content: "";
    width: 28px; height: 2px;
    background: var(--cz-accent);
    display: inline-block;
}
.cz-head--center .cz-eyebrow::before { display: none; }

.cz-title {
    font-size: clamp(28px, 4vw, 46px);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 16px;
}
.cz-title .cz-hl { color: var(--cz-accent); }
.cz-lead { color: var(--cz-muted); font-size: 17px; margin: 0; }

/* ---------- 5. BUTONLAR ---------- */
.cz-btn {
    --b: var(--cz-accent);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    font-family: var(--cz-font-head);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #14171a;
    background: var(--b);
    border: 1px solid var(--b);
    border-radius: var(--cz-radius);
    cursor: pointer;
    transition: all .22s var(--cz-ease);
    line-height: 1;
    white-space: nowrap;
}
.cz-btn:hover { background: var(--cz-accent-700); border-color: var(--cz-accent-700); color: #14171a; transform: translateY(-2px); }
.cz-btn svg, .cz-btn i { width: 16px; height: 16px; }
.cz-btn .cz-arrow { transition: transform .22s var(--cz-ease); }
.cz-btn:hover .cz-arrow { transform: translateX(4px); }

/* Hayalet / kontur buton */
.cz-btn--ghost {
    background: transparent;
    color: var(--cz-heading);
    border-color: var(--cz-line);
}
.cz-btn--ghost:hover {
    background: var(--cz-accent-soft);
    border-color: var(--cz-accent);
    color: var(--cz-heading);
    transform: translateY(-2px);
}

/* ---------- 6. KARTLAR ---------- */
.cz-card {
    background: var(--cz-surface);
    border: 1px solid var(--cz-hairline);
    border-radius: var(--cz-radius);
    transition: border-color .25s var(--cz-ease), transform .25s var(--cz-ease), background .25s var(--cz-ease);
    position: relative;
    overflow: hidden;
}
.cz-card:hover { border-color: rgba(255,106,0,.45); transform: translateY(-4px); background: var(--cz-surface-2); }
/* Üst köşede ince turuncu vurgu — hover'da büyür */
.cz-card::after {
    content: "";
    position: absolute; top: 0; left: 0;
    width: 0; height: 3px; background: var(--cz-accent);
    transition: width .3s var(--cz-ease);
}
.cz-card:hover::after { width: 100%; }

/* ---------- 7. ENDÜSTRİYEL DOKULAR / MOTİFLER ---------- */
/* İnce blueprint grid zemin (çok silik) */
.cz-grid-bg {
    background-image:
        linear-gradient(var(--cz-hairline) 1px, transparent 1px),
        linear-gradient(90deg, var(--cz-hairline) 1px, transparent 1px);
    background-size: 48px 48px;
}
/* Uyarı şeridi (sarı-siyah) — çok seyrek, vurgu için */
.cz-hazard {
    height: 6px;
    background: repeating-linear-gradient(45deg, var(--cz-amber) 0 14px, #14171a 14px 28px);
    opacity: .9;
}
/* Köşe nişanı (teknik çizim hissi) */
.cz-tick { position: relative; }
.cz-tick::before, .cz-tick::after {
    content: ""; position: absolute; width: 10px; height: 10px;
    border-color: var(--cz-accent); border-style: solid; border-width: 0;
}
.cz-tick::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.cz-tick::after { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* Tabular rakamlar (istatistik/teknik veriler) */
.cz-num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* =================================================================
   8. PAYLAŞILAN TEMA RESKIN — Header / Footer (pbmit sınıfları)
   Tüm sitede anında bütünlük için tema header/footer'ı koyulaştırılır.
   ================================================================= */

/* --- Üst bilgi şeridi --- */
.pbmit-pre-header-wrapper {
    background: #f7f7f7 !important;
    border-bottom: 1px solid var(--cz-line);
    padding: 9px 0;
    font-family: var(--cz-font-body);
}
.pbmit-pre-header-wrapper,
.pbmit-pre-header-wrapper a,
.pbmit-contact-info li { color: var(--cz-muted) !important; font-size: 13.5px; }
.pbmit-pre-header-wrapper i { color: var(--cz-accent) !important; margin-right: 7px; }
.pbmit-pre-header-wrapper a:hover { color: var(--cz-accent) !important; }

/* --- Ana header --- */
.pbmit-main-header-area.pbmit-bg-color-white,
.site-header .site-header-menu {
    background: #ffffff !important;
    border-bottom: 1px solid var(--cz-line);
}
.site-header.header-style-15 { box-shadow: none; }

/* Menü linkleri */
.main-menu .navigation > li > a {
    color: var(--cz-heading) !important;
    font-family: var(--cz-font-head);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.active > a { color: var(--cz-accent) !important; }
/* Aktif/hover altı turuncu çizgi */
.main-menu .navigation > li > a::after {
    content: ""; display: block; height: 2px; width: 0;
    background: var(--cz-accent); transition: width .25s var(--cz-ease); margin-top: 4px;
}
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.active > a::after { width: 100%; }

/* Dropdown */
.main-menu .navigation li ul {
    background: var(--cz-surface) !important;
    border: 1px solid var(--cz-hairline);
    border-top: 2px solid var(--cz-accent);
    box-shadow: var(--cz-shadow-sm);
}
.main-menu .navigation li ul li a {
    color: var(--cz-muted) !important;
    text-transform: none;
    font-family: var(--cz-font-body);
    letter-spacing: 0;
}
.main-menu .navigation li ul li a:hover {
    color: var(--cz-accent) !important;
    background: var(--cz-accent-soft) !important;
}

/* Sağ kutu ikon (arama) */
.pbmit-header-search-btn a { color: var(--cz-heading) !important; }
.pbmit-header-search-btn a:hover { color: var(--cz-accent) !important; }

/* --- pbmit-btn (header/footer butonu) endüstriyel hale --- */
.pbmit-btn {
    background: var(--cz-accent) !important;
    border-radius: var(--cz-radius) !important;
    overflow: hidden;
}
.pbmit-btn .pbmit-button-text {
    color: #14171a !important;
    font-family: var(--cz-font-head);
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.pbmit-btn .pbmit-button-icon svg path { stroke: #14171a !important; }
.pbmit-btn .pbmit-button-icon i { color: #14171a !important; }
.pbmit-btn:hover { background: var(--cz-accent-700) !important; }

/* --- Mobil menü paneli --- */
.pbmit-menu-wrap, .navbar-collapse.show { background: var(--cz-bg) !important; }
.navbar-toggler i { color: var(--cz-heading) !important; }

/* --- Footer --- */
footer.footer-style-2,
.footer-style-2.pbmit-bg-color-blackish {
    background: #101316 !important;
    border-top: 1px solid var(--cz-hairline);
}
.pbmit-footer-big-area { border-bottom: 1px solid var(--cz-hairline); }
.pbmit-footer-news-title,
.footer-style-2 .widget-title {
    color: var(--cz-heading) !important;
    font-family: var(--cz-font-head);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer-style-2 .widget-title {
    font-size: 19px;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px;
}
.footer-style-2 .widget-title::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 36px; height: 2px; background: var(--cz-accent);
}
.footer-style-2,
.footer-style-2 p,
.footer-style-2 .textwidget,
.footer-style-2 .pbmit-contact-widget-line,
.footer-style-2 .pbmit-timelist-time,
.footer-style-2 li a { color: var(--cz-muted) !important; }
.footer-style-2 li a:hover { color: var(--cz-accent) !important; padding-left: 4px; }
.footer-style-2 ul li { transition: padding .2s var(--cz-ease); margin-bottom: 8px; }
.pbmit-footer-text-area {
    background: #0c0e10 !important;
    border-top: 1px solid var(--cz-hairline);
}
.pbmit-footer-copyright-text-area { color: var(--cz-faint) !important; font-size: 13.5px; }

/* Sosyal linkler */
.pbmit-social-links a span {
    color: var(--cz-muted);
    border: 1px solid var(--cz-hairline);
    transition: all .22s var(--cz-ease);
}
.pbmit-social-links a:hover span {
    color: #14171a; background: var(--cz-accent); border-color: var(--cz-accent);
}

/* --- Sayfa içi başlık / breadcrumb şeridi (iç sayfalar) --- */
.pbmit-title-bar-wrapper, .pbmit-titlebar-wrapper {
    background: var(--cz-bg-2) !important;
    border-bottom: 1px solid var(--cz-hairline);
}

/* --- Scroll-top & WhatsApp dokunuşu --- */
.pbmit-progress-wrap { box-shadow: inset 0 0 0 2px var(--cz-line); }
.pbmit-progress-wrap::after { color: var(--cz-accent); }
.pbmit-progress-circle path { stroke: var(--cz-accent); }

/* ---------- 9. SEÇİM / ERİŞİLEBİLİRLİK ---------- */
:focus-visible { outline: 2px solid var(--cz-accent); outline-offset: 2px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* =================================================================
   11. HEADER / FOOTER — PROFESYONEL CİLA
   ================================================================= */

/* ---- Üst bilgi şeridi: ayraçlı, hizalı ---- */
.pbmit-pre-header-wrapper .pbmit-contact-info {
    display: flex; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; flex-wrap: wrap;
}
.pbmit-pre-header-left .pbmit-contact-info > li {
    display: inline-flex; align-items: center;
    padding: 0 18px; position: relative;
}
.pbmit-pre-header-left .pbmit-contact-info > li + li::before {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 14px; background: var(--cz-hairline);
}
.pbmit-pre-header-left .pbmit-contact-info > li:first-child { padding-left: 0; }
.pbmit-pre-header-right .pbmit-contact-info { justify-content: flex-end; }

/* ---- Ana menü çubuğu: sticky + cam efekti ---- */
.site-header .site-header-menu {
    position: sticky; top: 0; z-index: 1000;
    background: #ffffff !important;
    box-shadow: 0 1px 0 var(--cz-line), 0 8px 24px rgba(32,42,52,.08);
}
.pbmit-header-content { min-height: 78px; padding: 8px 0; }

/* Logo netliği */
.site-branding .site-title { margin: 0; line-height: 1; }
.site-branding .logo-img { height: 44px; width: auto; display: block; }

/* Menü öğeleri arası nefes — tek satırda kalsın */
.main-menu .navigation { flex-wrap: nowrap; }
.main-menu .navigation > li { margin: 0; white-space: nowrap; }
.main-menu .navigation > li > a { padding: 28px 13px; display: inline-block; font-size: 15px; letter-spacing: .5px; }
.site-navigation { flex: 1 1 auto; }
@media (min-width: 1200px) and (max-width: 1320px) {
    .main-menu .navigation > li > a { padding: 28px 10px; font-size: 14px; letter-spacing: .3px; }
}

/* ---- Sağ kutu: arama butonu beyaz daire FIX ---- */
.pbmit-right-box { gap: 16px; }
.site-header .pbmit-header-search-btn { margin: 0; padding: 0; }
.site-header .pbmit-header-search-btn a {
    width: 46px; height: 46px;
    display: inline-flex !important; align-items: center; justify-content: center;
    background: transparent !important;
    border: 1px solid var(--cz-line) !important;
    border-radius: var(--cz-radius) !important;
    color: var(--cz-heading) !important;
    font-size: 16px;
    transition: all .2s var(--cz-ease);
}
.site-header .pbmit-header-search-btn a:hover {
    background: var(--cz-accent-soft) !important;
    border-color: var(--cz-accent) !important;
    color: var(--cz-accent) !important;
}
/* Header Teklif butonu dengeli padding */
.pbmit-button-box-second .pbmit-btn { padding: 14px 24px !important; }

/* ---- Sayfa içi başlık şeridi (breadcrumb) — koyu + grid ---- */
.pbmit-title-bar-wrapper {
    background: var(--cz-bg-2) !important;
    background-image:
        linear-gradient(var(--cz-hairline) 1px, transparent 1px),
        linear-gradient(90deg, var(--cz-hairline) 1px, transparent 1px);
    background-size: 48px 48px;
    border-bottom: 1px solid var(--cz-hairline);
    padding: 64px 0 !important;
}
.pbmit-title-bar-content .pbmit-tbar-title,
.pbmit-title-bar-content h1 {
    color: var(--cz-heading) !important; text-transform: uppercase; letter-spacing: .5px;
}
.pbmit-breadcrumb, .pbmit-breadcrumb a, .pbmit-breadcrumb-inner span { color: var(--cz-muted) !important; }
.pbmit-breadcrumb a:hover, .pbmit-breadcrumb .active { color: var(--cz-accent) !important; }

/* ---- FOOTER ---- */
.pbmit-footer-big-area { padding: 44px 0; position: relative; }
.pbmit-footer-big-area::before {
    content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 3px; background: var(--cz-accent);
}
.pbmit-footer-news-title { font-size: clamp(24px, 3vw, 34px); line-height: 1.1; margin: 0; }
.pbmit-footer-widget-area { padding: 60px 0 40px; }

.cz-footer-about p { color: var(--cz-muted); margin: 0 0 22px; max-width: 320px; }

/* İletişim listesi (ikonlu) */
.cz-footer-contact, .cz-footer-hours { list-style: none; margin: 0; padding: 0; }
.cz-footer-contact li, .cz-footer-hours li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; color: var(--cz-muted); font-size: 15px; line-height: 1.5;
}
.cz-footer-contact i, .cz-footer-hours i {
    color: var(--cz-accent); font-size: 16px; margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center;
}
.cz-footer-contact a { color: var(--cz-muted); }
.cz-footer-contact a:hover { color: var(--cz-accent); }
.cz-footer-hours li { justify-content: flex-start; }
.cz-hours-day { min-width: 96px; color: var(--cz-text); }
.cz-hours-time { color: var(--cz-muted); }

/* Hızlı linkler: ok işaretli */
.footer-style-2 .pbmit-two-column-menu ul { list-style: none; margin: 0; padding: 0; }
.footer-style-2 .pbmit-two-column-menu ul li a { display: inline-flex; align-items: center; gap: 8px; }
.footer-style-2 .pbmit-two-column-menu ul li a::before {
    content: "›"; color: var(--cz-accent); font-weight: 700; font-size: 16px; line-height: 1;
}

/* Copyright şeridi — tema beyaz yuvarlak paneli düzleştir/koyulaştır */
.footer-style-2 .pbmit-footer-text-inner {
    background-color: #0c0e10 !important;
    border-radius: 0 !important;
    border-top: 1px solid var(--cz-hairline);
    padding: 20px 0 !important;
    margin-left: 0 !important;
}
.footer-style-2 .pbmit-footer-text-inner::before,
.footer-style-2 .pbmit-footer-text-inner::after { display: none !important; }
.pbmit-footer-copyright-text-area { padding: 0; text-align: center; color: var(--cz-faint) !important; }

/* =================================================================
   12. ANASAYFA BÖLÜMLERİ
   ================================================================= */
.cz-grid { display: grid; gap: 24px; }
.cz-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cz-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cz-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cz-ico { display: block; }

/* ---- HERO ---- */
.cz-hero { position: relative; padding: 84px 0 96px; overflow: hidden; background: var(--cz-bg); }
.cz-hero-glow {
    position: absolute; top: -120px; right: -120px; width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(250,166,26,.20), transparent 62%);
    pointer-events: none;
}
.cz-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.cz-hero-title {
    font-size: clamp(34px, 5vw, 60px);
    text-transform: uppercase;
    line-height: 1.02;
    margin: 0 0 20px;
    letter-spacing: .5px;
}
.cz-hero-lead { font-size: 18px; color: var(--cz-muted); max-width: 540px; margin: 0 0 30px; }
.cz-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.cz-hero-caps {
    list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--cz-hairline);
    display: flex; flex-wrap: wrap; gap: 22px;
}
.cz-hero-caps li {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--cz-font-head); font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px; color: var(--cz-text);
}
.cz-dot { width: 7px; height: 7px; background: var(--cz-accent); display: inline-block; transform: rotate(45deg); }
.cz-hero-visual { position: relative; padding: 14px; background: var(--cz-surface); border: 1px solid var(--cz-hairline); }
.cz-hero-visual img { display: block; width: 100%; height: auto; }

/* ---- İSTATİSTİK ---- */
.cz-stats { background: var(--cz-bg-2); position: relative; }
.cz-stats .cz-hazard { position: absolute; top: 0; left: 0; right: 0; }
.cz-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cz-stat { padding: 46px 24px; text-align: center; border-right: 1px solid var(--cz-hairline); }
.cz-stat:last-child { border-right: 0; }
.cz-stat-ico { color: var(--cz-accent); display: flex; justify-content: center; margin-bottom: 14px; }
.cz-stat-num { font-family: var(--cz-font-head); font-weight: 700; font-size: 44px; color: var(--cz-heading); line-height: 1; }
.cz-stat-label { color: var(--cz-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }

/* ---- HİZMET KARTLARI ---- */
.cz-svc { display: flex; flex-direction: column; padding: 34px 30px; color: var(--cz-text); }
.cz-svc-ico {
    width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    color: var(--cz-accent); background: var(--cz-accent-soft); border-radius: var(--cz-radius);
    margin-bottom: 22px; transition: all .25s var(--cz-ease);
}
.cz-svc:hover .cz-svc-ico { background: var(--cz-accent); color: #14171a; }
.cz-svc-title { font-size: 22px; text-transform: uppercase; letter-spacing: .3px; margin: 0 0 12px; }
.cz-svc-desc { color: var(--cz-muted); font-size: 15px; margin: 0 0 22px; flex: 1; }
.cz-svc-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--cz-font-head); font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px; color: var(--cz-accent);
}
.cz-svc:hover .cz-svc-more { gap: 12px; }

/* ---- NEDEN BİZ ---- */
.cz-why-grid { gap: 8px 36px; }
.cz-why-item { display: flex; gap: 18px; padding: 24px; border: 1px solid transparent; border-radius: var(--cz-radius); transition: all .25s var(--cz-ease); }
.cz-why-item:hover { border-color: var(--cz-hairline); background: var(--cz-surface); }
.cz-why-ico {
    flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    color: var(--cz-accent); border: 1px solid var(--cz-line); border-radius: var(--cz-radius);
}
.cz-why-title { font-size: 18px; text-transform: uppercase; letter-spacing: .3px; margin: 4px 0 8px; }
.cz-why-desc { color: var(--cz-muted); font-size: 14.5px; margin: 0; }

/* ---- SÜREÇ ---- */
.cz-process-grid { gap: 0; }
.cz-step { padding: 8px 28px 8px 0; position: relative; }
.cz-step + .cz-step { padding-left: 28px; border-left: 1px solid var(--cz-hairline); }
.cz-step-no { font-family: var(--cz-font-head); font-weight: 700; font-size: 46px; color: var(--cz-line); line-height: 1; display: block; margin-bottom: 14px; }
.cz-step-ico { color: var(--cz-accent); margin-bottom: 14px; }
.cz-step-title { font-size: 19px; text-transform: uppercase; letter-spacing: .3px; margin: 0 0 10px; }
.cz-step-desc { color: var(--cz-muted); font-size: 14.5px; margin: 0; }

/* ---- GALERİ ---- */
.cz-gallery-grid { gap: 16px; }
.cz-gitem { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--cz-hairline); border-radius: var(--cz-radius); aspect-ratio: 4 / 3; }
.cz-gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--cz-ease); }
.cz-gitem:hover img { transform: scale(1.06); }
.cz-gitem figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 18px;
    background: linear-gradient(to top, rgba(12,14,16,.92), transparent);
    display: flex; flex-direction: column; gap: 4px;
}
.cz-gcat { font-family: var(--cz-font-head); font-weight: 600; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cz-accent); }
.cz-gtitle { font-family: var(--cz-font-head); font-weight: 600; font-size: 17px; color: var(--cz-heading); }

/* ---- REFERANSLAR ---- */
.cz-testi-grid { gap: 22px; }
.cz-quote { padding: 34px 32px; position: relative; }
.cz-quote-mark { color: var(--cz-accent); opacity: .5; display: block; margin-bottom: 10px; }
.cz-quote-text { color: var(--cz-text); font-size: 16.5px; line-height: 1.7; margin: 0 0 24px; }
.cz-quote-foot { display: flex; align-items: center; gap: 14px; }
.cz-quote-av {
    width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: var(--cz-accent); color: #14171a; font-family: var(--cz-font-head); font-weight: 700; font-size: 20px; border-radius: var(--cz-radius);
}
.cz-quote-foot strong { display: block; color: var(--cz-heading); font-family: var(--cz-font-head); letter-spacing: .3px; }
.cz-quote-foot small { color: var(--cz-muted); font-size: 13px; }

.cz-brands { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--cz-hairline); text-align: center; }
.cz-brands-label { display: block; color: var(--cz-faint); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px; }
.cz-brands ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.cz-brands li { font-family: var(--cz-font-head); font-weight: 700; font-size: 20px; letter-spacing: 1.5px; color: var(--cz-faint); transition: color .2s var(--cz-ease); }
.cz-brands li:hover { color: var(--cz-text); }

/* ---- TEKLİF CTA ---- */
.cz-cta { position: relative; background: var(--cz-surface); border-top: 1px solid var(--cz-hairline); }
.cz-cta .cz-hazard { position: absolute; top: 0; left: 0; right: 0; }
.cz-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 64px 0; flex-wrap: wrap; }
.cz-cta-title { font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; margin: 0 0 8px; }
.cz-cta-sub { color: var(--cz-muted); margin: 0; }
.cz-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =================================================================
   13. İÇ SAYFALAR
   ================================================================= */
/* ---- Sayfa başlığı bandı ---- */
.cz-pagehead { position: relative; padding: 72px 0; background: var(--cz-bg-2); border-bottom: 1px solid var(--cz-hairline); overflow: hidden; }
.cz-pagehead-glow { position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(250,166,26,.18), transparent 62%); pointer-events: none; }
.cz-pagehead-title { font-size: clamp(30px, 4.5vw, 52px); text-transform: uppercase; letter-spacing: .5px; margin: 0; position: relative; }
.cz-pagehead-lead { color: var(--cz-muted); max-width: 640px; margin: 14px 0 0; font-size: 17px; }
.cz-crumbs { margin-top: 18px; font-size: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--cz-font-head); letter-spacing: .5px; }
.cz-crumbs a { color: var(--cz-muted); }
.cz-crumbs a:hover { color: var(--cz-accent); }
.cz-crumb-sep { color: var(--cz-line); }
.cz-crumb-active { color: var(--cz-accent); }

/* ---- Hizmet listesi: kategori grupları ---- */
.cz-cat-block + .cz-cat-block { margin-top: 64px; }
.cz-cat-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--cz-hairline); }
.cz-cat-head h2 { font-size: 26px; text-transform: uppercase; margin: 0; }
.cz-cat-head p { color: var(--cz-muted); margin: 0; font-size: 15px; }

/* ---- Hizmet detay ---- */
.cz-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.cz-detail-visual { border: 1px solid var(--cz-hairline); border-radius: var(--cz-radius); overflow: hidden; margin-bottom: 28px; aspect-ratio: 16/9; background: var(--cz-surface); }
.cz-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.cz-prose { color: var(--cz-text); font-size: 16.5px; line-height: 1.8; }
.cz-prose h2, .cz-prose h3 { color: var(--cz-heading); text-transform: uppercase; letter-spacing: .3px; margin: 32px 0 14px; }
.cz-prose p { margin: 0 0 1.1em; }
.cz-prose ul { list-style: none; padding: 0; margin: 0 0 1.2em; }
.cz-prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--cz-muted); }
.cz-prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; background: var(--cz-accent); transform: rotate(45deg); }
.cz-prose a { color: var(--cz-accent); }

/* Sidebar */
.cz-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.cz-side-box { background: var(--cz-surface); border: 1px solid var(--cz-hairline); border-radius: var(--cz-radius); padding: 26px; }
.cz-side-box h3 { font-size: 17px; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--cz-hairline); }
.cz-side-list { list-style: none; margin: 0; padding: 0; }
.cz-side-list li { border-bottom: 1px solid var(--cz-hairline); }
.cz-side-list li:last-child { border-bottom: 0; }
.cz-side-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 0; color: var(--cz-text); font-family: var(--cz-font-head); font-weight: 600; letter-spacing: .3px; transition: all .2s var(--cz-ease); }
.cz-side-list a:hover { color: var(--cz-accent); padding-left: 6px; }
.cz-side-list a.active { color: var(--cz-accent); }
.cz-side-cta { background: var(--cz-accent-soft); border-color: rgba(255,106,0,.35); text-align: center; }
.cz-side-cta p { color: var(--cz-muted); margin: 0 0 18px; font-size: 14.5px; }

/* ---- Galeri filtre ---- */
.cz-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.cz-filter button {
    font-family: var(--cz-font-head); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
    padding: 10px 20px; border: 1px solid var(--cz-line); background: transparent; color: var(--cz-muted);
    border-radius: var(--cz-radius); cursor: pointer; transition: all .2s var(--cz-ease);
}
.cz-filter button:hover { color: var(--cz-heading); border-color: var(--cz-muted); }
.cz-filter button.active { background: var(--cz-accent); border-color: var(--cz-accent); color: #14171a; }
.cz-gitem.is-hidden { display: none; }

/* ---- Kurumsal (hakkımızda) ---- */
.cz-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cz-about-visual { border: 1px solid var(--cz-hairline); padding: 12px; background: var(--cz-surface); }
.cz-about-visual img { display: block; width: 100%; }
.cz-mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 30px; }
.cz-mini-stat { border-left: 2px solid var(--cz-accent); padding-left: 16px; }
.cz-mini-stat b { display: block; font-family: var(--cz-font-head); font-size: 30px; color: var(--cz-heading); line-height: 1; }
.cz-mini-stat span { color: var(--cz-muted); font-size: 13px; text-transform: uppercase; letter-spacing: .8px; }

/* ---- FORMLAR ---- */
.cz-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cz-field { display: flex; flex-direction: column; gap: 8px; }
.cz-field--full { grid-column: 1 / -1; }
.cz-field label { font-family: var(--cz-font-head); font-weight: 600; font-size: 13.5px; letter-spacing: .8px; text-transform: uppercase; color: var(--cz-text); }
.cz-field label .req { color: var(--cz-accent); }
.cz-input, .cz-textarea, .cz-select {
    width: 100%; background: var(--cz-bg); border: 1px solid var(--cz-line); border-radius: var(--cz-radius);
    padding: 14px 16px; color: var(--cz-heading); font-family: var(--cz-font-body); font-size: 15px;
    transition: border-color .2s var(--cz-ease), box-shadow .2s var(--cz-ease);
}
.cz-input::placeholder, .cz-textarea::placeholder { color: var(--cz-faint); }
.cz-input:focus, .cz-textarea:focus, .cz-select:focus { outline: none; border-color: var(--cz-accent); box-shadow: 0 0 0 3px var(--cz-accent-soft); }
.cz-textarea { resize: vertical; min-height: 140px; }
.cz-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239aa3ad' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.cz-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--cz-muted); }
.cz-check input { margin-top: 3px; accent-color: var(--cz-accent); width: 16px; height: 16px; flex-shrink: 0; }
.cz-check a { color: var(--cz-accent); }
.cz-form-msg { grid-column: 1/-1; padding: 14px 16px; border-radius: var(--cz-radius); font-size: 14.5px; display: none; }
.cz-form-msg.ok { display: block; background: rgba(46,160,67,.12); border: 1px solid rgba(46,160,67,.4); color: #6fd083; }
.cz-form-msg.err { display: block; background: rgba(224,40,24,.1); border: 1px solid rgba(224,40,24,.4); color: #ff8a7a; }

/* İletişim düzeni */
.cz-contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: start; }
.cz-info-box { background: var(--cz-surface); border: 1px solid var(--cz-hairline); border-radius: var(--cz-radius); padding: 30px; }
.cz-info-list { list-style: none; margin: 0; padding: 0; }
.cz-info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--cz-hairline); }
.cz-info-list li:last-child { border-bottom: 0; }
.cz-info-list .ico { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--cz-accent); background: var(--cz-accent-soft); border-radius: var(--cz-radius); }
.cz-info-list .lbl { font-family: var(--cz-font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--cz-faint); font-size: 12px; display: block; }
.cz-info-list .val { color: var(--cz-text); }
.cz-info-list .val a { color: var(--cz-text); }
.cz-info-list .val a:hover { color: var(--cz-accent); }
.cz-map { margin-top: 0; border: 1px solid var(--cz-hairline); border-radius: var(--cz-radius); overflow: hidden; line-height: 0; }
.cz-map iframe { width: 100%; height: 360px; border: 0; filter: grayscale(.25); }

/* =================================================================
   14. BLOG / MAKALELER
   ================================================================= */
.cz-post { display: flex; flex-direction: column; overflow: hidden; }
.cz-post-img { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.cz-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--cz-ease); }
.cz-post:hover .cz-post-img img { transform: scale(1.06); }
.cz-post-cat { position: absolute; top: 12px; left: 12px; background: var(--cz-accent); color: #14171a; font-family: var(--cz-font-head); font-weight: 600; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: var(--cz-radius); }
.cz-post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.cz-post-date { color: var(--cz-faint); font-size: 13px; font-family: var(--cz-font-head); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.cz-post-title { font-size: 20px; line-height: 1.25; text-transform: none; margin: 0 0 12px; }
.cz-post-title a { color: var(--cz-heading); }
.cz-post-title a:hover { color: var(--cz-accent); }
.cz-post-ozet { color: var(--cz-muted); font-size: 14.5px; margin: 0 0 18px; flex: 1; }

/* makale meta */
.cz-post-meta { display: flex; flex-wrap: wrap; gap: 22px; margin: 22px 0; padding: 16px 0; border-top: 1px solid var(--cz-hairline); border-bottom: 1px solid var(--cz-hairline); }
.cz-post-meta span { display: inline-flex; align-items: center; gap: 8px; color: var(--cz-muted); font-size: 14px; }
.cz-post-meta .cz-ico { color: var(--cz-accent); }
.cz-post-meta a { color: var(--cz-muted); }
.cz-post-meta a:hover { color: var(--cz-accent); }

/* etiketler */
.cz-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.cz-tag { font-size: 13px; color: var(--cz-muted); border: 1px solid var(--cz-line); border-radius: var(--cz-radius); padding: 6px 14px; }

/* paylaş */
.cz-share { display: flex; align-items: center; gap: 12px; padding-top: 22px; border-top: 1px solid var(--cz-hairline); }
.cz-share-label { font-family: var(--cz-font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--cz-faint); font-size: 13px; }
.cz-share a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--cz-line); border-radius: var(--cz-radius); color: var(--cz-muted); font-family: var(--cz-font-head); font-weight: 700; font-size: 14px; }
.cz-share a:hover { background: var(--cz-accent); border-color: var(--cz-accent); color: #14171a; }

/* ilgili makaleler */
.cz-related { list-style: none; margin: 0; padding: 0; }
.cz-related li { border-bottom: 1px solid var(--cz-hairline); }
.cz-related li:last-child { border-bottom: 0; }
.cz-related a { display: flex; gap: 14px; padding: 14px 0; align-items: center; }
.cz-related img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--cz-radius); flex-shrink: 0; border: 1px solid var(--cz-hairline); }
.cz-related strong { display: block; color: var(--cz-text); font-family: var(--cz-font-head); font-weight: 600; font-size: 14.5px; line-height: 1.3; transition: color .2s var(--cz-ease); }
.cz-related a:hover strong { color: var(--cz-accent); }
.cz-related small { color: var(--cz-faint); font-size: 12.5px; }

/* sayfalama (bootstrap .pagination override) */
.cz-pagination { margin-top: 48px; display: flex; justify-content: center; }
.cz-pagination .pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.cz-pagination .page-link {
    display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px;
    background: var(--cz-surface); border: 1px solid var(--cz-hairline); color: var(--cz-text);
    font-family: var(--cz-font-head); font-weight: 600; border-radius: var(--cz-radius); text-decoration: none;
}
.cz-pagination .page-link:hover { border-color: var(--cz-accent); color: var(--cz-accent); }
.cz-pagination .page-item.active .page-link { background: var(--cz-accent); border-color: var(--cz-accent); color: #14171a; }
.cz-pagination .page-item.disabled .page-link { opacity: .4; }

/* =================================================================
   10. RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
    .cz-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cz-process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .cz-step + .cz-step { border-left: 0; padding-left: 0; }
    .cz-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cz-stat:nth-child(2) { border-right: 0; }
    .cz-stat { border-bottom: 1px solid var(--cz-hairline); }
}
@media (max-width: 992px) {
    :root { --cz-section-y: 64px; }
    .cz-container { padding: 0 18px; }
    .cz-hero { padding: 56px 0 64px; }
    .cz-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .cz-hero-visual { order: -1; }
    .cz-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .cz-detail-grid { grid-template-columns: 1fr; }
    .cz-side { position: static; }
    .cz-contact-grid { grid-template-columns: 1fr; }
    .cz-about-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    :root { --cz-section-y: 52px; }
    .cz-title { font-size: clamp(24px, 7vw, 32px); }
    .cz-grid-2, .cz-grid-3, .cz-grid-4 { grid-template-columns: 1fr; }
    .cz-stats-grid { grid-template-columns: 1fr; }
    .cz-stat { border-right: 0; }
    /* Butonları alt alta diz — yatay taşmayı önler */
    .cz-hero-actions { flex-direction: column; align-items: stretch; }
    .cz-hero-actions .cz-btn { width: 100%; justify-content: center; }
    .cz-cta-inner { flex-direction: column; align-items: flex-start; }
    .cz-cta-actions { width: 100%; flex-direction: column; }
    .cz-cta-actions .cz-btn { width: 100%; justify-content: center; }
    .cz-form { grid-template-columns: 1fr; }
    .cz-mini-stats { grid-template-columns: 1fr; }
}

/* =================================================================
   15. MOBİL ALT AKSİYON ÇUBUĞU (sadece responsive)
   ================================================================= */
.cz-mobilebar { display: none; }
@media (max-width: 768px) {
    .cz-mobilebar {
        display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
        height: 64px; box-shadow: 0 -2px 18px rgba(0,0,0,.4);
    }
    .cz-mb {
        flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
        color: #fff; font-family: var(--cz-font-head); font-weight: 600; font-size: 12px; letter-spacing: .6px;
        text-transform: uppercase; line-height: 1; text-align: center;
        border-right: 1px solid rgba(0,0,0,.18);
    }
    .cz-mb:last-child { border-right: 0; }
    .cz-mb:hover, .cz-mb:active { color: #fff; }
    .cz-mb svg { width: 22px; height: 22px; }
    .cz-mb i { font-size: 22px; line-height: 1; }
    .cz-mb-tel { background: #d62828; }
    .cz-mb-wp { background: #25d366; }
    .cz-mb-teklif { background: var(--cz-accent); color: #14171a; }
    .cz-mb-teklif:hover, .cz-mb-teklif:active { color: #14171a; }
    /* Çubuk içeriği kapatmasın */
    body { padding-bottom: 64px; }
    /* Sabit butonlar çakışmasın */
    .whatsapp-float { display: none !important; }
    .pbmit-progress-wrap { bottom: 80px !important; right: 16px !important; }
}

/* =================================================================
   17. MOBİL MENÜ — HIZLI AÇILMA (tema gecikmelerini kaldır)
   Tema: 600ms gecikme + 900ms süre + %90 siyah overlay → yavaş/janklı.
   Çözüm: gecikme yok, .26s süre, yumuşak perde.
   ================================================================= */
/* Panel: ekran dışına 'right' ile (fixed → yatay kaydırma yapmaz), hızlı geçiş */
.pbmit-menu-wrap {
    right: -320px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: right .28s ease !important;
    transition-delay: 0s !important;
}
.active .pbmit-menu-wrap { right: 0 !important; }

/* Perde: genişlik/translate jankı yerine sade opacity geçişi */
.pbmit-mobile-menu-bg {
    width: 100% !important;
    transform: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(0,0,0,.55) !important;
    transition: opacity .28s ease !important;
    transition-delay: 0s !important;
}
.active .pbmit-mobile-menu-bg { opacity: 1 !important; pointer-events: auto !important; }

/* =================================================================
   16. AÇIK TEMA — KOYU BÖLÜM OVERRIDE'LARI (footer + CTA lacivert)
   ================================================================= */

/* ---- FOOTER: açık gri (ana zeminden farklı, koyu değil) ---- */
footer.footer-style-2,
.footer-style-2.pbmit-bg-color-blackish { background: #eceef1 !important; border-top: 3px solid var(--cz-accent); }
.footer-style-2 .pbmit-footer-news-title,
.footer-style-2 .widget-title { color: var(--cz-heading) !important; }
.footer-style-2,
.footer-style-2 p,
.footer-style-2 .textwidget,
.footer-style-2 .cz-footer-about p,
.footer-style-2 .cz-footer-contact li,
.footer-style-2 .cz-footer-hours li,
.footer-style-2 .cz-footer-contact a,
.footer-style-2 .pbmit-contact-widget-line,
.footer-style-2 .pbmit-timelist-time,
.footer-style-2 li a { color: #5b646d !important; }
.footer-style-2 .cz-hours-day { color: var(--cz-heading) !important; }
.footer-style-2 .cz-footer-contact a:hover,
.footer-style-2 li a:hover { color: var(--cz-accent) !important; }
.footer-style-2 .cz-footer-contact i,
.footer-style-2 .cz-footer-hours i { color: var(--cz-accent) !important; }
.footer-style-2 .pbmit-social-links a span { color: #5b646d; border-color: rgba(0,0,0,.14); }
.footer-style-2 .pbmit-social-links a:hover span { color: #fff; background: var(--cz-accent); border-color: var(--cz-accent); }
.footer-style-2 .pbmit-footer-text-inner { background-color: #e2e5e9 !important; border-top: 1px solid var(--cz-line); }
.pbmit-footer-text-area { background: #e2e5e9 !important; border-top: 1px solid var(--cz-line); }
.pbmit-footer-copyright-text-area { color: #79838e !important; }
.cz-footer-logo { display: inline-block; margin-bottom: 20px; line-height: 0; }
.cz-footer-logo img { height: 46px; width: auto; }
.footer-style-2 .pbmit-footer-widget-area { padding-top: 56px; }

/* ---- CTA bandı: koyu lacivert ---- */
.cz-cta { background: var(--cz-dark) !important; border-top: 0; }
.cz-cta-title { color: #ffffff; }
.cz-cta-sub { color: #aab2bb; }
.cz-cta .cz-btn--ghost { color: #ffffff; border-color: rgba(255,255,255,.28); }
.cz-cta .cz-btn--ghost:hover { background: var(--cz-accent-soft); border-color: var(--cz-accent); color: #ffffff; }

/* ---- Kartlara açık temada hafif gölge ---- */
.cz-card { box-shadow: 0 1px 2px rgba(32,42,52,.04); }
.cz-card:hover { box-shadow: var(--cz-shadow-sm); }
