/*
Theme Name: Explozy Theme
*/

/* ============= GLOBAL STYLES ============= */
:root {
  --primary: #6c5ce7;           /* Daha canlı mor tonu */
  --primary-dark: #5649c9;      /* Daha koyu mor tonu */
  --secondary: #00cec9;         /* Teal rengi - biraz daha canlı */
  --accent: #fd79a8;            /* Daha yumuşak bir pembe */
  --text-dark: #2d3436;         /* Koyu metin rengi aynı */
  --text-light: #636e72;        /* Açık metin rengi aynı */
  --text-lighter: #b2bec3;      /* En açık metin rengi aynı */
  --background: #f8f9fa;        /* Daha sıcak bir beyaz ton */
  --background-alt: #eef2f7;    /* Hafif mavimsi gri */
  --background-dark: #1e272e;   /* Koyu arka plan aynı */
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Daha yumuşak gölge */
  --shadow-hover: 0 15px 35px rgba(108, 92, 231, 0.15); /* Mor tonlu gölge */
  --gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%); /* Biraz daha koyu gradient */
  --gradient-hover: linear-gradient(135deg, #5649c9 0%, #8782d8 100%); /* Hover durumu için gradient */
  --border-radius: 16px;        /* Border radius aynı */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Geçiş animasyonu aynı */
  --glass-bg: rgba(255, 255, 255, 0.1); /* Cam efekti arka planı aynı */
  --glass-border: 1px solid rgba(255, 255, 255, 0.18); /* Cam efekti kenarlığı aynı */
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* Cam efekti gölgesi aynı */
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Metin gölgesi aynı */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--background);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}

a:not(.logo, .nav-link, .mobile-nav-link, .social-icon):after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

a:not(.logo, .nav-link, .mobile-nav-link, .social-icon):hover:after {
  width: 100%;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  transition: var(--transition);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

img:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(108, 92, 231, 0.2));
}

.section-padding {
  padding: 120px 0;
}

/* ============= CUSTOM CURSOR ============= */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-outer {
  position: fixed;
  width: 45px;
  height: 45px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s ease;
  mix-blend-mode: exclusion;
}

body:not(.touch-device) .custom-cursor.active,
body:not(.touch-device) .custom-cursor-outer.active {
  opacity: 1;
}

a:hover ~ .custom-cursor {
  width: 20px;
  height: 20px;
  background: var(--primary);
}

a:hover ~ .custom-cursor-outer {
  width: 55px;
  height: 55px;
  border-color: var(--accent);
}

/* ============= HEADER & NAVIGATION ============= */
header {
  background: var(--gradient);
  padding: 35px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.9rem;
  color: white;
  text-shadow: var(--text-shadow);
  letter-spacing: 1px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  margin-right: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.2rem;
  box-shadow: var(--glass-shadow);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  color: white;
  margin: 0 18px;
  position: relative;
  font-weight: 600;
  transition: var(--transition);
  text-shadow: var(--text-shadow);
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-link span {
  position: relative;
  display: inline-block;
}

.nav-link span:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 5px;
}

.nav-link:hover span:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: var(--transition);
  border-radius: 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: var(--background-dark);
  z-index: 999;
  padding: 60px 30px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-close {
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.mobile-menu-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: white;
  font-size: 1.15rem;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
  color: var(--accent);
  padding-left: 15px;
  border-bottom-color: var(--accent);
}

.mobile-menu-social {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 12px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 5px;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



/* =========== THEME SWITCH STYLES =========== */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-left: 18px;
}

.theme-switch {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 30px;
  margin: 0;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  transition: var(--transition);
  border-radius: 34px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
  z-index: 2;
}
  
.slider .fa-sun {
  position: absolute;
  left: 8px;
  top: 7px;
  color: #f1c40f;
  font-size: 0.9rem;
  transition: var(--transition);
}

.slider .fa-moon {
  position: absolute;
  right: 8px;
  top: 7px;
  color: #f1f1f1;
  font-size: 0.9rem;
  transition: var(--transition);
}
  
