/* ==================================================================
   temalar/cekici/style.css
   ÇEKİCİ / YOL YARDIM teması — koyu zemin + acil turuncu (#ff6a00) + hazard sarısı.
   Başlık: Space Grotesk · Gövde: Inter. 7/24 acil vurgu.
   ================================================================== */

:root {
    --bg:        #0a0a0b;   /* ana koyu zemin */
    --bg-soft:   #101013;   /* bölüm zemini */
    --bg-soft2:  #16161a;   /* kart zemini */
    --ink:       #ffffff;   /* başlık (beyaz) */
    --text:      #b8bcc4;   /* ana metin */
    --muted:     #82868f;   /* soluk metin */
    --line:      #25262b;   /* ince kenarlık */
    --accent:    #ff6a00;   /* acil turuncu (marka) */
    --accent-dk: #e65d00;   /* koyu turuncu */
    --accent-sf: rgba(255, 106, 0,.10); /* yarı saydam turuncu zemin */
    --alt: #ffd000; /* hazard sarisi */
    --dark:      #060607;   /* en koyu (footer/header) */
    --btn-radius: 4px;
    --radius:    10px;
    --max:       1180px;
    --shadow:    0 14px 40px rgba(0,0,0,.5);
    --shadow-lg: 0 28px 70px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif; line-height: 1.14; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }

/* ---- Bölümler ---- */
.section { padding: 90px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow { display: none; } /* sitede üst etiket yok */
.section-head h2 {
    font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; letter-spacing: .03em;
    position: relative; padding-bottom: 22px; margin-bottom: 18px;
}
.section-head h2::after {
    content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: 64px; height: 3px; background: var(--accent); border-radius: 2px;
}
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

/* ---- Butonlar ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
    padding: 15px 30px; border-radius: var(--btn-radius); font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: .04em;
    border: 1px solid transparent; cursor: pointer;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s;
}
.nav-cta { padding: 12px 20px; font-size: 12.5px; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(217,4,41,.30); }
.btn-accent:hover { background: var(--accent-dk); box-shadow: 0 14px 32px rgba(217,4,41,.42); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: #eee; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fb457; }

/* ==================================================================
   ÜST ŞERİT (sitede yok — gizli)
   ================================================================== */
.topbar { display: none; }

/* ==================================================================
   ANA NAVİGASYON (ana sayfada hero üstüne biner, kaydırınca koyulaşır)
   ================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--dark); border-bottom: 1px solid var(--line); transition: background .3s ease, border-color .3s; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.logo img { max-height: 58px; }
.logo-text { font-size: 22px; font-weight: 900; letter-spacing: -.03em; color: #fff; }

/* Ana sayfada şeffaf overlay header */
body.home .site-header { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
body.home .site-header.scrolled { background: rgba(11,11,12,.95); border-bottom-color: var(--line); backdrop-filter: blur(8px); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav > a, .nav-item > a {
    display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
    padding: 10px 12px; font-size: 12.5px; font-weight: 700; color: #e9e9e9;
    border-radius: 6px; transition: color .2s; text-transform: uppercase; letter-spacing: .03em;
}
.site-nav > a:hover, .nav-item:hover > a { color: var(--accent); }
.site-nav > a.active { color: var(--accent); }
.nav-toggle-btn { color: #fff; }

/* Açılır menü (Hizmetlerimiz) */
.nav-item { position: relative; }
.nav-item > a::after { content: "▾"; font-size: 11px; opacity: .7; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 290px;
    background: #141416; border: 1px solid var(--line); border-radius: 8px;
    box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all .2s ease; z-index: 60;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 11px 14px; border-radius: 6px; font-size: 13px; color: #d6d6d6; text-transform: none; letter-spacing: 0; }
.nav-dropdown a:hover { background: var(--accent-sf); color: var(--accent); }
.nav-cta { margin-left: 12px; color: #fff; }

.nav-toggle { display: none; }
.nav-toggle-btn { display: none; font-size: 26px; cursor: pointer; user-select: none; }

/* ==================================================================
   HERO (tam ekran arka plan görseli, sol hizalı içerik)
   ================================================================== */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    background-color: #0a0a0b; background-size: cover; background-position: center; overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8,8,9,.94) 0%, rgba(8,8,9,.72) 42%, rgba(8,8,9,.20) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: left; }
.hero .hero-logo { max-height: 190px; margin: 0 0 26px; }
.hero h1 { font-size: clamp(30px, 5vw, 52px); margin-bottom: 16px; color: #fff; }
.hero h1 .hl { color: var(--accent); }
.hero .hero-text { font-size: clamp(16px, 1.6vw, 19px); color: #d3d4d8; max-width: 540px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==================================================================
   ROZET ŞERİDİ (4 badge)
   ================================================================== */
.badges { background: #0e0e10; border-bottom: 1px solid var(--line); }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.badge-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--line); }
.badge-item:last-child { border-right: 0; }
.badge-item .b-ico {
    width: 54px; height: 54px; margin: 0 auto 14px; display: grid; place-items: center;
    font-size: 24px; border-radius: 50%; background: var(--accent); color: #fff;
}
.badge-item h3 { font-size: 15px; margin: 0; color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.badge-item p { font-size: 13px; color: var(--muted); margin: 4px 0 0; }

/* ==================================================================
   HİZMET KARTLARI (fotoğraf arka planlı koyu kartlar)
   ================================================================== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    position: relative; min-height: 380px; display: flex; align-items: flex-end;
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    background-color: #16161a; background-size: cover; background-position: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,11,.40) 0%, rgba(10,10,11,.92) 78%);
    transition: background .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(217,4,41,.5); }
.service-card:hover::before { background: linear-gradient(180deg, rgba(217,4,41,.22) 0%, rgba(10,10,11,.95) 80%); }
.service-card .s-body { position: relative; z-index: 2; padding: 30px; width: 100%; }
.service-card .s-ico { font-size: 30px; color: var(--accent); margin-bottom: 16px; }
.service-card h3 { font-size: 22px; margin-bottom: 10px; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.service-card p { color: #c0c0c4; margin: 0 0 18px; font-size: 15px; }
.service-card .s-more { color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; display: inline-flex; gap: 6px; align-items: center; }
.service-card:hover .s-more { gap: 10px; }

/* ==================================================================
   YAPTIĞIMIZ İŞLER
   ================================================================== */
.work-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 60px; }
.work-block:last-child { margin-bottom: 0; }
.work-block.reverse .work-media { order: 2; }
.work-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; background: #16161a; box-shadow: var(--shadow); }
.work-media img { width: 100%; height: 100%; object-fit: cover; }
.work-media.placeholder { display: grid; place-items: center; }
.work-tag {
    display: inline-block; background: var(--accent-sf); color: var(--accent);
    font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.work-text h3 { font-size: clamp(22px, 3vw, 30px); color: #fff; }
.work-text p { color: var(--text); }

/* ==================================================================
   SSS AKORDEON
   ================================================================== */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--bg-soft2); overflow: hidden; }
.faq-item > summary {
    list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 17px;
    color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: "Montserrat", sans-serif;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--accent); font-size: 26px; font-weight: 400; transition: transform .2s; }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }

/* ==================================================================
   CTA
   ================================================================== */
.cta {
    background:
        radial-gradient(600px 260px at 85% 15%, rgba(217,4,41,.36), transparent 60%),
        linear-gradient(135deg, #161618, #0a0a0b);
    border: 1px solid var(--line);
    color: #fff; border-radius: 14px; padding: 60px 40px; text-align: center;
}
.cta h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); }
.cta p { color: #c7c9cf; max-width: 600px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==================================================================
   DEĞİŞİME TANIK OLUN (önce / sonra kartları)
   ================================================================== */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.ba-card { background: var(--bg-soft2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, transform .2s; }
.ba-card:hover { border-color: rgba(217,4,41,.45); transform: translateY(-4px); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.ba-img { position: relative; aspect-ratio: 4/3; background: #0e0e10; overflow: hidden; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img .ph { width: 100%; height: 100%; }
.ba-badge { position: absolute; top: 10px; z-index: 2; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff; }
.ba-badge.before { left: 10px; background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.2); }
.ba-badge.after  { right: 10px; background: var(--accent); }
.ba-body { padding: 22px 24px; }
.ba-body h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.ba-body p { color: var(--text); margin: 0; font-size: 14.5px; }

/* ==================================================================
   GALERİ
   ================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--bg-soft2); border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; background: linear-gradient(transparent, rgba(0,0,0,.85)); color: #fff; font-size: 14px; font-weight: 600; }

/* ==================================================================
   İSTATİSTİK + AVANTAJ (Hakkımızda)
   ================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { background: var(--bg-soft2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; text-align: center; }
.stat-card .num { font-size: 42px; font-weight: 900; color: var(--accent); font-family: "Montserrat", sans-serif; }
.stat-card .lbl { color: var(--muted); font-weight: 600; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-soft2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.feature-card .f-ico { width: 52px; height: 52px; display: grid; place-items: center; font-size: 24px; border-radius: 12px; background: var(--accent-sf); color: var(--accent); margin-bottom: 16px; }
.feature-card h3 { font-size: 19px; color: #fff; }
.feature-card p { color: var(--muted); margin: 0; }

/* ==================================================================
   İÇ SAYFA BAŞLIĞI
   ================================================================== */
.page-hero {
    padding: 130px 0 64px; text-align: center;
    background: radial-gradient(700px 300px at 50% -10%, rgba(217,4,41,.30), transparent 60%), linear-gradient(180deg,#141416,#0b0b0c);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(28px, 5vw, 44px); color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.page-hero .crumb { color: #a7abb3; font-size: 14px; margin-bottom: 10px; }
.page-hero .crumb a { color: #a7abb3; }
.page-hero .crumb a:hover { color: var(--accent); }
.page-hero p { color: #c7c9cf; max-width: 640px; margin: 8px auto 0; }

.prose { max-width: 820px; margin: 0 auto; }
.prose p { color: var(--text); }
.prose img { border-radius: var(--radius); margin: 18px 0; }
.prose h2, .prose h3 { margin-top: 1.4em; color: #fff; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.about-split img { border-radius: var(--radius); border: 1px solid var(--line); }

/* Hizmet detay */
.svc-detail { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.svc-section { margin-bottom: 34px; }
.svc-section h2 { font-size: 24px; color: #fff; }
.icon-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0; padding: 0; list-style: none; }
.icon-list li { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.icon-list li strong { display: block; color: #fff; margin-bottom: 4px; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding: 4px 0 18px 54px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; }
.svc-aside .box { background: var(--bg-soft2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 110px; }
.svc-aside h3, .svc-aside h4 { color: #fff; }

/* Placeholder (görsel yokken) */
.ph { display: grid; place-items: center; color: #4a4a52; font-size: 44px; background: repeating-linear-gradient(45deg, #141417, #141417 12px, #18181c 12px, #18181c 24px); }

/* ==================================================================
   FORMLAR
   ================================================================== */
.form-card { background: var(--bg-soft2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.form-card label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: 14px; color: #fff; }
.form-card input, .form-card textarea {
    width: 100%; padding: 13px 15px; background: #0e0e10; color: var(--text);
    border: 1px solid var(--line); border-radius: var(--btn-radius); font-size: 15px; font-family: inherit;
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--accent); }
.form-card textarea { min-height: 130px; resize: vertical; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list li .ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--accent-sf); color: var(--accent); font-size: 18px; }
.info-list li strong { display: block; color: #fff; }

.notice { padding: 13px 16px; border-radius: var(--btn-radius); margin-bottom: 16px; font-size: 14px; }
.notice-success { background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.4); color: #86efac; }
.notice-error { background: var(--accent-sf); border: 1px solid rgba(217,4,41,.45); color: #fca5a5; }

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer { background: var(--dark); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 40px; padding: 64px 22px 44px; }
.footer-logo img { max-height: 54px; }
.footer-logo span { font-size: 20px; font-weight: 900; color: #fff; }
.footer-about p { color: var(--muted); font-size: 14px; margin: 16px 0; }
.footer-social a { display: inline-block; margin-right: 8px; color: #c9d1dc; border: 1px solid #2a2a30; padding: 6px 12px; border-radius: 6px; font-size: 13px; transition: all .2s; }
.footer-social a:hover { color: #fff; border-color: var(--accent); background: var(--accent); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { color: var(--muted); font-size: 14px; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact .ico { color: var(--accent); }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; color: #707a8a; font-size: 13px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-credit { display: inline-flex; align-items: center; gap: 9px; color: #9aa0ac; font-size: 12px; opacity: .75; transition: opacity .25s; }
.footer-credit:hover { opacity: 1; color: #fff; }
.footer-credit img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
@media (max-width: 620px) { .footer-bottom-inner { justify-content: center; text-align: center; } }

/* WhatsApp sabit buton */
.whatsapp-float {
    position: fixed; left: 22px; bottom: 22px; z-index: 60; background: #25d366; color: #fff;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform .15s; font-size: 24px;
}
.whatsapp-float span { display: none; }
.whatsapp-float::before { content: "💬"; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }

/* Yukarı çık benzeri sağ alt boşluk için içerik kaymasın */

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 980px) {
    .service-grid, .feature-grid, .stats-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .work-block, .work-block.reverse .work-media { grid-template-columns: 1fr; order: 0; }
    .about-split, .svc-detail { grid-template-columns: 1fr; }
    .icon-list { grid-template-columns: 1fr; }
    .svc-aside .box { position: static; }
}
@media (max-width: 760px) {
    .nav-toggle-btn { display: block; }
    .site-nav {
        position: fixed; inset: 88px 0 auto 0; flex-direction: column; align-items: stretch;
        background: #0e0e10; border-bottom: 1px solid var(--line); padding: 14px 22px 24px; gap: 2px;
        transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 88px); overflow-y: auto;
    }
    body.home .site-nav { background: #0b0b0c; }
    .nav-toggle:checked ~ .site-nav { transform: translateY(0); }
    .site-nav > a, .nav-item > a { padding: 13px 10px; font-size: 15px; }
    .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 8px 12px; padding: 0; }
    .nav-cta { margin: 10px 0 0; justify-content: center; }
    .badges-grid { grid-template-columns: 1fr 1fr; }
    .badge-item:nth-child(odd) { border-right: 1px solid var(--line); }
    .badge-item { border-bottom: 1px solid var(--line); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 64px 0; }
    .hero { min-height: 86vh; }
    .hero .hero-logo { max-height: 130px; }
}
@media (max-width: 480px) {
    .service-grid, .gallery-grid, .feature-grid, .stats-grid, .badges-grid { grid-template-columns: 1fr; }
    .badge-item { border-right: 0; }
    .cta { padding: 40px 22px; }
}

/* ================= ELEKTRİK İMZASI ================= */
/* İnce altın üst çizgi + elektrik akış animasyonu */
body { border-top: 3px solid var(--accent); }
.section-head h2 { letter-spacing: -.01em; text-transform: none; }
.section-head h2::after {
    width: 64px; height: 3px; border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--alt));
    box-shadow: 0 0 16px rgba(255, 106, 0,.55);
}
.badges { background: var(--dark); border-bottom: 1px solid var(--line); }
.badge-item .b-ico {
    color: var(--accent); filter: none;
    background: var(--accent-sf); border: 1px solid rgba(255, 106, 0,.25);
}
.work-tag { color: #0a0a0b; background: var(--accent); padding: 4px 12px; border-radius: 999px; font-weight: 700; }
.s-ico { color: var(--accent); }
/* Altın parıltılı buton */
.btn-accent { background: var(--accent); color: #0a0a0b; font-weight: 800; box-shadow: 0 10px 28px rgba(255, 106, 0,.28); }
.btn-accent:hover { background: var(--accent-dk); box-shadow: 0 14px 36px rgba(255, 106, 0,.42); }
/* Hizmet kartı: alt köşe altın aksan + yumuşak yükselme */
.service-card { border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, transform .2s, box-shadow .2s; }
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.5), 0 0 0 1px rgba(255, 106, 0,.25); }
.service-card .s-more { color: var(--accent); }
/* Hero başlık vurgusu altın */
.hero h1 .hl { color: var(--accent); }
/* Linkler hover altın */
.nav-dropdown a:hover, .site-nav > a:hover, .nav-item:hover > a { color: var(--accent); }
/* Elektrik mavisi ince detaylar */
a.s-more:hover { color: var(--alt); }

/* ============ PREMIUM HİZMET KARTLARI (ikon + tikli liste) ============ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
    background: var(--bg-soft2); border: 1px solid var(--line); border-radius: 16px;
    padding: 28px 24px; display: flex; flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 22px 54px rgba(0,0,0,.55), 0 0 0 1px rgba(255, 106, 0,.22); }
.svc-card .svc-ico {
    width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    font-size: 26px; margin-bottom: 18px;
    background: var(--accent-sf); border: 1px solid rgba(255, 106, 0,.28);
    box-shadow: 0 0 22px rgba(255, 106, 0,.10);
}
.svc-card h3 { font-size: 20px; margin: 0 0 10px; color: var(--ink); }
.svc-card .svc-desc { color: var(--muted); margin: 0 0 20px; font-size: 14.5px; line-height: 1.65; }
.svc-feat { list-style: none; padding: 0; margin: 0 0 26px; }
.svc-feat li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--text); }
.svc-feat li:first-child { border-top: 0; }
.svc-feat li::before { content: "✓"; position: absolute; left: 2px; top: 12px; color: var(--accent); font-weight: 800; }
.svc-link { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.svc-link:hover { color: var(--alt); gap: 11px; transition: gap .2s; }
/* Detay sayfası prose iyileştirme */
.prose h2 { font-size: 26px; margin: 34px 0 14px; color: var(--ink); }
.prose p { color: var(--text); line-height: 1.8; margin: 0 0 16px; }
.prose ul { list-style: none; padding: 0; margin: 0 0 22px; }
.prose ul li { position: relative; padding: 10px 0 10px 28px; color: var(--text); }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--accent); font-weight: 800; }

/* ============ MEGA MENÜ (kategorili hizmetler) ============ */
.nav-mega { position: relative; }
.nav-mega > a::after { content: "▾"; font-size: 11px; opacity: .7; margin-left: 4px; }
.mega {
    position: absolute; top: 100%; left: 0; width: 660px; min-height: 366px; display: none; z-index: 60;
    background: #0e0e11; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-lg); margin-top: 0; overflow: hidden;
}
.nav-mega:hover .mega { display: block; }
/* Görünmez köprü: link ile menü arasında hover kopmasın (kırpılmayan yer = nav-mega) */
.nav-mega::after { content: ""; position: absolute; left: 0; top: 100%; width: 660px; height: 18px; background: transparent; pointer-events: none; }
.nav-mega:hover::after { pointer-events: auto; }
.mega-cats { width: 300px; padding: 12px; }
.mega-cat { position: static; }
.mega-cat-label {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 16px; border-radius: 9px; color: #d4d4d9;
    font-size: 13.5px; font-weight: 600; text-transform: none; letter-spacing: 0;
}
.mega-cat-label .chev { color: var(--muted); font-size: 16px; }
.mega-cat:hover .mega-cat-label { background: var(--accent-sf); color: var(--accent); }
.mega-cat:hover .mega-cat-label .chev { color: var(--accent); }
.mega-sub {
    position: absolute; left: 300px; top: 0; right: 0; bottom: 0;
    display: none; padding: 22px 26px; overflow-y: auto;
    background: #121216; border-left: 1px solid var(--line);
    border-radius: 0 14px 14px 0;
    /* Firefox: ince + altın tonu */
    scrollbar-width: thin; scrollbar-color: rgba(255, 106, 0,.4) transparent;
}
.mega-sub a { padding: 8px 0; }
/* WebKit (Chrome/Edge/Safari) — temaya uygun ince scrollbar */
.mega-sub::-webkit-scrollbar { width: 8px; }
.mega-sub::-webkit-scrollbar-track { background: transparent; margin: 8px 0; }
.mega-sub::-webkit-scrollbar-thumb { background: rgba(255, 106, 0,.30); border-radius: 8px; }
.mega-sub::-webkit-scrollbar-thumb:hover { background: rgba(255, 106, 0,.55); }
/* Aktif kategori paneli JS ile sabitlenir (hover yolu kopması olmaz) */
.mega-cat.active .mega-sub { display: block; }
.mega-cat.active .mega-cat-label { background: var(--accent-sf); color: var(--accent); }
.mega-cat.active .mega-cat-label .chev { color: var(--accent); }
.mega-sub-title { color: var(--accent); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.mega-sub a { display: block; padding: 9px 0; color: #cfcfd4; font-size: 13.5px; text-transform: none; letter-spacing: 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.mega-sub a:last-child { border-bottom: 0; }
.mega-sub a:hover { color: var(--accent); padding-left: 6px; transition: padding .15s, color .15s; }
@media (max-width: 900px) { .mega { position: static; width: 100%; display: block; box-shadow: none; border: 0; } .mega-cats { width: 100%; } .mega-sub { position: static; width: 100%; display: block; border-left: 0; border-top: 1px solid var(--line); } .mega-cat-label .chev { display: none; } }

/* ================== WOW ANA SAYFA BÖLÜMLERİ ================== */
/* Hero zenginleştirme */
.hero-eyebrow { display:inline-block; padding:8px 18px; border:1px solid rgba(255, 106, 0,.3); background:var(--accent-sf); color:var(--accent); border-radius:999px; font-size:13px; font-weight:600; letter-spacing:.02em; margin-bottom:22px; }
.hero h1 { font-size: clamp(34px, 5.5vw, 60px); font-weight:700; max-width:780px; }
.hero-trust { list-style:none; display:flex; flex-wrap:wrap; gap:22px; padding:0; margin:30px 0 0; }
.hero-trust li { color:#d6d7db; font-size:14px; font-weight:500; }
.hero-glow { position:absolute; right:-120px; top:50%; transform:translateY(-50%); width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(255, 106, 0,.16), transparent 65%); filter:blur(20px); z-index:1; pointer-events:none; }

/* Sayaç bandı */
.stats-band { background:linear-gradient(180deg,#0c0c0e,#0a0a0b); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:46px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat { text-align:center; position:relative; }
.stat + .stat::before { content:""; position:absolute; left:-12px; top:10%; height:80%; width:1px; background:var(--line); }
.stat-num { font-family:"Space Grotesk",sans-serif; font-size:clamp(34px,4vw,52px); font-weight:700; color:var(--accent); line-height:1; text-shadow:0 0 26px rgba(255, 106, 0,.25); }
.stat-label { color:var(--muted); font-size:14px; margin-top:8px; }
@media(max-width:680px){ .stats-grid{grid-template-columns:repeat(2,1fr);} .stat+.stat::before{display:none;} }

/* Hakkımızda */
.about-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:54px; align-items:center; }
.about-visual { position:relative; border-radius:20px; overflow:visible; }
.about-visual img { width:100%; border-radius:20px; border:1px solid var(--line); }
.about-mark { display:grid; place-items:center; font-size:120px; aspect-ratio:4/3; border-radius:20px; background:radial-gradient(circle at 30% 30%, rgba(255, 106, 0,.18), #121216 70%); border:1px solid var(--line); }
.about-badge { position:absolute; right:-14px; bottom:-14px; background:var(--accent); color:#0a0a0b; padding:14px 20px; border-radius:14px; box-shadow:0 14px 34px rgba(255, 106, 0,.3); text-align:center; }
.about-badge strong { display:block; font-family:"Space Grotesk",sans-serif; font-size:26px; line-height:1; }
.about-badge span { font-size:12px; font-weight:600; }
.about-text .eyebrow { display:inline-block; color:var(--accent); font-weight:700; font-size:12px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px; }
.about-text h2 { font-size:clamp(26px,3.4vw,38px); margin:0 0 16px; }
.about-text > p { color:var(--text); line-height:1.85; margin:0 0 22px; }
.check-list { list-style:none; padding:0; margin:0 0 28px; display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; }
.check-list li { position:relative; padding-left:30px; color:var(--text); font-size:14.5px; font-weight:500; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:0; width:20px; height:20px; background:var(--accent-sf); color:var(--accent); border-radius:6px; display:grid; place-items:center; font-size:12px; font-weight:800; }
@media(max-width:860px){ .about-grid{grid-template-columns:1fr; gap:40px;} .check-list{grid-template-columns:1fr;} }

/* Neden Biz */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.why-card { background:var(--bg-soft2); border:1px solid var(--line); border-radius:16px; padding:36px 30px; transition:transform .2s, border-color .2s; }
.why-card:hover { transform:translateY(-5px); border-color:var(--accent); }
.why-ico { width:64px; height:64px; border-radius:16px; display:grid; place-items:center; font-size:30px; background:var(--accent-sf); border:1px solid rgba(255, 106, 0,.28); margin-bottom:20px; box-shadow:0 0 26px rgba(255, 106, 0,.12); }
.why-card h3 { font-size:21px; margin:0 0 10px; }
.why-card p { color:var(--muted); font-size:14.5px; line-height:1.7; margin:0; }
@media(max-width:860px){ .why-grid{grid-template-columns:1fr;} }

/* Projeler */
.proj-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.proj-card { position:relative; border-radius:16px; overflow:hidden; aspect-ratio:4/3; border:1px solid var(--line); background:#101013; }
.proj-card img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.proj-card:hover img { transform:scale(1.06); }
.proj-ph { width:100%; height:100%; display:grid; place-items:center; font-size:60px; background:radial-gradient(circle at 50% 35%, rgba(255, 106, 0,.12), #0e0e11 70%); }
.proj-over { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:24px; background:linear-gradient(180deg, transparent 40%, rgba(6,6,8,.92)); }
.proj-tag { align-self:flex-start; background:var(--accent); color:#0a0a0b; font-size:11.5px; font-weight:700; padding:4px 12px; border-radius:999px; margin-bottom:10px; }
.proj-over h3 { font-size:19px; margin:0 0 6px; color:#fff; }
.proj-over p { color:#c8c9ce; font-size:13.5px; margin:0; opacity:0; max-height:0; transition:opacity .3s, max-height .3s; }
.proj-card:hover .proj-over p { opacity:1; max-height:80px; }
@media(max-width:860px){ .proj-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .proj-grid{grid-template-columns:1fr;} }

/* Yorumlar */
.tst-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tst-card { background:var(--bg-soft2); border:1px solid var(--line); border-radius:16px; padding:30px 28px; margin:0; }
.tst-stars { color:var(--accent); letter-spacing:3px; margin-bottom:14px; }
.tst-card blockquote { margin:0 0 22px; color:var(--text); font-size:15px; line-height:1.8; font-style:italic; }
.tst-card figcaption { display:flex; align-items:center; gap:14px; }
.tst-ava { width:46px; height:46px; border-radius:50%; display:grid; place-items:center; background:var(--accent); color:#0a0a0b; font-weight:800; font-family:"Space Grotesk",sans-serif; }
.tst-card figcaption strong { display:block; color:var(--ink); font-size:15px; }
.tst-card figcaption small { color:var(--muted); font-size:13px; }
@media(max-width:860px){ .tst-grid{grid-template-columns:1fr;} }

/* CTA bandı */
.cta-band { position:relative; overflow:hidden; background:linear-gradient(120deg,#121216,#0a0a0b); border-top:1px solid var(--line); padding:64px 0; }
.cta-glow { position:absolute; left:50%; top:-40%; transform:translateX(-50%); width:700px; height:400px; background:radial-gradient(circle, rgba(255, 106, 0,.14), transparent 60%); pointer-events:none; }
.cta-inner { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-inner h2 { font-size:clamp(24px,3vw,34px); margin:0 0 8px; }
.cta-inner p { color:var(--muted); margin:0; max-width:520px; }
.cta-actions { display:flex; gap:14px; flex-wrap:wrap; }

/* ============ HİZMET DETAY — zengin prose ============ */
.prose .lead { font-size:18px; line-height:1.85; color:#d8d9de; border-left:3px solid var(--accent); padding-left:18px; margin:0 0 28px; }
.prose h2 { font-size:23px; margin:36px 0 16px; color:var(--ink); padding-left:14px; border-left:4px solid var(--accent); }
.prose ul { list-style:none; padding:0; margin:0 0 24px; }
.prose ul li { position:relative; padding:9px 0 9px 30px; color:var(--text); }
.prose ul li::before { content:"✓"; position:absolute; left:0; top:9px; color:var(--accent); font-weight:800; }
/* Numaralı çalışma süreci */
.prose ol.surec { counter-reset:surec; list-style:none; padding:0; margin:0 0 26px; display:grid; gap:12px; }
.prose ol.surec li { counter-increment:surec; position:relative; padding:16px 20px 16px 66px; background:var(--bg-soft2); border:1px solid var(--line); border-radius:12px; color:var(--muted); font-size:14.5px; }
.prose ol.surec li strong { color:var(--ink); display:block; margin-bottom:3px; font-size:15px; }
.prose ol.surec li::before { content:counter(surec); position:absolute; left:16px; top:16px; width:36px; height:36px; border-radius:10px; background:var(--accent); color:#0a0a0b; font-weight:800; display:grid; place-items:center; font-family:"Space Grotesk",sans-serif; box-shadow:0 0 18px rgba(255, 106, 0,.25); }
.page-hero .page-ico { width:58px; height:58px; border-radius:14px; display:grid; place-items:center; font-size:28px; background:var(--accent-sf); border:1px solid rgba(255, 106, 0,.28); margin-bottom:14px; box-shadow:0 0 22px rgba(255, 106, 0,.12); }
