/* ============================================================
   TEKTON — Kurumsal İnşaat/Mühendislik Teması
   style.css
   ------------------------------------------------------------
   1. Reset / base
   2. Layout utilities
   3. Header / navigation (dropdown / mega / category mega)
   4. Widgets (hero, about, stats, services, categories, refs, blog)
   5. Page components
   6. Forms / contact
   7. Footer / sticky contact
   8. Responsive
   ============================================================ */

/* ============================================================
   THEME TOKENS  (templates.css JSON -> CSS değişkenleri)
   Bu değerler admin panelden gelir; burada fallback olarak var.
   ============================================================ */
:root {--primary-color: #0F4C3A;  --primary-rgb: 15, 76, 58;  --secondary-color: #C9A227;  --secondary-rgb: 201, 162, 39;  --dark-color: #0E1A15;  --dark-rgb: 14, 26, 21;  --light-color: #F4F6F2;  --passive-color: #6E7B74;  --footer-color: #0B1712;  --site-font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --tk-radius-sm: 6px;  --tk-radius: 10px;  --tk-radius-lg: 16px;  --tk-shadow-sm: 0 2px 8px rgba(var(--dark-rgb), .06);  --tk-shadow: 0 14px 40px -18px rgba(var(--dark-rgb), .28);  --tk-shadow-lg: 0 30px 70px -30px rgba(var(--dark-rgb), .45);  --tk-line: rgba(var(--dark-rgb), .10);  --tk-ease: cubic-bezier(.22, .61, .36, 1);}

/* ============================================================
   1. RESET / BASE
   ============================================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {margin: 0;  font-family: var(--site-font-family);  font-size: 16px;  line-height: 1.65;  color: #243029;  background: #fff;  -webkit-font-smoothing: antialiased;  text-rendering: optimizeLegibility;  overflow-x: hidden;}

button, input, textarea, select { font-family: var(--site-font-family); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-color); text-decoration: none; transition: color .2s var(--tk-ease); }
a:hover { color: var(--secondary-color); }

h1, h2, h3, h4, h5, h6 {font-family: var(--site-font-family);  color: var(--dark-color);  font-weight: 800;  line-height: 1.12;  letter-spacing: -.02em;  margin: 0 0 .5em;  text-wrap: balance;}

p { margin: 0 0 1rem; text-wrap: pretty; }

::selection { background: rgba(var(--secondary-rgb), .25); }

/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */
.tk-container { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 24px; }

.tk-section { padding: 20px 0; position: relative; }
.tk-section--tight { padding: 64px 0; }
.tk-section--alt { background: var(--light-color); }
.tk-section--dark { background: var(--dark-color); color: #d7e0db; }

.tk-eyebrow {display: inline-flex; align-items: center; gap: 10px;  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;  color:#333; margin-bottom: 16px;}
.tk-eyebrow::before { content: ""; width: 26px; height: 2px; background:#333; display: inline-block; }
.tk-eyebrow--center { justify-content: center; }

.tk-section-head { max-width: 720px; margin-bottom: 56px; }
.tk-section-head--center { margin-inline: auto; text-align: center; }
.tk-section-title { font-size:30px; margin: 0 0 14px; }
.tk-section-sub { font-size: 17px; color: var(--passive-color); margin: 0; }

.tk-divider-head {display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;  margin-bottom: 56px; flex-wrap: wrap;}
.tk-divider-head .tk-section-head { margin-bottom: 0; }

/* Buttons */
.tk-btn {--_bg: var(--primary-color); --_fg: #fff;  display: inline-flex; align-items: center; gap: 10px;  padding: 14px 28px; border-radius: var(--tk-radius-sm);  font-weight: 700; font-size: 15px; line-height: 1; letter-spacing: .01em;  border: 1.5px solid var(--_bg); background: var(--_bg); color: var(--_fg);  cursor: pointer; transition: transform .25s var(--tk-ease), box-shadow .25s var(--tk-ease), background .2s, color .2s, border-color .2s;  white-space: nowrap;}
.tk-btn i { font-size: 1.05em; transition: transform .25s var(--tk-ease); }
.tk-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(var(--primary-rgb), .55); color: #fff; }
.tk-btn:hover i { transform: translateX(3px); }
.tk-btn--gold { --_bg: var(--secondary-color); --_fg: var(--dark-color); }
.tk-btn--gold:hover { box-shadow: 0 12px 26px -10px rgba(var(--secondary-rgb), .6); color: var(--dark-color); }
.tk-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.tk-btn--ghost:hover { background: #fff; color: var(--primary-color); border-color: #fff; }
.tk-btn--outline { background: transparent; color: var(--primary-color); }
.tk-btn--outline:hover { background: var(--primary-color); color: #fff; }
.tk-btn--lg { padding: 17px 34px; font-size: 16px; }
.tk-btn--sm { padding: 10px 18px; font-size: 13.5px; }

/* Generic image placeholder (gerçek görsel gelene kadar zarif fallback) */
.tk-ph {position: relative; overflow: hidden; background: var(--primary-color);  background-image:
    linear-gradient(135deg, rgba(var(--dark-rgb), .55), rgba(var(--primary-rgb), .15)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);}
.tk-ph i { font-size: clamp(34px, 5vw, 64px); }
.tk-ph--gold {background: var(--secondary-color);  background-image:
    linear-gradient(135deg, rgba(var(--dark-rgb), .35), rgba(var(--secondary-rgb), .1)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 1px, transparent 1px 22px);  color: rgba(255,255,255,.7);}

/* ============================================================
   3. HEADER / NAVIGATION
   ============================================================ */

/* Topbar */
.tekton-topbar { background: var(--dark-color); color: rgba(255,255,255,.78); font-size: 13.5px; }
.tekton-topbar a { color: rgba(255,255,255,.78); }
.tekton-topbar a:hover { color: var(--secondary-color); }
.tekton-topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 20px; }
.tekton-topbar-info { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.tekton-topbar-info span, .tekton-topbar-info a { display: inline-flex; align-items: center; gap: 8px; }
.tekton-topbar-info i { color: var(--secondary-color); font-size: 15px; }
.tekton-topbar-right { display: flex; align-items: center; gap: 18px; }
.tekton-social { display: flex; align-items: center; gap: 4px; }
.tekton-social a {width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;  font-size: 14px; transition: background .2s, color .2s;}
.tekton-social a:hover { background: var(--secondary-color); color: var(--dark-color); }
/* Dil seçici (navbar — tıklamayla açılır) */
.tekton-lang { position: relative; }
.tekton-lang-toggle {display: inline-flex; align-items: center; gap: 8px; cursor: pointer;  background: #fff; border: 1px solid var(--tk-line); color: var(--dark-color);  font-weight: 700; font-size: 14px; padding: 9px 14px; border-radius: var(--tk-radius-sm);  transition: border-color .2s var(--tk-ease), color .2s var(--tk-ease), background .2s;}
.tekton-lang-toggle img { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }
.tekton-lang-toggle .tk-caret { font-size: 11px; opacity: .6; transition: transform .25s var(--tk-ease); }
.tekton-lang-toggle:hover { border-color: var(--primary-color); color: var(--primary-color); }
.tekton-lang.is-open .tekton-lang-toggle { border-color: var(--primary-color); color: var(--primary-color); background: var(--light-color); }
.tekton-lang.is-open .tekton-lang-toggle .tk-caret { transform: rotate(180deg); }
.tekton-lang-menu {position: absolute; right: 0; top: calc(100% + 8px); min-width: 156px; background: #fff; color: var(--dark-color);  border: 1px solid var(--tk-line); border-radius: var(--tk-radius-sm); box-shadow: var(--tk-shadow-lg); padding: 6px;  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s var(--tk-ease); z-index: 1060;}
.tekton-lang.is-open .tekton-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* Header bar */
.tekton-header {position: sticky; top: 0; z-index: 1030; background: #fff;  border-bottom: 1px solid var(--tk-line);  transition: box-shadow .3s var(--tk-ease), padding .3s var(--tk-ease);}
.tekton-header.is-stuck { box-shadow: 0 10px 30px -16px rgba(var(--dark-rgb), .25); }
.tekton-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 84px; transition: min-height .3s var(--tk-ease); }
.tekton-header.is-stuck .tekton-header-inner { min-height: 70px; }

.tekton-logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tekton-logo-mark {width: 44px; height: 44px; border-radius: 9px; flex-shrink: 0;  background: var(--primary-color); color: var(--secondary-color);  display: grid; place-items: center; font-size: 22px; font-weight: 800;  position: relative; overflow: hidden;}
.tekton-logo-mark::after { content: ""; position: absolute; inset: auto 0 0 0; height: 6px; background: var(--secondary-color); }
.tekton-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.tekton-logo-text b { font-size: 21px; font-weight: 800; color: var(--dark-color); letter-spacing: -.02em; }
.tekton-logo-text small { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--passive-color); font-weight: 600; }

/* Primary nav */
.tekton-nav {display: flex;align-items: center;gap: 4px;margin: 0 0 0 auto;padding: 0;list-style: none;  position: relative;  z-index: 1041;  flex: 1;  justify-content: flex-end;}
.tekton-nav > li { position: relative; }
.tekton-nav > li > a {display: inline-flex; align-items: center; gap: 6px; padding: 14px 16px;  font-weight: 600; font-size: 15.5px; color: var(--dark-color); border-radius: var(--tk-radius-sm);  position: relative;}
.tekton-nav > li > a .tk-caret { font-size: 11px; opacity: .55; transition: transform .25s var(--tk-ease); }
.tekton-nav > li > a::after {content: ""; position: absolute; left: 16px; right: 16px; bottom: 8px; height: 2px;  background: var(--secondary-color); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--tk-ease);}
.tekton-nav > li:hover > a, .tekton-nav > li.is-active > a { color: var(--primary-color); }
.tekton-nav > li:hover > a::after, .tekton-nav > li.is-active > a::after { transform: scaleX(1); }
.tekton-nav > li:hover > a .tk-caret { transform: rotate(180deg); }

/* Dropdown panel base (simple + dropdown + mega + category) */
.tekton-panel {position: absolute; top: calc(100% + 2px); left: 0; z-index: 1040;  background: #fff; border-radius: var(--tk-radius); box-shadow: var(--tk-shadow-lg);  border: 1px solid var(--tk-line); padding: 12px;  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .26s var(--tk-ease);}
.tekton-nav > li:hover > .tekton-panel,
.tekton-nav > li:focus-within > .tekton-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.tekton-panel::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }

/* simple / dropdown */
.tekton-panel--dropdown { min-width: 244px; }
.tekton-panel--dropdown a {display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--tk-radius-sm);  color: var(--dark-color); font-weight: 600; font-size: 15px; transition: 0.3s ease all;}
.tekton-panel--dropdown a i { color: var(--secondary-color); font-size: 16px; width: 18px; }
.tekton-panel--dropdown a:hover { background: var(--light-color); color: var(--primary-color); padding-left: 18px; }

/* Mega ve kategori panelleri nav genişliğine yaslanır (ekran dışına taşmayı önler) */
.tekton-nav > li.has-mega { position: static; }

/* mega (hizmetler) */
.tekton-panel--mega { left: 0; right: 0; transform: translateY(12px); padding: 26px; }
.tekton-nav > li:hover > .tekton-panel--mega,
.tekton-nav > li:focus-within > .tekton-panel--mega { transform: translateY(0); }
.tekton-mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 26px; }
.tekton-mega-col-title {font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;  color: var(--passive-color); padding: 6px 12px 10px; margin: 0;}
.tekton-mega-link { display: flex; align-items: flex-start; gap: 13px; padding: 11px 12px; border-radius: var(--tk-radius-sm); }
.tekton-mega-link:hover { background: var(--light-color); }
.tekton-mega-ico {flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center;  background: rgba(var(--primary-rgb), .08); color: var(--primary-color); font-size: 18px; transition: .2s var(--tk-ease);}
.tekton-mega-link:hover .tekton-mega-ico { background: var(--primary-color); color: var(--secondary-color); }
.tekton-mega-tx b { display: block; font-size: 15px; color: var(--dark-color); font-weight: 700; }
.tekton-mega-tx span { display: block; font-size: 12.5px; color: var(--passive-color); line-height: 1.4; }
.tekton-mega-foot {margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--tk-line);  display: flex; align-items: center; justify-content: space-between; gap: 16px;}
.tekton-mega-foot p { margin: 0; font-size: 14px; color: var(--passive-color); }

/* category mega (projeler) */
.tekton-panel--cat { left: 0; right: 0; transform: translateY(12px); padding: 22px; }
.tekton-nav > li:hover > .tekton-panel--cat,
.tekton-nav > li:focus-within > .tekton-panel--cat { transform: translateY(0); }
.tekton-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tekton-cat-card { display: block; border-radius: var(--tk-radius); overflow: hidden; position: relative; }
.tekton-cat-card .tk-ph { aspect-ratio: 4/3.4; transition: transform .4s var(--tk-ease); }
.tekton-cat-card:hover .tk-ph { transform: scale(1.06); }
.tekton-cat-card-cap {position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;  padding: 14px; background: linear-gradient(to top, rgba(var(--dark-rgb), .78), transparent 70%);}
.tekton-cat-card-cap b { color: #fff; font-size: 15px; font-weight: 700; }
.tekton-cat-card-cap span { color: rgba(255,255,255,.7); font-size: 12px; }

/* CTA + burger in header */
.tekton-header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tekton-burger {display: none; width: 46px; height: 46px; border-radius: var(--tk-radius-sm); border: 1px solid var(--tk-line);  background: #fff; cursor: pointer; color: var(--dark-color); font-size: 22px; place-items: center;}

/* Mobile drawer */
.tekton-drawer-backdrop {position: fixed; inset: 0; background: rgba(var(--dark-rgb), .5); backdrop-filter: blur(2px);  opacity: 0; visibility: hidden; transition: .3s var(--tk-ease); z-index: 1050;}
.tekton-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.tekton-drawer {position: fixed; top: 0; right: 0; height: 100%; width: min(380px, 88vw); background: #fff; z-index: 1060;  transform: translateX(100%); transition: transform .34s var(--tk-ease); display: flex; flex-direction: column;  box-shadow: -20px 0 60px -20px rgba(var(--dark-rgb), .5);}
.tekton-drawer.is-open { transform: translateX(0); }
.tekton-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--tk-line); }
.tekton-drawer-close { width: 42px; height: 42px; border-radius: var(--tk-radius-sm); border: 1px solid var(--tk-line); background: #fff; font-size: 22px; cursor: pointer; display: grid; place-items: center; }
.tekton-drawer-body { overflow-y: auto; padding: 12px 14px 30px; flex: 1; }
.tekton-macc > li { border-bottom: 1px solid var(--tk-line); }
.tekton-macc-head { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: 0; padding: 15px 8px; font: inherit; font-weight: 700; font-size: 16px; color: var(--dark-color); cursor: pointer; text-align: left; }
.tekton-macc-head a { color: inherit; font: inherit; }
.tekton-macc-head .tk-caret { transition: transform .25s var(--tk-ease); color: var(--passive-color); }
.tekton-macc.is-open-item > .tekton-macc-head .tk-caret { transform: rotate(180deg); }
.tekton-macc-sub { max-height: 0; overflow: hidden; transition: max-height .32s var(--tk-ease); }
.tekton-macc-sub a { display: block; padding: 11px 14px; color: var(--passive-color); font-weight: 600; font-size: 15px; }
.tekton-macc-sub a:hover { color: var(--primary-color); }
.tekton-drawer-foot { padding: 18px 22px; border-top: 1px solid var(--tk-line); display: grid; gap: 10px; }
.tekton-drawer-contact { font-size: 14px; color: var(--passive-color); display: grid; gap: 8px; }
.tekton-drawer-contact a { display: inline-flex; align-items: center; gap: 9px; color: var(--dark-color); font-weight: 600; }
.tekton-drawer-contact i { color: var(--secondary-color); }

/* ============================================================
   4. WIDGETS
   ============================================================ */

/* --- Hero (split style, slick slider) --- */
.tekton-hero { background: var(--dark-color); position: relative; }
.tekton-hero-slide { position: relative; }
/* Slick init olana dek yalnızca ilk slide görünsün (FOUC önleme, ama hiç gizleme yok) */
.tekton-hero-slider:not(.slick-initialized) .tekton-hero-slide:not(:first-child) { display: none; }
.tekton-hero-split { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 620px; }
.tekton-hero-text {background: var(--primary-color); color: #fff; padding: 80px clamp(28px, 5vw, 84px);  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;}
.tekton-hero-text::before {content: ""; position: absolute; inset: 0; opacity: .5;  background:
    radial-gradient(900px 400px at -10% -20%, rgba(var(--secondary-rgb), .22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 30px);  pointer-events: none;}
.tekton-hero-text > * { position: relative; z-index: 1; }
.tekton-hero-tag {display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;  background: rgba(var(--secondary-rgb), .16); color: #f3dd92; border: 1px solid rgba(var(--secondary-rgb), .35);  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 26px;}
.tekton-hero-title { color: #fff; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; margin: 0 0 22px; }
.tekton-hero-title em { font-style: normal; color: var(--secondary-color); }
.tekton-hero-desc { font-size: 18px; color: rgba(255,255,255,.82); max-width: 520px; margin: 0 0 34px; }
.tekton-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.tekton-hero-stats { display: flex; gap: 38px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); padding-top: 26px; }
.tekton-hero-stat b { display: block; font-size: 30px; font-weight: 800; color: var(--secondary-color); line-height: 1; }
.tekton-hero-stat span { font-size: 13.5px; color: rgba(255,255,255,.72); }
.tekton-hero-media { position: relative; }
.tekton-hero-media .tk-ph { position: absolute; inset: 0; }
.tekton-hero-badge {position: absolute; left: -46px; bottom: 46px; z-index: 3; background: #fff; color: var(--dark-color);  border-radius: var(--tk-radius); box-shadow: var(--tk-shadow-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 270px;}
.tekton-hero-badge i { width: 46px; height: 46px; border-radius: 10px; background: rgba(var(--primary-rgb), .1); color: var(--primary-color); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.tekton-hero-badge b { display: block; font-size: 16px; }
.tekton-hero-badge span { font-size: 13px; color: var(--passive-color); }

/* slick arrows / dots scoped to hero (slick-theme yüklü değil; dots'u tamamen biz stilize ediyoruz) */
.tekton-hero .slick-dots { position: absolute; bottom: 22px; left: clamp(28px, 5vw, 84px); width: auto; margin: 0; padding: 0; list-style: none; display: flex; gap: 8px; z-index: 6; }
.tekton-hero .slick-dots li { width: auto; height: auto; margin: 0; }
.tekton-hero .slick-dots li button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); font-size: 0; line-height: 0; color: transparent; cursor: pointer; transition: .25s var(--tk-ease); }
.tekton-hero .slick-dots li button:before { display: none; }
.tekton-hero .slick-dots li.slick-active button { background: var(--secondary-color); width: 30px; }
.tekton-hero-arrows { position: absolute; right: 28px; bottom: 26px; z-index: 5; display: flex; gap: 8px; }
.tekton-hero-arrows button {width: 48px; height: 48px; border-radius: var(--tk-radius-sm); border: 1px solid rgba(255,255,255,.3);  background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 18px; display: grid; place-items: center;  transition: .2s var(--tk-ease); backdrop-filter: blur(4px);}
.tekton-hero-arrows button:hover { background: var(--secondary-color); color: var(--dark-color); border-color: var(--secondary-color); }

/* --- About widget --- */
.tekton-about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.tekton-about-media { position: relative; }
.tekton-about-media .tk-ph { border-radius: var(--tk-radius-lg); aspect-ratio: 4/4.4; }
.tekton-about-media .tk-ph--gold { position: absolute; right: -28px; bottom: -28px; width: 22%; aspect-ratio: 1; border-radius: var(--tk-radius); box-shadow: var(--tk-shadow-lg); border: 6px solid #fff; }
.tekton-about-exp {position: absolute; left: -26px; top: 38px; background: var(--dark-color); color: #fff; border-radius: var(--tk-radius);  padding: 20px 24px; box-shadow: var(--tk-shadow-lg); text-align: center;}
.tekton-about-exp b { display: block; font-size: 40px; font-weight: 800; color: var(--secondary-color); line-height: 1; }
.tekton-about-exp span { font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.78); }
.tekton-about-points { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 14px; }
.tekton-about-points li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: #2d3a32; }
.tekton-about-points i { color: var(--primary-color); background: rgba(var(--primary-rgb), .1); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.tekton-about-sign { display: flex; align-items: center; gap: 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--tk-line); }
.tekton-about-sign-info b { display: block; font-size: 16px; color: var(--dark-color); }
.tekton-about-sign-info span { font-size: 13.5px; color: var(--passive-color); }

/* --- Stats (sayılarla biz) --- */
.tekton-stats { background: var(--primary-color); position: relative; overflow: hidden; }
.tekton-stats::before { content: ""; position: absolute; inset: 0; opacity: .6; background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 32px); }
.tekton-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.tekton-stat { text-align: center; color: var(--dark-color); position: relative; }
.tekton-stat:not(:last-child)::after { content: ""; position: absolute; right: -15px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.16); }
.tekton-stat-ico { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: var(--tk-radius); background: rgba(var(--secondary-rgb), .15); color: var(--secondary-color); display: grid; place-items: center; font-size: 26px; }
.tekton-stat-num { font-size: clamp(34px, 4vw, 50px); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.tekton-stat-num .tk-suffix { color: var(--secondary-color); }
.tekton-stat-label { font-size: 15px; color: var(--bs-gray-600); margin-top: 8px; }

/* --- Services / content grid --- */
.tekton-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tekton-svc {background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius); padding: 34px 30px;  position: relative; overflow: hidden; transition: transform .3s var(--tk-ease), box-shadow .3s var(--tk-ease), border-color .3s;}
.tekton-svc::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--secondary-color); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--tk-ease); }
.tekton-svc:hover { transform: translateY(-8px); box-shadow: var(--tk-shadow); border-color: transparent; }
.tekton-svc:hover::after { transform: scaleY(1); }
.tekton-svc-ico { width: 64px; height: 64px; border-radius: var(--tk-radius); background: var(--light-color); color: var(--primary-color); display: grid; place-items: center; font-size: 30px; margin-bottom: 22px; transition: .3s var(--tk-ease); }
.tekton-svc:hover .tekton-svc-ico { background: var(--primary-color); color: var(--secondary-color); }
.tekton-svc h3 { font-size: 20px; margin: 0 0 10px; }
.tekton-svc p { font-size: 15px; color: var(--passive-color); margin: 0 0 18px; }
.tekton-svc-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--primary-color); }
.tekton-svc-more i { transition: transform .25s var(--tk-ease); }
.tekton-svc:hover .tekton-svc-more i { transform: translateX(4px); }
.tekton-svc-num { position: absolute; right: 22px; top: 18px; font-size: 46px; font-weight: 800; color: rgba(var(--dark-rgb), .05); line-height: 1; }

/* --- Category grid (projeler) --- */
.tekton-cat-section-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 18px; }
.tekton-proj { position: relative; border-radius: var(--tk-radius); overflow: hidden; display: block; }
.tekton-proj.tk-span-6 { grid-column: span 6; }
.tekton-proj.tk-span-4 { grid-column: span 4; }
.tekton-proj.tk-span-8 { grid-column: span 8; }
.tekton-proj.tk-row-2 { grid-row: span 2; }
.tekton-proj .tk-ph { position: absolute; inset: 0; transition: transform .5s var(--tk-ease); }
.tekton-proj:hover .tk-ph { transform: scale(1.07); }
.tekton-proj-overlay {position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;  padding: 26px; background: linear-gradient(to top, rgba(var(--dark-rgb), .85) 0%, rgba(var(--dark-rgb), .2) 50%, transparent 80%);}
.tekton-proj-cat { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 8px; }
.tekton-proj-overlay h3 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.tekton-proj-overlay span { color: rgba(255,255,255,.75); font-size: 14px; }
.tekton-proj-go { position: absolute; right: 22px; top: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; font-size: 18px; opacity: 0; transform: translateY(-8px) rotate(-30deg); transition: .3s var(--tk-ease); }
.tekton-proj:hover .tekton-proj-go { opacity: 1; transform: translateY(0) rotate(0); background: var(--secondary-color); color: var(--dark-color); }

/* --- References / logo strip --- */
.tekton-logos { padding: 56px 0; border-top: 1px solid var(--tk-line); border-bottom: 1px solid var(--tk-line); background: #fff; }
.tekton-logos-head { text-align: center; margin-bottom: 34px; }
.tekton-logos-head span { font-size: 13.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--passive-color); }
.tekton-logos-track:not(.slick-initialized) { display: flex; gap: 0; overflow: hidden; }
.tekton-logos-track:not(.slick-initialized) .tekton-logo-item { flex: 0 0 20%; }
.tekton-logo-item { padding: 0 18px; }
.tekton-logo-box {height: 64px; border: 1px solid var(--tk-line); border-radius: var(--tk-radius-sm); display: flex; align-items: center; justify-content: center; gap: 10px;  color: var(--passive-color); font-weight: 800; font-size: 18px; letter-spacing: .02em; filter: grayscale(1); opacity: .65; transition: .25s var(--tk-ease);}
.tekton-logo-box i { font-size: 22px; }
.tekton-logo-box:hover { filter: grayscale(0); opacity: 1; color: var(--primary-color); border-color: rgba(var(--primary-rgb), .3); }

/* --- Blog / news --- */
.tekton-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tekton-post { background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius); overflow: hidden; transition: transform .3s var(--tk-ease), box-shadow .3s var(--tk-ease); display: flex; flex-direction: column; }
.tekton-post:hover { transform: translateY(-6px); box-shadow: var(--tk-shadow); }
.tekton-post-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tekton-post-media .tk-ph { position: absolute; inset: 0; transition: transform .5s var(--tk-ease); }
.tekton-post:hover .tekton-post-media .tk-ph { transform: scale(1.06); }
.tekton-post-date { position: absolute; left: 16px; top: 16px; z-index: 2; background: var(--secondary-color); color: var(--dark-color); border-radius: var(--tk-radius-sm); padding: 8px 12px; text-align: center; font-weight: 800; line-height: 1; }
.tekton-post-date b { display: block; font-size: 20px; }
.tekton-post-date span { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.tekton-post-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.tekton-post-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--passive-color); margin-bottom: 12px; }
.tekton-post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tekton-post-meta i { color: var(--secondary-color); }
.tekton-post h3 { font-size: 19px; margin: 0 0 14px; }
.tekton-post h3 a { color: var(--dark-color); }
.tekton-post h3 a:hover { color: var(--primary-color); }
.tekton-post-more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--primary-color); }
.tekton-post-more i { transition: transform .25s var(--tk-ease); }
.tekton-post:hover .tekton-post-more i { transform: translateX(4px); }