input:checked + .slider {
  background: var(--background-dark);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --primary: #8c7ae6;
  --primary-dark: #7d5fff;
  --secondary: #00cec9;
  --accent: #ff7675;
  --text-dark: #f5f6fa;
  --text-light: #dcdde1;
  --text-lighter: #ffffff;
  --background: #1e272e;
  --background-alt: #2d3436;
  --background-dark: #0f1419;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 15px 35px rgba(140, 122, 230, 0.2);
  --glass-bg: rgba(0, 0, 0, 0.2);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header ve hero alanı için dark tema ayarları */
[data-theme="dark"] header {
  background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
}

[data-theme="dark"] .logo-icon {
  background: var(--glass-bg);
  border: var(--glass-border);
}

[data-theme="dark"] body {
  background-color: var(--background);
  color: var(--text-dark);
}

[data-theme="dark"] .nav-link {
  color: var(--text-light);
}

[data-theme="dark"] .mobile-menu {
  background: var(--background-dark);
}

/* Mobil görünüm için tema değiştirme butonu */
@media (max-width: 992px) {
  .theme-switch-wrapper {
    margin-right: 60px;
    margin-left: 0;
  }
  
  .mobile-menu-toggle {
    margin-left: 15px;
  }
}

/* ============= RESPONSIVE DESIGN - IMPROVED ============= */

/* Büyük Masaüstü Ekranlar (1400px ve üzeri) */
@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
  
  .animated-heading {
    font-size: 3.5rem;
  }
  
  .animated-text {
    font-size: 1.2rem;
    max-width: 650px;
  }
  
  .section-padding {
    padding: 140px 0;
  }
}

/* Orta-Büyük Masaüstü Ekranlar (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
  
  .animated-heading {
    font-size: 3.2rem;
  }
  
  .hero-content {
    padding-right: 40px;
  }
}

/* Küçük Masaüstü Ekranlar (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .animated-heading {
    font-size: 2.8rem;
  }
  
  .animated-text {
    font-size: 1.05rem;
    max-width: 550px;
  }
  
  .hero-content {
    padding-right: 30px;
  }
  
  .section-padding {
    padding: 100px 0;
  }
  
  .nav-link {
    margin: 0 12px;
  }
}

/* Tablet Ekranlar (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    flex-direction: column;
    padding: 70px 0;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 60px;
  }
  
  .animated-heading {
    font-size: 2.5rem;
  }
  
  .animated-text {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .hero-image img {
    max-width: 100%;
    transform: perspective(1000px) rotateY(0);
  }
  
  .hero-badge {
    right: 50%;
    transform: translateX(50%);
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .btn {
    padding: 10px 25px;
  }
  
  .theme-switch-wrapper {
    margin-right: 70px;
  }
}

/* Büyük Mobil Ekranlar (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero {
    flex-direction: column;
    padding: 50px 0;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .animated-heading {
    font-size: 2.2rem;
  }
  
  .animated-text {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .hero-image img {
    max-width: 100%;
    transform: perspective(1000px) rotateY(0);
  }
  
  .hero-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -15px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.6rem;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .mobile-menu {
    width: 300px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .theme-switch-wrapper {
    margin-right: 60px;
  }
  
  /* Navbar ayarlamaları */
  nav {
    padding: 0 0 20px;
  }
}

