/* ============================================
   ÇAMGÖREN MİMARLIK — v2 Premium Website
   Inspired by: KAAN Architecten + Myrtha Pools
   Brand: #40403f Gray + Bank Gothic BT
   ============================================ */

/* Bank Gothic BT — kurumsal kimlik fontu (lokal yukle veya en yakin Google alternatifi) */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

/* Bank Gothic BT yoksa Rajdhani kullanilir (geometrik, modular, Bank Gothic'e en yakin Google font) */
@font-face {
  font-family: 'Bank Gothic';
  src: local('Bank Gothic BT Medium'), local('BankGothic Md BT'), local('Bank Gothic Medium');
  font-weight: 500;
  font-display: swap;
}

:root {
  /* Kurumsal Kimlik Renkleri — PDF'den */
  --primary: #40403f;       /* Pantone Cool Gray 11 C */
  --primary-light: #5a5a59;
  --primary-dark: #2a2a29;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --gray-700: #333333;
  --gray-500: #555555;
  --gray-400: #777777;
  --gray-300: #999999;
  --gray-200: #d4d4d4;
  --gray-100: #eeeeee;
  --off-white: #f5f5f3;
  --white: #fefefe;
  --accent: #40403f;
  --ral-2005: #f44611; /* Luminous Orange — vurgu rengi */

  /* Typography — Kurumsal Kimlik PDF'den */
  /* Baslik: Bank Gothic BT Medium (yoksa Rajdhani fallback — geometrik, modular, buyuk harfli) */
  /* Govde: Axiforma (yoksa Inter fallback) */
  --font-primary: 'Bank Gothic', 'Rajdhani', sans-serif;
  --font-heading: var(--font-primary);
  --font-body: var(--font-primary);

  /* Spacing — daha genis */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 100px;
  --space-2xl: 140px;

  /* Shadows */
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);

  --radius: 0px; /* Mimarlik — keskin koseler */
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
/* Form elementleri tarayici default font'una dusmesin — kurumsal tek font garantisi */
button, input, select, textarea {
  font-family: var(--font-primary);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 1s ease, transform 1s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 1s ease, transform 1s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Stagger */
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--primary);
  z-index: 9999;
}

/* ============ NAVBAR — Minimal ============ */
/* Dis kabuk — bar'in mevcut yuksekligiyle eslesir:
   kapali: 72px (sadece bar alaninda hover tetiklenir),
   hover: 320px (acilmis bar alaninin icinde kaldikca hover devam eder) */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 3.75vw;        /* 1920 tasarim genisliginde 72px — zoom altinda fiziksel olarak sabit kalir, bg ile ayni davranir */
  min-height: 56px;
  pointer-events: none;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hover'da buyuyen navbar devre disi — sabit 72px */

/* Ust yarim bar — transparan ustu, scroll'da koyu.
   Logo flex item olarak solda, linkler sagda gruplanir */
.nav-bar,
.nav-inner {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3.75vw;
  min-height: 56px;
  pointer-events: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 48px);
  padding: 0 clamp(24px, 3vw, 56px);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* Logo container — flex item, bar icinde dikey orta */
.nav-logo {
  position: relative;
  flex-shrink: 0;
  height: auto;
  pointer-events: auto;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}
/* .nav:hover .nav-logo — devre disi (hover-grow kaldirildi) */
.nav-logo:focus,
.nav-logo:focus-visible,
.nav-logo:active,
.nav-logo:hover {
  outline: none !important;
  border: none;
  box-shadow: none;
}
.nav-logo img,
.nav-logo-mark {
  outline: none !important;
  border: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.nav-logo img:focus,
.nav-logo-mark:focus { outline: none !important; }
/* Sembol logo — bar yuksekliginin %70'i, beyaz */
.nav-logo-mark {
  height: 3vw;
  min-height: 42px;
  max-height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Scroll sonrasi: koyu, gece modu */
.nav.scrolled .nav-bar,
.nav.scrolled .nav-inner {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Menu butonlari sagda gruplanir */
.nav-links {
  display: flex;
  flex: 1;
  width: 100%;
  gap: clamp(20px, 2.2vw, 44px);
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: clamp(15px, 1.2vw, 18px);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: rgba(255,255,255,0.9);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* İletisim — sag ucta buton gorunumu (a.nav-cta > .nav-links a, !important gereksiz) */
.nav-links a.nav-cta {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 1.6px;
  padding: 9px 20px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.92);
  background: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.nav-links a.nav-cta:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.nav-links a.nav-cta::after { display: none; }
.nav.scrolled .nav-links a.nav-cta { border-color: rgba(255,255,255,0.5); }

/* ============================================
   URUNLER CTA — sari, ANASAYFA solunda ilk oge, ikonlu buton
   ============================================ */
.nav-links a.nav-cta-products {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFC107;
  color: #1a1a1a !important;
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 9px 18px 9px 20px;
  border: 2px solid #FFC107;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 193, 7, 0.32);
  white-space: nowrap;
}
.nav-links a.nav-cta-products:hover {
  background: #FFB300;
  border-color: #FFB300;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.5);
}
.nav-links a.nav-cta-products::after { display: none !important; }
.nav-cta-products-icon {
  font-size: 0.78em;
  opacity: 0.92;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}
.nav-links a.nav-cta-products:hover .nav-cta-products-icon {
  transform: translate(2px, -3px);
}
.nav.scrolled .nav-links a.nav-cta-products { background: #FFC107; border-color: #FFC107; color: #1a1a1a; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; }


/* ============================================
   HERO SIMPLE — fixed alt katman, sonraki bolumler ustunden kaydirilarak geliyor
   ============================================ */
/* Sabit arka plan katmani — slider hep gorunur, scroll'dan etkilenmez */
.hero-bg-layer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  background: var(--black);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-layer .hero-simple-overlay { pointer-events: none; }

/* Hero icerigi — normal akista, scroll'la birlikte yukari kayar */
.hero-simple {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  z-index: 1;
  background: transparent;
  overflow: visible;
}

/* Sonraki bolumler hero'nun ustunde acilir — her biri solid bg + z-index 2 */
.page-block,
.footer {
  position: relative;
  z-index: 2;
}

/* 6 sayfalik iskelet — her biri tam 1 ana sayfa (100vh), 600 birim toplam */
.page-block {
  width: 100%;
  min-height: 100vh;
}
.hero-simple + .page-block { margin-top: 0; }

/* ============================================================
   Yeni icerik bloklari — anchor scroll: navbar 72px alti
   ============================================================ */
html { scroll-behavior: smooth; }
.page-block[id] { scroll-margin-top: 72px; }

/* ----- intro-block: hero altinda VIZYON & MISYON, slider arkadan gorunur, logo cutout ----- */
.intro-block {
  background: transparent;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.intro-cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.intro-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px) 1fr;
  align-items: center;
  gap: 64px;
  padding: 0 clamp(40px, 6vw, 120px);
}
.intro-text { max-width: 540px; }
.intro-left  { text-align: right; justify-self: end; }
.intro-right { text-align: left;  justify-self: start; }
.intro-text .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.intro-text h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 22px;
}
.intro-text p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

/* ----- pb-1: HAKKIMIZDA ----- */
.pb-1 {
  display: block;
  padding: 0;
  min-height: auto;
}
.pb-1-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
}
.pb-1 .section-head {
  margin-bottom: clamp(40px, 5vh, 64px);
  max-width: 720px;
}
.pb-1 .section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.pb-1 .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--charcoal);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-grid.about-grid-single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-grid.about-grid-single .about-text p { font-size: 17px; }
.about-grid.about-grid-single .text-link { justify-content: center; }
.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600, #444);
  margin-bottom: 18px;
}
.about-text strong { color: var(--charcoal); font-weight: 500; }
.about-text .text-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.about-text .text-link:hover { gap: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.about-stats .stat {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.about-stats .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 400;
}
.about-stats .stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ================================================================
   PREMIUM ABOUT SECTION — shared by #hakkimizda + hakkimizda.html
   ================================================================ */

.ab-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c8924a;
  margin-bottom: 10px;
  display: block;
}

/* --- Header: sadece başlık --- */
.about-header {
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 80px) clamp(36px, 4vw, 56px);
  border-bottom: 1px solid #d8d4ce;
  background: var(--white);
}
.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.0;
  margin-top: 10px;
  letter-spacing: -1px;
}

