/* Fix Antrepo Kurumsal Tema - Optimize Edilmiş Versiyon */
:root {
  --primary: #004d73;
  --secondary: #f9b233;
  --accent: #e63946;
  --dark: #0f1721;
  --light: #f8fafb;
  --gray: #7b8794;
  --transition: all 0.28s ease;
  
  /* Futuristic theme colors */
  --futuristic-dark: #0a0f2b;
  --futuristic-blue: #0a97b2;
  --futuristic-orange: #f79153;
  --futuristic-red: #ef3b38;
}

/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--secondary) 30%));
  color: #fff;
  border: none;
  border-radius: 48px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 51, 71, 0.12);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 51, 71, 0.15);
}

.btn-outline {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--primary) 60%, transparent 40%);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 40px;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(15, 23, 33, 0.06);
  padding: 12px 0;
  z-index: 1000;
  transition: var(--transition);
  height: 70px;
  backdrop-filter: blur(10px);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(15, 23, 33, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px;
  margin-right: 8px;
  filter: saturate(1.05);
}

/* Navigasyon */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li { 
  margin-left: 26px; 
}

nav ul li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
  font-size: 0.95rem;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 1px;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after { 
  width: 100%; 
}

nav ul li a.active {
  color: var(--primary);
}

nav ul li a.active::after {
  width: 100%;
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  transition: var(--transition);
}

.mobile-menu:hover {
  color: var(--secondary);
}

/* Futuristic Hero Styles */
.futuristic-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* ARKA PLAN RESMİ EKLENDİ */
  background-image: url('/assets/images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.animated-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(247, 145, 83, 0.6), transparent);
  height: 1px;
  animation: lineFlow 8s linear infinite;
}

.line-1 { top: 20%; width: 100px; animation-delay: 0s; }
.line-2 { top: 40%; width: 150px; animation-delay: 1s; }
.line-3 { top: 60%; width: 200px; animation-delay: 2s; }
.line-4 { top: 80%; width: 120px; animation-delay: 3s; }
.line-5 { top: 30%; width: 180px; animation-delay: 4s; }

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border: 1px solid rgba(247, 145, 83, 0.3);
  border-radius: 50%;
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 6s;
}

.particle-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background: rgba(247, 145, 83, 0.6);
  border-radius: 50%;
  animation: particleFloat 10s ease-in-out infinite;
}
.hero-gradient {
  background: linear-gradient(
    135deg,
    rgba(10, 15, 43, 0.60) 0%,    /* Daha şeffaf */
    rgba(10, 151, 178, 0.50) 50%, /* Daha şeffaf */ 
    rgba(10, 15, 43, 0.55) 100%   /* Daha şeffaf */
  );
}

.futuristic-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 145, 83, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(45deg, transparent, rgba(247, 145, 83, 0.2), transparent);
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  position: relative;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--futuristic-orange), var(--futuristic-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--futuristic-orange), var(--futuristic-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: textShine 3s ease-in-out infinite alternate;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(247, 145, 83, 0.1);
  border: 1px solid rgba(247, 145, 83, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--futuristic-orange);
  font-size: 1.2rem;
}

.stat-content .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--futuristic-orange);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--futuristic-orange), var(--futuristic-red));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(247, 145, 83, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.holographic-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 145, 83, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  width: 200px;
  animation: hologramFloat 4s ease-in-out infinite;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(45deg, transparent, rgba(247, 145, 83, 0.1), transparent);
  animation: cardGlow 3s ease-in-out infinite;
}

.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.grid-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  animation: gridPulse 4s ease-in-out infinite;
}

.grid-item:nth-child(2) { animation-delay: 0.5s; }
.grid-item:nth-child(3) { animation-delay: 1s; }
.grid-item:nth-child(4) { animation-delay: 1.5s; }
.grid-item:nth-child(5) { animation-delay: 2s; }
.grid-item:nth-child(6) { animation-delay: 2.5s; }
.grid-item:nth-child(7) { animation-delay: 3s; }
.grid-item:nth-child(8) { animation-delay: 3.5s; }
.grid-item:nth-child(9) { animation-delay: 4s; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--futuristic-orange);
  border-radius: 1px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* Futuristic Features */
.futuristic-features {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--futuristic-dark) 0%, var(--futuristic-blue) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 145, 83, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover .feature-glow {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(247, 145, 83, 0.3);
  box-shadow: 0 15px 40px rgba(247, 145, 83, 0.1);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--futuristic-blue), var(--futuristic-orange));
  border-radius: 20px;
  transform: rotate(45deg);
}

