:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --wash: #f8fafc;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.site-footer,
.section,
.breadcrumb,
.cta-band {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 20px;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--accent);
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav .nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

/* ── Duyuru çubuğu ───────────────────────────────────────── */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-msg {
  flex: 1;
  text-align: center;
}
.announcement-bar--accent { background: var(--accent); color: #fff; }
.announcement-bar--dark   { background: #0f172a; color: #fff; }
.announcement-bar--info   { background: #3b82f6; color: #fff; }
.announcement-bar--green  { background: #16a34a; color: #fff; }
.announcement-bar--red    { background: #dc2626; color: #fff; }
.announcement-link {
  padding: 3px 10px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.announcement-link:hover { background: rgba(255,255,255,.15); }
.announcement-close {
  margin-left: auto;
  background: none;
  border: none;
  color: inherit;
  opacity: .7;
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
}
.announcement-close:hover { opacity: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,.92) 0%, rgba(15,23,42,.78) 60%, rgba(30,20,10,.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 20px 72px;
}

.hero.compact {
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(249,115,22,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,58,138,.25) 0%, transparent 60%),
    linear-gradient(160deg, #0a0f1e 0%, #0f172a 50%, #1a0f05 100%);
}

/* Tablo ızgara deseni — CSS ile CNC hissiyatı */
.hero.compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
}

/* Sağ üst köşe aksan çizgisi */
.hero.compact::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero.compact .hero-inner {
  padding-block: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #fdba74;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

h1,
h2 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(32px, 6vw, 60px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 4vw, 32px);
}

.hero-desc {
  max-width: 640px;
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats span {
  color: #94a3b8;
  font-size: 0.9rem;
}

.hero-stats strong {
  color: #fdba74;
  font-size: 1.1rem;
  margin-right: 4px;
}

/* ── Arama kutusu ─────────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 620px;
  margin-top: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  overflow: hidden;
}

.search-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  color: var(--muted);
}

.search-box input {
  flex: 1;
  min-height: 56px;
  padding: 14px 12px;
  border: 0;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: var(--ink);
}

.search-clear {
  display: none;
  background: none;
  border: none;
  padding: 8px 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
}

.search-clear.visible { display: block; }

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 100;
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}

.search-results[hidden] { display: none; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  transition: background .1s;
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--wash); }

.search-result-type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 6px;
  white-space: nowrap;
}

.search-no-result {
  padding: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* ── İstatistik çubuğu ───────────────────────────────────── */
.stats-bar {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1160px;
  margin: 0 auto;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  border-right: 1px solid #1e293b;
  text-align: center;
  transition: background .2s;
}

.stat-box:last-child { border-right: none; }
.stat-box:hover { background: #1e293b; }

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 4px;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fdba74;
}

.stat-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fdba74;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-box:nth-child(3) { border-right: none; }
  .stat-box:nth-child(4),
  .stat-box:nth-child(5) { border-top: 1px solid #1e293b; }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3) { border-right: 1px solid #1e293b; border-top: 1px solid #1e293b; }
  .stat-box:nth-child(4) { border-top: 1px solid #1e293b; }
  .stat-box:nth-child(5) { grid-column: span 2; border-right: none; border-top: 1px solid #1e293b; }
}

/* ── Reklam alanı ─────────────────────────────────────────── */
.ads-section {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border-top: none;
  border-bottom: 1px solid #fed7aa;
}

.ads-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ads-header h2 { margin: 0; }

.ads-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 8px;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.ad-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  position: relative;
}

.ad-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(249,115,22,.15);
  transform: translateY(-2px);
}

.ad-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.ad-logo img { width: 100%; height: 100%; object-fit: cover; }

.ad-logo--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #c2410c);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.ad-body { flex: 1; min-width: 0; }

.ad-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.ad-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.ad-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 1px 8px;
}

.ad-slogan {
  margin: 0 0 4px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.ad-desc {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ad-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.ad-arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.breadcrumb {
  padding-block: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #94a3b8;
}

.breadcrumb a {
  color: var(--ink-soft);
  font-weight: 700;
}

.section {
  padding-block: 44px;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.link-grid a,
.pill-row a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
}

.link-grid a {
  padding: 14px 16px;
}

.link-grid a:hover,
.pill-row a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row a {
  padding: 10px 14px;
}

.notice {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-block: 24px;
  padding: 26px;
}


.prose p {
  color: var(--ink-soft);
  font-size: 17px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #fff;
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p,
.muted {
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block: 34px;
  padding-block: 28px;
  border-top: 3px solid var(--accent);
  background: var(--wash);
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  max-width: none;
  margin: 44px 0 0;
  padding-inline: 0;
  padding-block: 0;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a 0%, #0c1422 100%);
  border-top: none;
}

.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #fb923c 55%, transparent 100%);
}

.footer-main {
  padding: 52px 20px 44px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(140px, 1fr));
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand p {
  margin: 16px 0 0;
  color: #94a3b8;
  line-height: 1.75;
  font-size: .94rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
}

.footer-logo .brand-mark {
  background: var(--accent);
  color: #fff;
  padding: 3px 9px;
  border-radius: 6px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #94a3b8;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  margin: 0 0 14px;
  color: #e2e8f0;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: #64748b;
  font-weight: 600;
  font-size: .92rem;
  display: inline-block;
  transition: color .15s ease, padding-left .15s ease;
}

.footer-column a:hover {
  color: #fdba74;
  padding-left: 5px;
}

.footer-cta-band {
  border-top: 1px solid rgba(148, 163, 184, .1);
  border-bottom: 1px solid rgba(148, 163, 184, .1);
  background: rgba(249, 115, 22, .055);
  padding: 28px 20px;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-cta__label {
  color: #fdba74;
  font-weight: 800;
  font-size: .98rem;
}

.footer-cta-text p {
  margin: 0;
  color: #94a3b8;
  font-size: .9rem;
}

.footer-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}

.footer-cta__button:hover {
  background: var(--accent-dark);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 20px 26px;
  color: #334155;
  font-size: .84rem;
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
}

.footer-bottom-nav a {
  color: #334155;
  font-weight: 600;
  transition: color .15s ease;
}

.footer-bottom-nav a:hover {
  color: #fdba74;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-block: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: none;
    box-shadow: 0 8px 24px rgba(15,23,42,.1);
    z-index: 99;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    justify-content: center;
    border-radius: var(--radius);
  }

  .hero-inner {
    padding-block: 56px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* ── Şehirler bölümü ─────────────────────────────────────── */
.cities-section {
  padding-block: 60px;
}

.cities-header {
  margin-bottom: 28px;
}

.cities-header h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
}

.cities-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Bölge sekmeleri */
.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.region-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.region-tab span {
  background: var(--wash);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}

.region-tab:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.region-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.region-tab.active span {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* İl kartları */
.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.province-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.province-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(249,115,22,.12);
  transform: translateY(-2px);
}

.province-plate {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--accent);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 4px;
  padding: 1px 7px;
  line-height: 1.8;
}

.province-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.province-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.province-card.hidden {
  display: none;
}

@media (max-width: 600px) {
  .province-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .region-tabs {
    gap: 6px;
  }

  .region-tab {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

/* ── Firma kartları ───────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-head h2 { margin: 0; }

.section-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.section-more:hover { color: var(--accent-dark); }

.count-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 1px 9px;
  margin-left: 6px;
  vertical-align: middle;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.company-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.company-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(249,115,22,.12);
  transform: translateY(-2px);
}

.company-card--verified {
  border-color: #86efac;
}

.company-card--verified:hover {
  border-color: #16a34a;
  box-shadow: 0 4px 20px rgba(22,163,74,.1);
}

.company-card__logo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card__logo img {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  object-position: center;
}

.company-card__initials {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--accent);
  background: #fff7ed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.company-card__name-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.company-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

.company-card__badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 999px;
  padding: 2px 8px;
  margin-top: 2px;
}

.company-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.company-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 7px;
}

.company-card__location {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.company-card__location svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.company-card__phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.company-card__phone svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ── Firma detay sayfası ──────────────────────────────────── */
.company-detail {
  padding-block: 40px;
  max-width: 860px;
}

.company-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.company-detail__logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--wash);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-detail__logo img {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: center;
}

.company-detail__initials {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--accent);
}

.company-detail__meta { flex: 1; min-width: 0; }

.company-detail__name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.company-detail__name {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.company-detail__verified {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 999px;
  padding: 3px 10px;
}

.company-detail__location {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.company-detail__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: opacity .15s, transform .12s;
}

.contact-btn:hover { opacity: .88; transform: translateY(-1px); }

.contact-btn--phone {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contact-btn--email {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.contact-btn--website {
  background: #fff;
  color: var(--ink-soft);
  border-color: var(--line);
}

.contact-btn svg {
  width: 16px;
  height: 16px;
}

.company-detail__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.company-detail__address svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--accent);
}

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}

/* ── Firmalar listesi (pagination) ───────────────────────── */
.companies-header {
  margin-bottom: 28px;
}

.companies-header h1 {
  margin: 0 0 6px;
}

.companies-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-wrap nav { display: flex; }

.pagination-wrap .pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrap .page-item .page-link,
.pagination-wrap span[aria-current] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  background: #fff;
  transition: border-color .15s, color .15s, background .15s;
}

.pagination-wrap .page-item .page-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination-wrap span[aria-current],
.pagination-wrap .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pagination-wrap .page-item.disabled .page-link {
  opacity: .4;
  pointer-events: none;
}

@media (max-width: 600px) {
  .companies-grid {
    grid-template-columns: 1fr 1fr;
  }

  .company-detail__header {
    flex-direction: column;
    gap: 16px;
  }

  .company-detail__name { font-size: 1.4rem; }

  .contact-btn { width: 100%; justify-content: center; }

  .company-detail__contacts { flex-direction: column; }
}

@media (max-width: 400px) {
  .companies-grid { grid-template-columns: 1fr; }
}

/* ── Öne çıkarılan firma kartları ────────────────────────── */
.featured-section {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border-top: 3px solid var(--accent);
  padding-block: 36px;
}

.featured-section + .section {
  border-top: 1px solid var(--line);
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 12px;
}

.company-card--featured {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(249,115,22,.1);
}

.company-card--featured .company-card__logo {
  border-bottom-color: #fed7aa;
  background: #fff7ed;
}

.company-card__featured-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 2px 8px;
  pointer-events: none;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 40px 20px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* ── Logo görsel (panelden yüklendiğinde) ─────────────────── */
.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* ─── Site Haritası ─────────────────────────────────────────── */

.sitemap-grid {
  display: grid;
  grid-template-columns: 200px 200px 1fr;
  gap: 40px;
  align-items: start;
}

.sitemap-col__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.sitemap-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-col ul a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .15s;
}

.sitemap-col ul a:hover { color: var(--accent); }

.sitemap-provinces {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px 16px;
}

@media (max-width: 700px) {
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sitemap-col--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ─── Firma Ekle Formu ───────────────────────────────────────── */

.application-section {
  padding-block: 48px 80px;
}

.application-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

/* Aside */
.application-aside {
  position: sticky;
  top: 24px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
}

.application-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.application-aside h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 12px;
}

.application-aside > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

.application-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.application-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.application-steps li span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Form */
.application-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--wide {
  grid-column: 1 / -1;
}

.form-group label,
.form-consent span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea,
.form-group .form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  appearance: none;
}

.form-group .form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group .form-select:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, background .15s;
  user-select: none;
}

.checkbox-grid label:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, .04);
}