/* --- Team (left, dark cinema) + Story (right, warm) --- */
.about-main {
  display: grid;
  grid-template-columns: 62% 38%;
}
.about-team {
  background: #0f0f0f;
  padding: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #1a1a1a;
  height: 100%;
}
.team-member {
  position: relative;
  overflow: hidden;
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: #1e1e1e;
  overflow: hidden;
}
/* Ikon merkez arka plan — fotograf yuklenince img onun ustunu tam kaplar */
.team-photo i {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(36px, 3.5vw, 52px);
  color: #383838;
  z-index: 1;
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-member:hover .team-photo img { transform: scale(1.06); }
.team-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: clamp(20px, 2vw, 28px) clamp(14px, 1.5vw, 20px) clamp(14px, 1.5vw, 20px);
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.65) 70%, transparent 100%);
}
.team-overlay h4 {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.15vw, 19px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.team-overlay p {
  font-size: clamp(11px, 0.85vw, 13.5px);
  color: #c8924a;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.3px;
}

/* About story — right column */
.about-story {
  background: #f2ede6;
  padding: clamp(48px, 5.5vw, 80px) clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #c8924a 0%, transparent 100%);
}
.about-story h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.about-story p {
  font-size: clamp(13px, 0.88vw, 15px);
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-story p:last-child { margin-bottom: 0; }

/* --- Vizyon / Misyon — iki ayrı kart, açık arka plan --- */
.vm-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e8e3dc;
  gap: 1px;
}
.vm-col {
  background: #f7f4f0;
  padding: clamp(56px, 6vw, 88px) clamp(48px, 5vw, 80px);
}
.vm-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
  display: inline-block;
}
.vm-col h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: #c8924a;
}
.vm-col p {
  font-family: var(--font-primary);
  font-size: clamp(13px, 0.88vw, 15px);
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}
.vm-col p:last-child { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .about-main { grid-template-columns: 1fr; }
  .about-story::before { top: 0; left: 0; right: 0; bottom: auto; width: auto; height: 3px; background: linear-gradient(to right, #c8924a, transparent); }
  .vm-section { grid-template-columns: 1fr; gap: 1px; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
}

/* ── Ekip satırı — hakkimizda.html temiz versiyon ──── */
.about-firma {
  max-width: 720px;
}
.about-firma h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 28px;
}
.about-firma p {
  font-size: clamp(13px, 0.88vw, 15px);
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-firma p:last-child { margin-bottom: 0; }

.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #ece8e3;
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-card-photo i {
  font-size: clamp(40px, 4vw, 60px);
  color: #bbb5ae;
}
.team-card h4 {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
}
.team-card > p {
  font-size: clamp(11px, 0.75vw, 13px);
  color: #b07843;
  letter-spacing: 0.3px;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .team-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ----- pb-2: hizmetler ızgarası ----- */
.pb-2 {
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vh, 120px) 0;
}
.pb-2-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
}
.pb-2 .section-head {
  margin-bottom: clamp(40px, 5vh, 72px);
  max-width: 1200px;
}
.pb-2 .section-head h2 { white-space: nowrap; }
@media (max-width: 1400px) {
  .pb-2 .section-head h2 { white-space: normal; }
}
.pb-2 .section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.pb-2 .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  background: transparent;
  border: none;
}
@media (max-width: 720px) {
  /* Mobilde 2 sutun, gorsel orani 4:3 korunur */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 420px) {
  /* Cok dar ekranlarda tek sutun, tam genislikte */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
}
.service-card {
  position: relative;
  background: #1a1a1a;            /* contain icinde olusabilecek bos alan icin koyu zemin */
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;            /* gorsel oraniyla birebir — kirpma yok */
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--off-white);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.38);
}
/* Ana gorsel — kart 4:3 cerceveye tamamen sigar, bos alan birakmaz. */
.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.service-card:hover .service-img { transform: scale(1.03); }
/* Tiklayinca acilan tam-cerceve aciklama overlay'i */
.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(2px);
  color: var(--off-white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.service-overlay h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 12px;
}
.service-overlay p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.service-card.is-flipped .service-overlay {
  opacity: 1;
  pointer-events: auto;
}
.service-card.is-flipped .service-img { transform: scale(1.02); }

/* ----- pb-3: PROJELER ----- */
.pb-3 {
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vh, 120px) 0;
}
.pb-3-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
}
.pb-3 .section-head {
  margin-bottom: clamp(40px, 5vh, 64px);
  max-width: 720px;
}
.pb-3 .section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.pb-3 .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.project-card {
  position: relative;
  aspect-ratio: 3/4;
  background-color: var(--charcoal);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.30) 35%, rgba(0,0,0,0) 55%);
  transition: opacity 0.4s ease;
}
.project-card:hover::before { opacity: 0.55; }
.project-meta {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.project-card:hover .project-meta { transform: translateY(-6px); }
.project-type {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.project-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}
.pb-3-cta { margin-top: 32px; text-align: right; }
.text-link {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
  color: var(--charcoal);
}
.text-link.light { color: var(--white); }
.text-link:hover { gap: 16px; }

/* ----- pb-4: URUNLER — 6 urun karti, acik gri zemin ----- */
.pb-4 {
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vh, 120px) 0;
}
.pb-4-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
}
.pb-4 .section-head {
  margin-bottom: clamp(40px, 5vh, 64px);
  max-width: 720px;
}
.pb-4 .section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.pb-4 .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--charcoal);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.product-card {
  background: var(--white);
  padding: 36px 28px;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.product-card:hover { background: var(--off-white); transform: translateY(-4px); }
.product-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.product-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.2;
}
.product-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600, #555);
}

/* ----- pb-5: E-KATALOG — koyu zemin, 2 sutunlu (metin + mockup) ----- */
.pb-5 {
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vh, 120px) 0;
}
.pb-5-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
}
.pb-5 .section-head {
  margin-bottom: 72px;
  max-width: 720px;
}
.pb-5 .section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.pb-5 .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
}
.pb-5 .katalog-lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
/* buton stil: genel */
.btn {
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--white); color: var(--charcoal); }
.btn-primary:hover { transform: translateY(-2px); background: #ddd; }
.btn-outline { border: 1px solid rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }

/* ---- katalog kartlari ---- */
.katalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.katalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
.katalog-card:hover:not([disabled]) {
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.02);
}
.katalog-card-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.katalog-cover {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #0f0f0e;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.katalog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.katalog-card:hover:not([disabled]) .katalog-cover img { transform: scale(1.04); }
.katalog-cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.katalog-cover-placeholder i { font-size: 28px; }
.katalog-meta {
  padding: 22px 22px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.katalog-cat {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.katalog-title {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
}
.katalog-count {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.katalog-cta {
  margin: 0 22px 22px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}
.katalog-card:hover:not([disabled]) .katalog-cta {
  background: var(--white);
  color: var(--charcoal);
}
.katalog-cta-muted {
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.18);
}
.katalog-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  z-index: 2;
}
@media (max-width: 1300px) {
  .katalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .katalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .katalog-grid { grid-template-columns: 1fr; }
}

/* ---- katalog modal ---- */
.katalog-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.katalog-modal.is-open { display: flex; }
.katalog-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
}
.katalog-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.katalog-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}
.katalog-modal-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
}
.katalog-modal-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}
.katalog-tool {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.katalog-tool:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.katalog-page-info {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  min-width: 70px;
  text-align: center;
}
.katalog-close { margin-left: 6px; }
.katalog-flip-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  cursor: zoom-in;
}
/* Zoom modunda parmak hareketinin tum kontrolu JS'de — tarayici default scroll'u kapali */
.katalog-modal.is-zoomed .katalog-flip-wrap {
  cursor: grab;
  touch-action: none;
  -ms-touch-action: none;
  overscroll-behavior: contain;
  user-select: none;
  -webkit-user-select: none;
}
.katalog-modal.is-zoomed .katalog-flip-wrap:active { cursor: grabbing; }
.katalog-flip {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center center;
}
/* Zoom durumunda StPageFlip event'leri yakalamasin -> sayfa cevirme tetiklenmez,
   pan icin pointer event'ler flipWrap'e gider */
.katalog-modal.is-zoomed .katalog-flip { pointer-events: none; }
/* Pan sirasinda gecisi an be an surdurmek icin transition kapali */
.katalog-modal.is-zoomed.is-panning .katalog-flip { transition: none; }
.katalog-flip .stf__wrapper { margin: 0 auto; }
/* Sadece flipbook'un altinda beyaz zemin — sayfa kalkarken arkasi koyu modal
   yerine beyaz gozuksun. Ic katmanlara dokunmuyoruz — animasyon dogru calissin */
.katalog-flip {
  background-color: #fff;
}
.katalog-flip .page {
  background: #fff;
  overflow: hidden;
}
.katalog-flip .page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.katalog-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  pointer-events: none;
}
.katalog-modal.is-ready .katalog-loading { display: none; }
body.katalog-open { overflow: hidden; }

/* ----- pb-6: BLOG — off-white zemin, 3 yazi karti ----- */
.pb-6 {
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vh, 120px) 0;
}
.pb-6-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
}
.pb-6 .section-head {
  margin-bottom: clamp(40px, 5vh, 64px);
  max-width: 720px;
}
.pb-6 .section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.pb-6 .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--charcoal);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  text-decoration: none;
  color: var(--charcoal);
  background: var(--white);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-card-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 24px 26px 28px; }
