/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top, #0b2340 0%, #020617 55%, #020617 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font-family: inherit;
}

/* ========== VARIABLES ========== */
:root {
  --color-bg: #020617;
  --color-bg-alt: rgba(10, 16, 30, 0.95);
  --color-card: rgba(12, 20, 37, 0.96);
  --color-card-alt: rgba(14, 26, 47, 0.96);
  --color-border: rgba(148, 163, 184, 0.35);
  --color-border-soft: rgba(15, 23, 42, 0.9);
  --color-primary: #0f3b63;
  --color-primary-soft: rgba(15, 59, 99, 0.35);
  --color-primary-strong: #1c7a5e;
  --color-gold: #d9a847;
  --color-gold-soft: rgba(217, 168, 71, 0.2);
  --color-green: #22c55e;
  --color-green-soft: rgba(34, 197, 94, 0.18);
  --color-text-soft: #a5b0d3;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.7);
  --shadow-soft-sm: 0 12px 35px rgba(0, 0, 0, 0.5);
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s ease-out;
  --blur-bg: 18px;
}

/* ========== LAYOUT ========== */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top, rgba(15, 59, 99, 0.32), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(28, 122, 94, 0.32), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.2), transparent 55%),
    var(--color-bg);
  color: #f9fafb;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.96),
    rgba(2, 6, 23, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
}