/* Küçük Mobil Ekranlar (575px ve altı) */
@media (max-width: 575px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .hero {
    flex-direction: column;
    padding: 40px 0;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .animated-heading {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
  
  .animated-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .hero-image {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .hero-image img {
    max-width: 100%;
    transform: none;
    border-radius: 15px;
  }
  
  .hero-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -10px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .badge-icon {
    margin-right: 8px;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    font-size: 1rem;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
    padding: 50px 20px;
  }
  
  .mobile-menu-header {
    margin-bottom: 30px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 15px 0;
  }
  
  .mobile-menu-social {
    gap: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Nav ve header uyarlamaları */
  header {
    padding: 25px 0 0;
  }
  
  nav {
    padding: 0 0 15px;
  }
  
  .theme-switch-wrapper {
    margin-right: 55px;
  }
  
  .theme-switch {
    width: 50px;
    height: 26px;
  }
  
  .slider:before {
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
  }
  
  .slider .fa-sun,
  .slider .fa-moon {
    font-size: 0.8rem;
    top: 6px;
  }
  
  .slider .fa-sun {
    left: 7px;
  }
  
  .slider .fa-moon {
    right: 7px;
  }
  
  input:checked + .slider:before {
    transform: translateX(24px);
  }
}

/* Çok Küçük Mobil Ekranlar (375px ve altı) */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .animated-heading {
    font-size: 1.7rem;
  }
  
  .animated-text {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }
  
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px 0;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .theme-switch-wrapper {
    margin-right: 50px;
  }
  
  .theme-switch {
    width: 45px;
    height: 24px;
  }
  
  .slider:before {
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
  }
  
  input:checked + .slider:before {
    transform: translateX(21px);
  }
}

/* İPhone SE ve benzeri çok küçük ekranlar (320px ve altı) */
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .animated-heading {
    font-size: 1.6rem;
  }
  
  .animated-text {
    font-size: 0.85rem;
  }
  
  .cta-button {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 18px;
  }
  
  .theme-switch-wrapper {
    margin-right: 45px;
  }
  
  .theme-switch {
    width: 40px;
    height: 22px;
  }
  
  .slider:before {
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
  }
  
  input:checked + .slider:before {
    transform: translateX(18px);
  }
}

/* Yatay (Landscape) Mod İçin Özel Ayarlamalar */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 30px 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .mobile-menu {
    padding-top: 30px;
  }
  
  .mobile-menu-links {
    margin-bottom: 20px;
  }
  
  .mobile-nav-link {
    padding: 10px 0;
  }
  
  .mobile-menu-social {
    margin-top: 20px;
  }
  
  /* Hero bölümü için yatay mod düzenlemeleri */
  @media (min-width: 768px) {
    .hero {
      flex-direction: row;
      align-items: center;
    }
    
    .hero-content {
      padding-right: 30px;
      margin-bottom: 0;
      flex: 1;
    }
    
    .hero-image {
      flex: 1;
      margin: 0;
    }
  }
}

/* Retina ve Yüksek DPI Ekranlar İçin Optimizasyonlar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Burada yüksek çözünürlüklü ekranlar için özel stiller eklenebilir */
  .img-filter {
    filter: contrast(1.05) saturate(1.1);
  }
}

/* Dokunmatik Cihazlar İçin Hover Efektleri Düzenlemeleri */
@media (hover: none) {
  .btn:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
  
  .card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
  
  .nav-link:hover {
    transform: none;
  }
  
  img:hover {
    transform: none;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  }
  
  .hero-image:hover img {
    transform: none;
  }
  
  .shine-effect:hover:before {
    animation: none;
  }
  
  .social-icon:hover {
    transform: none;
  }
}

/* Başlangıç animasyonları için prefers-reduced-motion medya sorgusu */
@media (prefers-reduced-motion: reduce) {
  .animated-heading, 
  .animated-text, 
  .hero-image, 
  .cta-button, 
  .hero-badge,
  .fade-in, 
  .slide-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .social-icon:hover,
  .card:hover,
  .btn:hover,
  .hero-image:hover img {
    transition: none;
    transform: none;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Tarayıcı Özellikleri İçin Düzeltmeler */

/* Safari için düzeltmeler */
@supports (-webkit-touch-callout: none) {
  .glass-effect {
    backdrop-filter: blur(8px);
  }
  
  /* iOS'ta sabit pozisyonlu elementler için düzeltme */
  .mobile-menu {
    height: -webkit-fill-available;
  }
}

/* Firefox için düzeltmeler */
@-moz-document url-prefix() {
  .slider:before {
    transition: transform 0.3s ease;
  }
}

/* Microsoft Edge için düzeltmeler */
@supports (-ms-ime-align: auto) {
  .glass-effect {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.2);
  }
}



/* ============= ANIMATIONS & EFFECTS ============= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-in {
  animation: slideInRight 0.6s ease forwards;
}

/* Glass morphism effect classes */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--glass-shadow);
}

/* Hover effects */
.hover-float {
  transition: var(--transition);
}

.hover-float:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.btn:hover {
  background: var(--gradient-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn:hover:before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Badge styles */
.badge {
  display: inline-block;
  padding: 6px 15px;
  background: var(--glass-bg);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: var(--glass-border);
  box-shadow: 0 2px 10px rgba(108, 92, 231, 0.1);
}

/* Card styles */
.card {
  background: var(--background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

/* Dark mode support (basic toggle) */
body.dark-mode {
  --background: #1a1a2e;
  --background-alt: #16213e;
  --text-dark: #e9e9e9;
  --text-light: #b2bec3;
}

/* Image filter effects */
.img-filter {
  filter: contrast(1.1) saturate(1.2);
  transition: var(--transition);
}

.img-filter:hover {
  filter: contrast(1.15) saturate(1.3) brightness(1.05);
}

/* Shine effect for cards or images */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect:before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-25deg);
  transition: all 0.75s;
}

.shine-effect:hover:before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
  
  /* ============= HERO SECTION ============= */
  .hero {
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 50px;
  }
  
  .animated-heading {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
  }
  
  .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
  }
  
  .highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background: var(--accent);
    z-index: -1;
    opacity: 0.4;
  }
  
  .animated-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
  }
  
  .cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button:hover i {
    transform: translateX(5px);
  }
  
  .hero-image {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards 1s;
  max-width: 85%; /* Görselin maksimum genişliğini sınırlama */
  margin: 0 auto; /* Merkezde hizalama */
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
  max-width: 80%; /* Görselin container'a göre boyutlanması */
  height: auto; /* Oranı koruyarak yüksekliğin otomatik ayarlanması */
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0);
}

