/* Milyon Tek Kariyer - Farklı Tema */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --ink: #1e293b;
  --muted: #64748b;
  --surface: #f1f5f9;
  --paper: #ffffff;
  --line: #e2e8f0;
  --highlight: #059669;
  --highlight-soft: #d1fae5;
  --elevation: 0 2px 8px rgba(15, 23, 42, .06);
  --elevation-2: 0 8px 24px rgba(15, 23, 42, .12);
  --round: 6px;
  --round-sm: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header - Kompakt */
.site-header {
  background: var(--paper);
  box-shadow: var(--elevation);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo:hover { text-decoration: none; }
.logo svg { width: 24px; height: 24px; fill: var(--accent); }

.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { color: var(--muted); font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Hero - Sol hizalı, farklı gradient */
.hero {
  background: linear-gradient(120deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  color: #fff;
  padding: 48px 20px;
  text-align: left;
}
.hero .container { max-width: 1140px; }
.hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.hero p { font-size: 1.05rem; opacity: .95; max-width: 520px; }

/* Job Listing */
.jobs-section { padding: 36px 0 56px; }
.jobs-section h2 { font-size: 1.4rem; margin-bottom: 20px; font-weight: 600; }
.jobs-section h2 .badge {
  font-size: .7rem;
  font-weight: 600;
  background: var(--highlight-soft);
  color: var(--highlight);
  padding: 3px 8px;
  border-radius: var(--round-sm);
  margin-left: 6px;
  vertical-align: middle;
}

.site-map-links {
  margin-top: 40px;
  padding: 28px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: var(--round);
  box-shadow: var(--elevation);
}
.site-map-links h3 { font-size: 1.15rem; margin-bottom: 6px; }
.site-map-links > p { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sitemap-grid.sitemap-4col { grid-template-columns: repeat(4, 1fr); }
.sitemap-legal { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.index-intro { font-size: .95rem; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }
.sitemap-col h4 { font-size: .9rem; margin-bottom: 10px; color: var(--accent); font-weight: 600; }
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col li { margin-bottom: 5px; }
.sitemap-col a { font-size: .85rem; }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: 1fr; } .sitemap-grid.sitemap-4col { grid-template-columns: 1fr; } }

.job-list { display: flex; flex-direction: column; gap: 12px; }

.job-card {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: var(--round);
  padding: 20px 24px;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--elevation);
}
.job-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--elevation-2);
}
.job-card-content { flex: 1; }
.job-card h3 { font-size: 1.1rem; margin-bottom: 6px; font-weight: 600; }
.job-card h3 a { color: var(--ink); }
.job-card h3 a:hover { color: var(--accent); }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 6px;
}
.job-meta span { display: flex; align-items: center; gap: 3px; }
.job-tag {
  display: inline-block;
  background: var(--highlight-soft);
  color: var(--highlight);
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--round-sm);
  white-space: nowrap;
}
.job-salary { font-weight: 600; color: var(--ink); margin-top: 6px; font-size: .9rem; }

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: var(--accent);
  padding: 9px 18px;
  border-radius: var(--round);
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.apply-btn:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* Job Detail */
.breadcrumb {
  padding: 14px 0;
  font-size: .85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }

.job-detail { padding-bottom: 48px; }
.job-detail-header {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: var(--round);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--elevation);
}
.job-detail-header h1 { font-size: 1.6rem; margin-bottom: 6px; font-weight: 700; }
.job-detail-header .company { font-size: .95rem; color: var(--muted); margin-bottom: 14px; }

.job-detail-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}
.job-description {
  background: var(--paper);
  border-radius: var(--round);
  padding: 28px;
  box-shadow: var(--elevation);
}
.job-description h2 { font-size: 1.2rem; margin: 22px 0 10px; font-weight: 600; }
.job-description h2:first-child { margin-top: 0; }
.job-description ul { padding-left: 18px; margin: 6px 0; }
.job-description li { margin-bottom: 5px; }
.job-description p { margin-bottom: 10px; }

.job-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sidebar-card {
  background: var(--paper);
  border-radius: var(--round);
  padding: 20px;
  box-shadow: var(--elevation);
}
.sidebar-card h3 { font-size: .95rem; margin-bottom: 10px; font-weight: 600; }
.sidebar-card .info-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .85rem;
}
.sidebar-card .info-row:last-child { border-bottom: none; }
.sidebar-card .info-label { color: var(--muted); }
.sidebar-card .info-value { font-weight: 600; }

.apply-btn-lg {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--round);
  font-size: .95rem;
  font-weight: 600;
  border: none;
}
.apply-btn-lg:hover { background: var(--accent-hover); text-decoration: none; }

/* Page Content */
.page-content { padding: 0 0 48px; }
.page-content h1 { font-size: 1.85rem; margin-bottom: 14px; font-weight: 700; }
.page-content h2 { font-size: 1.3rem; margin: 28px 0 10px; color: var(--ink); font-weight: 600; }
.page-content h3 { font-size: 1.05rem; margin: 18px 0 6px; }
.page-content p { margin-bottom: 10px; }
.page-content ul { padding-left: 18px; margin: 6px 0 14px; }
.page-content li { margin-bottom: 5px; }
.lead-text { font-size: 1.1rem; color: var(--muted); margin-bottom: 20px; }
.nav-links a.active { color: var(--accent); font-weight: 600; }