.blog-date {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600, #555);
  margin-bottom: 14px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s ease, color 0.2s ease;
}
.blog-card:hover .blog-read-more { gap: 14px; color: var(--primary-dark, #2a2a29); }

/* Blog kart artik <button> — varsayilan stil temizligi */
button.blog-card {
  border: none;
  font-family: inherit;
  text-align: left;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

/* ============ BLOG MODAL — popup icinde yazi ============ */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.blog-modal.is-open { display: block; }
.blog-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
}
.blog-modal-inner {
  position: absolute;
  top: 40px; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 880px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: blogModalIn 0.32s cubic-bezier(0.2,0.7,0.3,1);
}
@keyframes blogModalIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.blog-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 44px; height: 44px;
  border: none;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blog-modal-close:hover { background: rgba(0,0,0,0.85); transform: scale(1.06); }
.blog-modal-content {
  overflow-y: auto;
  height: 100%;
  scrollbar-width: thin;
}
.blog-modal-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-modal-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.blog-modal-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.85) 100%);
}
.blog-modal-hero-inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 32px;
  color: var(--white);
  z-index: 2;
}
.blog-modal-hero-inner .article-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.blog-modal-hero-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 10px;
  max-width: 90%;
}
.blog-modal-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.blog-modal-body {
  padding: 48px 56px;
}
.blog-modal-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-500, #444);
  margin-bottom: 18px;
}
.blog-modal-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.blog-modal-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 24px 0 10px;
}
.blog-modal-body strong { color: var(--charcoal); font-weight: 600; }
.blog-modal-body ul { padding-left: 20px; margin-bottom: 18px; }
.blog-modal-body ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-500, #444);
  margin-bottom: 8px;
}
.blog-modal-body .article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 13px;
}
.blog-modal-body .article-table th,
.blog-modal-body .article-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-200, #ddd);
  text-align: left;
}
.blog-modal-body .article-table th {
  background: var(--gray-100, #eee);
  font-weight: 500;
  color: var(--charcoal);
}
.blog-modal-body .article-cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 32px 24px;
  margin: 40px -24px -28px;
  text-align: center;
}
.blog-modal-body .article-cta h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-modal-body .article-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  margin-bottom: 20px;
}
.blog-modal-body .article-cta .btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.blog-modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .blog-modal-inner { top: 0; bottom: 0; width: 100%; }
  .blog-modal-body { padding: 24px 18px; }
  .blog-modal-body .article-cta { margin: 32px -18px -24px; }
}
.pb-6-cta { margin-top: 32px; text-align: right; }

/* ----- pb-7: ILETISIM + footer info — su yesili/turkuvaz gradient ----- */
.pb-7 {
  display: flex;
  align-items: stretch;
  padding: clamp(60px, 8vh, 100px) 0 0;
}
.pb-7-inner {
  width: 100%;
  padding: 0 clamp(40px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  flex: 1;
}
.contact-info .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
}
.contact-intro {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 520px;
}
.contact-list {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  color: var(--white);
  font-size: 30px;
  line-height: 1.45;
}
.contact-item i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 28px;
  flex-shrink: 0;
}
.contact-item span {
  display: block;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.contact-social {
  display: flex;
  gap: 22px;
  align-items: center;
}
.contact-social a {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 56px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.contact-social a:hover { transform: translateY(-4px) scale(1.05); filter: brightness(1.1); }
/* Instagram: orijinal radial gradient brand renkleri */
.contact-social a[aria-label="Instagram"] {
  background:
    radial-gradient(circle at 30% 110%,
      #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
/* WhatsApp: brand yesili */
.contact-social a[aria-label="WhatsApp"] {
  background: #25D366;
}
.contact-form {
  background: rgba(255,255,255,0.95);
  padding: 36px 32px;
  display: grid;
  gap: 16px;
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600, #555);
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 1px solid var(--charcoal); }
.contact-form button {
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  transition: background 0.3s ease;
}
.contact-form button:hover { background: #000; }
.pb-7-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

/* Responsive — yeni bolumler icin */
@media (max-width: 992px) {
  .intro-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .intro-left, .intro-right { text-align: center; justify-self: center; }
  .intro-spacer { min-height: 220px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .ekatalog-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 576px) {
  .projects-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
/* Sayfa-blok zemin renkleri — yeni 7-bolum yapisina gore atanmis */
.intro-block { background: transparent; color: var(--white); }
/* Anasayfa section a/b/a/b/a/b deseni
   1.Hizmetler(a) 2.E-Katalog(b) 3.Projeler(a) 4.Blog(b) 5.Hakkımızda(a) 6.S.S.S.(b)
   a = charcoal + off-white text   |   b = primary + white text */
.pb-1 { background: var(--charcoal); color: var(--off-white); }  /* Hakkımızda — a */
.pb-2 { background: var(--charcoal); color: var(--off-white); }  /* Hizmetler — a */
.pb-3 { background: var(--charcoal); color: var(--off-white); }  /* Projeler — a */
.pb-4 { background: var(--gray-100); color: var(--charcoal); }
.pb-5 { background: var(--primary);  color: var(--white); }      /* E-Katalog — b */
.pb-6 { background: var(--primary);  color: var(--white); }      /* Blog — b */
/* pb-7 ILETISIM — su yesili/turkuvaz gradient, slider arkadan gorunur */
.pb-7 {
  background: linear-gradient(135deg,
    rgba(120, 205, 175, 0.55) 0%,
    rgba(64, 200, 200, 0.55) 100%);
}
.hero-simple-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
/* Slider — her slide bir frame: arka katmanda blurli ayni gorsel (cerceveyi doldurur),
   on katmanda gorselin tamami contain ile gosterilir. Boylece dikey/kare gorseller
   kirpilmadan, kenarlarda bos siyah birakilmadan yerlesir. */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: -8%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(36px) brightness(0.55) saturate(1.1);
  transform: scale(1.08);
  z-index: 0;
}
.hero-slide-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-simple-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at center,
      rgba(0,0,0,0.50) 0%,
      rgba(0,0,0,0.25) 55%,
      rgba(0,0,0,0)    100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.10) 28%,
      rgba(0,0,0,0.10) 60%,
      rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-simple-content {
  position: absolute;
  left: clamp(40px, 6vw, 120px);
  right: clamp(40px, 6vw, 120px);
  bottom: clamp(60px, 8vh, 110px);
  z-index: 3;
  color: var(--white);
  text-align: left;
  max-width: 680px;
  transition: opacity 0.45s ease, transform 0.5s ease;
}

/* Hero icerigi tam ekran ortasinda — Hayallerinizin Evini Insa Ediyoruz */
.hero-simple-content.hero-content-center {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: none;
  padding: 0 24px;
  pointer-events: none;
}
.hero-content-center > * { pointer-events: auto; }
.hero-content-center .hero-simple-title {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 18px;
}
.hero-content-center .hero-simple-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero-content-center .hero-simple-sub {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 880px;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.65;
  font-weight: 400;
}

/* Hero proje surec akisi — minimalist, etkilemeden alt satir */
.hero-process {
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: var(--font-heading);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  max-width: 760px;
}
.hero-process-sep {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.28);
  display: inline-block;
  flex-shrink: 0;
}
.hero-process > span {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero-process { gap: 8px 10px; }
  .hero-process-sep { width: 14px; }
}
.hero-content-center .hero-btn-row {
  justify-content: center;
}

/* Hero ortasinda yari saydam logo damgasi — navbar ile altyazi arasindaki bos alana
   flex ile sigdirilir, ekran boyutu degisse de tasmaz, her tarafta nefes payi kalir */
.hero-watermark-frame {
  position: absolute;
  top: 140px;     /* navbar (72px) + nefes payi */
  bottom: 240px;  /* baslik+altyazi alani + nefes payi */
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-watermark {
  display: block;
  width: auto;
  height: auto;
  max-width: 720px;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.07;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 900px) {
  .hero-watermark-frame {
    top: 88px;        /* mobil: topbar gizli, navbar 64px + 24px nefes */
    bottom: 266px;    /* mobil yazi alani + content yuksekligi + nefes */
  }
  .hero-watermark {
    max-width: 380px;
    opacity: 0.07;
  }
}
/* Scroll baslayinca yazi soner; tekrar en uste donunce geri gelir */
.hero-simple-content.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

/* ============================================
   HERO CTA — Hep alt koselerde. Default buyuk, scroll > 30 kucuk dock.
   Konum degismez, sadece boyut kuculur. Hep onde (z-index 9999)
   ============================================ */
.hero-cta-group {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  padding: 22px 28px;
  pointer-events: none;
  transition: padding 0.45s ease;
}
/* Scroll baslayinca padding azalir, butonlar kosherlere biraz daha yapisir */
.hero-cta-group.docked {
  padding: 18px 22px;
}
/* Footer ekrana girince floating CTA butonlari soner — footer yazilari onde kalsin */
.hero-cta-group {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hero-cta-group.is-faded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: var(--white);
  pointer-events: auto;
  transition: gap 0.45s ease, transform 0.3s ease;
}
.hero-cta:hover { transform: translateY(-6px); }
.hero-cta-group.docked .hero-cta { gap: 8px; }

.hero-cta-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  backdrop-filter: blur(10px);
  transition:
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    font-size 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-width 0.45s ease,
    background 0.3s ease,
    transform 0.3s ease;
}
/* Docked halde daire 56px, ikon 22px */
.hero-cta-group.docked .hero-cta-circle {
  width: 56px;
  height: 56px;
  font-size: 22px;
  border-width: 1.5px;
}
.hero-cta:hover .hero-cta-circle {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.06);
}

/* Siyan neon halka — 4s sinus nefes, hic sonmeden yumusakca siser */
.hero-cta-left .hero-cta-circle {
  border-color: rgba(0, 229, 255, 0.7);
  animation: circleNeonCyan 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes circleNeonCyan {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(0, 229, 255, 0.38),
      0 0 28px rgba(0, 229, 255, 0.2),
      0 0 52px rgba(0, 229, 255, 0.08),
      inset 0 0 12px rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.65);
  }
  50% {
    box-shadow:
      0 0 24px rgba(0, 229, 255, 0.7),
      0 0 52px rgba(0, 229, 255, 0.4),
      0 0 86px rgba(0, 229, 255, 0.18),
      inset 0 0 20px rgba(0, 229, 255, 0.26);
    border-color: rgba(0, 229, 255, 0.98);
  }
}

/* Instagram degrade halka */
.hero-cta-instagram .hero-cta-circle {
  border-color: rgba(220, 39, 67, 0.7);
  color: #dc2743;
  animation: circleNeonMagenta 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes circleNeonMagenta {
  0%, 100% { box-shadow: 0 0 10px rgba(220,39,67,0.3), inset 0 0 8px rgba(220,39,67,0.08); }
  50%       { box-shadow: 0 0 22px rgba(220,39,67,0.55), inset 0 0 16px rgba(220,39,67,0.14); }
}

/* Yesil neon halka — WhatsApp (ikon da resmi WhatsApp yesili) */
.hero-cta-right .hero-cta-circle {
  border-color: rgba(37, 211, 102, 0.7);
  color: #25D366; /* WhatsApp brand green — ikonun kendisi */
  animation: circleNeonGreen 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
@keyframes circleNeonGreen {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(37, 211, 102, 0.38),
      0 0 28px rgba(37, 211, 102, 0.2),
      0 0 52px rgba(37, 211, 102, 0.08),
      inset 0 0 12px rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.65);
  }
  50% {
    box-shadow:
      0 0 24px rgba(37, 211, 102, 0.7),
      0 0 52px rgba(37, 211, 102, 0.4),
      0 0 86px rgba(37, 211, 102, 0.18),
      inset 0 0 20px rgba(37, 211, 102, 0.26);
    border-color: rgba(37, 211, 102, 0.98);
  }
}

.hero-cta-left:hover .hero-cta-circle,
.hero-cta-right:hover .hero-cta-circle {
  animation-duration: 2.6s;
}

.hero-cta-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transition: font-size 0.45s ease, letter-spacing 0.45s ease;
}
.hero-cta-group.docked .hero-cta-text {
  font-size: 10px;
  letter-spacing: 2px;
}

/* (Neon cizgi kaldirildi — sadece daire etrafi glow) */
.hero-simple-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
}
.hero-simple-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: none;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65), 0 1px 4px rgba(0,0,0,0.55);
}
.hero-simple-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.85);
  max-width: 520px;
  margin: 18px 0 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  white-space: normal;
}
.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: var(--ral-2005);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.hero-cta-btn:hover {
  background: #c83800;
  transform: translateY(-2px);
  color: var(--white);
}
.hero-cta-secondary {
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.80);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-cta-whatsapp {
  background: #1db954;
  border: 2px solid transparent;
  color: var(--white);
}
.hero-cta-whatsapp:hover {
  background: #17a347;
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================================
   STATEMENT BLOCK — kisa ortalanmis manifesto + CTA
   ============================================ */
.statement-block {
  width: 100%;
  padding: 180px 120px;
  background: var(--off-white);
  color: var(--charcoal);
  display: flex;
  justify-content: center;
  text-align: center;
}
.statement-inner {
  max-width: 1080px;
  width: 100%;
}
.statement-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 36px;
}
.statement-h2 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.statement-h2 em {
  font-style: normal;
  color: var(--gray-400);
}
.statement-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto 48px;
}
.statement-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  transition: all 0.3s ease;
}
.statement-link span { transition: transform 0.3s ease; }
.statement-link:hover { background: var(--charcoal); color: var(--off-white); }
.statement-link:hover span { transform: translateX(6px); }

