/* ============================================================
   Eslerzadeler — Modern polish overlay (orijinal temanın üstüne)
   Tipografi, boşluk, kart, buton ve header/footer modernleştirmesi.
   ============================================================ */
:root {
    --brand: #0a455b;
    --brand-2: #0e6c83;
    --brand-3: #12879f;
    --accent: #ff7a00;      /* Shell amber-turuncu vurgu */
    --accent-2: #ffb300;    /* amber */
    --ink: #14212b;
    --muted: #6b7280;
    --line: #e8ecf0;
    --bg-soft: #f5f8fa;
    --shadow-sm: 0 2px 12px rgba(16,42,67,.06);
    --shadow-md: 0 16px 38px rgba(16,42,67,.11);
    --shadow-brand: 0 14px 30px rgba(10,69,91,.24);
    --shadow-accent: 0 10px 24px rgba(255,122,0,.28);
    --radius: 16px;
    --radius-lg: 22px;
}

body {
    font-family: "Nunito Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, .special-heading { letter-spacing: .2px; }

/* --- Header: sabit, cam efektli, ince gölge --- */
.page_header.modern-header {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 14px rgba(0,0,0,.05);
    padding: 10px 0;
}
.modern-header .logo img { max-height: 56px; width: auto; }
.modern-header .logo .logo-text { font-weight: 800; font-size: 19px; color: var(--brand); }
.modern-header .mainmenu { display: flex; flex-wrap: wrap; gap: 2px; align-items: center; margin: 0; padding: 0; }
.modern-header .mainmenu > li { list-style: none; }
.modern-header .mainmenu > li > a {
    display: inline-block; padding: 8px 14px; border-radius: 10px;
    color: var(--ink); font-weight: 700; font-size: 15px; text-decoration: none;
    transition: background .15s, color .15s;
}
.modern-header .mainmenu > li > a:hover { background: #f1f5f7; color: var(--brand); }
.modern-header .header-phone {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand); color: #fff !important; padding: 9px 16px;
    border-radius: 999px; font-weight: 700; text-decoration: none; transition: .15s;
}
.modern-header .header-phone:hover { background: var(--brand-2); transform: translateY(-1px); }

/* --- Masaüstü header: İKİ KATMANLI (üst: logo+telefon / alt: tam genişlik menü çubuğu) ---
   Menü kendi satırında tüm genişliğe sahip olduğundan S.S.S. dahil hiçbir öğe asla taşmaz. */
@media (min-width: 992px) {
    .modern-header .d-flex { flex-wrap: wrap !important; align-items: center; row-gap: 0; column-gap: 12px; }
    .modern-header .logo { order: 1; flex: 0 0 auto; }
    .modern-header .header-phone { order: 2; margin-left: auto; flex: 0 0 auto; white-space: nowrap; }
    .modern-header nav { order: 3; flex: 0 0 100%; width: 100%; min-width: 0; }
    .modern-header .mainmenu {
        justify-content: center; flex-wrap: wrap; gap: 2px 4px;
        margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line);
    }
    .modern-header .mainmenu > li > a { padding: 8px 14px; font-size: 15px; white-space: nowrap; }
}
/* Dar dizüstünde (992–1200) menü öğelerini biraz sıkılaştır */
@media (min-width: 992px) and (max-width: 1200px) {
    .modern-header .mainmenu > li > a { padding: 7px 11px; font-size: 14.5px; }
}

