@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #4b5058;
  --bg-surface: #3f444b;
  --bg-card: #353a40;
  --text-light: #f8fafc;
  --text-muted: #d1d5db;
  --accent-primary: #3b82f6;
  --accent-hover: #2563eb;
  --wa-green: #25D366;
  --border-color: rgba(255, 255, 255, 0.12);
  --font-main: 'Inter', sans-serif;
}

/* Mid-gray theme tweaks */
.site-header { background: rgba(75, 80, 88, 0.9) !important; }
.btn-secondary { background: rgba(255, 255, 255, 0.12) !important; color: var(--text-light) !important; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2) !important; }
.mobile-menu { background: var(--bg-surface) !important; }
.hamburger span { background: var(--text-light) !important; }

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  white-space: nowrap;
}

.logo-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .logo {
    font-size: 1.05rem;
    gap: 6px;
  }
  .logo-icon {
    width: 28px;
    height: 28px;
  }
}

/* Hide Lovable edit badge */
#lovable-badge,
[data-lovable-badge],
a[href*="lovable.dev"][target="_blank"] {
  display: none !important;
}

.logo-icon {
  background: var(--accent-primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-accent {
  color: var(--accent-primary);
}

.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-light);
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Mobile Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--bg-surface);
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  padding: 140px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.hero-headline {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.text-accent {
  color: var(--accent-primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Dashboard Mockup */
.dashboard-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.dash-title {
  font-weight: 600;
}

.badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-live {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.badge-green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.badge-yellow {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.badge-slate {
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-chip {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.stat-label-sm {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-big {
  font-size: 1.25rem;
  font-weight: 700;
}

.task-list-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.task-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.task-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Trust Banner */
.trust-banner {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

/* Sections General */
.section-dark {
  background: var(--bg-dark);
  padding: 100px 0;
}

.section-surface {
  background: var(--bg-surface);
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s;
}

.section-surface .card {
  background: var(--bg-dark);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Service Cards Specifics */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 24px;
  transition: color 0.3s;
}

.link-arrow:hover {
  color: var(--accent-primary);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.contact-card:hover {
  border-color: var(--accent-primary);
}

.contact-label {
  display: block;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  transition: 0.3s;
}

.contact-value:hover {
  color: var(--accent-primary);
}

.icon-box-wa {
  background: rgba(37, 211, 102, 0.1);
  color: var(--wa-green);
  border-color: rgba(37, 211, 102, 0.2);
}

.wa-value:hover {
  color: var(--wa-green);
}

/* Footer */
.site-footer {
  background: #000;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

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

.footer-nav a {
  color: var(--text-muted);
  transition: 0.3s;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: 0.3s;
  border: 1px solid var(--border-color);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.social-wa:hover {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--wa-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse-glow 2s infinite;
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .trust-bar {
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .trust-inner {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== High-contrast CTAs & new elements ===== */
:root {
  --accent-primary: #1d4ed8;
  --accent-hover: #1e40af;
  --wa-green: #16c64f;
}

.btn-primary {
  background: #1d4ed8 !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
}
.btn-primary:hover { background: #1e40af !important; }

.nav-cta { background: #1d4ed8 !important; color: #fff !important; }

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  margin: -8px 0 20px;
  letter-spacing: -0.2px;
}

.hero-bullets, .card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.hero-bullets li, .card-bullets li {
  position: relative;
  padding: 6px 14px 6px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}
.hero-bullets li::before, .card-bullets li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16c64f;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(22, 198, 79, 0.7);
}
.card-bullets { margin-top: 8px; }

/* Hide collapsed paragraph wrappers around bullets */
.card-text[style*="display:none"] { display: none !important; }

/* Floating WhatsApp pill with CTA text */
.wa-float {
  width: auto !important;
  height: auto !important;
  border-radius: 999px !important;
  padding: 14px 22px;
  gap: 10px;
  background: #16c64f !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(22, 198, 79, 0.55);
}
.wa-float .wa-float-text {
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .wa-float { padding: 12px 16px; font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════════ */
/*  Hizmet Bölgeleri (İller)                                       */
/* ═══════════════════════════════════════════════════════════════ */
.iller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.il-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.il-chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
  background: var(--bg-surface);
}
.il-chip-more {
  background: linear-gradient(135deg, var(--accent-primary), #60a5fa);
  border-color: transparent;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  Karşılaştırma Tablosu                                          */
/* ═══════════════════════════════════════════════════════════════ */
.compare-table {
  margin-top: 32px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}
.compare-head {
  background: var(--bg-surface);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.compare-feat { font-weight: 600; }
.compare-bad { color: rgba(255,255,255,0.55); text-decoration: line-through; }
.compare-good {
  color: #16c64f;
  font-weight: 700;
}
.compare-good::before {
  content: "✓";
  margin-right: 8px;
  color: #16c64f;
}
.compare-us { color: var(--accent-primary); }
@media (max-width: 640px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-head .compare-feat,
  .compare-row > .compare-feat {
    grid-column: 1 / -1;
    background: var(--bg-surface);
    padding-bottom: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7);
  }
  .compare-cell { padding: 12px 14px; font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════════ */
/*  S.S.S.                                                         */
/* ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--accent-primary); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-primary);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 20px 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}