/* ============================================
   TRIPLE BLOCK — Hakkimizda | Vizyon | Misyon (3 kolon)
   ============================================ */
.triple-block {
  width: 100%;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
  color: var(--charcoal);
  border-top: 1px solid var(--gray-200);
}
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  gap: 80px;
}
.triple-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.triple-col .eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.triple-col h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.triple-col p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.col-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.3s ease, transform 0.3s ease;
}
.col-link:hover { transform: translateX(4px); color: var(--primary-light); }

/* ============================================
   CATALOG SHOWCASE — 3 kolon kart grid
   ============================================ */
.catalog-showcase {
  width: 100%;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--off-white);
}
.showcase-head {
  max-width: 1400px;
  margin: 0 auto 72px;
  padding: 0 80px;
}
.showcase-head .eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.showcase-head h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  color: var(--charcoal);
  transition: transform 0.4s ease;
}
.catalog-card:hover { transform: translateY(-4px); }
.catalog-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-200);
  margin-bottom: 20px;
}
.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
}
.catalog-card:hover .catalog-card-img img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.catalog-card-info h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.catalog-card-meta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.showcase-footer {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 80px;
  text-align: center;
}

@media (max-width: 900px) {
  .triple-grid { grid-template-columns: 1fr; gap: 48px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TOPIC LINKS — 6 konu buton grid'i
   ============================================ */
.topic-links {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--off-white);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  margin-top: var(--space-lg);
  border: 2px solid var(--gray-200);
}
.topic-btn {
  background: var(--white);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 220px;
  transition: background 0.4s ease, color 0.4s ease;
  color: var(--charcoal);
}
.topic-btn:hover {
  background: var(--charcoal);
  color: var(--white);
}
.topic-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray-400);
  transition: color 0.4s ease;
}
.topic-btn:hover .topic-num { color: rgba(255,255,255,0.55); }
.topic-btn h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0 0;
  line-height: 1.15;
}
.topic-arrow {
  font-size: 28px;
  align-self: flex-end;
  transition: transform 0.4s ease;
}
.topic-btn:hover .topic-arrow { transform: translateX(10px); }

@media (max-width: 900px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .topic-grid { grid-template-columns: 1fr; }
  .fullpage-split { grid-template-columns: 1fr; }
  .fullpage-split .split-col { min-height: 80vh; }
}

/* ============ (LEGACY) .hero — eski markup icin geriye donuk ============ */
.hero {
  position: relative;
  height: 50vh;
  margin-top: 120px; /* navbar + logo yuksekligi kadar bosluk */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 12s ease;
}
.hero:hover .hero-media img { transform: scale(1.04); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; width: 100%;
  margin: 0 auto;
  padding: 0 40px var(--space-2xl);
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  max-width: 900px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.7);
}
.hero-line {
  width: 80px; height: 2px;
  background: rgba(255,255,255,0.4);
  margin: var(--space-lg) 0;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* Scroll Indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.scroll-hint span {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-hint .line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============ PAGE HERO — Alt sayfalar icin ortak ============ */
.page-hero {
  background: var(--black);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
.page-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--space-2xl) 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-light { background: var(--off-white); }

/* Section Header — Left aligned (KAAN style) */
.section-head {
  margin-bottom: var(--space-xl);
}
.section-head .eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-dark .section-head h2 { color: var(--white); }
.section-head p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.8;
}

/* ============ PROJECT GRID — KAAN Style ============ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.project-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
}
.project-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.project-item:hover img { transform: scale(1.06); }
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.project-item:hover .project-info {
  opacity: 1;
  transform: translateY(0);
}
.project-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.project-info span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
/* Featured — full width */
.project-item.featured { grid-column: span 2; aspect-ratio: 21/9; }

/* ============ SERVICES — Zigzag ============ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.service-block:nth-child(even) .service-img { order: -1; }
.service-text {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-num {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gray-300);
  margin-bottom: var(--space-md);
}
.service-text h3 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-text p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}
.service-features {
  list-style: none;
  margin-bottom: var(--space-md);
}
.service-features li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '—';
  color: var(--gray-300);
}
.service-img {
  overflow: hidden;
  min-height: 400px;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-block:hover .service-img img { transform: scale(1.04); }

/* ============ STATEMENT / MISSION — Myrtha Style ============ */
.statement {
  padding: var(--space-2xl) 0;
  text-align: center;
}
.statement h2 {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}
.statement h2 em {
  font-style: italic;
  color: var(--primary-light);
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat {
  background: var(--white);
  padding: var(--space-lg);
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ============ CTA — Minimal ============ */
.cta {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: var(--charcoal);
}
.cta h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}
.cta-phone {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-lg);
  letter-spacing: 3px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid;
  transition: var(--transition);
  cursor: pointer;
  background: none;
}
.btn-primary {
  border-color: var(--white);
  color: var(--white);
}
.btn-primary:hover { background: var(--white); color: var(--black); }
.btn-dark {
  border-color: var(--black);
  color: var(--black);
}
.btn-dark:hover { background: var(--black); color: var(--white); }
.btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}
.btn-whatsapp:hover { background: #25D366; color: var(--white); }

/* ============ BLOG — Clean ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-item { transition: var(--transition); }
.blog-item:hover { transform: translateY(-4px); }
.blog-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 20px;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-item:hover .blog-img img { transform: scale(1.05); }
.blog-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.blog-item h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.blog-item p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============ FOOTER — Minimal ============ */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: var(--space-xl);
}
.footer h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-200);
  margin-bottom: 24px;
}
.footer p { font-size: 15px; line-height: 1.85; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--gray-500); }
.footer-links a:hover { color: var(--white); }
.footer-contact { font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gray-400); width: 16px; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
  font-size: 14px;
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray-500);
  letter-spacing: 1px;
}

