/* ================================================================
   Eres – Frontend CSS  (stil.css)
   Tasarım referansı: ekli ekran görüntüsü
   ================================================================ */

/* ── Değişkenler ─────────────────────────────────────────────── */
:root {
  --yesil:       #16a34a;
  --yesil-hover: #15803d;
  --birincil:    #3b82f6;
  --birincil-hover: #2563eb;
  --koyu:        #0f172a;
  --koyu-2:      #1e293b;
  --metin:       #1e293b;
  --metin-2:     #475569;
  --metin-3:     #94a3b8;
  --bg:          #ffffff;
  --bg-2:        #f8fafc;
  --border:      #e2e8f0;
  --shadow:      0 2px 8px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 30px rgba(0,0,0,.12);
  --r:           10px;
  --konteyner:   1200px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: var(--metin);
  background: var(--bg);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Konteyner ───────────────────────────────────────────────── */
.konteyner {
  width: 100%;
  max-width: var(--konteyner);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Bölüm ───────────────────────────────────────────────────── */
.bolum { padding: 80px 0; }
.bolum-baslik {
  text-align: center;
  margin-bottom: 56px;
}
.bolum-baslik h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--metin);
  margin-bottom: 10px;
}
.bolum-baslik p {
  color: var(--metin-2);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.1); }

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--koyu);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-menu a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--metin-2);
  border-radius: 6px;
  transition: color .15s, background .15s;
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--metin);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--yesil);
  border-radius: 2px;
}

/* ─── Dropdown (alt menü) ─── */
.nav-dropdown {
  position: relative;
}
.nav-dd-ok {
  font-size: 10px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform .2s;
}
.nav-dropdown:hover > a .nav-dd-ok {
  transform: rotate(180deg);
}
.nav-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 6px 0;
  z-index: 500;
  list-style: none;
}
/* Görsel boşlukta hover kaybını önleyen şeffaf köprü */
.nav-dd-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover > .nav-dd-menu,
.nav-dropdown:focus-within > .nav-dd-menu {
  display: block;
}
.nav-dd-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--metin-2);
  border-radius: 0;
  white-space: nowrap;
}
.nav-dd-menu li a:hover {
  background: #f8fafc;
  color: var(--metin);
}
.nav-dd-menu li a::after { display: none; }

.nav-sag {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.arama-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--metin-2);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; /* Touch target */
  min-height: 44px;
  padding: 6px;
  transition: color .15s;
}
.arama-btn:hover { color: var(--metin); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--koyu);
  color: #fff;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}
.nav-cta:hover { background: var(--koyu-2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px; /* Touch target: 4→ 10px */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--metin);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.acik span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.acik span:nth-child(2) { opacity: 0; }
.hamburger.acik span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.hero-icerik {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-icerik h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero-icerik p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-butonlar {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-birincil {
  padding: 13px 30px;
  background: var(--yesil);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--yesil);
  transition: all .2s;
  display: inline-block;
}
.btn-hero-birincil:hover {
  background: var(--yesil-hover);
  border-color: var(--yesil-hover);
}

.btn-hero-ikincil {
  padding: 13px 30px;
  background: transparent;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.7);
  transition: all .2s;
  display: inline-block;
}
.btn-hero-ikincil:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   SLAYT CAROUSEL
═══════════════════════════════════════════════════════════════ */
.slayt-sarici {
  position: relative;
  height: 840px;
  overflow: hidden;
  background: #1e293b;
  user-select: none;
}
@media (max-width: 768px) { .slayt-sarici { height: 440px; } }
@media (max-width: 480px) { .slayt-sarici { height: 360px; } }

.slayt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  opacity: 0;
  transition: opacity .85s ease;
  pointer-events: none;
}
.slayt.aktif {
  opacity: 1;
  pointer-events: auto;
}