/* ============================================================
   5. PAGE COMPONENTS  (breadcrumb vs. — anasayfada görünmez, hazır)
   ============================================================ */
/* --- Sayfa başlığı / breadcrumb hero --- */
.tk-pagehead { position: relative; background: var(--primary-color); color: #fff; padding: 64px 0; overflow: hidden; }
.tk-pagehead::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 30px); }
.tk-pagehead--img { background-size: cover; background-position: center; }
.tk-pagehead__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--dark-rgb), .9), rgba(var(--dark-rgb), .5)); }
.tk-pagehead:not(.tk-pagehead--img) .tk-pagehead__veil { display: none; }
.tk-pagehead__inner { position: relative; z-index: 2; }
.tk-pagehead h1 { color: #fff; font-size: clamp(28px, 3.4vw, 46px); margin: 0; }
.tk-pagehead--full { padding: 110px 0; }
.tk-pagehead--full .tk-pagehead__lede { color: rgba(255,255,255,.85); font-size: 18px; max-width: 640px; margin: 16px 0 0; }
.tk-pagehead--full .tk-pagehead__cta { margin-top: 28px; }
.tk-pagehead--sm { padding: 44px 0; }
.tk-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.tk-crumbs a { color: rgba(255,255,255,.75); }
.tk-crumbs a:hover { color: var(--secondary-color); }
.tk-crumbs .current { color: #fff; }
.tk-crumbs .sep { opacity: .5; font-size: 11px; display: inline-flex; }

/* --- Genel sayfa bölümü --- */
.tk-pg { padding: 72px 0; }

/* --- Listeleme kartı eklentileri (.tk-card yeniden kullanımı) --- */
a.tk-card { color: inherit; }
.tk-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--tk-ease); }
.tk-card:hover .tk-card__img img { transform: scale(1.06); }
.tk-card__zoom { position: absolute; right: 14px; top: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; font-size: 16px; opacity: 0; transform: translateY(-6px); transition: .3s var(--tk-ease); }
.tk-card:hover .tk-card__zoom { opacity: 1; transform: translateY(0); background: var(--secondary-color); color: var(--dark-color); }
/* Öne çıkan yatay hero kart (featured-item-list) */
.tk-feat { display: grid; grid-template-columns: 1.15fr 1fr; background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius-lg); overflow: hidden; margin-bottom: 36px; color: inherit; transition: transform .3s var(--tk-ease), box-shadow .3s var(--tk-ease); }
.tk-feat:hover { transform: translateY(-4px); box-shadow: var(--tk-shadow-lg); }
.tk-feat__media { position: relative; min-height: 340px; overflow: hidden; }
.tk-feat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--tk-ease); }
.tk-feat:hover .tk-feat__media img { transform: scale(1.05); }
.tk-feat__badge { position: absolute; left: 18px; top: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: var(--secondary-color); color: var(--dark-color); font-weight: 700; font-size: 12.5px; padding: 7px 16px; border-radius: 999px; }
.tk-feat__body { padding: clamp(28px, 3.5vw, 50px); display: flex; flex-direction: column; justify-content: center; }
.tk-feat__cat { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 14px; }
.tk-feat__body h2 { font-size: clamp(24px, 2.6vw, 34px); margin: 0 0 16px; }
.tk-feat__body h2, .tk-feat__body h2 a { color: var(--dark-color); }
.tk-feat:hover .tk-feat__body h2 { color: var(--primary-color); }
.tk-feat__desc { font-size: 16px; color: var(--passive-color); margin: 0 0 22px; }
.tk-feat:hover .tk-card__more i { transform: translateX(4px); }