/* ============ FLOATING BUTTONS ============ */
.float-whatsapp {
  position: fixed;
  bottom: clamp(16px, 1.25vw, 24px);
  right: clamp(16px, 1.25vw, 24px);
  z-index: 999;
  width: clamp(48px, 2.92vw, 56px);
  height: clamp(48px, 2.92vw, 56px);
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: clamp(20px, 1.25vw, 24px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  opacity: 0; transform: scale(0);
  text-decoration: none;
}
.float-whatsapp.visible { opacity: 1; transform: scale(1); }
.float-whatsapp:hover { transform: scale(1.1) !important; }

.float-instagram {
  position: fixed;
  bottom: calc(clamp(16px, 1.25vw, 24px) + clamp(48px, 2.92vw, 56px) + 10px);
  right: clamp(16px, 1.25vw, 24px);
  z-index: 998;
  width: clamp(48px, 2.92vw, 56px);
  height: clamp(48px, 2.92vw, 56px);
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: clamp(20px, 1.25vw, 24px);
  box-shadow: 0 4px 20px rgba(220,39,67,0.35);
  transition: var(--transition);
  opacity: 0; transform: scale(0);
  text-decoration: none;
}
.float-instagram.visible { opacity: 1; transform: scale(1); }
.float-instagram:hover { transform: scale(1.1) !important; }

/* ============ HORIZONTAL SCROLL GALLERY ============ */
.hscroll-section {
  position: relative;
  overflow: visible;
  /* height JS tarafindan ayarlanir */
}
.hscroll-sticky {
  position: relative;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hscroll-track {
  display: flex;
  gap: 16px;
  padding: 0 40px;
  padding-top: 80px; /* baslik icin ust bosluk */
  will-change: transform;
  transform: translateX(0);
}
.hscroll-item {
  flex-shrink: 0;
  width: min(500px, 80vw);
  height: 60vh;
  overflow: hidden;
  position: relative;
}
.hscroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hscroll-item:hover img {
  transform: scale(1.05);
}
.hscroll-item .hscroll-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.hscroll-item:hover .hscroll-caption {
  opacity: 1;
  transform: translateY(0);
}
.hscroll-caption h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hscroll-caption span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
/* Section header for gallery */
.hscroll-header {
  position: absolute;
  top: 16px;
  left: 40px;
  z-index: 2;
}
.hscroll-header .eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.hscroll-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Progress bar */
.hscroll-progress {
  position: absolute;
  bottom: 24px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--gray-200);
  z-index: 2;
}
.hscroll-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .hscroll-item { width: 300px; height: 50vh; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .project-grid { grid-template-columns: 1fr; }
  .project-item.featured { grid-column: span 1; aspect-ratio: 16/10; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-img { order: 0; }
  .service-img { min-height: 300px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
}
@media (max-width: 576px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px var(--space-xl); }
  .page-hero-inner { padding: 0 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============ MOBIL OZEL DUZELTMELER ============ */
@media (max-width: 900px) {
  /* Nav: kucuk barda sabit kalsin, hover ile buyumesin */
  .nav,
  .nav:hover,
  .nav-bar,
  .nav:hover .nav-bar,
  .nav-hit:hover ~ .nav-bar,
  .nav-bar:hover,
  .nav-logo:hover ~ .nav-bar { height: 64px !important; }
  .nav-logo,
  .nav:hover .nav-logo { height: auto !important; justify-content: center !important; }
  .nav-logo-mark,
  .nav:hover .nav-logo-mark { height: 32px !important; }
  .nav-logo-text,
  .nav:hover .nav-logo-text { display: none !important; }
  .nav-hit { display: none !important; }
  .nav-bar,
  .nav-inner {
    padding: 0 16px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  /* Scroll'da koyulaşma — desktop'taki gibi */
  .nav.scrolled .nav-bar,
  .nav.scrolled .nav-inner {
    background: rgba(10, 10, 10, 0.92) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
  /* Hamburger çubukları beyaz — hero üzerinde görünür */
  .nav-toggle span { background: #ffffff !important; }
  /* Marka yazısını mobil 400px+ ekranlarda göster (sub gizli kalır) */
  .nav-brand { display: flex !important; }
  .nav-brand-title { color: #ffffff !important; font-size: 14px !important; letter-spacing: 1.5px !important; }
  .nav-brand-sub { display: none !important; }
  /* Drawer (açılır menü) zaten kendi koyu arka planını koruyor */
  /* hamburger sag tarafta, logoyla ayrilmis */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    z-index: 5;
    position: relative;
  }
  /* Acilir menu drawer */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10,10,10,0.97);
    padding: 16px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.55);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    pointer-events: none;
    z-index: 4;
  }
  body.nav-open .nav-links {
    display: flex !important;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 18px !important;
    padding: 16px 24px !important;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a::after { display: none !important; }
  /* Mobil menude nav-cta: desktop buton gorunumu sifirlanir, diger linklerle ayni */
  .nav-links a.nav-cta {
    background: transparent;
    padding: 16px 24px;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: normal;
  }
  .nav-links a.nav-cta:hover { background: transparent; color: var(--white); }
  .nav-links a.nav-cta::before,
  .nav-links a.nav-cta::after { display: none; content: none; }
  /* Mobile drawer'da Ürünler CTA: sarı buton, en üstte */
  .nav-links li:has(.nav-cta-products) {
    margin: 12px 16px 16px !important;
    order: -1;
  }
  .nav-links a.nav-cta-products {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    background: #FFC107 !important;
    color: #1a1a1a !important;
    border: 2px solid #FFC107 !important;
    border-bottom: 2px solid #FFC107 !important;
    padding: 16px 22px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 1.6px !important;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.35) !important;
    gap: 12px !important;
  }
  .nav-cta-products-icon { font-size: 0.85em; }
  /* hamburger -> X animasyonu */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  /* Iletisim bilgileri: mobilde okunabilir boyutlar */
  .contact-item { font-size: 16px; gap: 14px; }
  .contact-item span { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 2px; }
  .contact-item i { width: 40px; height: 40px; font-size: 16px; }
  .contact-info h2 { font-size: 38px; }
  .contact-info .contact-intro { font-size: 14px; line-height: 1.6; }

  /* Sosyal medya butonlari mobilde makul boyut */
  .contact-social { gap: 16px; flex-wrap: wrap; }
  .contact-social a { width: 64px; height: 64px; font-size: 28px; }

  /* Mobil hero overlay */
  .hero-simple-overlay {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0)    35%,
        rgba(0,0,0,0)    55%,
        rgba(0,0,0,0.50) 100%) !important;
  }
  /* Mobilde hero padding duzelt */
  .hero-simple {
    padding: 0 0 80px 24px !important;
  }
  .hero-simple-content {
    max-width: calc(100vw - 48px);
  }
  .hero-simple-title {
    font-size: 30px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.75);
  }
  .hero-simple-sub {
    font-size: 13px !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    max-width: 100% !important;
  }
  .hero-btn-row { margin-top: 22px !important; gap: 8px !important; }
  .hero-cta-btn {
    font-size: 12px !important;
    padding: 11px 22px !important;
  }

  /* Floating WhatsApp butonu mobilde kucult */
  .hero-cta-circle,
  .hero-cta-group.docked .hero-cta-circle { width: 48px !important; height: 48px !important; font-size: 20px !important; }
  .hero-cta-text { display: none !important; }
  .hero-cta-group {
    padding: 12px 16px !important;
    pointer-events: none;
  }
  .hero-cta-group .hero-cta { pointer-events: auto; }
  .hero-cta-group.docked { padding: 12px 16px !important; }

  /* Iletisim formu mobilde rahat */
  .contact-form { padding: 24px 18px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .pb-7-inner { padding: 0 18px !important; }
}

@media (max-width: 560px) {
  /* daha sik mobilde iletisim daha da kucuk */
  .contact-item { font-size: 15px; }
  .contact-item span { font-size: 10px; }
  .contact-info { word-break: break-word; }
  .contact-social a { width: 58px; height: 58px; font-size: 26px; }

  /* hero baslik agresif kucult */
  .hero-simple-title { font-size: 22px !important; letter-spacing: 0.3px !important; }
  .hero-simple-sub { font-size: 12px !important; }
  .hero-simple-content { padding: 0; max-width: calc(100vw - 40px); }
}

/* Vizyon/Misyon — Hakkimizda icinde her cihazda gozukur (intro-block desktop'ta da ek olarak gosterilir) */
.intro-logo-mobile { display: none; }
.vm-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
  text-align: left;
}
.vm-mobile .vm-card {
  border-left: 3px solid var(--primary);
  padding: 18px 0 18px 22px;
}
.vm-mobile .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.vm-mobile h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.vm-mobile p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600, #444);
}
@media (max-width: 720px) {
  .vm-mobile { grid-template-columns: 1fr; gap: 8px; margin-top: 32px; }
  .vm-mobile .vm-card { padding: 16px 0 16px 16px; margin-top: 16px; }
}

