/* =============================================
   LaptopAlan.com - Ana Stil Dosyası
   Tasarım: Neumorphism + Cyberpunk Karışımı
   Renkler: Yeşil & Mor Paleti
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;700;900&display=swap');

/* ---- CSS Değişkenleri (Light Tema) ---- */
:root {
  --bg-primary: #f0f2f5;
  --bg-secondary: #e8eaf0;
  --bg-card: #f0f2f5;
  --bg-nav: rgba(240, 242, 245, 0.92);
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #5c5c7d;
  --accent-green: #00c853;
  --accent-green-dark: #00a040;
  --accent-green-light: #69f0ae;
  --accent-purple: #7c3aed;
  --accent-purple-dark: #5b21b6;
  --accent-purple-light: #a78bfa;
  --whatsapp-color: #25d366;
  --whatsapp-dark: #128c7e;

  /* Neumorphism Gölgeler (Temiz ve Sıkı) */
  --nm-shadow-out: 4px 4px 10px #d1d5db, -4px -4px 10px #ffffff;
  --nm-shadow-in: inset 3px 3px 6px #d1d5db, inset -3px -3px 6px #ffffff;
  --nm-shadow-hover: 6px 6px 15px #c5c9d1, -6px -6px 15px #ffffff;
  --nm-shadow-btn: 3px 3px 8px #d1d5db, -3px -3px 8px #ffffff;
  --nm-shadow-btn-active: inset 2px 2px 5px #d1d5db, inset -2px -2px 5px #ffffff;

  /* Cyberpunk Neon */
  --neon-green: 0 0 10px #00c853, 0 0 20px #00c85360, 0 0 40px #00c85330;
  --neon-purple: 0 0 10px #7c3aed, 0 0 20px #7c3aed60, 0 0 40px #7c3aed30;
  --neon-whatsapp: 0 0 15px #25d366, 0 0 30px #25d36660, 0 0 60px #25d36630;

  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-lg: 28px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), opacity 200ms var(--ease-out), background-color 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), filter 200ms var(--ease-out);
  --transition-fast: transform 125ms var(--ease-out), box-shadow 125ms var(--ease-out), opacity 125ms var(--ease-out), background-color 125ms var(--ease-out), color 125ms var(--ease-out), border-color 125ms var(--ease-out), filter 125ms var(--ease-out);
  --font-main: 'Inter', system-ui, sans-serif;
  --font-display: 'Orbitron', 'Inter', sans-serif;
}

/* ---- Dark Tema ---- */
[data-theme="dark"] {
  --bg-primary: #0f0f1a;
  --bg-secondary: #1a1a2e;
  --bg-card: #16213e;
  --bg-nav: rgba(15, 15, 26, 0.95);
  --text-primary: #e8e8f8;
  --text-secondary: #a8a8c8;
  --text-muted: #8888cc;
  --accent-green: #00e676;
  --accent-green-dark: #00c853;
  --accent-green-light: #69f0ae;
  --accent-purple: #a78bfa;
  --accent-purple-dark: #7c3aed;
  --accent-purple-light: #c4b5fd;

  --nm-shadow-out: 4px 4px 10px #0a0a14, -4px -4px 10px #24243e;
  --nm-shadow-in: inset 3px 3px 6px #0a0a14, inset -3px -3px 6px #24243e;
  --nm-shadow-hover: 6px 6px 15px #05050a, -6px -6px 15px #2a2a48;
  --nm-shadow-btn: 3px 3px 8px #0a0a14, -3px -3px 8px #24243e;
  --nm-shadow-btn-active: inset 2px 2px 5px #0a0a14, inset -2px -2px 5px #24243e;

  --neon-green: 0 0 10px #00e676, 0 0 20px #00e67660, 0 0 40px #00e67630;
  --neon-purple: 0 0 10px #a78bfa, 0 0 20px #a78bfa60, 0 0 40px #a78bfa30;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

/* ---- Focus States (Accessibility) ---- */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-purple);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.25);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-green), var(--accent-purple));
  border-radius: 4px;
}

/* ---- Tipografi ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Neumorphism Kartlar ---- */
.nm-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .nm-card:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-6px);
  }
}

.nm-card:active {
  transform: translateY(0) scale(0.98);
}

.nm-inset {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--nm-shadow-in);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(124, 58, 237, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--neon-green);
  flex-shrink: 0;
}

.logo-text span {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent-green);
  background: rgba(0, 200, 83, 0.08);
}

.nav-links a.active {
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.1);
}

.nav-links a[href$="index.html"].active,
.nav-links a[href="."].active,
.nav-links a[href="/"].active {
  color: var(--accent-green);
  background: rgba(0, 200, 83, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Tema Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--bg-card);
  box-shadow: var(--nm-shadow-btn);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--text-primary);
  flex-shrink: 0;
}