/* --- Zengin metin (editor / blog gövdesi) --- */
.tk-prose { font-size: 16.5px; line-height: 1.8; color: #2d3a32; }
.tk-prose > *:first-child { margin-top: 0; }
.tk-prose h2 { font-size: 28px; margin: 1.6em 0 .6em; }
.tk-prose h3 { font-size: 22px; margin: 1.4em 0 .5em; }
.tk-prose h4 { font-size: 18px; margin: 1.2em 0 .5em; }
.tk-prose p { margin: 0 0 1.1em; }
.tk-prose a { color: var(--primary-color); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.tk-prose a:hover { color: var(--secondary-color); }
.tk-prose ul, .tk-prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.tk-prose li { margin-bottom: .5em; }
.tk-prose img { border-radius: var(--tk-radius); margin: 1em 0; height: auto; }
.tk-prose blockquote { margin: 1.4em 0; padding: 16px 24px; border-left: 4px solid var(--secondary-color); background: var(--light-color); border-radius: 0 var(--tk-radius-sm) var(--tk-radius-sm) 0; color: var(--dark-color); font-style: italic; }
.tk-prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.tk-prose th, .tk-prose td { border: 1px solid var(--tk-line); padding: 10px 14px; text-align: left; }
.tk-prose th { background: var(--light-color); font-weight: 700; }
.tk-prose iframe { max-width: 100%; border-radius: var(--tk-radius); }

/* --- EditorJS bölümleri --- */
.tk-ejs__section { padding: 56px 0; }
.tk-ejs__title { font-size: clamp(24px, 3vw, 36px); margin: 0 0 24px; }

/* --- Blog detay --- */
.tk-blog__cover { border-radius: var(--tk-radius-lg); overflow: hidden; margin-bottom: 30px; aspect-ratio: 16/7; }
.tk-blog__cover img { width: 100%; height: 100%; object-fit: cover; }
.tk-blog__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; font-size: 14px; color: var(--passive-color); }
.tk-blog__tag { background: rgba(var(--primary-rgb), .1); color: var(--primary-color); font-weight: 700; font-size: 12.5px; padding: 6px 14px; border-radius: 999px; }
.tk-blog__meta time { display: inline-flex; align-items: center; gap: 7px; }
.tk-blog__meta time i { color: var(--secondary-color); }
.tk-blog__layout--has-toc { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.tk-blog__share { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--tk-line); flex-wrap: wrap; }
.tk-blog__share span { font-weight: 700; color: var(--dark-color); margin-right: 4px; }
.tk-blog__share a { width: 40px; height: 40px; border-radius: 50%; background: var(--light-color); color: var(--primary-color); display: grid; place-items: center; font-size: 16px; transition: .2s var(--tk-ease); }
.tk-blog__share a:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); }
.tk-blog__sidebar { position: sticky; top: 100px; background: var(--light-color); border-radius: var(--tk-radius); padding: 22px; font-size: 14px; }
.tk-blog__sidebar a { color: var(--passive-color); display: block; padding: 5px 0; }
.tk-blog__sidebar a:hover { color: var(--primary-color); }