@media (max-width: 900px) {
  /* hero overlay'i hafiflet — slider gorseli net gozuksun */
  .hero-simple-overlay {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.3) 60%,
      rgba(0,0,0,0.5) 100%) !important;
  }
  /* Slider mobilde: tum gorseller uc uca birlestirilip tek serit halinde
     surekli sola dogru kayar (marquee). Aralarinda gecis efekti yok. */
  .hero-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    height: 100% !important;
    animation: heroMarquee 90s linear infinite !important;
    will-change: transform;
  }
  .hero-slide {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
    overflow: visible !important;
  }
  /* Mobilde bulanik fon yok — yatay/dikey gorseller dogal en-boy oraninda yan yana akar */
  .hero-slide-bg { display: none !important; }
  .hero-slide-fg {
    position: relative !important;
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  @keyframes heroMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  /* hero baslik metin golgesi guclu kalsin */
  .hero-simple-title {
    text-shadow: 0 2px 14px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.95) !important;
  }
  .hero-simple-sub {
    text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.95) !important;
  }

  /* Intro: mobilde slider seffaf gozuksun, ortada yari saydam logo */
  .intro-block {
    background: transparent !important;
    min-height: 100vh !important;
    padding: 0 !important;
    position: relative;
  }
  .intro-content { display: none !important; }
  /* SVG cutout (zemini koyu yapan) mobilde kapali — zemin seffaf */
  .intro-cutout { display: none !important; }
  /* Yari saydam logo */
  .intro-logo-mobile {
    display: flex !important;
    position: absolute;
    inset: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .intro-logo-mobile img {
    width: 70vw;
    max-width: 420px;
    opacity: 0.45;
    transform: translateY(-30%);
    filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
  }

  /* Hakkimizda icindeki vizyon/misyon bloku — mobilde tek sutun (yukaridaki @media 720px ile yonetiliyor) */
}


/* ============================================
   URUNLER SAYFASI — Listeleme (sidebar + grid)
   ============================================ */

/* Hero banner */
.urunler-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: url('../images/services/hafif-celik.jpg') center/cover no-repeat;
  margin-top: 0;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 120px);
  color: var(--white);
  overflow: hidden;
}
.urunler-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.30) 100%);
  z-index: 1;
}
.urunler-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.urunler-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 0 10px;
  border-left: 4px solid var(--primary);
  padding-left: 18px;
}
.urunler-hero-content p {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255,255,255,0.88);
  margin: 0 0 14px;
  padding-left: 22px;
}
.urunler-hero-content p strong { color: var(--white); }
.urunler-breadcrumb {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.urunler-breadcrumb a { color: rgba(255,255,255,0.78); transition: color 0.2s ease; }
.urunler-breadcrumb a:hover { color: var(--white); }
.urunler-breadcrumb .sep { margin: 0 10px; color: var(--primary); }
.urunler-breadcrumb span:last-child { color: var(--white); font-weight: 600; }

/* Layout: sidebar + grid */
.urunler-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px clamp(24px, 4vw, 60px) 80px;
  align-items: start;
}

.urunler-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.urunler-sidebar-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-700);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--primary);
  display: flex; align-items: center; gap: 10px;
}
.urunler-sidebar-title i { color: var(--primary); }
.urunler-cat-list { display: flex; flex-direction: column; gap: 4px; }
.urunler-cat-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.5px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.urunler-cat-btn:hover {
  background: var(--gray-100);
  color: var(--black);
}
.urunler-cat-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-left-color: var(--primary);
}
.urunler-cat-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,0,0,0.08);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center;
}
.urunler-cat-btn.active .urunler-cat-count {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.urunler-sidebar-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.urunler-sidebar-cta p {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1db954;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn-whatsapp-sm:hover { background: #17a347; color: var(--white); }

/* Urun grid */
.urunler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.urun-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.urun-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.urun-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}
.urun-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.urun-card:hover .urun-card-img img { transform: scale(1.06); }
.urun-m2-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  z-index: 2;
}
.urun-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.urun-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  letter-spacing: 1px;
}
.urun-card-tag {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 10px;
}
.urun-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  transition: gap 0.2s ease;
}
.urun-card:hover .urun-card-cta { gap: 14px; }

.urunler-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.urunler-empty i {
  font-size: 36px;
  color: var(--gray-300);
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .urunler-layout { grid-template-columns: 240px 1fr; gap: 24px; }
  .urunler-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .urunler-layout { grid-template-columns: 1fr; padding: 32px 16px 60px; }
  .urunler-sidebar { position: static; }
  .urunler-grid { grid-template-columns: 1fr; gap: 16px; }
  .urunler-breadcrumb { position: static; transform: none; margin-top: 14px; padding-left: 22px; }
  .urunler-hero-content h1 { font-size: 28px; letter-spacing: 2px; }
}

/* ============================================
   URUN DETAY SAYFASI — Galeri + Tablar
   ============================================ */

.urun-detay-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px clamp(24px, 4vw, 60px) 12px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray-500);
  text-transform: uppercase;
}
.urun-detay-breadcrumb a { color: var(--gray-500); transition: color 0.2s ease; }
.urun-detay-breadcrumb a:hover { color: var(--primary); }
.urun-detay-breadcrumb .sep { margin: 0 8px; color: var(--gray-300); }
.urun-detay-breadcrumb span:last-child { color: var(--charcoal); font-weight: 700; }

.urun-detay-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px) 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.urun-detay-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin: 0;
  flex: 1;
  min-width: 240px;
}
.urun-detay-m2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.5px;
}
.urun-detay-m2 i { color: var(--primary); }
.urun-detay-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.urun-detay-cta:hover { background: #c83800; color: var(--white); transform: translateY(-2px); }

/* Galeri */
.urun-gallery {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.urun-gallery-main {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  overflow: hidden;
}
.urun-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.urun-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.urun-gallery-thumb {
  position: relative;
  aspect-ratio: 16/9;
  padding: 0;
  border: 3px solid transparent;
  background: var(--gray-100);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.urun-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.urun-gallery-thumb:hover { transform: translateY(-2px); }
.urun-gallery-thumb.active {
  border-color: var(--primary);
}

/* Tablar */
.urun-tabs {
  /* Padding kaldirildi — gri arka plan tab dis hizasiyla bire bir oturur (sag/sol tasma yok).
     max-width gallery icerik genisligine esit (1280 - 2*60). */
  width: calc(100% - 2 * clamp(24px, 4vw, 60px));
  max-width: 1160px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-100);
}
.urun-tab {
  padding: 18px 24px;
  background: var(--gray-100);
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gray-500);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.urun-tab:hover { color: var(--charcoal); }
.urun-tab.active {
  background: var(--charcoal);
  color: var(--white);
}

.urun-tab-panels {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.urun-tab-panel { display: none; padding: 36px 0 60px; }
.urun-tab-panel.active { display: block; }
.urun-tab-panel-inner {
  background: var(--white);
  text-align: center;
}
.urun-floorplan {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: block;
}
.urun-floorplan-cap {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gray-700);
  border-bottom: 2px solid var(--charcoal);
  display: inline-block;
  padding-bottom: 4px;
}
.urun-applied-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.urun-applied-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.urun-spec-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}
.urun-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-left: 3px solid var(--primary);
}
.urun-spec-list li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
  width: 22px;
  text-align: center;
}
.urun-spec-list li span { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
.urun-spec-list li strong { color: var(--charcoal); }
.urun-spec-note {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
}

.urun-detay-bottom-cta {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 60px clamp(24px, 4vw, 60px);
}
.urun-detay-bottom-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 32px);
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.urun-detay-bottom-cta p {
  color: rgba(255,255,255,0.78);
  margin: 0 0 24px;
}
.urun-detay-bottom-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #1db954;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.urun-detay-bottom-cta .btn:hover { background: #17a347; color: var(--white); }