.feature-icon i {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.feature-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--futuristic-orange), transparent);
  transition: width 0.3s ease;
}

.feature-card:hover .feature-line {
  width: 100%;
}

/* Advanced Services */
.advanced-services {
  padding: 100px 0;
  background: var(--futuristic-dark);
}

.futuristic-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--futuristic-orange), var(--futuristic-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: textShine 3s ease-in-out infinite alternate;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-main {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--futuristic-orange), var(--futuristic-red));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.service-main h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.service-main p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.service-features i {
  color: var(--futuristic-orange);
  font-size: 1.1rem;
}

.service-visual {
  position: relative;
}

.tech-slider {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  height: 300px;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  color: white;
}

.slide-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--futuristic-blue), var(--futuristic-orange));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.slide h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.slide p {
  color: rgba(255, 255, 255, 0.7);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn.active {
  background: var(--futuristic-orange);
  transform: scale(1.2);
}

/* Digital Stats */
.digital-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--futuristic-blue) 0%, var(--futuristic-dark) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
}

.stat-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 145, 83, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover .stat-glow {
  left: 100%;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--futuristic-blue), var(--futuristic-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--futuristic-orange);
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.stat-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--futuristic-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-wave {
  transform: scaleX(1);
}

/* Futuristic CTA */
.futuristic-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--futuristic-dark) 0%, var(--futuristic-blue) 100%);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(247, 145, 83, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 145, 83, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 15s linear infinite;
}

.futuristic-cta .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.cta-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--futuristic-orange), var(--futuristic-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: textShine 3s ease-in-out infinite alternate;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--futuristic-orange);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.cta-feature i {
  color: var(--futuristic-orange);
}

.cta-feature span {
  color: white;
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hologram-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.hologram {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 145, 83, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hologram-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--futuristic-orange), transparent);
  animation: hologramScan 3s ease-in-out infinite;
}

.hologram-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.hologram-line:nth-child(2) { top: 50%; animation-delay: 1s; }
.hologram-line:nth-child(3) { top: 80%; animation-delay: 2s; }

.hologram-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.hologram-content i {
  font-size: 3rem;
  color: var(--futuristic-orange);
  margin-bottom: 15px;
}

.hologram-content h4 {
  margin-bottom: 10px;
}

.hologram-content p {
  color: rgba(255, 255, 255, 0.7);
}

/* Hizmet Kartları */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(2, 31, 43, 0.04);
  transition: var(--transition);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(2, 31, 43, 0.08);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.6rem;
}

/* CTA Bölümü */
.cta {
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--secondary) 60%, var(--primary) 40%));
  color: #fff;
  text-align: center;
  padding: 92px 20px;
  border-radius: 12px;
}

.cta h2 {
  font-size: 2.3rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.cta p {
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 22px;
  opacity: 0.98;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: #d7dbe0;
  padding: 60px 0 22px;
  text-align: center;
}

footer a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

footer a:hover { 
  color: var(--light); 
}

/* Küçük öğeler */
.badge {
  display: inline-block;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--secondary) 10%, white 90%);
  color: var(--dark);
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes lineFlow {
  0% { transform: translateX(-100px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 100px)); opacity: 0; }
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -10px) rotate(5deg); }
  50% { transform: translate(-5px, 5px) rotate(-5deg); }
  75% { transform: translate(-10px, -5px) rotate(3deg); }
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { transform: translate(100px, 50px); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes textShine {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes hologramFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes cardGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes hologramScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .futuristic-hero .container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .futuristic-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .services-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .futuristic-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
    height: 60px;
  }
  
  .logo img {
    height: 32px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .futuristic-hero {
    padding: 100px 18px 60px;
    margin-top: 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 92%;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  nav ul {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    height: calc(100vh - 60px);
    overflow-y: auto;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 12px 0;
    width: 100%;
    text-align: center;
  }
  
  nav ul li a {
    display: block;
    padding: 12px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  nav ul li a::after {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    justify-content: center;
  }
  
  .service-main {
    padding: 30px 20px;
  }
  
  .service-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 640px) { 
  .service-grid { 
    grid-template-columns: 1fr; 
  } 
  
  .cta {
    padding: 60px 20px;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .floating-shapes {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}