/* --- İletişim sayfa bileşenleri --- */
.tk-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.tk-contact__single { max-width: 720px; margin: 0 auto; }
.tk-contact__card { background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius-lg); padding: clamp(26px, 3vw, 44px); }
.tk-contact__title { font-size: 24px; margin: 0 0 8px; }
.tk-contact__desc { color: var(--passive-color); margin-bottom: 22px; }
.tk-contact__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 16px; }
.tk-contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.tk-contact__list .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--tk-radius-sm); background: rgba(var(--primary-rgb), .08); color: var(--primary-color); display: grid; place-items: center; font-size: 19px; }
.tk-contact__list strong { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--passive-color); margin-bottom: 3px; }
.tk-contact__list a, .tk-contact__list div > span { color: var(--dark-color); font-weight: 600; font-size: 15.5px; }
.tk-contact__list a:hover { color: var(--primary-color); }
.tk-contact__social { margin-top: 26px; }
.tk-contact__social-lbl { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--passive-color); font-weight: 700; margin-bottom: 12px; }
.tk-contact__social-links { display: flex; gap: 10px; }
.tk-contact__social-links a { width: 42px; height: 42px; border-radius: var(--tk-radius-sm); background: var(--light-color); color: var(--primary-color); display: grid; place-items: center; font-size: 17px; transition: .2s var(--tk-ease); }
.tk-contact__social-links a:hover { background: var(--primary-color); color: #fff; }
.tk-contact__map { border-radius: var(--tk-radius-lg); overflow: hidden; min-height: 320px; border: 1px solid var(--tk-line); }
.tk-contact__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* --- Form (iletişim sayfa) --- */
.tk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tk-form__field--full { grid-column: 1 / -1; }
.tk-form input, .tk-form textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--tk-line); border-radius: var(--tk-radius-sm); font-size: 15px; color: var(--dark-color); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.tk-form input:focus, .tk-form textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(var(--primary-rgb), .1); }
.tk-form textarea { resize: vertical; min-height: 120px; }
.tk-form__footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.tk-form__chk { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--passive-color); }
.tk-form__chk input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--primary-color); flex-shrink: 0; }
.tk-form__sent { display: none; align-items: center; gap: 10px; margin-top: 16px; color: var(--primary-color); font-weight: 700; }
.tk-form.is-sent .tk-form__footer { display: none; }
.tk-form.is-sent .tk-form__sent { display: flex; }