@media (max-width: 720px) {
  .urun-detay-head { flex-direction: column; align-items: flex-start; }
  .urun-detay-cta { width: 100%; justify-content: center; }
  .urun-tabs { grid-template-columns: 1fr; }
  .urun-tab { padding: 14px; }
  .urun-applied-grid { grid-template-columns: 1fr; }
  .urun-spec-list { grid-template-columns: 1fr; }
  .urun-gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 4px; }
}


/* ============================================
   NAV BRAND — Logo mark + iki satir kurumsal etiket
   ============================================ */
.nav-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  margin-left: 14px;
  pointer-events: none;
}
.nav-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.nav-brand-sub {
  font-family: var(--font-heading);
  font-size: clamp(11px, 0.88vw, 14px);
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.nav.scrolled .nav-brand-title { color: var(--white); }
.nav.scrolled .nav-brand-sub { color: rgba(255,255,255,0.7); }

@media (max-width: 1100px) {
  .nav-brand-sub { display: none; }
}
@media (max-width: 820px) {
  .nav-brand { display: none; }
}

/* ============================================
   URUN FILTRELER — Chip stilleri + reset butonu
   ============================================ */
.urunler-sidebar-title:not(:first-of-type) {
  margin-top: 22px;
}
.urunler-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.urunler-chip {
  padding: 7px 12px;
  background: var(--gray-100);
  border: 1px solid transparent;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.urunler-chip:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--charcoal);
}
.urunler-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.urunler-filter-reset {
  margin-top: 18px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 1px dashed var(--gray-300);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-500);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.urunler-filter-reset:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  border-style: solid;
}
.urunler-filter-reset i { margin-right: 6px; }

/* ============================================
   URUN GRID — buyuk kartlar (2 sutun desktop)
   ============================================ */
.urunler-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.urunler-layout {
  grid-template-columns: 300px 1fr;
  gap: 36px;
}
.urunler-sidebar { padding: 28px; }

.urun-card-img { aspect-ratio: 16/9; }
.urun-card-body { padding: 24px 28px 26px; gap: 8px; }
.urun-card-body h3 {
  font-size: 28px;
  letter-spacing: 1.5px;
}
.urun-card-tag {
  font-size: 14px;
  margin: 0 0 14px;
}
.urun-card-cta {
  font-size: 13px;
  letter-spacing: 1.6px;
}
.urun-m2-badge {
  font-size: 14px;
  padding: 8px 14px;
  letter-spacing: 1.5px;
}

@media (max-width: 1280px) {
  .urunler-layout { grid-template-columns: 270px 1fr; gap: 28px; }
  .urunler-grid { gap: 22px; }
  .urun-card-body { padding: 20px 22px; }
  .urun-card-body h3 { font-size: 24px; }
}
@media (max-width: 980px) {
  .urunler-layout { grid-template-columns: 240px 1fr; gap: 22px; }
}
@media (max-width: 820px) {
  .urunler-layout { grid-template-columns: 1fr; padding: 28px 16px 60px; }
  .urunler-sidebar { position: static; padding: 22px; }
  .urunler-grid { grid-template-columns: 1fr; gap: 18px; }
  .urun-card-body h3 { font-size: 22px; }
}

/* ============================================
   URUN DETAY HERO — koyu banner, navbar uzerine oturur
   ============================================ */
.urun-detay-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: url('../images/services/hafif-celik.jpg') center/cover no-repeat;
  /* padding-top: navbar (3.75vw / min 56px) clearance + nefes payı */
  padding: clamp(100px, calc(3.75vw + 32px), 140px) clamp(24px, 6vw, 120px) clamp(36px, 5vw, 60px);
  color: var(--white);
  overflow: hidden;
}
.urun-detay-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.30) 100%);
  z-index: 1;
  pointer-events: none;
}
.urun-detay-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hero icindeki breadcrumb — beyaz, koyu uzerinde */
.urun-detay-hero .urun-detay-breadcrumb {
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.78);
}
.urun-detay-hero .urun-detay-breadcrumb a { color: rgba(255,255,255,0.78); }
.urun-detay-hero .urun-detay-breadcrumb a:hover { color: var(--white); }
.urun-detay-hero .urun-detay-breadcrumb .sep { color: var(--primary); }
.urun-detay-hero .urun-detay-breadcrumb span:last-child { color: var(--white); font-weight: 700; }

/* Hero icindeki baslik — buyuk, beyaz */
.urun-detay-hero .urun-detay-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  margin: 0;
  border-left: 4px solid var(--primary);
  padding-left: 18px;
  line-height: 1.1;
}
.urun-detay-subtitle {
  margin: 0;
  padding-left: 22px;
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}

/* Aksiyon satiri (urun kodu + Teklif Iste) — hero altinda, acik bg */
.urun-detay-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Urun kodu (sol) — sade tipografi, cerceve yok */
.urun-detay-code {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.urun-detay-code-value {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--charcoal);
}
.urun-detay-code-m2 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray-500);
}

@media (max-width: 720px) {
  .urun-detay-hero { min-height: 260px; }
  .urun-detay-head { justify-content: stretch; flex-direction: column; align-items: stretch; }
  .urun-detay-cta { justify-content: center; }
  .urun-detay-code { justify-content: center; text-align: center; }
}

/* ============================================
   URUN DETAY — Geri butonu (hero icinde)
   ============================================ */
.urun-back-btn {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(6px);
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.urun-back-btn:hover {
  background: rgba(255,255,255,0.32);
  border-color: var(--white);
  color: var(--white);
  transform: translateX(-3px);
}

/* ============================================
   MIMARI PLAN — coklu plan grid
   ============================================ */
.urun-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.urun-plan-item {
  margin: 0;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}
.urun-plan-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.urun-plan-item figcaption {
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-700);
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.urun-plan-note {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: 13px;
  font-style: italic;
  color: var(--gray-500);
  text-align: center;
}

/* ============================================
   TEKNIK OZELLIKLER — 2 sutun blok grid
   ============================================ */
.urun-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.urun-tech-block {
  background: var(--off-white);
  padding: 22px 24px;
  border-left: 3px solid var(--primary);
}
.urun-tech-block h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.urun-tech-block h4 i { color: var(--primary); }
.urun-tech-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.urun-tech-block li {
  font-size: 13.5px;
  color: var(--gray-700);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.55;
}
.urun-tech-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* ============================================
   IS KAPSAMI — Firma vs Musteri + dahil olmayanlar
   ============================================ */
.urun-kapsam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.urun-kapsam-col {
  padding: 26px 28px;
  border-radius: 0;
}
.urun-kapsam-firma {
  background: var(--charcoal);
  color: var(--white);
}
.urun-kapsam-firma h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.18); }
.urun-kapsam-firma li { color: rgba(255,255,255,0.92); }
.urun-kapsam-firma li i, .urun-kapsam-firma h4 i { color: #4ade80; }

.urun-kapsam-musteri {
  background: var(--off-white);
  color: var(--charcoal);
}
.urun-kapsam-musteri h4 { color: var(--charcoal); border-bottom-color: var(--gray-200); }
.urun-kapsam-musteri h4 i { color: var(--primary); }

.urun-kapsam-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  display: flex;
  align-items: center;
  gap: 10px;
}
.urun-kapsam-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.urun-kapsam-col li {
  font-size: 13.5px;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.urun-kapsam-col li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
  color: #4ade80;
  font-size: 11px;
}
.urun-kapsam-musteri li::before { color: var(--primary); }

.urun-kapsam-haric {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 26px 28px;
  background: rgba(64, 64, 63, 0.06);
  border-left: 3px solid var(--primary);
  text-align: left;
}
.urun-kapsam-haric h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.urun-kapsam-haric h4 i { color: var(--primary); }
.urun-kapsam-haric ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px;
}
.urun-kapsam-haric li {
  font-size: 13.5px;
  color: var(--gray-700);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.urun-kapsam-haric li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
  color: var(--primary);
  font-size: 12px;
}
.urun-kapsam-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  font-style: italic;
  color: var(--gray-500);
}

/* ============================================
   DIGER MODELLER — Detay sayfasi alt section
   ============================================ */
.diger-modeller {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px clamp(24px, 4vw, 60px) 40px;
}
.diger-modeller-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
}
.diger-modeller-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin: 0;
}
.diger-modeller-all {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.diger-modeller-all:hover { gap: 12px; color: var(--primary); }
.diger-modeller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1024px) {
  .urun-plan-grid, .urun-tech-grid, .urun-kapsam-grid { grid-template-columns: 1fr; }
  .urun-kapsam-haric ul { grid-template-columns: 1fr; }
  .diger-modeller-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .diger-modeller-grid { grid-template-columns: 1fr; }
  .urun-back-btn { font-size: 10px; padding: 7px 12px; }
}

/* ============================================
   ANASAYFA SSS — accordion + opsiyonel YouTube embed
   ============================================ */