/* Partners */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin: 18px 0 28px; }
.partner-card {
  background: var(--paper);
  border-radius: var(--round);
  padding: 20px;
  transition: box-shadow .15s;
  box-shadow: var(--elevation);
}
.partner-card:hover { box-shadow: var(--elevation-2); }
.partner-card h3 { margin: 0 0 6px; font-size: 1rem; color: var(--accent); }
.partner-card p { font-size: .85rem; margin: 0; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 18px 0 28px; }
.stat-card {
  background: linear-gradient(140deg, var(--accent), #14b8a6);
  color: #fff;
  border-radius: var(--round);
  padding: 24px 18px;
  text-align: center;
}
.stat-number { font-size: 1.75rem; font-weight: 800; }
.stat-label { font-size: .85rem; opacity: .92; margin-top: 3px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 20px 0 28px; }
.contact-info { display: block; }
.contact-item { margin-bottom: 20px; }
.contact-item h3 { font-size: .95rem; color: var(--accent); margin-bottom: 5px; }
.contact-item p { font-size: .85rem; margin-bottom: 3px; }

.contact-form-wrapper {
  background: var(--paper);
  border-radius: var(--round);
  padding: 28px;
  box-shadow: var(--elevation);
}
.contact-form-wrapper h2 { margin-top: 0; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 3px; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--round);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }
.checkbox-label { display: flex; align-items: flex-start; gap: 6px; font-size: .8rem; cursor: pointer; }
.checkbox-label input { margin-top: 2px; }

.map-container { margin: 14px 0 28px; }

/* Job Categories */
.job-categories { margin-top: 20px; }
.job-category {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: var(--round);
  box-shadow: var(--elevation);
}
.job-category h2 { font-size: 1.15rem; margin-bottom: 14px; color: var(--accent); font-weight: 600; }
.category-job-list { list-style: none; padding: 0; }
.category-job-list li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.category-job-list li:last-child { border-bottom: none; }
.category-job-list a { font-weight: 500; }
.category-cta { margin-top: 28px; text-align: center; }

/* Legal */
.legal-page h2 { border-bottom: 2px solid var(--line); padding-bottom: 6px; }
.legal-page table, .cookie-table { width: 100%; border-collapse: collapse; margin: 10px 0 18px; font-size: .85rem; }
.cookie-table th, .cookie-table td { padding: 9px 10px; border: 1px solid var(--line); text-align: left; }
.cookie-table th { background: var(--surface); font-weight: 600; }

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  text-align: left;
  margin-bottom: 24px;
}
.footer-col h4 { font-size: .9rem; color: var(--ink); margin-bottom: 10px; font-weight: 600; }
.footer-col p { font-size: .8rem; margin-bottom: 6px; color: var(--muted); line-height: 1.5; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { font-size: .85rem; color: var(--muted); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 36px 20px 24px;
  color: var(--muted);
  font-size: .85rem;
}

@media (max-width: 768px) {
  .job-detail-body { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: stretch; }
  .apply-btn { align-self: flex-start; }
  .hero h1 { font-size: 1.6rem; }
  .hero { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .nav-links { gap: 10px; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .partners-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cookie-table { font-size: .75rem; }
  .cookie-table th, .cookie-table td { padding: 5px 6px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-col { text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Apply Modal */
.apply-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.apply-modal-overlay.active { display: flex; }
.apply-modal {
  background: var(--paper);
  border-radius: var(--round);
  max-width: 400px;
  width: 100%;
  padding: 24px;
  box-shadow: var(--elevation-2);
  position: relative;
  border-top: 4px solid var(--accent);
}
.apply-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px;
}
.apply-modal-close:hover { color: var(--ink); }
.apply-modal h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
.apply-modal p { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.apply-modal .modal-cta { margin-top: 14px; }
.apply-modal .modal-cta .apply-btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.apply-modal .modal-cta .apply-btn:hover { background: var(--accent-hover); }

/* Company / Firma sayfaları */
.company-detail { padding: 0 0 48px; }
.company-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .company-card { grid-template-columns: 1fr; }
}
.company-header {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: var(--round);
  padding: 28px;
  box-shadow: var(--elevation);
}
.company-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.company-header h1 { font-size: 1.6rem; margin: 0; font-weight: 700; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--highlight-soft);
  color: var(--highlight);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--round-sm);
}
.verified-tag {
  font-size: .7rem;
  color: var(--highlight);
  font-weight: 600;
  margin-left: 4px;
}
.company-desc { font-size: .95rem; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.company-site-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--round);
  font-size: .9rem;
  font-weight: 600;
}
.company-site-btn:hover { background: var(--accent-hover); text-decoration: none; color: #fff; }
.company-jobs-card {
  background: var(--paper);
  border-radius: var(--round);
  padding: 24px;
  box-shadow: var(--elevation);
}
.company-jobs-card h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-count-badge {
  font-size: .75rem;
  font-weight: 600;
  background: var(--highlight-soft);
  color: var(--highlight);
  padding: 3px 8px;
  border-radius: var(--round-sm);
}
.company-jobs { margin-top: 24px; }
.company-jobs h2 { font-size: 1.2rem; margin-bottom: 14px; }
.company-job-list { list-style: none; padding: 0; }
.company-job-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  transition: padding-left .15s;
}
.company-job-list li:hover { padding-left: 6px; }
.company-job-list li:last-child { border-bottom: none; }
.company-job-list a { font-weight: 500; }
.company-index-list { list-style: none; padding: 0; }
.company-index-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.company-index-list li:last-child { border-bottom: none; }
.company-index-list a { font-weight: 500; }
