/* Acarlar Enerji - Özel CSS Dosyası (Beyaz Ağırlıklı & Koyu Gri Tema) */

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc; /* Slate 50 */
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* Slate 300 */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; /* Slate 400 */
}

/* Özel Seçim (Selection) */
::selection {
  background-color: rgba(30, 41, 59, 0.1);
  color: #0f172a;
}

/* Glow/Shadow Efektleri (Açık Tema) */
.glow-text-dark {
  text-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.glow-border-slate:hover {
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
}

/* Kart Hover Animasyonları */
.service-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-4px);
}

/* İnteraktif Arka Plan Grid Deseni (Açık Tema) */
.bg-grid-pattern {
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
}

/* Pulsing Ambient Lights (Yumuşak Gri/Mavi Tonlar) */
@keyframes ambientGlow {
  0%, 100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(30px, -50px) scale(1.05);
    opacity: 0.6;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.5;
  }
}

.animate-ambient-1 {
  animation: ambientGlow 15s infinite ease-in-out;
}

.animate-ambient-2 {
  animation: ambientGlow 20s infinite ease-in-out reverse;
}

/* Oscilloscope Wave Flow Animation */
@keyframes waveFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-wave {
  animation: waveFlow 3s linear infinite;
}

.animate-wave-reverse {
  animation: waveFlow 4.5s linear infinite reverse;
}