.theme-toggle:hover {
  box-shadow: var(--nm-shadow-hover);
  transform: rotate(20deg);
}

.theme-toggle:active {
  box-shadow: var(--nm-shadow-btn-active);
  transform: rotate(20deg) scale(0.95);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  background: var(--bg-card);
  box-shadow: var(--nm-shadow-btn);
  border: none;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.mobile-nav a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent-green);
  box-shadow: var(--nm-shadow-hover);
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--neon-whatsapp), 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: floatPulse 2.5s infinite;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .float-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px #25d366, 0 0 40px #25d36680, 0 12px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
  }
}

.float-whatsapp svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: var(--neon-whatsapp), 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 0 20px #25d366, 0 0 40px #25d36660, 0 12px 35px rgba(37, 211, 102, 0.6);
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(10deg);
  }

  45% {
    transform: rotate(-5deg);
  }

  60% {
    transform: rotate(0deg);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-bg .glow-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowFloat 6s ease-in-out infinite;
}

.hero-bg .glow-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowFloat 8s ease-in-out infinite reverse;
}

@keyframes glowFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
  animation: fadeInDown 150ms var(--ease-out) forwards;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp 150ms var(--ease-out) 0.05s both;
}

.hero-title .highlight-green {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-title .highlight-purple {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 150ms var(--ease-out) 0.1s both;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 150ms var(--ease-out) 0.1s both;
}

.hero-cta-group .cta-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeInUp 150ms var(--ease-out) 0.15s both;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--nm-shadow-out);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Yeni Hero Görsel Tarafı - Glass Composition */
.hero-visual {
  position: relative;
  animation: fadeInRight 150ms var(--ease-out) 0.1s both;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  z-index: 10;
}



.glass-composition {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .glass-card-item:hover {
    transform: translateY(-10px) scale(1.08) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
}

.glass-img-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  padding: 0.45rem;
}

.glass-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

.glass-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Animasyonlu Serbest Salınım */
@keyframes float1 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-5px, -15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float3 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, 15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float4 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float5 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-8px, -5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float6 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(8px, 5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float7 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5px, -8px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float8 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-5px, 8px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Pozisyonlar */
.float-1 {
  top: 5%;
  left: 5%;
  animation: float1 6s ease-in-out infinite;
}

.float-2 {
  top: 8%;
  right: 5%;
  animation: float2 7s ease-in-out infinite;
}

.float-3 {
  bottom: 8%;
  left: 5%;
  animation: float3 8s ease-in-out infinite;
}

.float-4 {
  bottom: 5%;
  right: 5%;
  animation: float4 6.5s ease-in-out infinite;
}

.float-5 {
  top: 38%;
  left: -2%;
  animation: float5 7.5s ease-in-out infinite;
}

.float-6 {
  top: 40%;
  right: -2%;
  animation: float6 6.8s ease-in-out infinite;
}

.float-7 {
  top: -2%;
  left: 38%;
  animation: float7 8.2s ease-in-out infinite;
}

.float-8 {
  bottom: -2%;
  left: 38%;
  animation: float8 7.2s ease-in-out infinite;
}

/* Merkez Vurgu Elementi */
.glass-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-green) 0%, #10b981 100%);
  color: white;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
  z-index: 5;
  gap: 0.25rem;
}

.glass-center-badge::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 83, 0.2);
  animation: ripple 2s infinite cubic-bezier(0.65, 0, 0.34, 1);
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.glass-center-badge .badge-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
}

.glass-center-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.glass-center-badge .badge-text .highlight {
  font-weight: 800;
  font-size: 1rem;
}

.hero-price-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--neon-green), 0 8px 20px rgba(0, 200, 83, 0.3);
  white-space: nowrap;
  animation: bounceIn 150ms var(--ease-out) 0.2s both;
}

/* =============================================
   BUTONLAR
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background-color 200ms var(--ease-out), color 200ms var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover::after {
    opacity: 1;
  }
}

/* WhatsApp Butonu */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), var(--neon-whatsapp);
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), var(--neon-whatsapp);
    color: #fff;
  }
}

.btn-whatsapp:active {
  transform: translateY(0) scale(0.98);
}

/* Hero Ana WhatsApp - Büyük */
.btn-whatsapp-hero {
  font-size: 1.25rem;
  padding: 1.1rem 2.25rem;
  border-radius: 18px;
  animation: pulseCTA 2.5s infinite;
}

@keyframes pulseCTA {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Telefon Butonu */
.btn-phone {
  background: var(--bg-card);
  color: var(--accent-purple);
  box-shadow: var(--nm-shadow-btn);
}

@media (hover: hover) and (pointer: fine) {
  .btn-phone:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-2px);
    color: var(--accent-purple);
  }
}

