/* ============================================================
   ŞENBAŞ YAZILIM — Main Stylesheet
   Dark Tech Theme · Blue Gradient · Corporate
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-primary:     #020c1b;
  --bg-secondary:   #041426;
  --bg-card:        rgba(8, 28, 55, 0.7);
  --bg-card-hover:  rgba(10, 35, 68, 0.85);
  --bg-glass:       rgba(255, 255, 255, 0.04);

  --blue-primary:   #0066ff;
  --blue-light:     #3d8bff;
  --blue-neon:      #00d4ff;
  --blue-deep:      #003d99;
  --accent:         #00ffcc;

  --gradient-main:  linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-dark:  linear-gradient(135deg, #020c1b 0%, #041e40 100%);
  --gradient-card:  linear-gradient(135deg, rgba(0,102,255,0.12) 0%, rgba(0,212,255,0.06) 100%);
  --gradient-text:  linear-gradient(90deg, #0066ff, #00d4ff);

  --text-primary:   #e8f4ff;
  --text-secondary: #8ab0d4;
  --text-muted:     #4d7a9e;
  --text-white:     #ffffff;

  --border-color:   rgba(0, 102, 255, 0.2);
  --border-glow:    rgba(0, 212, 255, 0.4);

  --shadow-blue:    0 8px 32px rgba(0, 102, 255, 0.25);
  --shadow-neon:    0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.5);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:   'Outfit', sans-serif;
  --font-body:      'Plus Jakarta Sans', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 15px;
}

/* Grid background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.container { position: relative; z-index: 1; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

a { color: var(--blue-neon); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

p { color: var(--text-secondary); margin-bottom: 1rem; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-neon);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  background: rgba(2, 12, 27, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 !important;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem !important;
  color: white !important;
  letter-spacing: -0.5px;
  padding: 1rem 0;
}

.navbar-brand span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white) !important;
  background: rgba(0,102,255,0.1);
}

.navbar-toggler {
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
}

.nav-lang {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 4px;
  border: 1px solid var(--border-color);
}

.nav-lang a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-lang a.active,
.nav-lang a:hover {
  background: var(--gradient-main);
  color: white;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gradient {
  background: var(--gradient-main);
  color: white !important;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 4px 15px rgba(0,102,255,0.35);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,102,255,0.5);
  color: white !important;
}

.btn-gradient-lg {
  background: var(--gradient-main);
  color: white !important;
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-blue);
}

.btn-gradient-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,102,255,0.5);
  color: white !important;
}

.btn-outline-neon {
  background: transparent;
  border: 1.5px solid var(--blue-neon);
  color: var(--blue-neon) !important;
  padding: 0.82rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-outline-neon:hover {
  background: rgba(0,212,255,0.1);
  color: white !important;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  color: var(--text-secondary) !important;
  padding: 0.5rem 1.2rem;
}

.btn-ghost:hover {
  background: rgba(0,102,255,0.15);
  color: var(--text-white) !important;
  border-color: var(--blue-primary);
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  border-color: rgba(0,102,255,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  background: var(--bg-card-hover);
}

.card-glass {
  background: var(--bg-glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-title span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Hero visual element */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.hero-orbit:nth-child(1) { width: 300px; height: 300px; animation-duration: 20s; }
.hero-orbit:nth-child(2) { width: 420px; height: 420px; animation-duration: 30s; animation-direction: reverse; border-color: rgba(0,212,255,0.15); }
.hero-orbit:nth-child(3) { width: 520px; height: 520px; animation-duration: 40s; border-color: rgba(0,102,255,0.08); }

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-main);
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--blue-neon);
}

.hero-core {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(0,102,255,0.5), 0 0 120px rgba(0,102,255,0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-core i { font-size: 4rem; color: white; }

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 60px rgba(0,102,255,0.5), 0 0 120px rgba(0,102,255,0.2); }
  50%       { box-shadow: 0 0 80px rgba(0,212,255,0.7), 0 0 160px rgba(0,212,255,0.3); }
}

/* ── Stats Section ───────────────────────────────────────────── */
.stats-section {
  padding: 5rem 0;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Services Section ────────────────────────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(0,102,255,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--blue-neon);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 20px rgba(0,102,255,0.4);
  border-color: transparent;
}