/* --- Galeri --- */
.tk-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tk-gallery__item { position: relative; aspect-ratio: 1; border-radius: var(--tk-radius); overflow: hidden; display: block; }
.tk-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--tk-ease); }
.tk-gallery__item:hover img { transform: scale(1.08); }
.tk-gallery__hover { position: absolute; inset: 0; background: rgba(var(--dark-rgb), .4); display: grid; place-items: center; color: #fff; font-size: 24px; opacity: 0; transition: .3s var(--tk-ease); }
.tk-gallery__item:hover .tk-gallery__hover { opacity: 1; }

/* --- Doküman listesi --- */
.tk-docs { display: grid; gap: 12px; }
.tk-docs__item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius); transition: border-color .2s, box-shadow .2s, transform .2s; }
.tk-docs__item:hover { border-color: transparent; box-shadow: var(--tk-shadow); transform: translateX(4px); }
.tk-docs__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--tk-radius-sm); background: rgba(var(--secondary-rgb), .15); color: var(--secondary-color); display: grid; place-items: center; font-size: 22px; }
.tk-docs__name { flex: 1; font-weight: 700; color: var(--dark-color); }
.tk-docs__action { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--primary-color); white-space: nowrap; }

/* --- Tek başına harita --- */
.tk-map { border-radius: var(--tk-radius-lg); overflow: hidden; min-height: 380px; border: 1px solid var(--tk-line); }
.tk-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* --- Sayfalama (main .list-pagination markup) --- */
.list-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
.list-pagination__pages { display: flex; align-items: center; gap: 6px; }
.list-pagination__page, .list-pagination__control { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--tk-line); border-radius: var(--tk-radius-sm); color: var(--dark-color); font-weight: 700; font-size: 15px; background: #fff; transition: .2s var(--tk-ease); }
.list-pagination__page:hover, .list-pagination__control:hover { border-color: var(--primary-color); color: var(--primary-color); }
.list-pagination__page.is-active { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.list-pagination__dots { padding: 0 4px; color: var(--passive-color); }

/* ============================================================
   6. FORMS / CONTACT
   ============================================================ */
.tekton-contact { position: relative; }
.tekton-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: var(--tk-radius-lg); overflow: hidden; box-shadow: var(--tk-shadow); background: #fff; }
.tekton-contact-info { background: var(--primary-color); color: #fff; padding: clamp(36px, 4vw, 56px); position: relative; overflow: hidden; }
.tekton-contact-info::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(700px 300px at 110% 0%, rgba(var(--secondary-rgb), .2), transparent 60%), repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 30px); }
.tekton-contact-info > * { position: relative; z-index: 1; }
.tekton-contact-info h2 { color: #fff; font-size: 30px; }
.tekton-contact-info > p { color: rgba(255,255,255,.82); margin-bottom: 28px; }
.tekton-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.tekton-contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.tekton-contact-list .ci-ico { width: 48px; height: 48px; border-radius: var(--tk-radius-sm); background: rgba(var(--secondary-rgb), .16); color: var(--secondary-color); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.tekton-contact-list b { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); font-weight: 700; margin-bottom: 3px; }
.tekton-contact-list a, .tekton-contact-list p { color: #fff; font-weight: 600; font-size: 16px; margin: 0; }
.tekton-contact-list a:hover { color: var(--secondary-color); }
.tekton-contact-social { display: flex; gap: 10px; margin-top: 30px; }
.tekton-contact-social a { width: 42px; height: 42px; border-radius: var(--tk-radius-sm); background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; font-size: 17px; transition: .2s var(--tk-ease); }
.tekton-contact-social a:hover { background: var(--secondary-color); color: var(--dark-color); }

.tekton-form { padding: clamp(36px, 4vw, 56px); }
.tekton-form h2 { font-size: 28px; margin-bottom: 6px; }
.tekton-form > p { color: var(--passive-color); margin-bottom: 26px; }
.tekton-field { margin-bottom: 18px; }
.tekton-field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--dark-color); margin-bottom: 8px; }
.tekton-field label .req { color: #d23; }
.tekton-input, .tekton-textarea, .tekton-select {width: 100%; padding: 14px 16px; border: 1.5px solid var(--tk-line); border-radius: var(--tk-radius-sm);  font-size: 15px; color: var(--dark-color); background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;}
.tekton-input:focus, .tekton-textarea:focus, .tekton-select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(var(--primary-rgb), .1); }
.tekton-input::placeholder, .tekton-textarea::placeholder { color: #9aa6a0; }
.tekton-textarea { min-height: 130px; resize: vertical; }
.tekton-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tekton-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--passive-color); margin-bottom: 22px; }
.tekton-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--primary-color); flex-shrink: 0; }
.tekton-check a { font-weight: 700; }