.pb-sss {
  /* S.S.S. — b (primary + white text) */
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vh, 110px) clamp(24px, 4vw, 60px);
}
.pb-sss-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.sss-lead {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray-500);
  max-width: 640px;
}
.sss-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sss-item {
  background: var(--off-white);
  border-left: 3px solid var(--gray-200);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.sss-item[open] { border-left-color: var(--ral-2005); background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.sss-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.sss-item summary::-webkit-details-marker { display: none; }
.sss-q {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  flex: 1;
}
.sss-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  color: var(--ral-2005);
  font-size: 12px;
  transition: transform 0.3s ease, background 0.2s ease;
  flex-shrink: 0;
}
.sss-item[open] .sss-icon {
  background: var(--ral-2005);
  color: var(--white);
  transform: rotate(45deg);
}
.sss-a {
  padding: 0 24px 24px;
}
.sss-a p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0 0 12px;
}
.sss-a p strong { color: var(--charcoal); }

/* SSS video — YouTube Shorts embed (9:16 oran) */
.sss-video {
  margin-top: 14px;
  max-width: 320px;
  aspect-ratio: 9/16;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sss-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.sss-video-placeholder {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  padding: 20px;
}
.sss-video-placeholder i {
  font-size: 32px;
  color: var(--gray-300);
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .sss-q { font-size: 14px; }
  .sss-item summary { padding: 16px 18px; }
  .sss-a { padding: 0 18px 20px; }
}

/* ============================================
   URUN KART VIDEO — kapakta loop animasyon (lazy)
   ============================================ */
.urun-card-img-video { background: var(--charcoal); }
.urun-card-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Video zaten hareketli — hover zoom YAPILMIYOR (titreme/flicker engel).
     Hover efekti kart seviyesinde (translateY lift + shadow) zaten var. */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Video kartlarinda kapsayici uzerinde de scale yok */
.urun-card:hover .urun-card-img-video { transform: none; }

/* ============================================
   URUNLER PAGINATION — sayfalama (8 kart/sayfa)
   ============================================ */
.urunler-content {
  display: flex;
  flex-direction: column;
}
.urunler-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 22px 0;
  /* Sayfa degisince scroll buraya — navbar (~72px) + nefes payi */
  scroll-margin-top: 100px;
}
.urunler-pagination:empty { display: none; }
.urunler-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.urunler-pagination button:hover:not(:disabled):not(.urunler-pag-dots) {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.urunler-pagination button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.urunler-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.urunler-pagination .urunler-pag-dots {
  border: none;
  background: transparent;
  cursor: default;
  min-width: 24px;
  padding: 0 4px;
}
.urunler-pagination .urunler-pag-arrow {
  font-size: 12px;
}

/* ============================================
   URUN KART — gorsel placeholder (kaynak yok)
   ============================================ */
.urun-card-img-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200, #e5e5e5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--charcoal);
  opacity: 0.55;
}
.urun-card-img-placeholder i {
  font-size: 42px;
}
.urun-card-placeholder-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
   URUN DETAY — galeri prev/next butonlari + bos durum
   ============================================ */
.urun-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.urun-gallery-nav:hover { background: rgba(0,0,0,0.7); }
.urun-gallery-prev { left: 16px; }
.urun-gallery-next { right: 16px; }
@media (max-width: 768px) {
  .urun-gallery-nav { width: 40px; height: 40px; font-size: 14px; }
  .urun-gallery-prev { left: 8px; }
  .urun-gallery-next { right: 8px; }
}
/* Galeri ana görsel: plan ise contain (kırpılmasın), beyaz arka plan */
.urun-gallery-main img.is-plan {
  object-fit: contain;
  background: var(--white);
}
/* Galeri caption — sol altta küçük kutu, sadece yazıyı saracak kadar */
.urun-gallery-caption {
  position: absolute;
  left: 16px; right: auto; bottom: 16px;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 32px);
  padding: 7px 12px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .urun-gallery-caption { left: 10px; bottom: 10px; font-size: 11px; padding: 6px 10px; }
}
/* Plan thumbnail: arka plan beyaz, contain — küçük "Plan" rozeti */
.urun-gallery-thumb.is-plan { background: var(--white); }
.urun-gallery-thumb.is-plan img { object-fit: contain; }
.urun-gallery-thumb-tag {
  position: absolute;
  top: 4px; left: 4px;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  padding: 3px 6px;
  pointer-events: none;
}

/* ============================================
   URUN DETAY — kat planlari bolumu
   ============================================ */
.urun-plans {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 clamp(24px, 4vw, 60px);
}
.urun-plans-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 20px;
}
.urun-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.urun-plan-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.urun-plan-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--white);
}
.urun-plan-card figcaption {
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gray-100);
  text-align: center;
}

/* ============================================
   BLOG ARTICLE — tek makale sayfası
   ============================================ */
.blog-article {
  background: var(--white);
  padding: clamp(40px, 5vw, 80px) 0;
}
.blog-article-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  font-family: var(--font-primary);
  color: var(--charcoal);
}
.blog-article-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  color: #333;
}
.blog-article-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 40px 0 16px;
  color: var(--charcoal);
  text-transform: uppercase;
}
.blog-article-inner h3 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--charcoal);
}
.blog-article-inner p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  margin: 0 0 16px;
  color: #2c2c2c;
}
.blog-article-inner ul,
.blog-article-inner ol {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  margin: 0 0 20px 24px;
  color: #2c2c2c;
}
.blog-article-inner li { margin-bottom: 8px; }
.blog-article-inner a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.blog-article-inner a:hover { color: #000; }
.blog-article-inner strong { color: var(--charcoal); font-weight: 700; }

.blog-cta-box {
  margin: 40px 0 0;
  padding: 32px;
  background: var(--gray-100);
  border-left: 4px solid var(--primary);
}
.blog-cta-box h3 { margin-top: 0; }
.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.blog-related {
  background: var(--gray-100);
  padding: clamp(40px, 5vw, 70px) 0;
}
.blog-related-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}
.blog-related-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.blog-related-card {
  background: var(--white);
  padding: 24px;
  text-decoration: none;
  color: var(--charcoal);
  border: 1px solid #eaeaea;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blog-related-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 12px;
  line-height: 1.35;
}
.blog-related-card .blog-post-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0;
}
.blog-related-cta {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
}

/* ============================================
   SECTION BG DESEN OVERRIDE — a/b ardisik renk duzeni
   pb-1 (Hakkımızda) ve pb-6 (Blog) ve pb-sss artik koyu zemin — ic textler beyaz
   ============================================ */

/* pb-1 Hakkımızda — heading + paragraph beyaz */
.pb-1 .section-head .eyebrow,
.pb-1 .ab-eyebrow { color: rgba(255,255,255,0.65) !important; }
.pb-1 .section-head h2,
.pb-1 .about-headline,
.pb-1 .about-story h2,
.pb-1 .vm-col h2 { color: var(--white) !important; }
.pb-1 .about-story p,
.pb-1 .vm-col p { color: rgba(255,255,255,0.85) !important; }
.pb-1 .team-overlay h4 { color: var(--white); }
.pb-1 .team-overlay p { color: rgba(255,255,255,0.78); }

/* pb-1 ic container'lari koyu zemine uyumlu (sadece anasayfa;
   pages/hakkimizda.html'de pb-1 yok, oradaki krem tema dokunulmaz) */
.pb-1 .about-header {
  background: transparent !important;
  border-bottom-color: rgba(255,255,255,0.10) !important;
}
.pb-1 .about-team {
  background: transparent !important;  /* charcoal section icinde tek tip koyu zemin */
}
.pb-1 .about-story {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08);
}
.pb-1 .vm-section {
  background: rgba(255,255,255,0.08) !important;  /* iki vm-col arasi ince ayrac */
}
.pb-1 .vm-col {
  background: rgba(255,255,255,0.04) !important;
}
/* Altin aksan cizgileri koyu zeminde de güzel */
.pb-1 .vm-col h2::after { background: #d4a55a !important; }
.pb-1 .about-story::before {
  background: linear-gradient(to bottom, #d4a55a 0%, transparent 100%) !important;
}

/* pb-6 Blog — header beyaz; kartlar zaten beyaz arka planda */
.pb-6 .section-head .eyebrow { color: rgba(255,255,255,0.65) !important; }
.pb-6 .section-head h2 { color: var(--white) !important; }

/* pb-sss S.S.S. — header + accordion */
.pb-sss .section-head .eyebrow { color: rgba(255,255,255,0.7); }
.pb-sss .section-head h2 { color: var(--white); }
.pb-sss .sss-lead { color: rgba(255,255,255,0.78); }
.pb-sss .sss-item {
  background: rgba(255,255,255,0.06);
  border-left-color: rgba(255,255,255,0.18);
}
.pb-sss .sss-item[open] {
  background: rgba(255,255,255,0.10);
  border-left-color: #FFC107;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.pb-sss .sss-q { color: var(--white); }
.pb-sss .sss-a p { color: rgba(255,255,255,0.88); }
.pb-sss .sss-a strong { color: var(--white); }
.pb-sss .sss-icon {
  background: rgba(255,255,255,0.10);
  color: var(--white);
}
.pb-sss .sss-video-placeholder { color: rgba(255,255,255,0.55); }