/* Responsive ayarlamalar */
@media (max-width: 992px) {
  .hero-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 70%;
  }
}
  
  .hero-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: white;
    color: var(--primary);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .badge-icon {
    margin-right: 10px;
    color: var(--accent);
  }
  
/* ============= PLATFORMS SECTION ============= */
.platforms {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--background);
  transition: var(--transition);
}

/* Arka plan süslemeleri */
.platforms::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(108, 92, 231, 0.15), rgba(72, 52, 212, 0.08));
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: -1;
  transition: var(--transition);
  filter: blur(40px);
  animation: floatBubble 12s infinite ease-in-out;
}

.platforms::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(108, 92, 231, 0.12), rgba(72, 52, 212, 0.06));
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  z-index: -1;
  transition: var(--transition);
  filter: blur(30px);
  animation: floatBubble 15s infinite ease-in-out reverse;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

/* Süsleyici şekiller */
.platforms-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.platforms-shape {
  position: absolute;
  opacity: 0.2;
}

.platforms-shape.shape-1 {
  top: 15%;
  left: 10%;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--primary);
  transform: rotate(45deg);
  animation: floatShape 12s infinite ease-in-out;
}

.platforms-shape.shape-2 {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  animation: floatShape 18s infinite ease-in-out reverse;
}

.platforms-shape.shape-3 {
  bottom: 20%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: floatShape 15s infinite ease-in-out 2s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -15px) rotate(15deg);
  }
}

/* Dark theme decorations */
[data-theme="dark"] .platforms::before {
  background: linear-gradient(45deg, rgba(125, 95, 255, 0.18), rgba(108, 92, 231, 0.1));
}

[data-theme="dark"] .platforms::after {
  background: linear-gradient(45deg, rgba(125, 95, 255, 0.15), rgba(108, 92, 231, 0.08));
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-subheading {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.section-subheading::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-100%) translateX(-10px);
  border-radius: 10px;
  transition: var(--transition);
}

.section-subheading::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(10px);
  border-radius: 10px;
  transition: var(--transition);
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(45deg, var(--text-dark), var(--text-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: var(--transition);
  line-height: 1.3;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  transition: var(--transition);
}

/* Dark theme section headers */
[data-theme="dark"] .section-description {
  color: var(--text-lighter);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 70px;
}

/* DÜZELTME: Platform kartı stil güncellemeleri */
.platform-card {
  perspective: 2000px;
  height: 380px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
  margin-bottom: 20px; /* Kartlar arasında minimum boşluk */
}

.platform-card:hover {
  transform: translateY(-8px);
}

.platform-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  box-shadow: var(--shadow);
  border-radius: 20px;
}

/* DÜZELTME: Card hover olduğunda transform efekti */
.platform-card:hover .platform-card-inner {
  transform: rotateY(180deg);
  box-shadow: var(--shadow-hover);
}

.platform-card-front, .platform-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari için ekstra destek */
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}

.platform-card-front {
  background: var(--background);
  border: 1px solid rgba(108, 92, 231, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2; /* Ön taraf için z-index */
}

.platform-card-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  border-radius: 20px;
  z-index: 1;
}