/* ── ISO Badge ───────────────────────────────────────────────── */
.iso-banner {
  background: linear-gradient(135deg, rgba(0,102,255,0.1) 0%, rgba(0,212,255,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.iso-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}

.iso-badge {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

/* ── Product Card ────────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  border-color: rgba(0,102,255,0.45);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

.product-card .card-img-wrapper {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,212,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .card-img-wrapper img { transform: scale(1.05); }

.product-card .card-body { padding: 1.5rem; }

.product-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Blog Card ───────────────────────────────────────────────── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(0,102,255,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.blog-card .img-wrap {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,212,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .img-wrap img { transform: scale(1.05); }

.blog-card .card-body { padding: 1.5rem; }

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-control, .form-select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-primary) !important;
  padding: 0.7rem 1rem !important;
  font-size: 0.9rem;
  transition: var(--transition) !important;
}

.form-control:focus, .form-select:focus {
  background: rgba(0,102,255,0.08) !important;
  border-color: var(--blue-primary) !important;
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15) !important;
  color: var(--text-white) !important;
}

.form-control::placeholder { color: var(--text-muted) !important; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.form-select option { background: var(--bg-secondary); color: var(--text-primary); }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius-sm);
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(0, 255, 150, 0.1);
  border: 1px solid rgba(0, 255, 150, 0.3);
  color: #00ff96;
}

.alert-danger {
  background: rgba(255, 60, 80, 0.1);
  border: 1px solid rgba(255, 60, 80, 0.3);
  color: #ff6b7a;
}

.alert-info {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--blue-neon);
}

.alert-warning {
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.3);
  color: #ffb400;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 0;
}

footer h6 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-neon);
  margin-bottom: 1.5rem;
}

footer ul { list-style: none; padding: 0; }

footer ul li { margin-bottom: 0.6rem; }

footer ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

footer ul li a:hover { color: var(--text-white); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a { color: var(--blue-neon); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination .page-link {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: var(--radius-sm) !important;
  margin: 0 3px;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
}

/* ── Auth Pages ──────────────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(20px);
}

.auth-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

/* ── Panel (Client) ──────────────────────────────────────────── */
.panel-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.panel-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 4px;
}

.panel-nav-link:hover,
.panel-nav-link.active {
  background: rgba(0,102,255,0.12);
  color: var(--text-white);
}

.panel-nav-link.active { border-left: 2px solid var(--blue-neon); }

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(0,102,255,0.35);
  box-shadow: var(--shadow-card);
}

.progress { background: rgba(255,255,255,0.08); border-radius: 10px; height: 6px; }
.progress-bar { background: var(--gradient-main); border-radius: 10px; }

.badge-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-active    { background: rgba(0,255,150,0.15); color: #00ff96; border: 1px solid rgba(0,255,150,0.3); }
.badge-pending   { background: rgba(255,180,0,0.15);  color: #ffb400; border: 1px solid rgba(255,180,0,0.3); }
.badge-done      { background: rgba(0,102,255,0.15);  color: var(--blue-light); border: 1px solid rgba(0,102,255,0.3); }
.badge-cancelled { background: rgba(255,60,80,0.15);  color: #ff6b7a; border: 1px solid rgba(255,60,80,0.3); }

/* ── Tables ──────────────────────────────────────────────────── */
.table {
  color: var(--text-secondary);
  border-color: var(--border-color);
}

.table th {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-color: var(--border-color);
  padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.2);
}

.table td {
  border-color: var(--border-color);
  padding: 0.85rem 1rem;
  vertical-align: middle;
  color: var(--text-secondary);
}

.table tbody tr:hover td { background: rgba(0,102,255,0.05); }

.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ── Page Header ─────────────────────────────────────────────── */
.page-header {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

/* ── Sitemap ─────────────────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.sitemap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sitemap-item:hover {
  background: rgba(0,102,255,0.1);
  border-color: var(--border-color);
  color: var(--text-white);
}

.sitemap-item i {
  color: var(--blue-neon);
  font-size: 0.8rem;
  width: 16px;
}

/* ── Admin ───────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 260px;
  background: rgba(2, 12, 27, 0.95);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  transition: var(--transition);
}

.admin-logo {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

.admin-nav { padding: 1rem; flex: 1; overflow-y: auto; }

.admin-nav-section {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0.75rem 0.4rem;
  margin-top: 0.5rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 2px;
}

.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(0,102,255,0.12);
  color: var(--text-white);
}

.admin-nav-link.active {
  background: rgba(0,102,255,0.18);
  border-left: 2px solid var(--blue-primary);
}

.admin-nav-link i { width: 18px; text-align: center; }

.admin-content {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: rgba(2,12,27,0.9);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.admin-main { padding: 2rem; flex: 1; }

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.admin-stat-card:hover {
  border-color: rgba(0,102,255,0.35);
  box-shadow: var(--shadow-card);
}

.admin-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
}

.admin-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.admin-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,102,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue-neon);
}

.page-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.page-title-bar h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-primary); }

/* ── Utility ─────────────────────────────────────────────────── */
.text-gradient { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-neon { color: var(--blue-neon); }
.text-muted-light { color: var(--text-muted); }
.border-gradient { border: 1px solid var(--border-color); }
.bg-card { background: var(--bg-card); }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
}

.tag {
  display: inline-block;
  background: rgba(0,102,255,0.12);
  border: 1px solid rgba(0,102,255,0.25);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up { animation: fade-in-up 0.6s ease forwards; }
.animate-fade-up-1 { animation: fade-in-up 0.6s 0.1s ease both; }
.animate-fade-up-2 { animation: fade-in-up 0.6s 0.2s ease both; }
.animate-fade-up-3 { animation: fade-in-up 0.6s 0.3s ease both; }
.animate-fade-up-4 { animation: fade-in-up 0.6s 0.4s ease both; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 992px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .hero { min-height: auto; padding: 6rem 0 3rem; }
  .hero-visual { height: 320px; }
  .hero-orbit:nth-child(1) { width: 220px; height: 220px; }
  .hero-orbit:nth-child(2) { width: 300px; height: 300px; }
  .hero-orbit:nth-child(3) { width: 380px; height: 380px; }
}

@media (max-width: 768px) {
  .hero-title { letter-spacing: -1px; }
  .iso-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .panel-sidebar { position: static; margin-bottom: 1.5rem; }
  .admin-main { padding: 1rem; }
  .admin-topbar { padding: 0.75rem 1rem; }
}

/* ============================================================
   ÖZEL İMLEÇ (CURSOR) – .cur dosyası ile
   Dosya yolu: /assets/cursor/1.cur (kendi dosyanıza göre değiştirin)
   ============================================================ */

/* Tüm sayfa için özel imleç */
body,
html {
    cursor: url('/assets/cursor/1.cur'), auto;
}

/* Tıklanabilir öğeler için aynı imleç */
a,
button,
input[type="submit"],
input[type="button"],
.btn,
[role="button"],
select,
label[for],
summary {
    cursor: url('/assets/cursor/1.cur'), pointer;
}