/* ============================================================
   7. FOOTER / STICKY CONTACT
   ============================================================ */
.tekton-cta-band { background: var(--secondary-color); position: relative; overflow: hidden; }
.tekton-cta-band::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(135deg, rgba(var(--dark-rgb), .05) 0 1px, transparent 1px 26px); }
.tekton-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px 0; flex-wrap: wrap; }
.tekton-cta-inner h2 { color: var(--dark-color); font-size: clamp(24px, 3vw, 36px); margin: 0; }
.tekton-cta-inner p { color: rgba(var(--dark-rgb), .7); margin: 6px 0 0; font-weight: 600; }

.tekton-footer { background: var(--footer-color); color: rgba(255,255,255,.66); padding-top: 76px; font-size: 15px; }
.tekton-footer h4 { color: #fff; font-size: 16px; letter-spacing: .02em; margin: 0 0 22px; position: relative; padding-bottom: 14px; }
.tekton-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--secondary-color); }
.tekton-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.tekton-footer a { color: rgba(255,255,255,.66); }
.tekton-footer a:hover { color: var(--secondary-color); }
.tekton-footer-about p { margin: 20px 0 24px; line-height: 1.7; }
.tekton-footer .tekton-logo-text b { color: #fff; }
.tekton-footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.tekton-footer-links a { display: inline-flex; align-items: center; gap: 9px; }
.tekton-footer-links a i { color: var(--secondary-color); font-size: 12px; transition: transform .2s var(--tk-ease); }
.tekton-footer-links a:hover i { transform: translateX(3px); }
.tekton-footer-contact { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 16px; }
.tekton-footer-contact li { display: flex; gap: 13px; align-items: flex-start; }
.tekton-footer-contact i { color: var(--secondary-color); font-size: 17px; margin-top: 2px; }
.tekton-footer-contact a, .tekton-footer-contact span { color: rgba(255,255,255,.78); }
.tekton-footer-social { display: flex; gap: 10px; }
.tekton-footer-social a { width: 40px; height: 40px; border-radius: var(--tk-radius-sm); background: rgba(255,255,255,.06); color: #fff; display: grid; place-items: center; font-size: 16px; transition: .2s var(--tk-ease); }
.tekton-footer-social a:hover { background: var(--secondary-color); color: var(--dark-color); transform: translateY(-3px); }
.tekton-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.tekton-footer-bottom a { color: rgba(255,255,255,.78); font-weight: 600; }
.tekton-footer-bilgeweb { display: inline-flex; align-items: center; gap: 7px; }
.tekton-footer-bilgeweb img { height: 18px; width: auto; display: block; }

/* Sticky contact (whatsapp / phone / mail) */
.tekton-sticky { position: fixed; right: 18px; bottom: 18px; z-index: 1040; display: flex; flex-direction: column; gap: 12px; }
.tekton-sticky a { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 23px; box-shadow: var(--tk-shadow); transition: transform .25s var(--tk-ease); position: relative; }
.tekton-sticky a:hover { transform: scale(1.08); color: #fff; }
.tekton-sticky .s-wa { background: #25D366; }
.tekton-sticky .s-tel { background: var(--primary-color); }
.tekton-sticky .s-mail { background: var(--secondary-color); color: var(--dark-color); }
.tekton-sticky .s-mail:hover { color: var(--dark-color); }
.tekton-sticky a::before {content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5);  animation: tk-pulse 2.4s infinite;}
.tekton-sticky .s-tel::before { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), .5); animation-name: tk-pulse-green; }

@keyframes tk-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@keyframes tk-pulse-green { 0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), .45);} 70%{ box-shadow: 0 0 0 14px rgba(var(--primary-rgb), 0);} 100%{ box-shadow:0 0 0 0 rgba(var(--primary-rgb), 0);} }

/* Cookie notice */
.tekton-cookie { position: fixed; left: 18px; bottom: 18px; z-index: 1041; max-width: 380px; background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius); box-shadow: var(--tk-shadow-lg); padding: 20px 22px; transform: translateY(140%); transition: transform .4s var(--tk-ease); }
.tekton-cookie.is-shown { transform: translateY(0); }
.tekton-cookie p { font-size: 13.5px; color: var(--passive-color); margin: 0 0 14px; }
.tekton-cookie p a { font-weight: 700; }
.tekton-cookie-actions { display: flex; gap: 10px; }

/* ============================================================
   9. CMS ENTEGRASYON EKLERİ (logo görseli, dil menüsü, hizalama)
   ============================================================ */
/* Yüklenen logo görselini marka bloğu içinde düzgün ölçekle */
.tekton-logo img { height: 82px; width: auto; display: block; margin:10px; }
.tekton-header.is-stuck .tekton-logo img { height: 82px; transition: height .3s var(--tk-ease); }
.tekton-footer .tekton-logo img { height: 82px; }

/* Topbar dil menüsü (main languages bileşeniyle uyum) */
.tekton-lang-menu .language { list-style: none; margin: 0; padding: 0; }
.tekton-lang-menu .language li a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--tk-radius-sm); }
.tekton-lang-menu .language li a:hover { background: var(--light-color); }
.tekton-lang-menu .language img { border-radius: 2px; }

/* AOS güvenliği: JS devre dışıysa içerik görünür kalsın */
.no-js [data-aos] { opacity: 1 !important; transform: none !important; }

/* Eyebrow merkez hizası (section head center içinde) */
.tk-section-head--center .tk-eyebrow { justify-content: center; }

/* ============================================================
   10. EK WİDGET BİLEŞENLERİ
   (content/category carousel & grid, list, split, video, faq, quickbar)
   ============================================================ */

/* --- Genel içerik kartı (grid + carousel) --- */
.tk-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tk-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--tk-line); border-radius: var(--tk-radius); overflow: hidden; transition: transform .3s var(--tk-ease), box-shadow .3s var(--tk-ease); }
.tk-card:hover { transform: translateY(-6px); box-shadow: var(--tk-shadow); }
.tk-card__img {
    aspect-ratio: 12 / 12;
    background: var(--light-color);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.tk-card__img .tk-ph { position: absolute; inset: 0; }
.tk-card:hover .tk-card__img { }
.tk-card__cat { position: absolute; left: 14px; top: 14px; z-index: 2; background: var(--secondary-color); color: var(--dark-color); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; }
.tk-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.tk-card__title { font-size: 18px; margin: 0 0 10px; }
.tk-card__title a { color: var(--dark-color); }
.tk-card__title a:hover { color: var(--primary-color); }
.tk-card__desc { font-size: 14px; color: var(--passive-color); margin: 0 0 16px; }
.tk-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--primary-color); }
.tk-card__more i { transition: transform .25s var(--tk-ease); }
.tk-card:hover .tk-card__more i { transform: translateX(4px); }