/* Yeşil Vurgu */
.btn-green {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.45);
    color: #fff;
  }
}

/* Mor Vurgu */
.btn-purple {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45);
    color: #fff;
  }
}

/* =============================================
   SECTION GENEL
   ============================================= */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--accent-purple);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  padding: 1.5rem;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 1.5rem !important;
  text-align: left !important;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  min-height: 120px;
}

@media (hover: hover) and (pointer: fine) {
  .step-card:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-6px);
  }
}

.step-card:active {
  transform: scale(0.97);
}

.step-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 16px;
  color: var(--accent-green);
}

.step-card:nth-child(even) .step-icon-wrapper {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 200, 83, 0.1));
  color: var(--accent-purple);
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--bg-card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.step-card:nth-child(even) .step-num {
  background: var(--accent-purple);
}

.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.step-icon {
  margin: 0;
}

.step-icon svg {
  margin: 0 !important;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   KATEGORİLER
   ============================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.footer-bottom {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
}

/* =============================================
   DROPDOWN MENÜ
   ============================================= */
.nav-links .dropdown {
  position: relative !important;
  display: flex;
  align-items: center;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  padding: 0.6rem 1rem !important;
  border-radius: 8px !important;
  text-align: left;
  display: block;
}

/* =============================================
   SEO METİN GİZLE / GÖSTER
   ============================================= */
.seo-text-container {
  position: relative;
}

.seo-text-content {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.seo-text-content.expanded {
  max-height: 3000px;
}

.seo-text-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.seo-text-content.expanded::after {
  opacity: 0;
}

.btn-show-more {
  display: block;
  margin: 1.5rem auto;
  background: none;
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--accent-purple);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.85rem;
}

.btn-show-more:hover {
  background: rgba(124, 58, 237, 0.1);
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
  transform: scaleX(0);
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-6px);
  }

  .category-card:hover::after {
    transform: scaleX(1);
  }
}

.category-card:active {
  transform: scale(0.97);
}

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg-secondary);
  box-shadow: var(--nm-shadow-in);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover .cat-icon {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(124, 58, 237, 0.15));
    box-shadow: var(--nm-shadow-out);
  }
}

.cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.cat-arrow {
  font-size: 0.8rem;
  color: var(--accent-green);
  opacity: 0;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover .cat-arrow {
    opacity: 1;
  }
}

/* =============================================
   NEDEN BİZ
   ============================================= */
.why-us {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  padding: 2rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-4px);
  }
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(0, 200, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-icon svg {
  display: block;
  margin: auto;
}

.why-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   BÖLGELER
   ============================================= */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}

.region-pill {
  background: var(--bg-card);
  border-radius: 50px;
  box-shadow: var(--nm-shadow-btn);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  transition: var(--transition);
  cursor: default;
  border: 1px solid transparent;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.region-pill::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .region-pill:hover {
    color: var(--accent-green);
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-2px);
  }
}

.region-pill:active {
  transform: scale(0.96);
}

/* =============================================
   BÜYÜK CTA BÖLÜMÜ
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--accent-green);
}

/* =============================================
   SSS (FAQ)
   ============================================= */
.faq-section {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--nm-shadow-out);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-secondary);
  box-shadow: var(--nm-shadow-in);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
}

.footer-contact a:hover {
  color: var(--accent-green-dark);
}

/* =============================================
   SAYFA BAŞLIĞI (İç Sayfalar)
   ============================================= */
.page-hero {
  padding: 7rem 0 4rem;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent-green);
}

.breadcrumb span {
  color: var(--accent-green);
}

/* =============================================
   İÇERİK (İç Sayfalar)
   ============================================= */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.content-main .nm-card {
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.content-main h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-main h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--accent-purple);
}

.content-main p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* Sidebar */
.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sidebar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sidebar-card .btn {
  width: 100%;
}

/* Brand Tags */
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.brand-tag {
  background: var(--bg-secondary);
  box-shadow: var(--nm-shadow-btn);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
  .brand-tag:hover {
    color: var(--accent-green);
    box-shadow: var(--nm-shadow-out);
  }
}

/* =============================================
   ANİMASYONLAR (Genel)
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll animasyon sınıfları */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   YARDIMCI SINIFLAR
   ============================================= */
.text-green {
  color: var(--accent-green) !important;
}

.text-purple {
  color: var(--accent-purple) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.cyber-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-purple), transparent);
  border: none;
  margin: 2.5rem 0;
}

/* =============================================
   MOBİL UYUMLULUK
   ============================================= */






/* =============================================
   CYBERPUNK DETAYLAR
   ============================================= */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(0, 200, 83, 0.4);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.cyber-corner {
  position: relative;
  border-radius: 0 !important;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

/* Neon border animasyonu */
@keyframes neonBorder {

  0%,
  100% {
    border-color: rgba(0, 200, 83, 0.5);
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.2);
  }

  50% {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
  }
}