/* Dark theme platform card front */
[data-theme="dark"] .platform-card-front {
  background: var(--background-alt);
  border: 1px solid rgba(125, 95, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.platform-card:hover .platform-card-front {
  box-shadow: var(--shadow-hover);
}

/* DÜZELTME: Back tarafının konumlandırması ve z-index */
.platform-card-back {
  transform: rotateY(180deg);
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Arka taraf için z-index */
}

/* Platform-specific gradients*/
.instagram-gradient {
  background: linear-gradient(145deg, #833AB4, #FD1D1D, #FCAF45);
}

.youtube-gradient {
  background: linear-gradient(145deg, #FF0000, #CC0000, #990000);
}

.twitter-gradient {
  background: linear-gradient(145deg, #1DA1F2, #0077B5, #1a91da);
}

.tiktok-gradient {
  background: linear-gradient(145deg, #000000, #25F4EE, #FE2C55);
}

.platform-icon {
  width: 110px;
  height: 110px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.15);
  z-index: 2;
}

/* Iç halka animasyonu */
.platform-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(108, 92, 231, 0.3);
  top: 0;
  left: 0;
  animation: spin 12s linear infinite;
}

/* Dış halka animasyonu */
.platform-icon::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  border: 1px dashed rgba(108, 92, 231, 0.2);
  top: -20%;
  left: -20%;
  animation: spin 20s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Dark theme platform icons */
[data-theme="dark"] .platform-icon {
  background: rgba(125, 95, 255, 0.18);
  box-shadow: 0 10px 20px rgba(125, 95, 255, 0.2);
}

[data-theme="dark"] .platform-icon::before {
  border: 2px dashed rgba(125, 95, 255, 0.4);
}

[data-theme="dark"] .platform-icon::after {
  border: 1px dashed rgba(125, 95, 255, 0.3);
}

.platform-card:hover .platform-icon {
  transform: scale(1.15) translateY(-15px);
  box-shadow: 0 20px 30px rgba(108, 92, 231, 0.25);
}

/* Platform-specific icon colors */
.instagram-icon i {
  background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 5px rgba(131, 58, 180, 0.3));
}

.youtube-icon i {
  color: #FF0000;
  filter: drop-shadow(0 2px 5px rgba(255, 0, 0, 0.3));
}

.twitter-icon i {
  color: #1DA1F2;
  filter: drop-shadow(0 2px 5px rgba(29, 161, 242, 0.3));
}

.tiktok-icon i {
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 5px rgba(254, 44, 85, 0.3));
}

.platform-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.7rem;
  transition: all 0.4s ease;
  color: var(--text-dark);
  z-index: 2;
}

[data-theme="dark"] .platform-card h3 {
  color: var(--text-light);
}

.platform-card:hover h3 {
  transform: translateY(-8px);
}

.platform-stats {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  gap: 25px;
  z-index: 2;
}

.platform-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.platform-cta {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  margin-top: 25px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(108, 92, 231, 0.08);
}

.platform-cta::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: all 0.4s ease;
  border-radius: 3px;
}

.platform-cta i {
  margin-left: 10px;
  transition: transform 0.4s ease;
}

.platform-card:hover .platform-cta {
  letter-spacing: 0.8px;
  background: rgba(108, 92, 231, 0.15);
}

.platform-card:hover .platform-cta::after {
  width: 100%;
}

.platform-card:hover .platform-cta i {
  transform: translateX(10px);
}

.platform-back-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.platform-card-back h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.platform-card-back p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.platform-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.platform-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  text-align: left;
}

.platform-feature i {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  gap: 10px;
}

.platform-button i {
  font-size: 1rem;
  transition: transform 0.4s ease;
}

.platform-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  border-radius: 50px;
  transition: all 0.5s ease;
  z-index: -1;
}

.platform-button:hover {
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.platform-button:hover i {
  transform: translateX(5px);
}

.platform-button:hover::before {
  width: 100%;
}

/* Decorative elements */
.platform-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
}

.platform-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.platform-circle:nth-child(1) {
  width: 180px;
  height: 180px;
  top: -70px;
  right: -70px;
  animation: floatElement 12s infinite ease-in-out;
}

.platform-circle:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -40px;
  animation: floatElement 15s infinite ease-in-out reverse;
}

@keyframes floatElement {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -10px);
  }
}