/* ── Tek satırda İçerik Listele (.tk-card-grid.item-list) ── */
.tk-card-grid.item-list { grid-template-columns: 1fr !important; gap: 32px; }
.tk-card-grid.item-list .tk-card { flex-direction: row; align-items: center; height: auto; }
.tk-card-grid.item-list .tk-card__img { width: 50%; flex-shrink: 0; aspect-ratio: 4/3; }
.tk-card-grid.item-list .tk-card:nth-child(even) .tk-card__img { order: 2; }
.tk-card-grid.item-list .tk-card__zoom { display: none; }
.tk-card-grid.item-list .tk-card__body { flex: 1; padding: 36px 48px; justify-content: center; }
.tk-card-grid.item-list .tk-card__title { font-size: clamp(20px, 2.2vw, 28px); margin: 0 0 16px; }
.tk-card-grid.item-list .tk-card__desc { font-size: 15px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; }
.tk-card-grid.item-list .tk-card__more { margin-top: 0; }

/* --- Slick kart slider (content/category content carousel) --- */
.tk-card-slider { margin: 0 -13px; }
.tk-card-slider .tk-slide { padding: 0 13px; height: auto; }
.tk-card-slider .slick-track { display: flex; }
.tk-card-slider .slick-slide { height: auto; }
.tk-card-slider .slick-slide > div { height: 100%; }
.tk-card-slider .slick-dots { position: static; margin: 38px 0 0; padding: 0; display: flex !important; justify-content: center; gap: 8px; list-style: none; }
.tk-card-slider .slick-dots li { width: auto; height: auto; margin: 0; }
.tk-card-slider .slick-dots li button { width: 9px; height: 9px; padding: 0; border-radius: 999px; background: rgba(var(--dark-rgb), .18); border: 0; font-size: 0; line-height: 0; color: transparent; cursor: pointer; transition: .25s var(--tk-ease); }
.tk-card-slider .slick-dots li button:before { display: none; }
.tk-card-slider .slick-dots li button:before { display: none; }
.tk-card-slider .slick-dots li.slick-active button { background: var(--secondary-color); width: 26px; }

/* --- Kategori overlay kart slider (category-carousel) --- */
.tk-catcard { position: relative; display: block; border-radius: var(--tk-radius); overflow: hidden; aspect-ratio: 4/3.4; }
.tk-catcard__img { position: absolute; inset: 0; background: var(--primary-color); background-size: cover; background-position: center; transition: transform .5s var(--tk-ease); }
.tk-catcard:hover .tk-catcard__img { transform: scale(1.07); }
.tk-catcard__cap { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: linear-gradient(to top, rgba(var(--dark-rgb), .82), transparent 72%); }
.tk-catcard__cap .num { color: var(--secondary-color); font-weight: 800; font-size: 13px; margin-bottom: 6px; }
.tk-catcard__cap h4 { color: #fff; font-size: 19px; margin: 0; }

/* --- İçerik listeleme (content-list) --- */
.tk-list { border-top: 1px solid var(--tk-line); }
.tk-list__row a { display: grid; grid-template-columns: 44px 150px 1fr minmax(0, 1.2fr) 44px; align-items: center; gap: 24px; padding: 24px 8px; border-bottom: 1px solid var(--tk-line); transition: padding .3s var(--tk-ease), background .3s; }
.tk-list__row a:hover { padding-inline: 18px; background: var(--light-color); }
.tk-list__row .num { font-size: 16px; font-weight: 800; color: var(--secondary-color); }
.tk-list__row .type { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--passive-color); }
.tk-list__row .title { font-size: 19px; font-weight: 700; color: var(--dark-color); }
.tk-list__row .meta { font-size: 14px; color: var(--passive-color); }
.tk-list__row .arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--tk-line); display: grid; place-items: center; color: var(--primary-color); font-size: 18px; transition: .25s var(--tk-ease); }
.tk-list__row a:hover .arrow { background: var(--primary-color); color: #fff; border-color: var(--primary-color); transform: translateX(4px); }

/* --- Split (left/right-image) --- */
.tk-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tk-split--right .tk-split__media { order: 2; }
.tk-split__media { position: relative; border-radius: var(--tk-radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--primary-color); background-size: cover; background-position: center; box-shadow: var(--tk-shadow); }
.tk-split__media::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 38%; height: 38%; border-radius: var(--tk-radius) 0 0 0; border-left: 6px solid #fff; border-top: 6px solid #fff; background: var(--secondary-color); opacity: .0; }
.tk-split__text .tk-section-title { margin-top: 0; }
.tk-split__text .tk-section-sub { margin-bottom: 26px; }

/* --- Video --- */
.tk-video { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; }
.tk-video__bg { position: absolute; inset: 0; background: var(--dark-color); background-size: cover; background-position: center; }
.tk-video__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--dark-rgb), .9), rgba(var(--dark-rgb), .45)); }
.tk-video__inner { position: relative; z-index: 2; text-align: center; color: #fff; padding: 48px 24px; }
.tk-video__inner h2 { color: #fff; font-size: clamp(26px, 3.2vw, 42px); max-width: 760px; margin: 0 auto 30px; }
.tk-play { width: 88px; height: 88px; border-radius: 50%; background: var(--secondary-color); color: var(--dark-color); display: inline-grid; place-items: center; font-size: 30px; position: relative; transition: transform .25s var(--tk-ease); }
.tk-play:hover { transform: scale(1.08); color: var(--dark-color); }
.tk-play__caption { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 16px; white-space: nowrap; font-size: 14px; font-weight: 600; color: #fff; }
.tk-play::before { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), .5); animation: tk-pulse-gold 2.4s infinite; }
@keyframes tk-pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), .45); } 70% { box-shadow: 0 0 0 18px rgba(var(--secondary-rgb), 0); } 100% { box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0); } }

/* --- FAQ --- */
.tk-faq__inner { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.tk-faq__aside .tk-section-title { margin-top: 0; }
.tk-faq__aside p { color: var(--passive-color); }
.tk-faq__list { display: grid; gap: 14px; }
.tk-faq details { border: 1px solid var(--tk-line); border-radius: var(--tk-radius); background: #fff; overflow: hidden; transition: box-shadow .25s var(--tk-ease), border-color .25s; }
.tk-faq details[open] { box-shadow: var(--tk-shadow); border-color: transparent; }
.tk-faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--dark-color); }
.tk-faq summary::-webkit-details-marker { display: none; }
.tk-faq summary .q-no { color: var(--secondary-color); font-weight: 800; flex-shrink: 0; }
.tk-faq summary .q-ico { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--light-color); color: var(--primary-color); display: grid; place-items: center; font-size: 20px; line-height: 1; transition: .25s var(--tk-ease); flex-shrink: 0; }
.tk-faq details[open] summary .q-ico { background: var(--primary-color); color: #fff; transform: rotate(45deg); }
.tk-faq__body { padding: 0 22px 22px; color: var(--passive-color); font-size: 15px; }

/* --- Quickbar (fast-contact) --- */
.tk-quickbar { padding: 40px 0; }
.tk-quickbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: var(--primary-color); color: #fff; border-radius: var(--tk-radius-lg); padding: 30px 40px; position: relative; overflow: hidden; }
.tk-quickbar__inner::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(600px 240px at 100% 0, rgba(var(--secondary-rgb), .18), transparent 60%), repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 28px); }
.tk-quickbar__left { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.tk-quickbar__left .ico { width: 56px; height: 56px; border-radius: var(--tk-radius); background: rgba(var(--secondary-rgb), .2); color: var(--secondary-color); display: grid; place-items: center; font-size: 26px; flex-shrink: 0; }
.tk-quickbar strong { display: block; font-size: 21px; color: #fff; }
.tk-quickbar .sub { color: rgba(255,255,255,.82); font-size: 15px; }
.tk-quickbar__right { display: flex; gap: 12px; position: relative; z-index: 1; flex-wrap: wrap; }


/* --- Banner (görselli CTA bandı) --- */
.tk-banner { position: relative; padding: 92px 0; overflow: hidden; color: #fff; }
.tk-banner__bg { position: absolute; inset: 0; background: var(--dark-color); background-size: cover; background-position: center; }
.tk-banner__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--dark-rgb), .92), rgba(var(--dark-rgb), .55)); }
.tk-banner__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.tk-banner__copy { max-width: 640px; }
.tk-banner__copy h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); margin: 0 0 12px; }
.tk-banner__copy p { color: rgba(255,255,255,.82); margin: 0; font-size: 17px; }