.slayt-karti {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52));
}
.slayt-icerik {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}
.slayt-icerik h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -.4px;
}
.slayt-alt-baslik {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 34px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.slayt-alt-baslik p { margin: 0; }
.slayt-butonlar {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Oklar */
.slayt-ok {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background .2s;
}
.slayt-ok:hover { background: rgba(255,255,255,.32); }
.slayt-ok.sol { left: 22px; }
.slayt-ok.sag { right: 22px; }
@media (max-width: 480px) { .slayt-ok { display: none; } }

/* Nokta navigasyonu */
.slayt-noktalar {
  position: absolute;
  bottom: 10px; /* 44px buton boyţuna göre ayarlandı */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0;
}
/* Dokunma alanı 44x44px – görsel beden ::after ile küçük kalır */
.slayt-nokta {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slayt-nokta::after {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: all .3s;
  flex-shrink: 0;
}
.slayt-nokta.aktif::after {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* ═══════════════════════════════════════════════════════════════
   HAKKIMIZDA
═══════════════════════════════════════════════════════════════ */
.hakkimizda-icerik {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hakkimizda-metin h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hakkimizda-metin p,
.hk-metin-icerik {
  color: var(--metin-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.hk-metin-icerik p { margin-bottom: 12px; }
.hk-metin-icerik p:last-child { margin-bottom: 0; }

.devami-oku {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--metin);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid var(--yesil);
  padding-bottom: 2px;
  transition: color .15s;
}
.devami-oku:hover { color: var(--yesil); }

.hakkimizda-gorsel img {
  width: 100%;
  border-radius: var(--r);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.gorsel-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: var(--r);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--metin-3);
}

/* ═══════════════════════════════════════════════════════════════
   MARKALAR
═══════════════════════════════════════════════════════════════ */
/* Markalar carousel */
.marka-carousel-sarici {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marka-listesi {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  will-change: transform;
  animation: markaKay 26s linear infinite;
}
.marka-carousel-sarici:hover .marka-listesi {
  animation-play-state: paused;
}
@keyframes markaKay {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marka-kart {
  flex: 0 0 calc((100% - 48px) / 4);
  width: calc((100% - 48px) / 4);
  height: 148px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  padding: 12px 10px;
}
.marka-kart:hover {
  border-color: var(--yesil);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.marka-kart img {
  max-height: 80px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform .35s ease;
}
.marka-kart:hover img {
  transform: scale(1.1);
}
.marka-kart span {
  font-size: 12px;
  font-weight: 600;
  color: var(--metin-2);
  text-align: center;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 900px) {
  .marka-kart {
    flex-basis: calc((100% - 32px) / 3);
    width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 600px) {
  .marka-kart {
    flex-basis: calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
  }
}

/* ═══════════════════════════════════════════════════════════════
   HİZMETLER
═══════════════════════════════════════════════════════════════ */
.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hizmet-kart {
  background: #fff;
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.hizmet-kart:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hizmet-ikon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.hizmet-kart h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hizmet-kart p,
.hizmet-aciklama {
  color: var(--metin-2);
  font-size: 14px;
  line-height: 1.7;
}
.hizmet-aciklama p { margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   İSTATİSTİKLER
═══════════════════════════════════════════════════════════════ */
.istatistikler {
  background: var(--koyu);
  color: #fff;
  padding: 80px 0;
}

.istat-baslik {
  text-align: center;
  margin-bottom: 52px;
}
.istat-baslik h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
.istat-baslik p { color: rgba(255,255,255,.6); }

.istat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.istat-kart {}
.istat-sayi {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--yesil);
  line-height: 1;
  margin-bottom: 8px;
}
.istat-metin {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--koyu);
  color: rgba(255,255,255,.75);
}

.footer-ust {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-marka {}
.footer-logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-marka > p {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-sosyal {
  display: flex;
  gap: 10px;
}
.footer-sosyal a {
  width: 44px; height: 44px; /* Touch target: 36→ 44px */
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer-sosyal a:hover {
  background: var(--yesil);
  color: #fff;
}

.footer-grup h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-grup ul { display: flex; flex-direction: column; gap: 9px; }
.footer-grup ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-grup ul a:hover { color: rgba(255,255,255,.9); }

.footer-alt {
  padding: 20px 0;
}
.footer-alt p {
  font-size: 13px;
  color: rgba(255,255,255,.6); /* WCAG AA: önceki .35 kontrast yetersizdi */
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   HAKKIMIZDA SAYFASI
═══════════════════════════════════════════════════════════════ */

/* Hero */
.hk-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: #fff;
}
.hk-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.hk-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hikayemiz */
.hk-hikaye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hk-hikaye-gorsel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  aspect-ratio: 4/3;
}
.hk-hikaye-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gorsel-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gorsel-placeholder i {
  font-size: 80px;
  color: #94a3b8;
}
.hk-hikaye-icerik h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--yazi);
  margin-bottom: 20px;
}
.hk-metin-blok {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hk-metin-blok p { margin-bottom: 12px; }
.hk-istat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hk-istat-kart {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.hk-istat-sayi {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--birincil);
  line-height: 1;
  margin-bottom: 8px;
}
.hk-istat-metin {
  display: block;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
}

/* Vizyon & Misyon */
.hk-vm-bolum {
  background: #f8fafc;
  padding: 72px 0;
}
.hk-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.hk-vm-kart {
  border-radius: 20px;
  padding: 48px 40px;
}
.hk-vm-acik {
  background: #fff;
  border: 1px solid #e2e8f0;
}
.hk-vm-koyu {
  background: #1e293b;
  color: #fff;
}
.hk-vm-ikon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--birincil);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
  color: #fff;
}
.hk-vm-kart h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: inherit;
}
.hk-vm-acik h3 { color: var(--yazi); }
.hk-vm-metin {
  font-size: 15px;
  line-height: 1.75;
  color: #64748b;
}
.hk-vm-koyu .hk-vm-metin { color: rgba(255,255,255,.65); }
.hk-vm-koyu .hk-vm-ikon  { background: rgba(255,255,255,.15); }

/* Temel Değerlerimiz */
.hk-degerler-bolum { background: #fff; }
.hk-degerler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hk-deger-kart {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.hk-deger-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.hk-deger-vurgulu {
  background: var(--birincil);
  border-color: var(--birincil);
  color: #fff;
}
.hk-deger-vurgulu h3 { color: #fff; }
.hk-deger-ikon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e0e7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--birincil);
}
.hk-deger-ikon-vurgulu {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.hk-deger-kart h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--yazi);
  margin-bottom: 12px;
}
.hk-deger-metin {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}
.hk-deger-vurgulu .hk-deger-metin { color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .istat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-ust { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hakkimizda-icerik { grid-template-columns: 1fr; gap: 40px; }
  .hizmet-grid { grid-template-columns: 1fr 1fr; }
  .hk-hikaye-grid { grid-template-columns: 1fr; gap: 40px; }
  .hk-vm-grid { grid-template-columns: 1fr; }
  .hk-degerler-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 400;
  }
  .nav-menu.acik { transform: translateY(0); opacity: 1; }
  .nav-menu a { padding: 10px 24px; border-radius: 0; }
  .nav-menu a.active::after { display: none; }
  /* Mobil dropdown */
  .nav-dd-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    margin: 0 0 4px 16px;
    padding: 0;
    display: none;
  }
  .nav-dropdown.mobil-acik > .nav-dd-menu { display: block; }
  .nav-dd-ok { float: right; }

  .hamburger { display: flex; }

  .bolum { padding: 56px 0; }
  .bolum-baslik h2 { font-size: 26px; }
  .hizmet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-icerik { padding: 60px 0; }
  .hero-butonlar { flex-direction: column; align-items: center; }
  .footer-ust { grid-template-columns: 1fr; gap: 28px; }
  .istat-grid { grid-template-columns: 1fr 1fr; }
  .istat-sayi { font-size: 36px; }
  .hk-hero h1 { font-size: 32px; }
  .hk-degerler-grid { grid-template-columns: 1fr; }
  .hk-vm-kart { padding: 32px 24px; }
  .hk-istat-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HİZMETLER SAYFASI
═══════════════════════════════════════════════════════ */
.hz-hero {
  background: var(--bg-2);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.hz-hero-baslik {
  font-size: 46px;
  font-weight: 800;
  color: var(--koyu);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hz-hero-alt {
  font-size: 17px;
  color: var(--metin-2);
  max-width: 640px;
  line-height: 1.7;
}

/* ── İkon rozet ── */
.hz-ikon-rozet {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* ── "Detaylı İncele" linki ── */
.hz-daha-fazla {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--yesil);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .18s;
}
.hz-daha-fazla:hover { gap: 10px; }

/* ── Servisler bölümü ── */
.hz-servisler {
  padding: 72px 0 80px;
  background: #fff;
}

/* ── İlk 2 kart: yan yana grid ── */
.hz-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.hz-kart {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.hz-kart:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.hz-kart-gorsel {
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.hz-kart-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.hz-kart:hover .hz-kart-gorsel img { transform: scale(1.04); }
.hz-kart-gorsel-filler {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hz-kart-icerik {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hz-kart-baslik {
  font-size: 20px;
  font-weight: 700;
  color: var(--koyu);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hz-kart-aciklama {
  font-size: 14px;
  line-height: 1.75;
  color: var(--metin-2);
  flex: 1;
}
.hz-kart-aciklama p { margin: 0 0 8px; }

/* ── Geri kalan hizmetler: yatay satır ── */
.hz-satir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow .2s;
}
.hz-satir:hover { box-shadow: var(--shadow-lg); }
.hz-satir-ters { direction: rtl; }
.hz-satir-ters > * { direction: ltr; }

.hz-satir-gorsel {
  height: 320px;
  overflow: hidden;
}
.hz-satir-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.hz-satir:hover .hz-satir-gorsel img { transform: scale(1.04); }
.hz-satir-gorsel-filler {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hz-satir-icerik {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.hz-satir-baslik {
  font-size: 24px;
  font-weight: 700;
  color: var(--koyu);
  margin-bottom: 14px;
  line-height: 1.25;
}
.hz-satir-aciklama {
  font-size: 15px;
  line-height: 1.75;
  color: var(--metin-2);
}
.hz-satir-aciklama p { margin: 0 0 10px; }
.hz-satir-detay {
  font-size: 14px;
  line-height: 1.7;
  color: var(--metin-2);
  margin-top: 12px;
}
.hz-satir-detay p { margin: 0 0 8px; }

@media (max-width: 900px) {
  .hz-grid-2 { grid-template-columns: 1fr; }
  .hz-satir, .hz-satir-ters {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .hz-satir-gorsel { height: 220px; }
  .hz-satir-icerik { padding: 28px 24px 32px; }
  .hz-hero-baslik { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   MARKALAR SAYFASI
═══════════════════════════════════════════════════════════ */

/* Hero */
.mk-hero {
  background: var(--bg-2);
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.mk-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--koyu);
  margin-bottom: 12px;
  line-height: 1.15;
}
.mk-hero p {
  font-size: 16px;
  color: var(--metin-2);
  max-width: 620px;
  line-height: 1.7;
}

/* Bölüm */
.mk-bolum { padding: 52px 0; }

/* 2 kolonlu grid */
.mk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Kart */
.mk-kart {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
  box-sizing: border-box;
}
.mk-kart:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  transform: translateY(-2px);
}

/* Logo kutusu */
.mk-logo-kutu {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.mk-logo-kutu img {
  max-width: 78px;
  max-height: 78px;
  object-fit: contain;
}
.mk-logo-bos {
  font-size: 36px;
  color: #cbd5e1;
}

/* İçerik */
.mk-icerik {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Rozet satırı */
.mk-rozet-satir {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.mk-kat-rozet {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 20px;
}
.mk-ozel-rozet {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 20px;
  background: #f0fdf4;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Ad */
.mk-kart-ad {
  font-size: 16px;
  font-weight: 700;
  color: var(--koyu);
  margin-bottom: 6px;
  line-height: 1.3;
}
.mk-kart-ad a { color: inherit; }
.mk-kart-ad a:hover { color: var(--birincil); }

/* Açıklama */
.mk-kart-aciklama {
  font-size: 13px;
  color: var(--metin-2);
  line-height: 1.65;
  margin-bottom: 8px;
  flex: 1;
}
.mk-kart-aciklama--kisalt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mk-kart-aciklama p { margin: 0 0 6px; }
.mk-kart-aciklama p:last-child { margin-bottom: 0; }

/* Devamını oku linki */
.mk-devami-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--birincil);
  text-decoration: none;
  margin-bottom: 8px;
  transition: gap .15s;
}
.mk-devami-link:hover { gap: 6px; }

/* Modal */
.mk-modal-katman {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mk-modal-katman.mk-modal-acik { display: flex; }
.mk-modal-kutu {
  background: #fff;
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  animation: mkModalGir .18s ease;
}
@keyframes mkModalGir {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.mk-modal-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mk-modal-baslik {
  font-size: 17px;
  font-weight: 700;
  color: var(--koyu);
  margin: 0;
}
.mk-modal-kapat {
  width: 32px; height: 32px;
  border: none;
  background: var(--bg-2);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--metin-2);
  flex-shrink: 0;
  transition: background .15s;
}
.mk-modal-kapat:hover { background: #e2e8f0; color: var(--koyu); }
.mk-modal-govde {
  padding: 20px 24px 24px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--metin);
  line-height: 1.7;
}
.mk-modal-govde p { margin: 0 0 10px; }
.mk-modal-govde p:last-child { margin-bottom: 0; }

/* Katalog linki */
.mk-katalog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yesil);
  text-decoration: none;
  transition: gap .15s;
  margin-top: auto;
  padding-top: 10px;
}
.mk-katalog-link:hover { gap: 8px; }

/* CTA Banner */
.mk-cta {
  background: var(--koyu);
  padding: 56px 0;
}
.mk-cta-ic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mk-cta-metin h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.mk-cta-metin p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.65;
}
.mk-cta-btn {
  display: inline-block;
  white-space: nowrap;
  padding: 14px 28px;
  background: var(--yesil);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background .18s;
  flex-shrink: 0;
}
.mk-cta-btn:hover { background: var(--yesil-hover); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .mk-grid { grid-template-columns: 1fr; }
  .mk-hero h1 { font-size: 30px; }
}
@media (max-width: 600px) {
  .mk-kart { flex-direction: column; gap: 14px; }
  .mk-logo-kutu { width: 64px; min-width: 64px; height: 64px; }
  .mk-cta-ic { flex-direction: column; align-items: flex-start; }
  .mk-hero h1 { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   ÜRÜNLER SAYFASI
═══════════════════════════════════════════════════════════ */

/* Hero */
.ur-hero {
  background: var(--bg-2);
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--border);
}
.ur-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--koyu);
  margin-bottom: 10px;
}
.ur-hero p {
  font-size: 16px;
  color: var(--metin-2);
  max-width: 580px;
}

/* Bölüm */
.ur-bolum { padding: 48px 0 72px; }

/* İki sütun: sidebar + ana */
.ur-sayfa-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.ur-sidebar {
  position: sticky;
  top: 88px;
}
.ur-sidebar-baslik {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--metin-2);
  margin: 0 0 12px;
}
.ur-kat-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ur-kat-link {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--metin-2);
  text-decoration: none;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ur-kat-link:hover { background: var(--bg-2); color: var(--koyu); }
.ur-kat-link.aktif { background: #eff6ff; color: var(--birincil); font-weight: 700; }

/* Arama */
.ur-arama-form { margin-bottom: 20px; }
.ur-arama-kutu {
  position: relative;
  display: flex;
  align-items: center;
}
.ur-arama-ikon {
  position: absolute;
  left: 14px;
  color: var(--metin-2);
  font-size: 15px;
  pointer-events: none;
}
.ur-arama-input {
  width: 100%;
  padding: 11px 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  color: var(--koyu);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.ur-arama-input:focus {
  border-color: var(--birincil);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.ur-arama-temizle {
  position: absolute;
  right: 12px;
  color: var(--metin-2);
  font-size: 13px;
  text-decoration: none;
  padding: 4px;
}
.ur-arama-temizle:hover { color: var(--koyu); }

/* Sonuç bilgisi */
.ur-sonuc-bilgi {
  font-size: 13px;
  color: var(--metin-2);
  margin: 0 0 16px;
}

/* 3 kolonlu ürün grid */
.ur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Ürün Kartı */
.ur-kart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.ur-kart:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-2px);
}

/* Görsel */
.ur-kart-gorsel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ur-kart-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ur-gorsel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #cbd5e1;
}

/* Stok rozet */
.ur-stok-rozet {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.ur-stok-var    { background: #f0fdf4; color: #16a34a; }
.ur-stok-kritik { background: #fff7ed; color: #ea580c; }
.ur-stok-yok    { background: #fef2f2; color: #dc2626; }

/* Kart içerik */
.ur-kart-icerik {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ur-kart-ad {
  font-size: 15px;
  font-weight: 700;
  color: var(--koyu);
  margin: 0 0 6px;
  line-height: 1.35;
}
.ur-kart-aciklama {
  font-size: 13px;
  color: var(--metin-2);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Alt satır: fiyat + buton */
.ur-kart-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.ur-fiyat {
  font-size: 17px;
  font-weight: 800;
  color: var(--koyu);
}
.ur-birim {
  font-size: 12px;
  font-weight: 400;
  color: var(--metin-2);
}
.ur-fiyat-yok {
  font-size: 13px;
  color: var(--metin-2);
  font-style: italic;
}
.ur-detay-btn {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--koyu);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.ur-detay-btn:hover {
  background: var(--koyu);
  border-color: var(--koyu);
  color: #fff;
}
.ur-sepet-btn {
  width: 100%;
  padding: 7px 12px;
  margin-top: 8px;
  background: transparent;
  border: 1.5px solid var(--yesil);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--yesil);
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ur-sepet-btn:hover {
  background: var(--yesil);
  color: #fff;
}

/* ── Nav Sepet Rozeti ───────────────────────────────────────── */
.nav-sepet {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--metin);
  text-decoration: none;
  font-size: 18px;
  transition: background .15s, color .15s;
  margin-right: 4px;
}
.nav-sepet:hover { background: #f1f5f9; color: var(--yesil); }
.nav-sepet-say {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--yesil);
  color: #fff;
  border-radius: 50%;
  min-width: 16px;
  height: 16px;
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   TEDARİK LİSTESİ SAYFASI
═══════════════════════════════════════════════════════════════ */
.tl-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 72px 0 64px;
  text-align: center;
  color: #fff;
}
.tl-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.4px;
}
.tl-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto;
}
.tl-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}
.tl-kart {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.tl-kart-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
  gap: 10px;
}
.tl-adet-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.tl-bos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 20px;
  color: #94a3b8;
  text-align: center;
}
.tl-bos i { font-size: 40px; margin-bottom: 12px; }
.tl-bos p { font-size: 14px; margin: 0 0 4px; }
.tl-tablo {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tl-tablo thead tr { background: #f8fafc; }
.tl-tablo th {
  padding: 8px 12px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.tl-tablo td { padding: 10px 12px; border-top: 1px solid #f1f5f9; }
.tl-tablo-urun {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tl-tablo-urun img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.tl-tablo-urun div strong {
  display: block;
  font-weight: 600;
  color: #1e293b;
  font-size: 13px;
}
.tl-tablo-urun div span {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}
.tl-tablo-adet {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tl-adet-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: background .15s, border-color .15s;
}
.tl-adet-btn:hover { background: #f1f5f9; border-color: #94a3b8; }
.tl-tablo-adet span { font-weight: 700; min-width: 22px; text-align: center; }
.tl-sil-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.tl-sil-btn:hover { color: #ef4444; background: #fee2e2; }
.tl-form-grup { margin-bottom: 14px; }
.tl-form-grup:last-of-type { margin-bottom: 0; }
.tl-form-grup label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}
.tl-zorunlu { color: #ef4444; }
.tl-zorunlu-not { font-size: 11px; color: #94a3b8; margin-top: 10px; }
.tl-btn-birincil {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: var(--yesil);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.tl-btn-birincil:hover { background: #15803d; }
.tl-btn-ikincil {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: #fff;
  color: var(--koyu);
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.tl-btn-ikincil:hover { background: #f8fafc; border-color: #94a3b8; }
.tl-submit-btn { width: 100%; justify-content: center; margin-top: 6px; }
.tl-submit-btn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}
.tl-basari {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}
.tl-basari-ikon { font-size: 64px; color: var(--yesil); margin-bottom: 20px; }
.tl-basari h2 { font-size: 28px; font-weight: 800; color: #1e293b; margin-bottom: 12px; }
.tl-basari p { font-size: 15px; color: #64748b; margin-bottom: 6px; }
@media (max-width: 900px) {
  .tl-layout { grid-template-columns: 1fr; }
}

/* Tedarik Listesi – Ürün Seçim Listesi */
.tl-baslik-arama { flex-wrap: wrap; gap: 12px; }
.tl-arama-sarici {
  position: relative;
  flex: 1;
  min-width: 160px;
  max-width: 260px;
}
.tl-arama-ikon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 13px;
  pointer-events: none;
}
.tl-arama-input {
  width: 100%;
  padding: 7px 12px 7px 30px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s, background .15s;
}
.tl-arama-input:focus { border-color: #3b82f6; background: #fff; }
.tl-secim-bilgi {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 7px 12px;
  margin-bottom: 10px;
}
.tl-urun-listesi {
  max-height: 540px;
  overflow-y: auto;
  margin: 0 -20px;
  padding: 0 20px;
}
.tl-urun-satir {
  border-top: 1px solid #f1f5f9;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-urun-satir:first-child { border-top: none; }
.tl-satir-ic {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  user-select: none;
}
.tl-tik {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #16a34a;
  flex-shrink: 0;
}
.tl-satir-gorsel {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.tl-satir-gorsel-yok {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 18px;
  flex-shrink: 0;
}
.tl-satir-bilgi { flex: 1; min-width: 0; }
.tl-satir-bilgi strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tl-satir-bilgi span {
  display: inline-block;
  font-size: 11px;
  color: #94a3b8;
  margin-right: 8px;
  margin-top: 2px;
}
.tl-satir-adet {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  flex-shrink: 0;
}
.tl-adet-input {
  width: 72px;
  padding: 5px 8px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  outline: none;
  transition: border-color .15s;
}
.tl-adet-input:focus { border-color: #3b82f6; }
.tl-birim-etiket { font-size: 12px; color: #64748b; }
.tl-min-ipucu {
  font-size: 11px;
  color: #f59e0b;
  font-weight: 600;
  white-space: nowrap;
}
.tl-adet-input.tl-adet-hata {
  border-color: #ef4444 !important;
  animation: tl-salla .35s ease;
}
@keyframes tl-salla {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}
.tl-arama-bos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  color: #94a3b8;
  text-align: center;
}
.tl-arama-bos i { font-size: 28px; margin-bottom: 8px; }
.tl-arama-bos p { font-size: 13px; margin: 0; }

/* Sipariş Formu – Modern Minimal */
.tl-form-kart {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 20px rgba(15,23,42,.07);
}
/* Başlık satırı */
.tl-fk-ust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}
.tl-fk-ikon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
}
.tl-fk-baslik {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}
.tl-fk-alt {
  font-size: 12.5px;
  color: #94a3b8;
  margin-top: 2px;
}
/* Hata */
.tl-hata-kutu {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* 2-kolon */
.tl-form-iki-kolon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* Alan grubu */
.tl-fg {
  margin-bottom: 14px;
}
.tl-fg label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}
.tl-zorunlu { color: #ef4444; }
.tl-opsiyonel {
  font-size: 10.5px;
  font-weight: 500;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 1px 8px;
  border-radius: 20px;
}
/* Input ile ikon */
.tl-fi { position: relative; }
.tl-fi > i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 13px;
  pointer-events: none;
  z-index: 1;
}
.tl-fi-ta > i { top: 14px; transform: none; }
.tl-fi input,
.tl-fi textarea {
  padding-left: 34px !important;
}
/* Input / textarea ortak */
.tl-fg input,
.tl-fg textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: #1e293b;
  background: #fff;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  box-sizing: border-box;
  font-family: inherit;
  resize: vertical;
}
.tl-fg input:focus,
.tl-fg textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.10);
}
.tl-fg input::placeholder,
.tl-fg textarea::placeholder { color: #b0bcc9; font-size: 13px; }
/* Inline radio ödeme */
.tl-radio-grup {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 0;
  flex-wrap: wrap;
}
.tl-radio-etiket {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  user-select: none;
}
.tl-radio-etiket input[type="radio"] { display: none; }
.tl-radio-nokta {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s;
}
.tl-radio-nokta::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  opacity: 0;
  transition: opacity .15s;
}
.tl-radio-etiket input[type="radio"]:checked ~ .tl-radio-nokta {
  border-color: #2563eb;
}
.tl-radio-etiket input[type="radio"]:checked ~ .tl-radio-nokta::after { opacity: 1; }
/* Submit */
.tl-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: .1px;
  transition: background .15s, transform .12s;
}
.tl-submit-btn:hover { background: #1d4ed8; transform: translateY(-1px); }
.tl-submit-btn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
}
.tl-zorunlu-not {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .tl-form-iki-kolon { grid-template-columns: 1fr; }
  .tl-form-kart { padding: 20px; }
}

/* Boş durum */
.ur-bos {
  text-align: center;
  padding: 80px 0;
  color: var(--metin-2);
}
.ur-bos i { font-size: 48px; display: block; margin-bottom: 12px; color: #cbd5e1; }

/* Responsive */
@media (max-width: 1024px) {
  .ur-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ur-sayfa-layout { grid-template-columns: 1fr; }
  .ur-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .ur-sidebar-baslik { width: 100%; }
  .ur-kat-liste { flex-direction: row; flex-wrap: wrap; }
  .ur-kat-link { padding: 6px 12px; font-size: 13px; }
}
@media (max-width: 520px) {
  .ur-grid { grid-template-columns: 1fr; }
  .ur-hero h1 { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   ÜRÜN DETAY SAYFASI
═══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.ud-breadcrumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 13px;
  color: var(--metin-2);
}
.ud-breadcrumb a { color: var(--metin-2); text-decoration: none; }
.ud-breadcrumb a:hover { color: var(--birincil); }
.ud-bc-sep { margin: 0 6px; font-size: 10px; opacity: .5; }

/* Ana ürün bölümü */
.ud-bolum { padding: 40px 0 48px; }
.ud-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

/* Görsel */
.ud-gorsel-blok {}
.ud-ana-gorsel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  max-height: 480px;
  overflow: hidden;
}
.ud-ana-gorsel img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}
.ud-ana-gorsel:hover img {
  transform: scale(1.22);
}
.ud-gorsel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #cbd5e1;
}

/* Bilgi bloğu */
.ud-bilgi-blok { padding-top: 4px; }

/* Stok rozet */
.ud-stok-rozet {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.ud-stok-var    { background: #f0fdf4; color: #16a34a; }
.ud-stok-kritik { background: #fff7ed; color: #ea580c; }
.ud-stok-yok    { background: #fef2f2; color: #dc2626; }

/* Başlık */
.ud-baslik {
  font-size: 30px;
  font-weight: 800;
  color: var(--koyu);
  line-height: 1.25;
  margin: 0 0 14px;
}

/* Meta satır (SKU, min sipariş) */
.ud-meta-satir {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--metin-2);
  margin-bottom: 16px;
}
.ud-meta-oge { display: flex; align-items: center; gap: 5px; }
.ud-meta-sep { opacity: .35; }

/* Açıklama */
.ud-aciklama {
  font-size: 15px;
  color: var(--metin);
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Vurgular */
.ud-vurgular {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.ud-vurgu {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
}
.ud-vurgu-ikon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--birincil);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.ud-vurgu-baslik { font-size: 13px; font-weight: 700; color: var(--koyu); margin-bottom: 2px; }
.ud-vurgu-metin  { font-size: 12px; color: var(--metin-2); line-height: 1.5; }

/* Fiyat */
.ud-fiyat-kutu { margin-bottom: 20px; display: flex; align-items: baseline; gap: 6px; }
.ud-fiyat      { font-size: 32px; font-weight: 800; color: var(--koyu); }
.ud-birim      { font-size: 14px; color: var(--metin-2); }
.ud-fiyat-not  {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--metin-2);
  line-height: 1.6;
  display: flex;
  gap: 10px;
}
.ud-fiyat-not i { color: var(--birincil); font-size: 15px; flex-shrink: 0; margin-top: 2px; }

/* Butonlar */
.ud-butonlar { display: flex; gap: 10px; flex-wrap: wrap; }
.ud-btn-birincil, .ud-btn-ikincil {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .12s;
  cursor: pointer;
}
.ud-btn-birincil {
  background: var(--koyu);
  color: #fff;
  border: 2px solid var(--koyu);
  flex: 1;
  justify-content: center;
}
.ud-btn-birincil:hover { background: var(--birincil); border-color: var(--birincil); }
.ud-btn-ikincil {
  background: #fff;
  color: var(--koyu);
  border: 2px solid var(--border);
}
.ud-btn-ikincil:hover { border-color: var(--koyu); }

/* Teknik özellikler bölümü */
.ud-spec-bolum {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.ud-bolum-baslik {
  font-size: 20px;
  font-weight: 800;
  color: var(--koyu);
  margin: 0 0 20px;
}
.ud-spec-tablo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ud-spec-satir {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.ud-spec-satir:last-child { border-bottom: none; }
.ud-spec-satir:nth-child(odd) { background: var(--bg-2); }
.ud-spec-baslik { width: 160px; flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--metin-2); }
.ud-spec-deger  { font-size: 14px; font-weight: 500; color: var(--koyu); }

/* Benzer ürünler */
.ud-benzer-bolum { padding: 40px 0 64px; border-top: 1px solid var(--border); }
.ud-benzer-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ud-tumu-gor {
  font-size: 13px;
  font-weight: 600;
  color: var(--metin-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ud-tumu-gor:hover { color: var(--birincil); }
.ud-benzer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ud-benzer-kart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.ud-benzer-kart:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.ud-benzer-gorsel {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.ud-benzer-gorsel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ud-benzer-icerik { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ud-benzer-sku    { font-size: 11px; color: var(--metin-2); }
.ud-benzer-ad     { font-size: 13px; font-weight: 700; color: var(--koyu); line-height: 1.35; }
.ud-benzer-aciklama { font-size: 12px; color: var(--metin-2); line-height: 1.5; flex: 1; }
.ud-benzer-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.ud-benzer-stok { font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.ud-benzer-sepet {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--metin-2);
}

/* Responsive */
@media (max-width: 1024px) {
  .ud-layout { grid-template-columns: 1fr; gap: 28px; }
  .ud-ana-gorsel { max-width: 480px; }
  .ud-benzer-grid { grid-template-columns: repeat(2, 1fr); }
  .ud-spec-tablo { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ud-baslik { font-size: 22px; }
  .ud-vurgular { grid-template-columns: 1fr; }
  .ud-benzer-grid { grid-template-columns: repeat(2, 1fr); }
  .ud-butonlar { flex-direction: column; }
  .ud-btn-birincil, .ud-btn-ikincil { justify-content: center; }
}
@media (max-width: 400px) {
  .ud-benzer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   İLETİŞİM SAYFASI
═══════════════════════════════════════════════════════════ */

/* Hero */
.il-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: #fff;
}
.il-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.il-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Ana bölüm */
.il-bolum {
  padding: 72px 0;
  background: var(--bg);
}
.il-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sol – bilgi kartları */
.il-sol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.il-bilgi-kart {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 20px;
}
.il-bilgi-ikon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--koyu);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.il-bilgi-icerik strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--koyu);
  margin-bottom: 4px;
}
.il-bilgi-icerik p {
  font-size: 14px;
  color: var(--metin-2);
  line-height: 1.6;
  margin: 0;
}
.il-bilgi-icerik p a {
  color: var(--metin-2);
}
.il-bilgi-icerik p a:hover { color: var(--birincil); }
.il-bilgi-icerik span {
  display: block;
  font-size: 12px;
  color: #64748b; /* WCAG AA: #94a3b8 (metin-3) 2.85:1 yetersizdi, 64748b=5.9:1 */
  margin-top: 4px;
}

/* Sağ – form */
.il-sag {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 36px 32px;
}
.il-form-baslik {
  font-size: 22px;
  font-weight: 800;
  color: var(--koyu);
  margin-bottom: 24px;
}

/* Bildirim */
.il-bildirim {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}
.il-bildirim-basari {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}
.il-bildirim-hata {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* Form elemanları */
.il-form { display: flex; flex-direction: column; gap: 16px; }
.il-form-satir { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.il-fg { display: flex; flex-direction: column; gap: 5px; }
.il-fg label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.il-zorunlu { color: #ef4444; }
.il-fg input,
.il-fg select,
.il-fg textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--metin);
  background: #fff;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.il-fg input:focus,
.il-fg select:focus,
.il-fg textarea:focus {
  border-color: var(--birincil);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.il-fg textarea { resize: vertical; }
.il-fg select { cursor: pointer; }
.il-gonder-btn {
  width: 100%;
  padding: 13px;
  background: var(--koyu);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .18s;
  font-family: inherit;
}
.il-gonder-btn:hover { background: var(--koyu-2); }

/* Harita */
.il-harita-bolum {
  padding: 0 0 72px;
  background: var(--bg);
}
.il-harita-cerceve {
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-lg);
}
.il-harita-cerceve iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .il-grid { grid-template-columns: 1fr; gap: 32px; }
  .il-hero h1 { font-size: 34px; }
  .il-sag { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .il-form-satir { grid-template-columns: 1fr; }
  .il-hero h1 { font-size: 28px; }
  .il-hero p { font-size: 15px; }
  .il-harita-cerceve { height: 240px; }
}