.checkbox-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-grid label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(249, 115, 22, .06);
  color: var(--ink);
}

/* Consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  grid-column: 1 / -1;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-consent span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

/* Actions */
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 420px;
}

.application-submit {
  min-width: 200px;
  min-height: 48px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, transform .1s;
  flex-shrink: 0;
}

.application-submit:hover {
  background: var(--accent-dark);
}

.application-submit:active {
  transform: scale(.98);
}

/* Success */
.form-success {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-aside {
    position: static;
  }

  .application-form {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .application-submit {
    width: 100%;
    text-align: center;
  }

  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   BLOG
   ============================================================ */

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}

.blog-card-link:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Blog article (show page) */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article-cover {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
}

.blog-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-header {
  padding-bottom: 0;
}

.blog-article-header h1 {
  margin: 8px 0 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
}

.blog-article-excerpt {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 12px 0 0;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.error-page-inner { text-align: center; max-width: 560px; }
.error-code {
  font-size: clamp(80px, 18vw, 140px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin: 0 0 8px;
  opacity: .15;
}
.error-title { font-size: clamp(24px, 5vw, 36px); margin: 0 0 12px; }
.error-desc { color: var(--text-muted); margin: 0 0 32px; line-height: 1.6; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-links p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }

/* Form başarı banner */
.form-success-banner {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   İŞ İLANLARI & FİRMA PANEL – Tüm Stiller
   ═══════════════════════════════════════════════════════════════ */

/* ── Auth Kartı ── */
.auth-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.auth-title { font-size: 24px; margin: 0 0 6px; }
.auth-sub   { color: var(--muted); margin: 0 0 24px; }
.auth-form  { display: flex; flex-direction: column; gap: 16px; }
.auth-foot  { text-align: center; margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.auth-foot a { color: var(--accent); font-weight: 600; }
.req { color: var(--accent); }

/* ── Alerts ── */
.alert { border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 14px; }
.alert--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Form grupları ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group small { color: var(--muted); font-size: 12px; }
.form-group--grow { flex: 1; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-note { color: var(--muted); font-size: 13px; margin-top: 12px; text-align: center; }

/* ── Butonlar ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--accent); color: #fff; border: none;
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background .15s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); padding: 10px 20px;
  border-radius: var(--radius); font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: border-color .15s, background .15s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: #fff7f0; }
.btn-outline.btn-sm { padding: 6px 13px; font-size: 13px; }

/* ── Navbar firma linkleri ── */
.nav-firm-login {
  color: var(--ink-soft); font-size: 14px; text-decoration: none;
  padding: 7px 14px; border-radius: 8px; border: 1px solid var(--line);
  transition: all .15s; font-weight: 500;
}
.nav-firm-login:hover { color: var(--accent); border-color: var(--accent); background: #fff7f0; }
.nav-firm-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff7f0; border: 1.5px solid var(--accent);
  padding: 5px 12px 5px 6px; border-radius: 20px; font-size: 13px; font-weight: 700;
  text-decoration: none; color: var(--accent); transition: all .15s;
}
.nav-firm-btn:hover { background: var(--accent); color: #fff; }
.nav-firm-btn:hover .nav-firm-avatar { background: #fff; color: var(--accent); }
.nav-firm-avatar {
  width: 26px; height: 26px; background: var(--accent); color: #fff;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

/* ══ DASHBOARD ═════════════════════════════════════════════════ */
.dashboard-wrap {
  display: flex; min-height: calc(100vh - 72px);
  max-width: 1200px; margin: 0 auto; padding-inline: 20px;
}

/* Sidebar */
.dash-sidebar {
  width: 240px; flex-shrink: 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 24px 0; gap: 4px;
}
.dash-firm-info {
  display: flex; align-items: center; gap: 12px;
  padding: 0 16px 20px; border-bottom: 1px solid var(--line); margin-bottom: 12px;
}
.dash-firm-info > div { display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.dash-firm-info strong { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-firm-info span  { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.dash-nav { display: flex; flex-direction: column; padding: 0 8px; }
.dash-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none; transition: background .12s, color .12s;
}
.dash-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.dash-nav-link:hover  { background: var(--wash); color: var(--accent); }
.dash-nav-link.active { background: #fff7f0; color: var(--accent); font-weight: 700; }

.btn-logout {
  width: 100%; background: transparent; border: 1px solid var(--line);
  padding: 9px; border-radius: 8px; font-size: 14px; cursor: pointer;
  color: var(--muted); transition: all .12s;
}
.btn-logout:hover { border-color: #ef4444; color: #ef4444; }

/* Dashboard içerik */
.dash-content { flex: 1; padding: 32px; display: flex; flex-direction: column; gap: 24px; }

/* İstatistikler */
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 16px; }
.dash-stat {
  background: var(--wash); border: 1px solid var(--line);
  border-radius: 10px; padding: 20px 16px; text-align: center;
}
.dash-stat--green  { border-color: #bbf7d0; background: #f0fdf4; }
.dash-stat--orange { border-color: #fed7aa; background: #fff7ed; }
.dash-stat--muted  { border-color: var(--line); }
.dash-stat-num   { display: block; font-size: 32px; font-weight: 700; color: var(--ink); }
.dash-stat-label { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Bölüm */
.dash-section { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.dash-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-section-head h2 { margin: 0; font-size: 18px; }

/* Tablo */
.job-table-wrap { overflow-x: auto; }
.job-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.job-table th { background: var(--wash); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.job-table td { padding: 12px 14px; border-top: 1px solid var(--line); vertical-align: middle; }
.job-table td strong { display: block; }
.job-table td small { color: var(--muted); font-size: 12px; }
.job-table-actions { display: flex; gap: 4px; align-items: center; }
.btn-icon { background: none; border: 1px solid var(--line); border-radius: 6px; padding: 4px 8px; cursor: pointer; font-size: 14px; transition: border-color .12s; }
.btn-icon:hover { border-color: var(--accent); }

/* Badges */
.badge { display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.badge--green  { background: #dcfce7; color: #15803d; }
.badge--orange { background: #fff7ed; color: #c2410c; }
.badge--gray   { background: var(--wash); color: var(--muted); }
.badge--type   { background: #eff6ff; color: #1d4ed8; }

/* Empty state */
.empty-state {
  text-align: center; padding: 60px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.empty-state svg { width: 64px; height: 64px; color: var(--muted); opacity: .4; }
.empty-state p { color: var(--muted); margin: 0; }

/* Job form */
.job-form { display: flex; flex-direction: column; gap: 20px; }

/* ══ HALKA AÇIK İŞ İLANLARI ════════════════════════════════════ */

/* Hero */
.jobs-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff; padding: 60px 0 40px;
}
.jobs-hero h1 { font-size: clamp(24px, 4vw, 38px); margin: 0 0 10px; }
.jobs-hero p  { color: #94a3b8; margin: 0 0 28px; }

/* Filter */
.jobs-filter-form {}
.jobs-filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.filter-field {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 0 12px; flex: 1; min-width: 160px;
}
.filter-field svg { width: 16px; height: 16px; color: #94a3b8; flex-shrink: 0; }
.filter-field input {
  background: none; border: none; outline: none; color: #fff;
  padding: 10px 0; font-size: 14px; width: 100%;
}
.filter-field input::placeholder { color: #64748b; }
.jobs-filter-bar select {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 10px 14px; border-radius: var(--radius);
  font-size: 14px; cursor: pointer;
}
.jobs-filter-bar select option { background: #1e293b; }

/* Meta satırı */
.jobs-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; color: var(--muted); font-size: 14px;
}

/* Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Job Card */
.job-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .15s, transform .15s;
}
.job-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.job-card-head { display: flex; align-items: flex-start; gap: 12px; }
.job-card-company-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent); color: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
}
.job-card-title { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.job-card-title a { color: var(--ink); text-decoration: none; }
.job-card-title a:hover { color: var(--accent); }
.job-card-company { font-size: 13px; color: var(--muted); }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.job-meta-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--wash); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 20px; font-size: 12px; color: var(--ink-soft);
}
.job-meta-pill svg { width: 12px; height: 12px; }
.job-meta-pill--type   { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.job-meta-pill--salary { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.job-card-desc {
  color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0;
  overflow: hidden; overflow-wrap: break-word; word-break: break-word;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.job-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.job-card-date { font-size: 12px; color: var(--muted); }

/* ── İlan Detay ── */
.job-detail-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 32px;
}
.job-detail-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.job-detail-header h1 { margin: 0 0 6px; font-size: clamp(20px, 3vw, 28px); }
.job-detail-company-avatar {
  width: 60px; height: 60px; flex-shrink: 0;
  background: var(--accent); color: #fff;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700;
}
.job-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.job-detail-body h2 { font-size: 18px; margin: 28px 0 12px; }
.job-content { color: var(--ink-soft); line-height: 1.8; }

.job-apply-box {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: var(--wash); border: 1px solid var(--line);
  border-radius: 10px; padding: 20px 24px; margin-top: 32px;
}
.job-apply-box strong { display: block; font-size: 16px; margin-bottom: 4px; }
.job-apply-box p { color: var(--muted); font-size: 14px; margin: 0; }

/* Sidebar */
.job-detail-sidebar { display: flex; flex-direction: column; gap: 16px; }
.job-sidebar-card {
  background: var(--wash); border: 1px solid var(--line);
  border-radius: 10px; padding: 20px;
}
.job-sidebar-card h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 16px; }
.job-sidebar-company { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sidebar-contact-link {
  display: block; padding: 10px 14px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none; color: var(--ink);
  text-align: center; transition: border-color .12s;
}
.sidebar-contact-link:hover { border-color: var(--accent); color: var(--accent); }
.related-job-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
}
.related-job-link:last-child { border-bottom: none; }
.related-job-link span { font-size: 14px; font-weight: 600; }
.related-job-link small { color: var(--muted); font-size: 12px; }
.related-job-link:hover span { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .dashboard-wrap { flex-direction: column; }
  .dash-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--line); flex-direction: row; flex-wrap: wrap; padding: 16px; }
  .dash-firm-info { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .dash-nav { flex-direction: row; flex-wrap: wrap; }
  .dash-content { padding: 20px 16px; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .job-detail-sidebar { order: -1; }
  .jobs-filter-bar { flex-direction: column; align-items: stretch; }
  .filter-field { min-width: 100%; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