/* ============================================================
   8. RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .tk-section { padding: 80px 0; }
  .tekton-hero-split { grid-template-columns: 1.1fr 1fr; min-height: 540px; }
  .tekton-about-grid { gap: 44px; }
  .tekton-footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
  .tekton-footer-about { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  .tekton-nav, .tekton-header-cta .tk-btn { display: none; }
  .tekton-burger { display: grid; }
  .tekton-hero-split { grid-template-columns: 1fr; }
  .tekton-hero-media { min-height: 320px; }
  .tekton-hero-media .tk-ph { position: relative; height: 100%; }
  .tekton-hero-badge { left: 20px; bottom: 20px; }
  .tekton-about-grid, .tekton-contact-grid { grid-template-columns: 1fr; }
  .tekton-about-media { max-width: 520px; }
  .tekton-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .tekton-stat:nth-child(2)::after { display: none; }
  .tekton-svc-grid, .tekton-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tekton-cat-section-grid { grid-auto-rows: 220px; }
  .tekton-proj.tk-span-8, .tekton-proj.tk-span-6, .tekton-proj.tk-span-4 { grid-column: span 6; }
  .tekton-proj.tk-row-2 { grid-row: span 1; }
  .tekton-footer-grid { grid-template-columns: 1fr 1fr; }
  .tekton-about-media .tk-ph { aspect-ratio: 16/10; }

  .tk-card-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-card-grid.item-list { grid-template-columns: 1fr; gap: 24px; }
  .tk-card-grid.item-list .tk-card__body { padding: 28px 32px; }
  .tk-split__inner, .tk-faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .tk-split--right .tk-split__media { order: 0; }
  .tk-list__row a { grid-template-columns: 36px 1fr 44px; gap: 14px; }
  .tk-list__row .type, .tk-list__row .meta { display: none; }

  .tk-blog__layout--has-toc { grid-template-columns: 1fr; gap: 0; }
  .tk-blog__sidebar { position: static; margin-top: 24px; }
  .tk-contact__grid { grid-template-columns: 1fr; }
  .tk-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .tk-section { padding: 64px 0; }
  .tekton-topbar-info span:not(:first-child), .tekton-topbar .tekton-social { display: none; }
  .tekton-hero-text { padding: 56px 24px; }
  .tekton-hero-stats { gap: 24px; }
  .tekton-stat:nth-child(odd)::after { display: none; }
  .tekton-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }

  .tk-pagehead--full { padding: 80px 0; }
  .tk-ejs__section { padding: 44px 0; }
  .tk-feat { grid-template-columns: 1fr; }
  .tk-feat__media { min-height: 240px; aspect-ratio: 16/9; }

  /* Hero okları mobilde sticky iletişim butonlarıyla çakışıyor; dots yeterli */
  .tekton-hero-arrows { display: none; }
  .tekton-header-inner { min-height: 68px; }
  .tekton-header.is-stuck .tekton-header-inner { min-height: 60px; }
  .tekton-blog__share { gap: 8px; }
}

@media (max-width: 576px) {
  .tk-container { padding-inline: 18px; }
  .tekton-svc-grid, .tekton-blog-grid, .tekton-stats-grid { grid-template-columns: 1fr; }
  .tekton-stat::after { display: none !important; }
  .tekton-cat-section-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tekton-proj.tk-span-8, .tekton-proj.tk-span-6, .tekton-proj.tk-span-4 { grid-column: 1 / -1; }
  .tekton-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .tekton-row-2 { grid-template-columns: 1fr; }
  .tekton-hero-title { font-size: 30px; }
  .tekton-about-exp { left: 14px; padding: 14px 16px; }
  .tekton-about-exp b { font-size: 30px; }

  .tk-card-grid { grid-template-columns: 1fr !important; }
  .tk-card-grid.item-list .tk-card { flex-direction: column; }
  .tk-card-grid.item-list .tk-card:nth-child(even) .tk-card__img { order: 0; }
  .tk-card-grid.item-list .tk-card__img { width: 100%; aspect-ratio: 16/9; }
  .tk-card-grid.item-list .tk-card__body { padding: 22px 24px; }
  .tk-quickbar__inner { padding: 24px; }
  .tk-quickbar__right { width: 100%; }
  .tk-quickbar__right .tk-btn { flex: 1; justify-content: center; }

  .tk-gallery { grid-template-columns: repeat(2, 1fr); }
  .tk-form__row { grid-template-columns: 1fr; }
  .tk-pg { padding: 56px 0; }

  /* Hero / başlık */
  .tekton-hero-text { padding: 48px 20px; }
  .tk-pagehead { padding: 46px 0; }
  .tk-pagehead--full { padding: 60px 0; }
  .tk-feat__body { padding: 26px 22px 30px; }

  /* Sticky iletişim — biraz küçült */
  .tekton-sticky { right: 14px; bottom: 14px; gap: 10px; }
  .tekton-sticky a { width: 46px; height: 46px; font-size: 20px; }

  /* Çerez bandı — tam genişlik alt sayfa */
  .tekton-cookie { left: 12px; right: 12px; max-width: none; }

  /* İçerik kartlarındaki kategori rozeti taşmasın */
  .tk-card-grid { gap: 18px; }
}

/* =================================================================
   Çoklu Adres — Tekton görsel kimliği (inşaat · yeşil + altın · Jakarta)
   ================================================================= */
.cb-item, .cbt-card, .cbg-card {
  background: #fff;
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-lg);
  font-family: var(--site-font-family);
}
.cb-item:hover, .cbg-card:hover {
  border-color: rgba(var(--primary-rgb), .3);
}
.cb-eyebrow, .cbt-eyebrow, .cbg-eyebrow {
  color: var(--secondary-color);
  letter-spacing: .2em;
  font-weight: 700;
}
.cb-title, .cbt-title, .cbg-title,
.cb-item__title, .cbt-info__title, .cbg-card__title {
  color: var(--dark-color);
  letter-spacing: -.02em;
  font-weight: 800;
}
.cb-item__no {
  color: rgba(var(--primary-rgb), .14);
  font-weight: 900;
}
.cb-item__address, .cbg-card__address, .cbt-row__value { color: #4a5650; }
.cb-phone a, .cbt-phones a, .cbg-phone a { color: var(--dark-color); }
.cb-phone a:hover, .cbt-phones a:hover, .cbg-phone a:hover { color: var(--primary-color); }
.cb-item__address i, .cb-phone a i, .cbg-card__title i, .cbg-phone a i { color: var(--primary-color); }
.cb-item__map, .cbt-map, .cbg-card__map { background: var(--light-color); }
.cb-phone__label, .cbt-phone__label, .cbg-phone__label {
  background: rgba(var(--secondary-rgb), .18);
  color: #826800;
  border-radius: var(--tk-radius-sm);
  letter-spacing: .08em;
}
.cbt-tabs {
  background: var(--light-color);
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius-lg);
}
.cbt-tab { border-radius: var(--tk-radius); color: var(--passive-color); font-weight: 700; }
.cbt-tab:hover { color: var(--primary-color); }
.cbt-tab.is-active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(var(--primary-rgb), .55);
}
.cbt-tab.is-active i { color: #fff; }
.cbt-row__icon {
  background: rgba(var(--primary-rgb), .1);
  color: var(--primary-color);
  border-radius: var(--tk-radius);
}
.cbt-row__label { color: var(--passive-color); font-weight: 700; letter-spacing: .14em; }
.cbg-card__phones { border-top: 1px solid var(--tk-line); }