.footer-logo-img {
  height: 48px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #e5e7eb;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold), var(--color-primary-strong));
  border-radius: 999px;
  transition: width var(--transition-med);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0.55rem 1.25rem;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #e5e7eb;
  box-shadow: 0 15px 40px rgba(15, 59, 99, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(28, 122, 94, 0.9);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.btn-outline:hover {
  border-color: var(--color-gold);
  background: rgba(15, 23, 42, 1);
}

.btn-ghost {
  border: 1px solid rgba(248, 250, 252, 0.4);
  background: transparent;
  color: #f9fafb;
}

.btn-ghost:hover {
  border-color: rgba(248, 250, 252, 0.8);
  background: rgba(15, 23, 42, 0.4);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
}

.nav-toggle i {
  font-size: 1.2rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 4rem 0 4.5rem;
}

.hero-gradient {
  position: absolute;
  inset: -200px 0 auto 0;
  z-index: -1;
  background:
    radial-gradient(circle at top, rgba(15, 59, 99, 0.4), transparent 60%),
    radial-gradient(circle at 70% 10%, rgba(28, 122, 94, 0.35), transparent 65%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

/* Hero left */
.hero-left {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  color: #e5e7eb;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
}

.hero-badge i {
  color: var(--color-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-top: 1.4rem;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(to right, var(--color-gold), var(--color-primary-strong));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.98rem;
  color: var(--color-text-soft);
  max-width: 520px;
}

/* Hero search */
.hero-search {
  margin-top: 1.8rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.96),
    rgba(3, 7, 18, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: flex-end;
}

.hero-search .field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-search label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero-search select,
.hero-search input {
  border-radius: 999px;
  border: 1px solid rgba(30, 64, 175, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.85rem;
  padding: 0.55rem 0.85rem;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.hero-search select:focus,
.hero-search input:focus {
  border-color: rgba(37, 99, 235, 0.95);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.7);
  background: rgba(15, 23, 42, 1);
}

.hero-search .btn-primary {
  width: 100%;
  margin-top: 0.8rem;
}

/* Hero stats */
.hero-stats {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-card {
  min-width: 150px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 0 0, rgba(217, 168, 71, 0.22), rgba(15, 23, 42, 0.97));
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.9);
}

.stat-label {
  font-size: 0.7rem;
  color: #e5e7eb;
  flex: 1;
}

.stat-number {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.1rem;
}

.stat-plus {
  font-size: 1rem;
  color: var(--color-gold);
}

/* Hero right card */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 10% 0, rgba(217, 168, 71, 0.2), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent);
  top: -40%;
  right: -40%;
  opacity: 0.45;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.pill {
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.pill-green {
  background: var(--color-green-soft);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.7);
}

.pill-gold {
  background: var(--color-gold-soft);
  color: #fef3c7;
  border: 1px solid rgba(217, 168, 71, 0.9);
}

.hero-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* HERO MAP – TÜRKİYE HARİTASI */
.hero-map {
  width: 100%;
  height: 190px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background:
    url("turkiye-haritasi.png") center/contain no-repeat,
    radial-gradient(circle at 10% 20%, rgba(15, 59, 99, 0.7), transparent 60%),
    radial-gradient(circle at 80% 40%, rgba(28, 122, 94, 0.65), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(56, 189, 248, 0.5), transparent 60%),
    #020617;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.8rem;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.95);
}

/* Genel ping stili */
.map-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 1);
  animation: pulse 2s infinite;
}

/* Şehir bazlı konumlar (yaklaşık, daha gerçekçi dağılım) */
.map-point-istanbul {
  top: 45%;
  left: 23%;
}

.map-point-bursa {
  top: 50%;
  left: 27%;
}

.map-point-izmir {
  top: 62%;
  left: 22%;
}

.map-point-ankara {
  top: 47%;
  left: 45%;
}

.map-point-antalya {
  top: 66%;
  left: 40%;
}

.map-point-adana {
  top: 60%;
  left: 60%;
}

.map-point-gaziantep {
  top: 63%;
  left: 66%;
}

.map-point-diyarbakir {
  top: 55%;
  left: 73%;
}

.map-point-van {
  top: 50%;
  left: 83%;
}

.map-point-trabzon {
  top: 38%;
  left: 60%;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.72rem;
}

.mini-stat {
  flex: 1;
  padding: 0.65rem 0.7rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.mini-label {
  color: #9ca3af;
  display: block;
  margin-bottom: 0.15rem;
}

.mini-value {
  font-weight: 600;
}

/* ========== SECTIONS ========== */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(var(--blur-bg));
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.section-header {
  text-align: left;
  margin-bottom: 2.3rem;
  max-width: 640px;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #cbd5f5;
  margin-bottom: 0.9rem;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

/* Info cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-card {
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--color-primary-strong), #020617);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.info-icon i {
  color: #e5e7eb;
  font-size: 1.1rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.info-card p {
  font-size: 0.85rem;
}

.info-card ul {
  list-style: none;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-card li {
  font-size: 0.82rem;
  color: #cbd5f5;
  position: relative;
  padding-left: 1.15rem;
}

.info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  color: var(--color-green);
  font-weight: 600;
}

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.city-card {
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, var(--color-primary-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.city-card:hover::before {
  opacity: 1;
}

.city-label {
  font-weight: 600;
  font-size: 1rem;
}

.city-meta {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.card-link {
  margin-top: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.card-link i {
  font-size: 0.9rem;
}

.city-card:hover .card-link {
  transform: translateY(-1px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
}

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.featured-card {
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  background: var(--color-card);
  border: 1px solid rgba(217, 168, 71, 0.35);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-card h3 {
  font-size: 1rem;
}

.featured-card p {
  font-size: 0.85rem;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.featured-meta i {
  color: var(--color-gold);
}

/* Jobs */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.job-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft-sm);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.job-card .pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.job-card h3 {
  font-size: 0.98rem;
}

.job-company {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.job-location,
.job-type {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.job-location i,
.job-type i {
  margin-right: 0.3rem;
}

.section-footer-center {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #cbd5f5;
}

.blog-card h3 {
  font-size: 0.96rem;
}

/* CTA section */
.section-cta {
  padding: 3.8rem 0 4.2rem;
}

.cta-inner {
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-strong),
    var(--color-gold)
  );
  box-shadow: 0 25px 80px rgba(15, 59, 99, 0.85);
  border: 1px solid rgba(248, 250, 252, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: center;
}

.cta-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cta-text p {
  font-size: 0.9rem;
  color: #f9fafb;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section-cta .btn-primary {
  background: #020617;
  color: #f9fafb;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.9);
}

.section-cta .btn-ghost {
  border-color: rgba(15, 23, 42, 0.5);
  color: #020617;
  background: rgba(248, 250, 252, 0.22);
}

.section-cta .btn-ghost:hover {
  background: rgba(248, 250, 252, 0.32);
}

/* ========== FOOTER ========== */
.footer {
  margin-top: auto;
  padding-top: 2.4rem;
  background: radial-gradient(circle at top, #020617, #020617);
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.8rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-top: 0.8rem;
  max-width: 420px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  font-size: 0.85rem;
}

.footer-links h4 {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: var(--color-text-soft);
  margin-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 1rem;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(148, 163, 184, 0.22);
  transform: translateY(-1px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 0.8rem 0 1rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-made-by strong {
  color: var(--color-gold);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-search .btn-primary {
    margin-top: 0.2rem;
  }

  .cards-3,
  .city-grid,
  .featured-grid,
  .jobs-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex;
  }

  .nav.open {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    padding: 0.8rem 1.5rem 1.2rem;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav.open .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav.open .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .cards-3,
  .city-grid,
  .featured-grid,
  .jobs-grid,
  .blog-grid,
  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    padding: 1.4rem 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
  }

  .hero-card {
    max-width: 100%;
  }

  .cta-text h2 {
    font-size: 1.25rem;
  }
}

/* ============================
   OPTIK BUL SAYFASI
   ============================ */

.optics-results-section {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.optic-location-card {
  margin-top: 1.5rem;
  margin-bottom: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(217, 168, 71, 0.16), transparent 60%),
    rgba(15, 23, 42, 0.96);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.optic-location-label {
  font-size: 0.78rem;
  color: #9ca3af;
}

.optic-location-text {
  font-size: 0.95rem;
  font-weight: 500;
}

.optic-location-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.optic-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  color: #e5e7eb;
}

.optic-location-badge i {
  font-size: 0.95rem;
  color: #d9a847;
}

.optic-results-card {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.9);
  padding: 1.1rem 1.2rem;
}

.optic-results-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.optic-results-title {
  font-size: 1rem;
}

.optic-results-subtitle {
  font-size: 0.8rem;
  color: #9ca3af;
}

.optic-table-wrapper {
  margin-top: 0.4rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

/* Tablo */
.optic-results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.optic-results-table thead tr {
  background: rgba(15, 23, 42, 0.95);
}

.optic-results-table th,
.optic-results-table td {
  padding: 0.55rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.optic-results-table th {
  font-weight: 500;
  color: #9ca3af;
  font-size: 0.78rem;
}

.optic-results-table tbody tr:hover {
  background: rgba(15, 23, 42, 0.92);
}

.optic-no-results {
  display: none;
  padding-top: 0.7rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.optic-no-results a {
  color: #facc15;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
  .optic-location-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .optic-results-card {
    padding: 1rem 0.9rem;
  }

  .optic-results-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .optic-results-table th,
  .optic-results-table td {
    padding: 0.45rem 0.5rem;
  }
}