.neon-border {
  border: 1px solid rgba(0, 200, 83, 0.5);
  animation: neonBorder 3s ease infinite;
}

/* =============================================
   COUNTER ANİMASYON
   ============================================= */
.counter-section {
  padding: 4rem 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.counter-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  height: 160px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .counter-card:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-4px);
  }
}

.counter-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
  width: 100%;
}

.counter-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}





transform: translateX(-15px);
transition: opacity 0.7s ease,
transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   YARDIMCI SINIFLAR
   ============================================= */
.text-green {
  color: var(--accent-green) !important;
}

.text-purple {
  color: var(--accent-purple) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.cyber-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-purple), transparent);
  border: none;
  margin: 2.5rem 0;
}

/* =============================================
   MOBİL UYUMLULUK
   ============================================= */






/* =============================================
   CYBERPUNK DETAYLAR
   ============================================= */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(0, 200, 83, 0.4);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.cyber-corner {
  position: relative;
  border-radius: 0 !important;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

/* Neon border animasyonu */
@keyframes neonBorder {

  0%,
  100% {
    border-color: rgba(0, 200, 83, 0.5);
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.2);
  }

  50% {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
  }
}

.neon-border {
  border: 1px solid rgba(0, 200, 83, 0.5);
  animation: neonBorder 3s ease infinite;
}

/* =============================================
   COUNTER ANİMASYON
   ============================================= */
.counter-section {
  padding: 4rem 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.counter-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  text-align: center;
  transition: var(--transition);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .counter-card:hover {
    box-shadow: var(--nm-shadow-hover);
    transform: translateY(-4px);
  }
}

.counter-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
}

.counter-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}





/* ============================================
   OFS DUYURU ERD
   ============================================ */
.office-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #0d7a3e 0%, #1a5f2e 40%, #2d1b69 100%);
  border-bottom: 1px solid rgba(0, 200, 83, 0.3);
  padding: 0.5rem 0;
  position: relative;
  z-index: 200;
}

.glass-composition {
  position: relative;
  width: 560px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.glass-card-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  z-index: 2;
}

.office-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.office-strip-offices {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.office-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .office-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
  }
}

.office-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
  }

  50% {
    box-shadow: 0 0 12px rgba(74, 222, 128, 1);
    transform: scale(1.2);
  }
}

.office-emoji {
  font-size: 0.85rem;
}

.office-label {
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.72rem;
}

.office-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}

.office-strip-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  flex-wrap: wrap;
}

.office-strip-icon {
  font-size: 0.9rem;
}

.office-strip-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.office-strip-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}



/* ============================================
   FOOTER OF�SLER
   ============================================ */
.footer-offices {
  margin: 1rem 0;
  padding: 0.9rem;
  background: rgba(0, 200, 83, 0.05);
  border: 1px solid rgba(0, 200, 83, 0.15);
  border-radius: 10px;
}

.footer-office-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-office-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  margin-top: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 200, 83, 0.5);
}

/* Navbar offset for office strip */
.navbar {
  top: 42px !important;
}

body {
  padding-top: 42px;
}



/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--nm-shadow-out);
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: var(--neon-cyan);
}

tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* =============================================
   TESTIMONIAL SLIDER & CAROUSEL
   ============================================= */
.testimonial-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 2.5rem auto 0;
  overflow: hidden;
  padding: 10px 0;
}

.testimonial-slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0.75rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-out);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 5px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent-green);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-shadow-hover);
  border-color: rgba(0, 200, 83, 0.1);
}

.stars {
  color: #ffca28;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Slider Controls */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  background: var(--bg-card);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: var(--nm-shadow-btn);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.slider-btn:hover {
  color: var(--accent-green);
  transform: scale(1.08);
}

.slider-btn:active {
  box-shadow: var(--nm-shadow-btn-active);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent-green);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-green);
}

/* =============================================
   CITIES ROW ABOVE REGIONS GRID (DESKTOP/MOBILE)
   ============================================= */
.cities-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.city-pill {
  flex: 1;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  color: #000 !important;
  font-weight: 800;
  border: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kocaeli-pill {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.city-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.kocaeli-pill:hover {
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.city-pill:active {
  transform: translateY(0);
}



/* =============================================
   MOBILE NAV SCROLL & GAP IMPROVEMENT
   ============================================= */
.mobile-nav {
  overflow-y: auto !important;
  justify-content: flex-start !important;
  padding-top: 6rem !important;
  padding-bottom: 3rem !important;
}


#how-heading {
  white-space: nowrap;
  font-size: clamp(0.7rem, 4vw, 2.2rem);
}



.how-it-works .section-header {
  max-width: 100%;
}