.platform-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  transform: translateY(-5px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platform-card:hover .platform-card-badge {
  transform: translateY(0);
  opacity: 1;
}

/* Gelişmiş hover efektleri */
.platform-card .hover-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.15), transparent 70%);
  top: -10%;
  left: -10%;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.platform-card:hover .hover-glow {
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 991px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .section-heading {
    font-size: 2.5rem;
  }
  
  .platform-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .platforms {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-heading {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .platform-card {
    height: 350px;
  }
  
  .platform-card-front, .platform-card-back {
    padding: 30px;
  }
  
  .platform-card h3 {
    font-size: 1.5rem;
  }
  
  .platform-card-back h3 {
    font-size: 1.8rem;
  }
  
  .platform-card-back p {
    font-size: 1.1rem;
  }
}

/* ============= STATISTICS SECTION ============= */
.statistics {
  background: var(--gradient);
  position: relative;
  color: white;
  transition: var(--transition);
}

[data-theme="dark"] .statistics {
  background: linear-gradient(135deg, var(--background-dark) 0%, #2d3436 100%);
}

.statistics:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.statistic-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 40px 20px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .statistic-item {
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.statistic-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.statistic-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .statistic-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.statistic-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .statistic-number {
  color: var(--accent);
}

.statistic-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .statistic-title {
  color: var(--text-light);
}

/* Lightning Effect Styles */
.lightning-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: 1;
}

.statistic-item:hover .lightning-container {
  opacity: 1;
}

.lightning {
  position: absolute;
  background-color: rgba(179, 157, 56, 0.7); /* Altın renkli şimşek */
  height: 2px;
  width: 0;
  opacity: 0;
  box-shadow: 0 0 5px 1px rgba(242, 218, 99, 0.6);
}

/* Çatlak/şimşek desenleri - daha organik */
.lightning-1 {
  top: 10%;
  left: 0;
  width: 0;
  transform-origin: left center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: crack-grow-1 0.4s ease-out forwards;
}

.lightning-2 {
  top: 30%;
  right: 0;
  width: 0;
  transform-origin: right center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: crack-grow-2 0.4s ease-out forwards;
}

.lightning-3 {
  bottom: 25%;
  left: 0;
  width: 0;
  transform-origin: left center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: crack-grow-3 0.4s 0.1s ease-out forwards;
}

.lightning-4 {
  bottom: 40%;
  right: 0;
  width: 0;
  transform-origin: right center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: crack-grow-4 0.4s 0.1s ease-out forwards;
}

/* Farklı konumlarda şimşek dalları için sahte elementler ekliyoruz */
.lightning::before,
.lightning::after {
  content: '';
  position: absolute;
  background-color: rgba(179, 157, 56, 0.7);
  height: 2px;
  width: 0;
  opacity: 0;
  box-shadow: 0 0 5px 1px rgba(242, 218, 99, 0.6);
}

.lightning-1::before {
  top: -5px;
  left: 40%;
  transform: rotate(-30deg);
  transform-origin: left center;
  animation: branch-grow 0.25s 0.2s ease-out forwards;
}

.lightning-1::after {
  bottom: -5px;
  left: 70%;
  transform: rotate(25deg);
  transform-origin: left center;
  animation: branch-grow 0.2s 0.3s ease-out forwards;
}

.lightning-2::before {
  top: -8px;
  right: 60%;
  transform: rotate(35deg);
  transform-origin: right center;
  animation: branch-grow 0.25s 0.25s ease-out forwards;
}

.lightning-3::after {
  top: -6px;
  left: 50%;
  transform: rotate(-15deg);
  transform-origin: left center;
  animation: branch-grow 0.2s 0.35s ease-out forwards;
}

.lightning-4::before {
  bottom: -5px;
  right: 30%;
  transform: rotate(-20deg);
  transform-origin: right center;
  animation: branch-grow 0.3s 0.2s ease-out forwards;
}

/* Ekstra çatlaklar için ek stiller */
.lightning-5 {
  top: 70%;
  left: 0;
  width: 0;
  transform-origin: left center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: crack-grow-5 0.35s 0.15s ease-out forwards;
}

.lightning-6 {
  top: 60%;
  right: 0;
  width: 0;
  transform-origin: right center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: crack-grow-6 0.35s 0.25s ease-out forwards;
}

.lightning-5::before {
  top: -7px;
  left: 35%;
  transform: rotate(-25deg);
  transform-origin: left center;
  animation: branch-grow 0.25s 0.3s ease-out forwards;
}

.lightning-6::after {
  bottom: -4px;
  right: 55%;
  transform: rotate(22deg);
  transform-origin: right center;
  animation: branch-grow 0.2s 0.4s ease-out forwards;
}

/* Hide animations when not hovering */
.statistic-item:not(:hover) .lightning,
.statistic-item:not(:hover) .lightning::before,
.statistic-item:not(:hover) .lightning::after {
  animation: none;
  opacity: 0;
  width: 0;
}

/* Crack/lightning grow animations */
@keyframes crack-grow-1 {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 60%;
    opacity: 1;
    transform: translateY(3px) rotate(-1deg);
  }
}

@keyframes crack-grow-2 {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 70%;
    opacity: 1;
    transform: translateY(-2px) rotate(1deg);
  }
}

@keyframes crack-grow-3 {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 50%;
    opacity: 1;
    transform: translateY(2px) rotate(-0.5deg);
  }
}