/* --- Butonlar: yumuşak köşe, hover kalkışı --- */
.btn, .btn-min, .btn-gradient, .btn-maincolor2, .btn-darkgrey, .btn-outline-darkgrey {
    border-radius: 10px !important; font-weight: 700; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover, .btn-min:hover { transform: translateY(-1px); }
.btn-gradient, .btn-maincolor2 {
    background: linear-gradient(90deg, var(--brand), var(--brand-2)) !important;
    border: 0 !important; color: #fff !important;
    box-shadow: 0 6px 16px rgba(10,69,91,.22);
}
.btn-gradient:hover { box-shadow: 0 10px 22px rgba(10,69,91,.30); }

/* --- Breadcrumb / sayfa başlığı biraz daha modern --- */
.page_title .breadcrumb { background: transparent; }
.page_title h1 { font-weight: 800; }

/* --- Kartlar/görseller genel yumuşatma --- */
img { max-width: 100%; }
.card, .services-box, .icon-box { border-radius: 14px; }

/* --- Footer: koyu, ferah --- */
.page_footer.modern-footer {
    background: linear-gradient(180deg, #0a3947, #072a35);
    color: #cbd5e1; padding: 56px 0 0;
}
.modern-footer h3 { color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.modern-footer a { color: #cbd5e1; text-decoration: none; transition: color .15s; }
.modern-footer a:hover { color: #fff; }
.modern-footer .footer-list li { margin-bottom: 8px; list-style: none; }
.modern-footer .footer-list { padding: 0; }
.modern-footer .footer-social a {
    display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,.08); margin-right: 8px; color: #fff;
    transition: background .15s, transform .15s;
}
.modern-footer .footer-social a:hover { background: var(--brand-2); transform: translateY(-2px); }
.modern-footer .footer-bottom {
    margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0; font-size: 13px; color: #94a3b8;
}

/* --- Mobil menü: tam genişlik, header'ın ALTINA açılan temiz dropdown --- */
@media (max-width: 991px) {
    /* Satır düzeni: [logo | hamburger], sonra telefon rozeti, sonra menü */
    .modern-header .logo { order: 1; }
    .modern-header .nav-toggle { display: inline-flex !important; order: 2; }
    .modern-header .header-phone { order: 3; }
    .modern-header nav { flex-basis: 100%; order: 4; }

    .modern-header .mainmenu { display: none; }
    .modern-header.nav-open .mainmenu {
        display: flex; flex-direction: column; width: 100%; gap: 2px;
        margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line);
    }
    .modern-header .mainmenu > li { width: 100%; }
    .modern-header.nav-open .mainmenu > li > a {
        display: block; width: 100%; padding: 12px 14px; border-radius: 8px; font-size: 15px;
    }
    .modern-header.nav-open .mainmenu > li > a:hover { background: #f1f5f7; }
}
.modern-header .nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 8px 12px; font-size: 20px; color: var(--brand); cursor: pointer; }

/* ============================================================
   NAVBAR ALT MENÜ (dropdown) — Kurumsal/Ürünler/Hizmetler vb.
   ============================================================ */
.modern-header .mainmenu .sub-caret { font-size: 12px; margin-left: 5px; opacity: .7; }
.modern-header .mainmenu .has-sub { position: relative; }
.modern-header .mainmenu .submenu { list-style: none; margin: 0; padding: 0; }
/* Masaüstü: hover ile açılan kart */
@media (min-width: 992px) {
    .modern-header .mainmenu .submenu {
        position: absolute; top: calc(100% + 8px); left: 0; min-width: 232px;
        background: #fff; border: 1px solid var(--line); border-radius: 12px;
        box-shadow: var(--shadow-md); padding: 8px;
        opacity: 0; visibility: hidden; transform: translateY(8px);
        transition: opacity .18s, transform .18s, visibility .18s; z-index: 1050;
    }
    .modern-header .mainmenu .has-sub:hover > .submenu,
    .modern-header .mainmenu .has-sub:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
    .modern-header .mainmenu .submenu > li > a {
        display: block; padding: 9px 12px; border-radius: 8px;
        color: var(--ink); font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap;
    }
    .modern-header .mainmenu .submenu > li > a:hover { background: #f1f5f7; color: var(--brand); }
    /* parent ↔ submenu arası görünmez köprü (hover kopmasın) */
    .modern-header .mainmenu .has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
}
/* Mobil: menü açıkken alt menüler girintili görünür */
@media (max-width: 991px) {
    .modern-header .mainmenu .sub-caret { display: none; }
    .modern-header .mainmenu .submenu { padding-left: 12px; margin: 2px 0 4px; border-left: 2px solid var(--line); }
    .modern-header.nav-open .mainmenu .submenu > li > a {
        display: block; width: 100%; padding: 9px 14px; border-radius: 8px; font-size: 14px; color: var(--muted); text-decoration: none;
    }
    .modern-header.nav-open .mainmenu .submenu > li > a:hover { background: #f1f5f7; color: var(--brand); }
}

/* --- Alert/boş durum yumuşatma --- */
.alert { border-radius: 12px; }

/* ============================================================
   MOBİL RESPONSIVE düzeltmeleri
   ============================================================ */
/* Yatay taşmayı kesin olarak engelle (bazı bölümler viewport'u aşıyordu) */
/* Yatay taşmayı kes ama İKİ dikey scrollbar oluşturma.
   Tema main.min.css'i body'ye `overflow-y: scroll` veriyordu → body'de her zaman
   bir scrollbar track'i + viewport'un scrollbar'ı = çift scrollbar. auto'ya çekiyoruz
   (body içeriği kendi kutusunu taşırmadığı için scrollbar çıkmaz; sadece viewport kayar). */
html { max-width: 100%; }
body { overflow-x: hidden; overflow-y: auto; max-width: 100%; }
img, iframe, video { max-width: 100%; }

@media (max-width: 767.98px) {
    /* Negatif-margin kaynaklı yatay taşmayı kes (tema c-gutter-* sınıfları dahil) */
    #canvas, #box_wrapper { max-width: 100%; overflow-x: hidden; }
    .container, .container-fluid {
        width: 100% !important; max-width: 100% !important;
        padding-left: 14px !important; padding-right: 14px !important;
        margin-left: auto !important; margin-right: auto !important;
    }
    section { max-width: 100vw; overflow-x: clip; }
    .row, [class*="c-gutter"] { margin-left: 0 !important; margin-right: 0 !important; }
    .row > [class*="col"], [class*="c-gutter"] > [class*="col"] { padding-left: 8px !important; padding-right: 8px !important; }

    /* Header: telefon rozeti kendi satırında, ortalı */
    .modern-header .d-flex { flex-wrap: wrap; }
    .modern-header .header-phone { flex-basis: 100%; justify-content: center; margin-top: 10px; }

    .sec { padding: 34px 0; }
    .sec-title { font-size: 22px; }
    .sec-sub { font-size: 14px; margin-bottom: 20px; }

    /* Hero başlık + breadcrumb */
    .page_title.hero { padding-top: 120px !important; padding-bottom: 40px !important; }
    .page_title.hero h1 { font-size: 26px; }
    .page_title.hero .breadcrumb { flex-wrap: wrap; justify-content: center; font-size: 12px; padding: 6px 14px; }

    /* CTA bantları: mobilde dikey, taşma yok */
    .cta-banner, .cta-wide {
        flex-direction: column; align-items: flex-start !important; text-align: left;
        padding: 20px !important;
    }
    .cta-banner h2 { font-size: 20px !important; line-height: 1.25; word-break: break-word; }
    .cta-banner h3, .cta-wide h3, .cta-wide h4 { font-size: 18px !important; }
    .cta-banner p { font-size: 14px !important; }
    .cta-banner .btn, .cta-wide .btn, .cta-banner a.btn { margin-top: 14px; width: 100%; text-align: center; }

    /* Header: logo + telefon rozeti sığsın */
    .modern-header .logo img { max-height: 42px; }
    .modern-header .header-phone { font-size: 12px; padding: 7px 12px; }
    .modern-header .logo .logo-text { font-size: 16px; }

    /* Kart gridleri: rahat tek/çift sütun */
    .hgrid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
    .svc-grid { grid-template-columns: 1fr; }

    /* Quick tiles taşmasın */
    .quick-tiles .tile { padding: 16px; }
    .quick-tiles .tile h5 { font-size: 14px; }
    .quick-tiles .tile p { font-size: 12px; }

    /* Bölüm başlıkları ve tablolar */
    .table-responsive { -webkit-overflow-scrolling: touch; }
}

/* Çok küçük ekran ekstra sıkıştırma */
@media (max-width: 400px) {
    .hgrid { grid-template-columns: 1fr 1fr; }
    .modern-header .header-phone span, .modern-header .header-phone { font-size: 11px; }
}

/* ============================================================
   Yeniden kullanılabilir modern bileşenler (tüm sayfalarda)
   ============================================================ */
.sec-title { text-align: center; margin: 0 0 8px; font-weight: 800; letter-spacing: .2px; color: var(--brand); }
.sec-sub { text-align: center; color: var(--muted); margin: 0 0 28px; }

/* Ürün/haber/galeri kartı */
.hgrid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.hcard { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s; height: 100%; display: block; color: inherit; text-decoration: none; }
.hcard:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,.08); border-color: #dfe3e8; }
.hcard-media { position: relative; aspect-ratio: 4/3; background: #f6f7f9; overflow: hidden; }
.hcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.hcard:hover .hcard-media img { transform: scale(1.04); }
.hcard-media.contain { background: #fff; }
.hcard-media.contain img { object-fit: contain; padding: 16px; }
.hcard:hover .hcard-media.contain img { transform: none; }
.hcard-body { padding: 14px 16px 16px; }
.hcard-title { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.hcard-sub { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.price-badge { position: absolute; left: 10px; top: 10px; background: var(--brand); color: #fff; border-radius: 10px; padding: 6px 10px; font-weight: 700; font-size: 13px; }

/* Hizmet / kategori: görsel kapak + koyu gradient + beyaz başlık */
.svc-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.svc-card { position: relative; border-radius: 18px; overflow: hidden; min-height: 230px; display: flex; align-items: flex-end; color: #fff; background: #111; border: 1px solid var(--line); transition: transform .18s, box-shadow .18s; text-decoration: none; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.20); }
.svc-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.15) 55%, rgba(0,0,0,.05)); z-index: 1; }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .3s; }
.svc-card:hover img { transform: scale(1.05); }
.svc-card .inner { position: relative; z-index: 2; width: 100%; padding: 18px; }
.svc-card .inner h4 { margin: 0 0 4px; font-weight: 800; color: #fff; font-size: 18px; }
.svc-card .inner .more { font-size: 13px; opacity: .92; color: #fff; }

/* Sayfa başlığı hero — daha modern (koyu degrade overlay + beyaz başlık) */
.page_title.hero { position: relative; background-size: cover; background-position: center; }
.page_title.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,69,91,.72), rgba(7,42,53,.82)); z-index: 0; }
.page_title.hero > .container { position: relative; z-index: 1; }
.page_title.hero h1 { color: #fff; }
.page_title.hero .breadcrumb { display: inline-flex; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 18px; }
.page_title.hero .breadcrumb, .page_title.hero .breadcrumb a, .page_title.hero .breadcrumb-item { color: #fff !important; }

/* ============================================================
   ★ PREMIUM ENERJİ TASARIM DİLİ ★  (site geneli — canlı CSS)
   teal (#0a455b) + Shell amber (#ff7a00) — gradient, cam kart, hover
   ============================================================ */

/* --- Bölüm iskeleti --- */
.sec { padding: 64px 0; }
.sec.soft { background: var(--bg-soft); }
.grid { display: grid; gap: 18px; }
@media (min-width: 576px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.services-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Eyebrow + bölüm başlığı (ince, nötr — sade kurumsal) --- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
    color: #64748b; margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; border-radius: 2px; background: var(--brand); }
.sec-title {
    text-align: center; margin: 0 0 12px; font-weight: 800; letter-spacing: .2px;
    color: var(--brand); font-size: clamp(24px, 3vw, 33px); position: relative; padding-bottom: 16px;
}
.sec-title::after {
    content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: 44px; height: 3px; border-radius: 3px; background: var(--brand);
}
.sec-sub { text-align: center; color: var(--muted); margin: 0 0 34px; font-size: 16px; }
@media (min-width: 992px) {
    .sec-title.text-lg-left { text-align: left; }
    .sec-title.text-lg-left::after { left: 0; transform: none; }
}

/* --- Ürün/haber/galeri kartı: yumuşak gölge, hover kalkış, accent buton --- */
.hcard { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s; height: 100%; display: block;
    color: inherit; text-decoration: none; box-shadow: var(--shadow-sm); }
.hcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.hcard-media { position: relative; aspect-ratio: 4/3; background: #f6f7f9; overflow: hidden; }
.hcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.hcard:hover .hcard-media img { transform: scale(1.05); }
.hcard-media.contain { background: #fff; }
.hcard-media.contain img { object-fit: contain; padding: 18px; }
.hcard:hover .hcard-media.contain img { transform: none; }
.hcard-body { padding: 16px 18px 18px; }
.hcard-title { font-size: 16px; font-weight: 800; margin: 0 0 6px; color: var(--ink); transition: color .15s; }
.hcard:hover .hcard-title { color: var(--brand-2); }
.hcard-sub { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.price-badge { position: absolute; left: 12px; top: 12px; background: var(--brand);
    color: #fff; border-radius: 10px; padding: 6px 11px; font-weight: 800; font-size: 13px; box-shadow: var(--shadow-sm); }

/* "İncele" mini buton — kart hover'ında markaya dolar */
.btn-min { display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 10px;
    border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px;
    transition: background .18s, color .18s, border-color .18s, transform .18s; }
.btn-min::after { content: "→"; transition: transform .18s; }
.hcard:hover .btn-min { background: var(--brand); color: #fff; border-color: var(--brand); }
.hcard:hover .btn-min::after { transform: translateX(3px); }

/* --- Hizmet/kategori kapak kartı: marka tonlu gradient + accent ok --- */
.svc-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.svc-card, .service-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 240px;
    display: flex; align-items: flex-end; color: #fff; background: #0a1f28; border: 0;
    box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; text-decoration: none; }
.svc-card:hover, .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card::before, .service-card::before { content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(7,42,53,.90), rgba(10,69,91,.32) 55%, rgba(10,69,91,.05)); }
.svc-card img, .service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s ease; }
.svc-card:hover img, .service-card:hover img { transform: scale(1.06); }
.svc-card .inner, .service-card .inner { position: relative; z-index: 2; width: 100%; padding: 20px; }
.svc-card .inner h4, .service-card .inner h4, .service-card h4 { margin: 0 0 6px; font-weight: 800; color: #fff; font-size: 19px; }
.svc-card .more, .service-card .more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
    font-weight: 700; color: rgba(255,255,255,.92); }
.svc-card .more::after, .service-card .more::after { content: "→"; transition: transform .18s; }
.svc-card:hover .more::after, .service-card:hover .more::after { transform: translateX(4px); }

/* --- Butonlar --- */
.btn-gradient, .btn-maincolor2 { background: linear-gradient(90deg, var(--brand), var(--brand-3)) !important;
    border: 0 !important; color: #fff !important; box-shadow: var(--shadow-brand); font-weight: 700; }
.btn-gradient:hover, .btn-maincolor2:hover { box-shadow: 0 18px 34px rgba(10,69,91,.32); transform: translateY(-2px); }
.btn-accent { background: var(--brand) !important; border: 0 !important;
    color: #fff !important; box-shadow: var(--shadow-brand); font-weight: 800; border-radius: 12px; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(10,69,91,.30); color: #fff !important; }
.btn-light { border-radius: 12px !important; font-weight: 800; }

/* --- Hızlı erişim kutucukları (glass + accent şerit/ikon) --- */
.quick-tiles .tile { display: block; position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px; height: 100%; text-decoration: none; color: inherit;
    box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.quick-tiles .tile::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
    background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform .22s ease; }
.quick-tiles .tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #dfe5ea; }
.quick-tiles .tile:hover::before { transform: scaleY(1); }
.quick-tiles .tile .ti { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center;
    justify-content: center; font-size: 23px; margin-bottom: 15px; color: var(--brand);
    background: rgba(10,69,91,.08); transition: .22s ease; }
.quick-tiles .tile:hover .ti { background: var(--brand); color: #fff; }
.quick-tiles .tile h5 { margin: 0 0 6px; font-weight: 800; font-size: 17px; color: var(--ink); }
.quick-tiles .tile p { margin: 0; color: var(--muted); font-size: 14px; }

/* --- Sayaçlar (sade, marka rengi) --- */
.counters .num { font-size: clamp(34px, 4vw, 46px); font-weight: 900; line-height: 1; color: var(--brand); }
.counters .lbl { color: var(--muted); font-weight: 700; margin-top: 8px; }

/* --- CTA bantları (kurumsal teal gradient, hafif beyaz derinlik) --- */
.cta-banner, .cta-wide { position: relative; overflow: hidden; color: #fff; border-radius: var(--radius-lg);
    padding: 30px 34px; background: linear-gradient(120deg, var(--brand), var(--brand-3)); box-shadow: var(--shadow-brand); }
.cta-banner::after, .cta-wide::after { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
    border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); pointer-events: none; }
.cta-banner > *, .cta-wide > * { position: relative; z-index: 1; }

/* --- Sayfa hero: sade derin teal gradient --- */
.page_title.hero::before { background: linear-gradient(180deg, rgba(10,69,91,.80), rgba(7,42,53,.90)); }
.page_title.hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }

/* --- Footer: sade (renkli şerit yok) --- */
.page_footer.modern-footer { position: relative; }

/* --- İç sayfa içerik tipografisi biraz daha ferah --- */
.ls .page-content, .theme-content, .icerik { line-height: 1.8; }

/* Güvenlik ağı: zengin içerikte metni boş/bozuk kalan link-butonlar görünmesin
   (TinyMCE/yapıştırma kaynaklı boş <a> pill'leri sayfada başıboş durmasın) */
.entry-content a:empty, .faq-a a:empty, .icerik a:empty { display: none !important; }

/* --- Duyuru bandı (site üstü) --- */
.duyuru-bar { background: var(--brand); color: #fff; font-size: 14px; }
.duyuru-inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 40px 9px 14px; flex-wrap: wrap; position: relative; }
.duyuru-inner .fa { margin-right: 4px; opacity: .85; }
.duyuru-link { color: #ffe08a; font-weight: 700; text-decoration: underline; white-space: nowrap; }
.duyuru-link:hover { color: #fff; }
.duyuru-kapat { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: transparent; border: 0;
    color: rgba(255,255,255,.85); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 6px; }
.duyuru-kapat:hover { color: #fff; }
@media (max-width: 575.98px) { .duyuru-inner { font-size: 13px; padding: 8px 34px 8px 12px; gap: 8px; } }

/* --- WhatsApp yüzen buton --- */
.wa-btn { position: fixed; right: 20px; bottom: 20px; z-index: 1045; width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .18s, box-shadow .18s; }
.wa-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,.55); color: #fff; }
@media (max-width: 575.98px) { .wa-btn { width: 52px; height: 52px; right: 16px; bottom: 16px; } }

/* --- Yukarı çık butonu --- */
.uste-cik { position: fixed; right: 23px; bottom: 88px; z-index: 1044; width: 46px; height: 46px; border-radius: 50%;
    background: var(--brand); color: #fff; border: 0; display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px; cursor: pointer; box-shadow: 0 6px 18px rgba(10,69,91,.35);
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s, transform .2s, visibility .2s; }
.uste-cik.goster { opacity: 1; visibility: visible; transform: translateY(0); }
.uste-cik:hover { background: var(--brand-2); }
@media (max-width: 575.98px) { .uste-cik { right: 18px; bottom: 78px; width: 42px; height: 42px; } }

/* --- KVKK / Çerez onay bandı --- */
.cerez-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1050;
    background: rgba(10,57,71,.97); color: #e6eef1; box-shadow: 0 -4px 20px rgba(0,0,0,.22); }
.cerez-inner { max-width: 1140px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center;
    gap: 18px; flex-wrap: wrap; justify-content: center; font-size: 14px; line-height: 1.5; }
.cerez-inner a { color: #ffe08a; text-decoration: underline; }
.cerez-ok { background: var(--brand-2); color: #fff; border: 0; border-radius: 10px; padding: 9px 22px;
    font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .15s; }
.cerez-ok:hover { background: var(--brand-3); }
@media (max-width: 575.98px) { .cerez-inner { padding: 12px 14px; font-size: 13px; gap: 10px; } .cerez-ok { width: 100%; } }

/* --- Hata / 404 sayfası --- */
.hata-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 30px 0; }
.hata-kod { font-size: clamp(90px, 18vw, 160px); font-weight: 900; line-height: 1;
    background: linear-gradient(120deg, var(--brand), var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hata-baslik { font-weight: 800; color: var(--ink); margin: 8px 0 10px; font-size: clamp(24px, 3vw, 32px); }
.hata-mesaj { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 26px; }
.hata-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- SSS akordeon: native <details>, JS/Bootstrap bağımsız (her yerde çalışır) --- */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; margin-bottom: 12px;
    overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .18s, border-color .18s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: #dfe5ea; }
.faq-q { list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 800; color: var(--brand);
    display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 16px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--muted); line-height: 1; flex: 0 0 auto; transition: transform .2s; }
.faq-item[open] .faq-q::after { content: "−"; color: var(--brand); }
.faq-q:hover { color: var(--brand-2); }
.faq-a { padding: 0 20px 18px; color: #374151; line-height: 1.8; }

/* ============================================================
   KURUMSAL LİSTE/DETAY BİLEŞENLERİ (ürün/hizmet)
   ============================================================ */
/* Sayfa intro lead */
.page-lead { max-width: 820px; margin: -6px auto 38px; text-align: center; color: var(--muted); font-size: 17px; line-height: 1.75; }

/* Güven/özellik şeridi */
.feature-strip { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 44px 0 0; }
.feature-strip .fs-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.feature-strip .fs-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: inline-flex;
    align-items: center; justify-content: center; background: rgba(10,69,91,.08); color: var(--brand); font-size: 20px; }
.feature-strip .fs-item h5 { margin: 0 0 3px; font-weight: 800; font-size: 15px; color: var(--ink); }
.feature-strip .fs-item p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Detay: 2 sütun (görsel + bilgi) */
.detail-split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 992px) { .detail-split { grid-template-columns: 5fr 6fr; } }
.detail-visual { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; padding: 28px;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); min-height: 260px; }
.detail-visual img { max-width: 100%; height: auto; border-radius: 10px; }
.detail-info h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ink); margin: 0 0 8px; }
.detail-info .lead { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 22px; }

/* Fayda listesi (check) */
.benefit-list { list-style: none; padding: 0; margin: 0 0 26px; }
.benefit-list li { position: relative; padding: 10px 0 10px 34px; color: #374151; font-weight: 600; border-bottom: 1px solid var(--line); }
.benefit-list li:last-child { border-bottom: 0; }
.benefit-list li::before { content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }

/* --- Akaryakıt fiyat panosu --- */
.fiyat-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 18px; }
.fiyat-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 20px; text-align: center;
    box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.fiyat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fiyat-ico { width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(10,69,91,.08); color: var(--brand); font-size: 22px; margin-bottom: 14px; }
.fiyat-ad { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 8px; }
.fiyat-tutar { font-size: 28px; font-weight: 900; color: var(--brand); line-height: 1; }
.fiyat-tutar span { font-size: 13px; font-weight: 600; color: var(--muted); }
.fiyat-not { text-align: center; color: var(--muted); font-size: 13px; margin-top: 2px; }

/* CTA kutusu (detay) */
.cta-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
.cta-box h4 { margin: 0 0 6px; font-weight: 800; color: var(--brand); font-size: 18px; }
.cta-box p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }

