/* ==========================================================
   AKHAN DEKOR — Tasarım Sistemi v2
   Koyu lacivert-yeşil header + beyaz gövde + zümrüt yeşili vurgu, turuncu ikincil vurgu
   ========================================================== */

:root {
    --dark: #0a1512;
    --dark-2: #0e1e19;
    --dark-3: #122922;
    --teal: #10a37e;
    --teal-2: #17c294;
    --teal-dark: #0b7f62;
    --teal-light: #e5f7f1;
    --teal-line: #c9ece0;
    --orange: #f0800f;
    --orange-dark: #ce6c09;
    --orange-light: #fdf0e2;
    --bg: #f7faf9;
    --white: #ffffff;
    --text-dark: #16211d;
    --muted: #5c6b66;
    --muted-light: #b7c4c0;
    --line: #e6ece9;
    --shadow: 0 20px 45px rgba(10, 30, 25, .1);
    --shadow-lg: 0 30px 70px rgba(6, 20, 16, .18);
    --radius: 14px;
    --radius-sm: 8px;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--sans); margin: 0; line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }
p { line-height: 1.75; margin: 0 0 1em; color: var(--muted); }
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.tl { color: var(--teal); }
.ol { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 28px; font-size: 14.5px; font-weight: 700;
    border-radius: var(--radius-sm); transition: all .22s ease;
    cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(16,163,126,.35); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(240,128,15,.35); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark { border-color: var(--line); color: var(--text-dark); }
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-light); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: var(--dark); padding: 14px 0; transition: box-shadow .25s ease, padding .25s ease; border-bottom: 1px solid rgba(255,255,255,.06); }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo .mark { width: 42px; height: 42px; border-radius: 11px; background: var(--teal); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; font-size: 21px; font-weight: 800; }
.logo .word { font-size: 21px; font-weight: 800; color: #fff; line-height: 1.15; }
.logo .word b { color: var(--teal-2); font-weight: 800; }
.logo .tag { display: block; font-size: 9.5px; letter-spacing: .1em; color: var(--muted-light); text-transform: uppercase; font-weight: 600; margin-top: 1px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > ul { display: flex; gap: 26px; align-items: center; }
.main-nav a.nav-link { color: #fff; font-size: 13.5px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; position: relative; padding: 6px 0; transition: color .2s; }
.main-nav a.nav-link:hover { color: var(--teal-2); }
.has-mega { position: relative; }
/* .mega-menu: köprü kutusu — üstten linke bitişik (top:100%, boşluksuz) durur, görünmezken de
   pointer-events açık kalır; böylece fare linkten menüye inerken hover zinciri kopmaz.
   Görsel boşluk ve kart görünümü içteki .mega-inner'a taşınmıştır. */
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    padding-top: 16px; min-width: 640px;
    opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility 0s linear .18s;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transition: opacity .18s ease; }
.mega-menu .mega-inner {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 24px;
}
.mega-menu.mega-3col { min-width: 760px; }
.mega-menu.mega-3col .mega-inner { grid-template-columns: repeat(3, 1fr); }
.mega-menu a { display: block; padding: 9px 10px; border-radius: 6px; color: var(--text-dark); font-size: 13.5px; font-weight: 600; }
.mega-menu a:hover { background: var(--teal-light); color: var(--teal-dark); }
.mega-menu .mega-col-title { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-weight: 800; padding: 8px 10px 2px; }
.mega-menu .mega-foot { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; text-align: center; }
.mega-menu .mega-foot a { display: inline-block; color: var(--teal-dark); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 14.5px; }
.header-phone .picon { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--teal); color: var(--teal-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

@media (max-width: 980px) {
    .main-nav {
        position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1000;
        background:
            linear-gradient(180deg, rgba(10,21,18,.9) 0%, rgba(10,21,18,.96) 55%, rgba(10,21,18,.98) 100%),
            url('/assets/img/hero/hero-komple-yenileme.jpg') center/cover fixed;
        flex-direction: column; align-items: stretch; justify-content: center;
        padding: 110px 30px 40px;
        opacity: 0; visibility: hidden; transform: scale(1.04);
        transition: opacity .35s ease, transform .4s ease, visibility 0s linear .35s;
        overflow-y: auto;
    }
    .main-nav.open { opacity: 1; visibility: visible; transform: scale(1); transition: opacity .35s ease, transform .4s ease; }
    .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; }
    .main-nav > ul > li { width: 100%; opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
    .main-nav.open > ul > li { opacity: 1; transform: translateY(0); }
    .main-nav.open > ul > li:nth-child(1) { transition-delay: .08s; }
    .main-nav.open > ul > li:nth-child(2) { transition-delay: .14s; }
    .main-nav.open > ul > li:nth-child(3) { transition-delay: .2s; }
    .main-nav.open > ul > li:nth-child(4) { transition-delay: .26s; }
    .main-nav.open > ul > li:nth-child(5) { transition-delay: .32s; }
    .main-nav a.nav-link { padding: 12px 0; width: 100%; font-size: 25px; letter-spacing: .01em; }
    .mega-menu { position: static; transform: none; opacity: 1; visibility: visible; display: none; min-width: 0; padding: 0 0 14px; }
    .has-mega.open .mega-menu { display: block; }
    .mega-menu .mega-inner { background: transparent; box-shadow: none; padding: 0; border-radius: 0; grid-template-columns: 1fr; }
    .mega-menu a { color: #fff; padding: 9px 4px; font-size: 15px; }
    .mega-menu .mega-col-title { color: var(--teal-2); }
    .mega-menu .mega-foot { border-top-color: rgba(255,255,255,.15); }
    .nav-toggle { display: block; position: relative; z-index: 1001; }
    .header-phone span.txt { display: none; }
    body.nav-open { overflow: hidden; }
}

/* ---------- Badge / Eyebrow ---------- */
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: var(--teal-2); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
.eyebrow:before { content: ''; width: 30px; height: 2px; background: var(--teal-2); }
.eyebrow.on-light { color: var(--teal-dark); }
.eyebrow.on-light:before { background: var(--teal); }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-light); color: var(--teal-dark); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 9px 18px; border-radius: 30px; margin-bottom: 18px; }

/* ---------- Hero (ana sayfa) ---------- */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; color: #fff; background-size: cover; background-position: center; background-color: var(--dark); }
.hero:before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(9,20,17,.95) 0%, rgba(9,20,17,.86) 34%, rgba(9,20,17,.5) 58%, rgba(9,20,17,.15) 80%);
}
.hero-container { width: 100%; padding: 0 clamp(20px, 5vw, 64px); position: relative; z-index: 2; }
.hero-inner { position: relative; z-index: 2; max-width: 640px; padding-top: 50px; }
.hero.align-right .hero-inner { margin-left: auto; }
.hero.align-right:before { background: linear-gradient(260deg, rgba(9,20,17,.95) 0%, rgba(9,20,17,.86) 34%, rgba(9,20,17,.5) 58%, rgba(9,20,17,.15) 80%); }
.hero h1 { font-size: clamp(32px, 4.6vw, 54px); color: #fff; margin-bottom: 20px; }
.hero h1 b { color: var(--teal-2); font-weight: 800; }
.hero p.lead { font-size: 16.5px; color: #dbe6e2; max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-cta .btn { flex: 1 1 0; justify-content: center; text-align: center; min-width: 200px; }
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; }
.trust-row .ti { display: flex; align-items: center; gap: 10px; }
.trust-row .ti svg { color: var(--teal-2); flex-shrink: 0; }
.trust-row .ti .tt { font-size: 12.5px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.trust-row .ti .ts { font-size: 12px; color: var(--muted-light); }
.hero-float-card { position: absolute; right: 60px; bottom: 90px; z-index: 3; background: #fff; border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; }
.hero-float-card .fi { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-card .fn { font-size: 22px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.hero-float-card .fl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.hero-float-loc { position: absolute; right: 5%; bottom: 60px; z-index: 3; background: #fff; border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; max-width: 280px; }
.hero-float-loc .fi { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-loc .fn { font-size: 14.5px; font-weight: 800; color: var(--text-dark); }
.hero-float-loc .fl { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }
.hero-small { min-height: 48vh; }
.hero-small .hero-inner { padding-top: 26px; max-width: 700px; }
.hero-dark { min-height: 56vh; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 14px 0 0; font-size: 13px; color: var(--muted-light); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; position: relative; z-index: 3; }
.breadcrumb a { color: var(--muted-light); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb a:hover { color: var(--teal-2); }
.breadcrumb span.sep { opacity: .5; }
.breadcrumb span.current { color: #fff; font-weight: 700; }

/* ---------- Quick strip (hero altı 4 ikon kart) ---------- */
.quick-strip { margin-top: -54px; position: relative; z-index: 5; }
.quick-grid { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.quick-item { display: flex; align-items: center; gap: 14px; padding: 6px 10px; }
.quick-item .qi { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quick-item h4 { font-size: 15px; margin-bottom: 3px; }
.quick-item p { font-size: 12.5px; margin: 0; color: var(--muted); }

/* ---------- Trust bar (pill satırı) ---------- */
.trust-bar { background: var(--teal-light); border-radius: 30px; padding: 20px 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 34px; margin-top: 26px; }
.trust-bar.white { background: #fff; box-shadow: var(--shadow); }
.trust-bar .tbi { display: flex; align-items: center; gap: 10px; }
.trust-bar .tbi svg { color: var(--teal); flex-shrink: 0; }
.trust-bar .tbi b { font-size: 13.5px; font-weight: 800; color: var(--text-dark); }
.trust-bar .tbi span { font-size: 12px; color: var(--muted); display: block; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--text-dark); }
.section-head p { margin-top: 14px; font-size: 15.5px; }
.section-pad { padding: 90px 0; }

/* ---------- Category cards (fotoğraflı, rozetli) ---------- */
.catbig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.catbig-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.catbig-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.catbig-photo { position: relative; height: 200px; overflow: hidden; }
.catbig-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.catbig-card:hover .catbig-photo img { transform: scale(1.08); }
.catbig-badge { position: absolute; top: 14px; left: 14px; background: var(--teal); color: #fff; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: 20px; }
.catbig-icon { position: absolute; left: 18px; bottom: -22px; width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.catbig-body { padding: 34px 22px 24px; }
.catbig-body h3 { font-size: 18.5px; margin-bottom: 8px; }
.catbig-body p { font-size: 13.5px; margin-bottom: 14px; }
.catbig-link { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-dark); display: inline-flex; align-items: center; gap: 6px; }
.catbig-link svg { transition: transform .2s; }
.catbig-card:hover .catbig-link svg { transform: translateX(4px); }

/* ---------- Service cards (basit) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .sc-img { height: 176px; overflow: hidden; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .sc-img img { transform: scale(1.06); }
.service-card .sc-body { padding: 22px; }
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; margin-bottom: 14px; }
.service-card .sc-link { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-dark); }

/* ---------- District grid ---------- */
.district-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.district-chip { display: flex; align-items: center; gap: 12px; padding: 16px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: all .2s; }
.district-chip:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.district-chip .dc-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.district-chip .dc-body { flex: 1; min-width: 0; }
.district-chip .dc-body b { display: block; font-size: 14.5px; font-weight: 800; color: var(--text-dark); }
.district-chip .dc-body span { display: block; font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.district-chip .dc-arrow { color: var(--muted-light); flex-shrink: 0; transition: transform .2s, color .2s; }
.district-chip:hover .dc-arrow { color: var(--teal); transform: translateX(3px); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-grid img { width: 100%; height: 320px; object-fit: cover; transition: transform .5s; }
.gallery-grid a { overflow: hidden; display:block; }
.gallery-grid a:hover img { transform: scale(1.06); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 46px; }
.process-item { position: relative; }
.process-item .step-num { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-light); color: var(--teal-dark); font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.process-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-dark); }
.process-item p { font-size: 13.5px; }

/* ---------- Carousel (ilçe hizmet listesi) ---------- */
.carousel-wrap { position: relative; padding: 0 60px; }
.carousel-track { display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .service-card { min-width: 300px; flex: 0 0 300px; }
.carousel-track .catbig-card { min-width: 280px; flex: 0 0 280px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-dark); transition: all .2s; z-index: 2; }
.carousel-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.carousel-btn.prev { left: 0; }
.carousel-btn.prev svg { transform: scaleX(-1); }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.carousel-dots span.active { background: var(--teal); width: 22px; border-radius: 5px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 4px; cursor: pointer; font-weight: 700; font-size: 15.5px; gap: 16px; }
.faq-q .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 22px; font-size: 14.5px; }
.faq-simple { text-align: center; max-width: 640px; margin: 0 auto; }
.faq-simple .fsi { width: 54px; height: 54px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.faq-simple h3 { font-size: 20px; margin-bottom: 10px; }

/* ---------- CTA banner (yuvarlak, desenli) ---------- */
.cta-banner { background: linear-gradient(120deg, var(--teal-dark), var(--teal)); border-radius: 22px; padding: 44px 46px; position: relative; overflow: hidden; }
.cta-banner:before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1.5px, transparent 1.5px); background-size: 18px 18px; opacity: .5; }
.cta-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner-left { display: flex; align-items: center; gap: 20px; }
.cta-banner .cbi { width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-banner h3 { color: #fff; font-size: 24px; margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; font-size: 14.5px; }
.cta-banner .btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-teal { background: #fff; color: var(--teal-dark); }
.cta-banner .btn-teal:hover { background: var(--teal-light); }

/* ---------- Markalar ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brand-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start; transition: all .2s; }
.brand-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-card .bi { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; font-size: 15px; }
.brand-card h3 { font-size: 17px; margin-bottom: 8px; }
.brand-card p { font-size: 14px; margin: 0; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card .bc-img { height: 180px; overflow: hidden; position: relative; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .bc-img img { transform: scale(1.06); }
.blog-card .bc-cat { position: absolute; top: 14px; left: 14px; background: var(--teal); color: #fff; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: 20px; }
.blog-card .bc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 10px; align-items: center; }
.blog-card .bc-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 13.5px; margin-bottom: 16px; flex: 1; }
.blog-card .sc-link { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-dark); }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 24px; margin: 40px 0 14px; color: var(--text-dark); }
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 15.5px; line-height: 1.85; }
.article-body ul { margin: 18px 0; display: grid; gap: 10px; }
.article-body ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--text-dark); }
.article-body ul li:before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 8px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.article-meta span { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted-light); }

/* ---------- Uzman içerik (süreç adımları / malzeme / ipuçları) ---------- */
.expert-steps { counter-reset: xstep; margin: 26px 0; }
.expert-step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.expert-step:last-child { border-bottom: none; }
.expert-step .xnum { counter-increment: xstep; width: 34px; height: 34px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.expert-step .xnum:before { content: counter(xstep); }
.expert-step h3 { font-size: 16px; margin-bottom: 5px; color: var(--text-dark); }
.expert-step p { font-size: 14px; margin: 0; }
.material-box { background: var(--teal-light); border: 1px solid var(--teal-line); border-radius: var(--radius); padding: 26px 28px; margin: 26px 0; }
.material-box h3 { font-size: 17px; color: var(--teal-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.material-box p { font-size: 14.5px; color: #24463c; margin: 0; }
.tips-list { margin: 24px 0; display: grid; gap: 12px; }
.tips-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--text-dark); background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.tips-list li .tip-ic { color: var(--orange); flex-shrink: 0; margin-top: 1px; }

/* ---------- Content blocks (iç sayfa) ---------- */
.content-block { max-width: 860px; }
.content-block h2 { font-size: 28px; margin-bottom: 18px; color: var(--text-dark); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; margin: 24px 0; }
.checklist li { display: flex; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--text-dark); align-items: flex-start; }
.checklist li:before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310a37e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.side-card { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 30px; position: sticky; top: 100px; }
.side-card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.side-card p { color: var(--muted-light); font-size: 13.5px; }
.side-card .btn { width: 100%; justify-content: center; margin-top: 14px; }
.side-card hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 18px 0; }
.side-card .qc-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted-light); }
.two-col { display: grid; grid-template-columns: 2.1fr 1fr; gap: 46px; align-items: start; }

.mahalle-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.mahalle-tags span, .mahalle-tags a { background: var(--teal-light); border: 1px solid var(--teal-line); padding: 7px 14px; border-radius: 30px; font-size: 12.5px; font-weight: 700; color: var(--teal-dark); }
.mahalle-tags a { text-decoration: none; transition: background .2s, color .2s; }
.mahalle-tags a:hover { background: var(--teal); color: #fff; }

.link-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.link-cloud a { background: #fff; border: 1px solid var(--line); padding: 9px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; transition: all .2s; }
.link-cloud a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------- Footer ---------- */
.footer-faq { padding: 80px 0; text-align: center; }
.site-footer { background: var(--dark); color: var(--muted-light); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; border-bottom: 2px solid var(--teal); display: inline-block; padding-bottom: 8px; }
.footer-col ul li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: 13.5px; color: var(--muted-light); border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-col ul li a:hover { color: var(--teal-2); }
.footer-col ul li a svg { opacity: .5; transition: transform .2s; }
.footer-col ul li a:hover svg { transform: translateX(3px); opacity: 1; }
.footer-col .more { color: var(--teal-2); font-weight: 800; font-size: 12.5px; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; gap: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--teal-2); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: #fff; }
.social-row a:hover { border-color: var(--teal); color: var(--teal-2); background: rgba(16,163,126,.1); }
.back-top { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: #fff; display: flex; align-items: center; justify-content: center; }
.back-top:hover { background: var(--teal); border-color: var(--teal); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 500; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.35); animation: pulse 2.4s infinite; color: #fff; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Dark card (hakkımızda/iletişim contact) ---------- */
.dark-card { background: var(--dark); border-radius: var(--radius); padding: 34px; color: #fff; }
.dark-card h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.dark-card p { color: var(--muted-light); font-size: 14px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ci { width: 42px; height: 42px; border-radius: 50%; background: rgba(16,163,126,.18); color: var(--teal-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row b { display: block; color: #fff; font-size: 14.5px; }
.contact-row span { display: block; font-size: 12px; color: var(--muted-light); margin-top: 2px; }
.mini-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.mini-trust .mt { background: rgba(255,255,255,.06); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.mini-trust .mt svg { color: var(--teal-2); flex-shrink: 0; }
.mini-trust .mt b { font-size: 12.5px; color: #fff; display: block; }
.mini-trust .mt span { font-size: 10.5px; color: var(--muted-light); }

/* ---------- Form ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { font-weight: 700; font-size: 13px; display: block; margin-bottom: 7px; }
.form-field .fi-wrap { position: relative; }
.form-field .fi-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 13px 14px 13px 42px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    font-family: var(--sans); font-size: 14.5px; color: var(--text-dark); background: #fff; transition: border-color .2s;
}
.form-field textarea { padding-left: 14px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form-card h2 { font-size: 24px; margin-bottom: 22px; }
.form-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display:flex; align-items:center; justify-content:center; text-align:center; flex-direction:column; padding: 140px 20px 80px;}
.error-page h1 { font-size: 110px; color: var(--teal); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .two-col { grid-template-columns: 1fr; }
    .catbig-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .district-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .side-card { position: static; }
    .checklist { grid-template-columns: 1fr; }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-float-card, .hero-float-loc { display: none; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .cta-banner-inner { justify-content: center; text-align: center; }
    .cta-banner-left { flex-direction: column; text-align: center; }
}
@media (max-width: 620px) {
    .section-pad { padding: 60px 0; }
    .catbig-grid, .service-grid, .district-grid, .gallery-grid, .quick-grid, .blog-grid, .brand-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; }
    .trust-row { gap: 16px; }
    .trust-bar { gap: 18px; padding: 18px 20px; }
    .carousel-wrap { padding: 0 10px; }
    .carousel-btn { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-banner { padding: 32px 24px; }
}