@keyframes crack-grow-4 {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 60%;
    opacity: 1;
    transform: translateY(-3px) rotate(0.5deg);
  }
}

@keyframes branch-grow {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 20px;
    opacity: 1;
  }
}

@keyframes crack-grow-5 {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 55%;
    opacity: 1;
    transform: translateY(1px) rotate(-1deg);
  }
}

@keyframes crack-grow-6 {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 65%;
    opacity: 1;
    transform: translateY(-1px) rotate(0.75deg);
  }
}

/* Responsive adjustments - keep as is */
@media (max-width: 992px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .platform-card {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2.2rem;
  }
  
  .platform-card {
    height: 280px;
  }
  
  .platform-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .platform-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
  
        /* ============= FEATURES SECTION ============= */
        .features {
            background-color: var(--background-light);
            position: relative;
            overflow: hidden;
        }
        
        .features::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.05) 100%);
            top: -250px;
            left: -250px;
            z-index: 0;
        }
        
        .features::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.08) 0%, rgba(108, 92, 231, 0.05) 100%);
            bottom: -150px;
            right: -150px;
            z-index: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-subheading {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 10px;
            position: relative;
            padding: 5px 0;
        }

        .section-subheading::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 60px;
            background: var(--gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: var(--background);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transform: translateY(50px);
            opacity: 0;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: var(--shadow-hover);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            top: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
            bottom: -100px;
            right: -100px;
            border-radius: 50%;
            transition: var(--transition);
            z-index: 0;
        }

        .feature-card:hover::after {
            transform: scale(1.5);
        }

        .feature-icon-wrapper {
            position: relative;
            margin-bottom: 25px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            border-radius: 16px;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            color: white;
            transform: rotateY(180deg);
        }

        .feature-card:hover .feature-icon::before {
            opacity: 1;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            line-height: 1.7;
            flex-grow: 1;
        }

        .feature-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            position: relative;
            z-index: 1;
        }

        .feature-btn {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            transform: translateX(-10px);
        }

        .feature-card:hover .feature-btn {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-btn i {
            margin-left: 6px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-btn i {
            transform: translateX(5px);
        }

        .feature-tag {
            display: inline-block;
            padding: 5px 12px;
            background-color: rgba(108, 92, 231, 0.1);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            opacity: 0.7;
            transition: var(--transition);
        }

        .feature-card:hover .feature-tag {
            background-color: var(--primary);
            color: white;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }
            
            .section-heading {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .feature-card {
                padding: 30px 25px;
            }
        }
/* ============= TESTIMONIALS SECTION ============= */
.testimonials {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  transition: all 0.3s ease;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c5ce7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: var(--pattern-opacity);
  transition: opacity 0.3s ease;
  z-index: 0;
}

[data-theme="dark"] .testimonials:before {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238a7bff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subheading {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(108, 92, 231, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[data-theme="dark"] .section-subheading {
  background: rgba(138, 123, 255, 0.2);
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-heading:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  background: var(--card-bg);
  transition: all 0.3s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

.testimonial-item.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

[data-theme="dark"] .testimonial-avatar {
  box-shadow: 0 8px 20px rgba(138, 123, 255, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-user-info {
  margin-left: 20px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-position {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-content {
  background: rgba(108, 92, 231, 0.05);
  padding: 25px;
  border-radius: var(--border-radius);
  position: relative;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-top: auto;
  transition: all 0.3s ease;
}

[data-theme="dark"] .testimonial-content {
  background: rgba(138, 123, 255, 0.08);
}

.testimonial-content:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 25px;
  border-bottom: 15px solid rgba(108, 92, 231, 0.05);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

[data-theme="dark"] .testimonial-content:before {
  border-bottom-color: rgba(138, 123, 255, 0.08);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 30px;
  height: 30px;
  fill: var(--primary);
  opacity: var(--quote-opacity);
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-prev, .testimonial-next {
  background: var(--card-bg);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin: 0 10px;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.testimonial-prev:focus, .testimonial-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.3);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  background: var(--dot-bg);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-dot:hover {
  background: var(--primary-light);
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  border-color: var(--card-bg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .testimonial-item {
    padding: 30px 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-avatar {
    margin-bottom: 15px;
  }
  
  .testimonial-user-info {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .testimonial-content {
    padding: 20px 15px;
  }
  
  .testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
  }
}

/* Added for animation and accessibility */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-item {
  animation: fadeSlideIn 0.5s ease forwards;
}

/* Focus states for accessibility */
.testimonial-prev:focus, 
.testimonial-next:focus, 
.testimonial-dot:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.5);
}

[data-theme="dark"] .testimonial-prev:focus, 
[data-theme="dark"] .testimonial-next:focus, 
[data-theme="dark"] .testimonial-dot:focus {
  box-shadow: 0 0 0 3px rgba(138, 123, 255, 0.5);
}

  
/* ============= CTA SECTION ============= */
.cta {
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(108, 92, 231, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 600px;
  margin-right: 50px;
}

.cta-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 100%;
}

/* ============= NEWSLETTER SECTION ============= */
.newsletter {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.newsletter-form-fancy {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group-fancy {
  position: relative;
}

.form-group-fancy input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group-fancy input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

.form-icon-fancy {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-lighter);
  transition: all 0.3s ease;
}

.form-group-fancy input:focus + .form-icon-fancy {
  color: var(--primary);
}

.fancy-button {
  grid-column: 1 / -1;
  padding: 18px 25px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
  position: relative;
  overflow: hidden;
}

.fancy-button span {
  position: relative;
  z-index: 1;
}

.fancy-button i {
  margin-left: 10px;
  position: relative;
  z-index: 1;
}

.fancy-button:hover {
  background: var(--gradient-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(108, 92, 231, 0.3);
}

.fancy-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.fancy-button:hover:before {
  left: 100%;
}

.newsletter-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  margin: 10px 20px;
}

.feature-icon {
  margin-right: 10px;
  color: var(--primary);
}

/* ============= FOOTER ============= */
footer {
  background: var(--background-dark);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255, 255, 255, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.footer-about {
  margin-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
}

.footer-social .social-icon:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--secondary);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 20px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}


  
  
/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary, #007bff); /* Fallback renk */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  text-decoration: none;
  cursor: pointer;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark, #0056b3); /* Fallback renk */
  transform: translateY(-5px);
}

/* Icon stilini düzelt */
.back-to-top i {
  font-size: 18px;
  color: white;
}
  
/* FAQ Section */
.faq-section {
  background: var(--background);
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-header {
  padding: 20px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-content {
  padding: 0 20px 20px;
}

/* ============= RESPONSIVE STYLES ============= */
@media (max-width: 1200px) {
.hero {
  flex-direction: column;
}

.hero-content {
  padding-right: 0;
  margin-bottom: 50px;
  text-align: center;
}

.animated-text {
  margin: 0 auto 40px;
}
}

@media (max-width: 992px) {
.section-padding {
  padding: 70px 0;
}

.section-heading {
  font-size: 2rem;
}

.cta .container {
  flex-direction: column;
}

.cta-content {
  margin-right: 0;
  margin-bottom: 40px;
  text-align: center;
}

.footer-content {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}

@media (max-width: 768px) {
.desktop-nav {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
}

.animated-heading {
  font-size: 2.2rem;
}

.newsletter-form-fancy {
  grid-template-columns: 1fr;
}

.footer-bottom {
  flex-direction: column;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 15px;
}

.footer-bottom-links a {
  margin: 0 10px;
}
}

@media (max-width: 576px) {
.section-padding {
  padding: 50px 0;
}

.section-heading {
  font-size: 1.8rem;
}

.animated-heading {
  font-size: 1.8rem;
}

.statistic-item {
  padding: 30px 20px;
}

.statistic-number {
  font-size: 2.5rem;
}
}


/* Newsletter notification için stil */
.newsletter-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.newsletter-notification.show {
  opacity: 1;
  visibility: visible;
}

.notification-content {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.newsletter-notification.show .notification-content {
  transform: translateY(0);
}

.notification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}

.notification-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.notification-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.notification-close {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.notification-close:hover {
  background-color: #388E3C;
}

/* Checkmark animation */
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4CAF50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 6;
  stroke: #4CAF50;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4CAF50;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}