/* Default (Dark) Theme Variables */
:root {
  --color-primary: #6366f1; /* Mor */
  --color-secondary: #ec4899; /* Pembe */
  --color-accent: #06b6d4; /* Turkuaz */
  --color-success: #10b981; /* Yeşil */
  --color-warning: #f59e0b; /* Turuncu */
  --color-danger: #ef4444; /* Kırmızı */

  --color-bg-main: #0a0a0a; /* Ana arka plan */
  --color-bg-secondary: rgba(255, 255, 255, 0.02); /* Kartlar, bölümler için */
  --color-bg-tertiary: rgba(255, 255, 255, 0.05); /* Hover, input arka planı */

  --color-text-main: #ffffff; /* Ana metin rengi */
  --color-text-secondary: rgba(255, 255, 255, 0.8); /* Alt başlıklar, açıklamalar */
  --color-text-muted: rgba(255, 255, 255, 0.7); /* Daha soluk metinler */
  --color-text-placeholder: rgba(255, 255, 255, 0.5); /* Placeholder metin */

  --color-border: rgba(255, 255, 255, 0.1); /* Genel kenarlık */
  --color-border-hover: rgba(255, 255, 255, 0.3); /* Hover kenarlık */

  --gradient-main: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%); /* Animated background */
  --gradient-header-bg: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.9)); /* Header background */
  --gradient-button-primary: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff); /* Neon gradient */
  --gradient-button-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Primary gradient for some elements */
  --gradient-button-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); /* Secondary gradient for some elements */
  --gradient-button-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); /* Accent gradient for some elements */
  --gradient-cyber-effect: linear-gradient(45deg, #00f5ff, #ff00ff, #ffff00); /* Cyber gradient */
  --gradient-text-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #06b6d4 100%); /* Text gradient */

  --shadow-main: 0 0 20px rgba(99, 102, 241, 0.3); /* Genel parlayan gölge */
  --shadow-button: 0 0 30px rgba(255, 0, 110, 0.5); /* Butonlar için neon gölge */
  --shadow-cyber-effect: 0 0 40px rgba(0, 245, 255, 0.4); /* Siber efekt gölgesi */
}

/* Light Theme Overrides */
body.light-theme {
  --color-primary: #007B80; /* Derin Teal */
  --color-secondary: #FF8C42; /* Canlı Turuncu */
  --color-accent: #E0BBE4; /* Yumuşak Lavanta */
  --color-success: #4CAF50; /* Yeşil (başarı için standart) */
  --color-warning: #FFC107; /* Sarı (uyarı için standart) */
  --color-danger: #F44336; /* Kırmızı (tehlike için standart) */

  --color-bg-main: #F8F8F8; /* Çok hafif gri */
  --color-bg-secondary: #F0F0F0; /* Biraz daha belirgin hafif gri */
  --color-bg-tertiary: #E8E8E8; /* Daha belirgin hafif gri */

  --color-text-main: #212121; /* Koyu Gri */
  --color-text-secondary: #424242; /* Orta Koyu Gri */
  --color-text-muted: #757575; /* Açık Gri */
  --color-text-placeholder: rgba(0, 0, 0, 0.5); /* Placeholder metin */

  --color-border: rgba(0, 0, 0, 0.08); /* Hafif belirgin kenarlık */
  --color-border-hover: rgba(0, 0, 0, 0.2); /* Hover kenarlık */

  --gradient-main: linear-gradient(135deg, #e0e5ec 0%, #f0f2f5 50%, #ffffff 100%); /* Açık tema için yumuşak gradient */
  --gradient-header-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 242, 245, 0.9)); /* Açık, hafif şeffaf */
  --gradient-button-primary: linear-gradient(45deg, var(--color-primary), var(--color-secondary), var(--color-accent)); /* Yeni palet renkleriyle "neon" */
  --gradient-button-secondary: linear-gradient(135deg, var(--color-primary) 0%, #00A8A8 100%);
  --gradient-button-accent: linear-gradient(135deg, var(--color-secondary) 0%, #FFB347 100%);
  --gradient-button-tertiary: linear-gradient(135deg, var(--color-accent) 0%, #C792DF 100%);
  --gradient-cyber-effect: linear-gradient(45deg, var(--color-accent), var(--color-primary), var(--color-secondary)); /* Yeni palet renkleriyle "siber" */
  --gradient-text-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%); /* Text gradient for light theme */

  --shadow-main: 0 0 20px rgba(0, 123, 128, 0.15); /* Primary teal'den */
  --shadow-button: 0 0 30px rgba(255, 140, 66, 0.2); /* Secondary turuncudan */
  --shadow-cyber-effect: 0 0 40px rgba(224, 187, 228, 0.25); /* Accent lavantadan */

  /* Specific overrides for elements that had hardcoded rgba(0,0,0,...) or rgba(255,255,255,...) */
  .animated-bg::before {
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.95); /* Beyaz şeffaf */
  }

  .hero-badge {
    background: var(--color-bg-secondary); /* Hafif şeffaf koyu */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .hero-card {
    background: var(--color-bg-secondary); /* Hafif şeffaf koyu */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .hero-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)); /* Daha açık gradient */
  }

  .hero-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(245, 87, 108, 0.1)); /* Daha açık gradient */
  }

  .hero-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(0, 242, 254, 0.1)); /* Daha açık gradient */
  }



  .hero-stat {
    background: var(--color-bg-secondary); /* Hafif şeffaf koyu */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .hero-stat:hover {
    background: var(--color-bg-tertiary); /* Hafif şeffaf koyu */
  }

  .how-we-work {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
  }

  .process-step {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .blog-card {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .social-proof {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
  }

  .certification-item {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .certification-item:hover {
    background: var(--color-bg-main); /* Daha açık şeffaf beyaz */
  }

  .clients {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
    border-top: 1px solid var(--color-border); /* Daha açık çizgi */
    border-bottom: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .client-logo {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .client-logo:hover {
    background: var(--color-bg-main); /* Daha açık şeffaf beyaz */
  }

  .client-logo img {
    filter: grayscale(100%) brightness(0.3); /* Logoları koyu yap */
  }

  .stats {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
  }

  .stat-item {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .service-card {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .service-card::before {
    opacity: 0.02; /* Daha hafif hover efekti */
  }

  .technologies {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
  }

  .technologies::before {
    background:
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.01) 50%, transparent 100%), /* Daha hafif */
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.01) 50%, transparent 100%); /* Daha hafif */
  }

  .tech-item {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .tech-item::before {
    opacity: 0.05; /* Daha hafif hover efekti */
  }

  .portfolio-item {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .portfolio-item::before {
    opacity: 0.02; /* Daha hafif hover efekti */
  }

  .portfolio-image::before {
    background: linear-gradient(45deg, transparent 30%, rgba(0,0,0,0.05) 50%, transparent 70%); /* Daha hafif */
  }

  .portfolio-tag {
    background: rgba(99, 102, 241, 0.1); /* Daha açık */
    border: 1px solid rgba(99, 102, 241, 0.2); /* Daha açık */
  }

  .faq {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
  }

  .faq-item {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .faq-question:hover {
    background: var(--color-bg-secondary); /* Hafif şeffaf koyu */
  }

  .contact {
    background: var(--color-bg-secondary); /* Açık şeffaf beyaz */
  }

  .contact-info {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .contact-item {
    background: var(--color-bg-main); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .contact-item:hover {
    background: var(--color-bg-tertiary); /* Daha açık şeffaf beyaz */
  }

  .contact-form {
    background: var(--color-bg-tertiary); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    border: 2px solid var(--color-border); /* Daha açık çizgi */
    background: var(--color-bg-main); /* Açık şeffaf beyaz */
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1); /* Daha hafif gölge */
    background: var(--color-bg-tertiary); /* Daha açık şeffaf beyaz */
  }

  .chat-menu {
    background: var(--color-bg-main); /* Açık şeffaf beyaz */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .chat-menu::before {
    border-top: 10px solid var(--color-bg-main); /* Açık şeffaf beyaz */
  }

  .chat-option {
    background: var(--color-bg-secondary); /* Hafif şeffaf koyu */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  .chat-option:hover {
    background: var(--color-bg-tertiary); /* Hafif şeffaf koyu */
  }

  .footer {
    background: var(--color-bg-main); /* Açık gri */
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Daha açık çizgi */
  }

  .social-links a {
    background: var(--color-bg-tertiary); /* Hafif şeffaf koyu */
    border: 1px solid var(--color-border); /* Daha açık çizgi */
  }

  ::-webkit-scrollbar-track {
    background: var(--color-bg-main); /* Açık gri */
  }

  .loading {
    background: var(--color-bg-main); /* Açık gri */
  }

  .loading-spinner {
    border: 4px solid var(--color-border); /* Daha açık çizgi */
  }

  .nav-menu .dropdown-menu {
    background: var(--color-bg-main); /* Açık şeffaf beyaz */
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); /* Daha hafif gölge */
  }

  .nav-menu .dropdown-menu a:hover {
    background: var(--gradient-button-primary);
    color: #fff;
  }

  @media (max-width: 768px) {
    .nav-menu {
      background: var(--color-bg-main); /* Açık şeffaf beyaz */
      border-top: 1px solid var(--color-border); /* Daha açık çizgi */
    }

    .menu-toggle {
      color: var(--color-text-main);
    }
  }
}

/* General styles using the new variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--color-text-main);
  background: var(--color-bg-main);
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease; /* Tema geçişi için */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-main);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
  animation: morphing 20s ease-in-out infinite;
  transition: background 0.5s ease; /* Tema geçişi için */
}

@keyframes morphing {
  0%, 100% {
      transform: scale(1) rotate(0deg);
      opacity: 0.3;
  }
  33% {
      transform: scale(1.1) rotate(120deg);
      opacity: 0.5;
  }
  66% {
      transform: scale(0.9) rotate(240deg);
      opacity: 0.4;
  }
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
  transition: background 0.5s ease; /* Tema geçişi için */
}

@keyframes float-particle {
  0% {
      transform: translateY(100vh) rotate(0deg);
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;
  }
  100% {
      transform: translateY(-100vh) rotate(360deg);
      opacity: 0;
  }
}

/* Top Header Bar */
.top-header {
  background: var(--gradient-header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 0;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  z-index: 1001;
  transition: background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.top-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-button-primary);
  animation: pulse-line 3s ease-in-out infinite;
  transition: background 0.5s ease; /* Tema geçişi için */
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-header-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-header-item:hover {
  color: var(--color-primary);
}

.top-header-item i {
  color: var(--color-primary);
  font-size: 0.8rem;
  animation: icon-glow 2s ease-in-out infinite alternate;
  transition: color 0.5s ease; /* Tema geçişi için */
}

@keyframes icon-glow {
  0% { text-shadow: 0 0 5px rgba(99, 102, 241, 0.5); }
  100% { text-shadow: 0 0 15px rgba(99, 102, 241, 0.8); }
}

.top-header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Müşteri Paneli - Düz yazı gibi */
.customer-panel-link {
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.customer-panel-link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
}

.customer-panel-link i {
  font-size: 0.8rem;
  color: var(--color-primary);
}

/* Header */
.header {
  position: fixed;
  top: 50px; /* Top bar'ın altına hizala */
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(25px);
  background: var(--gradient-header-bg);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled {
  top: 0;
  background: var(--color-bg-main); /* Daha opak hale getir */
  box-shadow: var(--shadow-main);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 0;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-button-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease, background 0.5s ease; /* Tema geçişi için */
}

.logo:hover::after {
  transform: scaleX(1);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-button-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.nav-menu {
  display: flex; /* !important kaldırıldı */
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
  border-radius: 25px;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-button-primary);
  border-radius: 25px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}

/* Menu Toggle - Varsayılan olarak gizli (masaüstü için) */
.menu-toggle {
  display: none;
}

.nav-menu a:hover::before {
  opacity: 0.2;
  transform: scale(1);
}

.nav-menu a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-nav {
  background: var(--gradient-button-primary) !important;
  color: white !important;
  padding: 12px 30px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.cta-nav:hover::before {
  left: 0%;
}

.cta-nav:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 170px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-button-primary);
  opacity: 0.1;
  transition: left 0.5s ease, background 0.5s ease; /* Tema geçişi için */
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge i {
  margin-right: 10px;
  color: var(--color-success); /* Değiştirildi */
  animation: pulse 2s infinite;
  transition: color 0.5s ease; /* Tema geçişi için */
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--gradient-button-primary);
  border-radius: 2px;
  animation: expand 2s ease-out;
  transition: background 0.5s ease; /* Tema geçişi için */
}

@keyframes expand {
  0% { width: 0; }
  100% { width: 120px; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary); /* Değiştirildi */
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-3d-container {
  width: 500px;
  height: 600px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate3d 20s infinite linear;
}

@keyframes rotate3d {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  25% { transform: rotateY(90deg) rotateX(10deg); }
  50% { transform: rotateY(180deg) rotateX(0deg); }
  75% { transform: rotateY(270deg) rotateX(-10deg); }
  100% { transform: rotateY(360deg) rotateX(0deg); }
}

.hero-card {
  position: absolute;
  width: 300px;
  height: 200px;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.hero-card:nth-child(1) {
  transform: translateZ(100px) rotateY(0deg);
  background: var(--color-bg-secondary); /* Değiştirildi */
}

.hero-card:nth-child(2) {
  transform: translateZ(100px) rotateY(120deg);
  background: var(--color-bg-secondary); /* Değiştirildi */
}

.hero-card:nth-child(3) {
  transform: translateZ(100px) rotateY(240deg);
  background: var(--color-bg-secondary); /* Değiştirildi */
}

.hero-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.hero-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-main); /* Değiştirildi */
}

.hero-card p {
  font-size: 1rem;
  opacity: 0.8;
  color: var(--color-text-muted); /* Değiştirildi */
}

/* Enhanced Button Styles - Design System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 56px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 0, 110, 0.15);
  backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.btn:active {
  transform: translateY(1px);
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-button-primary);
  color: white;
  border: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
  color: white;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.3), 0 8px 25px rgba(255, 0, 110, 0.4);
}



/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--color-text-main);
  border: 2px solid var(--color-border);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-button-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-border-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: var(--color-text-main);
}

.btn-secondary:hover::after {
  opacity: 0.1;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Light theme adjustments */
body.light-theme .btn-primary {
  box-shadow: 0 4px 15px rgba(0, 123, 128, 0.3);
}

body.light-theme .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(0, 123, 128, 0.4);
}

body.light-theme .btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 128, 0.3), 0 8px 25px rgba(0, 123, 128, 0.4);
}

body.light-theme .btn-secondary {
  border-color: var(--color-border);
  color: var(--color-text-main);
}

body.light-theme .btn-secondary:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-border-hover);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

body.light-theme .btn-secondary:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-height: 52px;
    gap: 8px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 48px;
    letter-spacing: 0.3px;
  }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 15px;
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: var(--color-bg-tertiary); /* Değiştirildi */
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted); /* Değiştirildi */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual - Interactive Globe */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.globe-container {
  width: 400px;
  height: 400px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: grab;
}

.globe-sphere {
  width: 100%;
  height: 100%;
  background-image: url('./public/images/world-map-with-continents.png');
  background-size: cover;
  background-position: center;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 0 50px rgba(0,245,255,0.3);
  animation: rotate-globe 30s linear infinite;
}

@keyframes rotate-globe {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* Floating Elements */
.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-button-primary);
  opacity: 0.1;
  animation: float-orb 15s infinite ease-in-out;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.orb:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.orb:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes float-orb {
  0%, 100% {
      transform: translateY(0px) scale(1);
  }
  33% {
      transform: translateY(-30px) scale(1.1);
  }
  66% {
      transform: translateY(20px) scale(0.9);
  }
}

/* How We Work Section - 8 Steps */
.how-we-work {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(10px);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.process-step {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
  border-color: var(--color-primary);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-button);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.process-icon {
  font-size: 2.5rem;
  margin: 2rem 0 1.5rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.process-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-main); /* Değiştirildi */
}

.process-description {
  color: var(--color-text-muted); /* Değiştirildi */
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Blog Section */
.blog {
  padding: 120px 0;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.blog-card {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
  border-color: var(--color-primary);
}

.blog-image {
  height: 200px;
  background: var(--gradient-button-primary); /* Değiştirildi */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.blog-content {
  padding: 2rem;
}

.blog-date {
  color: var(--color-primary); /* Değiştirildi */
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-main); /* Değiştirildi */
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--color-text-muted); /* Değiştirildi */
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.blog-link {
  color: var(--color-primary); /* Değiştirildi */
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
  color: #fff;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Social Proof & Certifications - 10 Items */
.social-proof {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(10px);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.certification-item {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  cursor: pointer;
}

.certification-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: var(--color-bg-tertiary); /* Değiştirildi */
  box-shadow: var(--shadow-main);
}

.certification-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.certification-name {
  font-weight: 600;
  color: var(--color-text-main); /* Değiştirildi */
  margin-bottom: 0.5rem;
}

.certification-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted); /* Değiştirildi */
}

/* Clients/Partners Section */
.clients {
  padding: 100px 0;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border); /* Değiştirildi */
  border-bottom: 1px solid var(--color-border); /* Değiştirildi */
  transition: background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.clients h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
}

.client-logo {
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(15px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 20px;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  cursor: pointer;
}

.client-logo:hover {
  transform: translateY(-10px) scale(1.05);
  background: var(--color-bg-tertiary); /* Değiştirildi */
  box-shadow: var(--shadow-main);
}

.client-logo img {
  max-width: 150px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Client Text Logo Styles */
.client-text-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 1rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border-radius: 12px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.client-text-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.client-logo:hover .client-text-logo {
  color: var(--color-primary);
  transform: translateY(-3px);
  background: var(--color-bg-tertiary);
  box-shadow: 0 4px 12px rgba(255, 0, 110, 0.2);
}

.client-logo:hover .client-text-logo::before {
  left: 100%;
}

.client-logo:focus-within .client-text-logo {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Responsive adjustments for text logos */
@media (max-width: 768px) {
  .client-text-logo {
    font-size: 1rem;
    padding: 0.75rem;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .client-text-logo {
    font-size: 0.9rem;
    padding: 0.5rem;
    min-height: 50px;
  }
}

/* Stats Section - Neon Style */
.stats {
  padding: 100px 0;
  position: relative;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(10px);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 2rem;
  background: var(--color-bg-secondary); /* Değiştirildi */
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
  border-color: var(--color-primary);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.stat-label {
  font-size: 1.2rem;
  color: var(--color-text-secondary); /* Değiştirildi */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section - Card Deck Style */
.services {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-button-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-button);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-muted); /* Değiştirildi */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-container {
  position: relative;
  perspective: 1000px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  transform-style: preserve-3d;
}

.service-card {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  padding: 3rem;
  border-radius: 25px;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-button-primary);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.5s ease; /* Tema geçişi için */
  border-radius: 25px;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), var(--shadow-main);
  border-color: var(--color-primary);
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.service-card:nth-child(1) .service-icon { background: var(--gradient-button-primary); }
.service-card:nth-child(2) .service-icon { background: var(--gradient-button-primary); }
.service-card:nth-child(3) .service-icon { background: var(--gradient-button-primary); }
.service-card:nth-child(4) .service-icon { background: var(--gradient-button-primary); }
.service-card:nth-child(5) .service-icon { background: var(--gradient-button-primary); }
.service-card:nth-child(6) .service-icon { background: var(--gradient-button-primary); }

.service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: icon-shine 4s infinite;
}

@keyframes icon-shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text-main); /* Değiştirildi */
  position: relative;
}

.service-description {
  color: var(--color-text-muted); /* Değiştirildi */
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--color-text-secondary); /* Değiştirildi */
  font-size: 1rem;
}

.service-features li i {
  color: var(--color-success); /* Değiştirildi */
  margin-right: 12px;
  font-size: 1rem;
  width: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary); /* Değiştirildi */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link:hover {
  gap: 15px;
  color: #fff;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Technologies Section - Matrix Style */
.technologies {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Değiştirildi */
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.technologies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.03) 50%, transparent 100%),
      linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.03) 50%, transparent 100%);
  animation: matrix-bg 10s infinite;
}

@keyframes matrix-bg {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.tech-item {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(15px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-cyber-effect);
  opacity: 0.1;
  transition: left 0.5s ease, background 0.5s ease; /* Tema geçişi için */
}

.tech-item:hover::before {
  left: 100%;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-cyber-effect);
  border-color: var(--color-accent);
}

.tech-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-cyber-effect);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease, background 0.5s ease; /* Tema geçişi için */
}

.tech-item:hover .tech-icon {
  transform: scale(1.2) rotateY(180deg);
}

.tech-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-main); /* Değiştirildi */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Portfolio Section - 3 Column Layout */
.portfolio {
  padding: 120px 0;
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.portfolio-item {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  position: relative;
  transform-style: preserve-3d;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-button-primary);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.5s ease; /* Tema geçişi için */
  z-index: 1;
}

.portfolio-item:hover::before {
  opacity: 0.05;
}

.portfolio-item:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), var(--shadow-main);
  border-color: var(--color-primary);
}

.portfolio-image {
  height: 250px;
  background: var(--gradient-button-primary); /* Değiştirildi */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  overflow: hidden;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.portfolio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image::before {
  transform: translateX(100%);
}

.portfolio-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-main); /* Değiştirildi */
}

.portfolio-description {
  color: var(--color-text-muted); /* Değiştirildi */
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-tag {
  background: var(--color-bg-secondary); /* Değiştirildi */
  color: var(--color-primary); /* Değiştirildi */
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--color-border); /* Değiştirildi */
  backdrop-filter: blur(10px);
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease; /* Tema geçişi için */
}

.portfolio-link {
  color: var(--color-primary); /* Değiştirildi */
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.portfolio-link:hover {
  gap: 12px;
  color: #fff;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(10px);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-main);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-text-main); /* Değiştirildi */
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-bg-tertiary); /* Değiştirildi */
}

.faq-icon {
  font-size: 1.5rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease, background 0.5s ease; /* Tema geçişi için */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 2rem 2rem;
  color: var(--color-text-muted); /* Değiştirildi */
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Contact Section - Futuristic Form */
.contact {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Değiştirildi */
  position: relative;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info {
  background: var(--color-bg-secondary); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  padding: 3rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-button-primary);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--color-bg-tertiary); /* Değiştirildi */
  border: 1px solid var(--color-border); /* Değiştirildi */
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.contact-item:hover {
  background: var(--color-bg-main); /* Değiştirildi */
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-button-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-button);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-main); /* Değiştirildi */
  font-size: 1.2rem;
}

.contact-details p {
  color: var(--color-text-muted); /* Değiştirildi */
  line-height: 1.6;
}

/* Updated: Social links within contact-details */
.contact-social-links a {
  width: 45px; /* Slightly larger for better tap target */
  height: 45px; /* Slightly larger for better tap target */
  background: var(--color-bg-main); /* Use main background for contrast */
  border: 1px solid var(--color-border);
  border-radius: 10px; /* Slightly less rounded */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem; /* Adjust icon size */
  color: var(--color-primary); /* Default icon color */
}

.contact-social-links a:hover {
  background: var(--gradient-button-primary); /* Gradient on hover */
  color: white; /* White icon on hover */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.contact-link:hover {
  gap: 12px;
  color: var(--color-text-main);
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}


/* Updated: Modern Contact Form */
.contact-form-wrapper { /* New wrapper for the form to apply specific styles */
  background: var(--color-bg-secondary);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-button-primary);
  transition: background 0.5s ease;
}

.modern-contact-form .form-group {
  margin-bottom: 1.8rem; /* Slightly reduced margin */
}

.modern-contact-form .form-group label {
  display: block;
  margin-bottom: 0.6rem; /* Slightly reduced margin */
  font-weight: 600;
  color: var(--color-text-main);
  font-size: 0.95rem; /* Slightly smaller font */
  text-transform: uppercase;
  letter-spacing: 0.5px; /* Reduced letter spacing */
}

.modern-contact-form .form-group input,
.modern-contact-form .form-group textarea,
.modern-contact-form .form-group select {
  width: 100%;
  padding: 16px 20px; /* Slightly reduced padding */
  border: 2px solid var(--color-border);
  border-radius: 12px; /* Slightly less rounded */
  font-size: 1rem;
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  background: var(--color-bg-tertiary); /* Use tertiary background for inputs */
  color: var(--color-text-main);
  backdrop-filter: blur(10px);
}

.modern-contact-form .form-group select option {
  color: var(--color-text-main);
  background: var(--color-bg-main);
}

.modern-contact-form .form-group input:focus,
.modern-contact-form .form-group textarea:focus,
.modern-contact-form .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2); /* Lighter shadow */
  background: var(--color-bg-main); /* Main background on focus */
}

.modern-contact-form .form-group input::placeholder,
.modern-contact-form .form-group textarea::placeholder {
  color: var(--color-text-placeholder);
}

/* Desktop Contact Form Layout */
@media (min-width: 1025px) {
  .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
  }
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat-toggle {
  width: 70px;
  height: 70px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease, background 0.5s ease; /* Tema geçişi için */
  border: none;
  animation: pulse-chat 3s infinite;
}

@keyframes pulse-chat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

.chat-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--color-bg-main); /* Değiştirildi */
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 20px;
  padding: 1.5rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
}

.chat-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-menu::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 25px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-bg-main); /* Değiştirildi */
  transition: border-top-color 0.5s ease; /* Tema geçişi için */
}

.chat-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--color-bg-secondary); /* Değiştirildi */
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease, color 0.5s ease; /* Tema geçişi için */
  text-decoration: none;
  color: var(--color-text-main); /* Değiştirildi */
}

.chat-option:hover {
  background: var(--color-bg-tertiary); /* Değiştirildi */
  transform: translateX(5px);
  border-color: var(--color-primary);
}

/* Tema seçeneği için özel stiller */
.chat-option.theme-option {
  position: relative;
}

.chat-option.theme-option .theme-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.chat-option.theme-option .theme-toggle:hover {
  background: transparent;
}

.chat-option.theme-option .theme-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

.chat-option.theme-option .theme-toggle:active {
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.chat-option.theme-option .theme-toggle:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Override any global button styles that might affect the theme toggle */
.chat-option.theme-option .theme-toggle {
  outline: none !important;
  box-shadow: none !important;
}

/* Ensure no visual effects on any state */
.chat-option.theme-option .theme-toggle:focus,
.chat-option.theme-option .theme-toggle:active,
.chat-option.theme-option .theme-toggle:focus-visible,
.chat-option.theme-option .theme-toggle:hover {
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
  background: transparent !important;
}

.chat-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.chat-option:nth-child(1) .chat-option-icon {
  background: #25d366;
}

.chat-option:nth-child(2) .chat-option-icon {
  background: var(--color-primary);
}

.chat-option:nth-child(3) .chat-option-icon {
  background: var(--gradient-button-primary);
}

.chat-option-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-text-main); /* Değiştirildi */
}

.chat-option-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted); /* Değiştirildi */
}

/* Footer - Cyberpunk Style */
.footer {
  background: var(--color-bg-main); /* Değiştirildi */
  color: var(--color-text-main); /* Değiştirildi */
  padding: 80px 0 20px;
  position: relative;
  border-top: 1px solid var(--color-border); /* Değiştirildi */
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease; /* Tema geçişi için */
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-button-primary);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.footer-section p,
.footer-section a {
  color: var(--color-text-muted); /* Değiştirildi */
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--color-text-main); /* Değiştirildi */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-button-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-button);
  transition: background 0.5s ease; /* Tema geçişi için */
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.5s ease; /* Tema geçişi için */
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 60px;
  height: 60px;
  background: var(--color-bg-tertiary); /* Değiştirildi */
  border: 1px solid var(--color-border); /* Değiştirildi */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease, background 0.5s ease, border-color 0.5s ease; /* Tema geçişi için */
  backdrop-filter: blur(10px);
  font-size: 1.3rem;
}

.social-links a:hover {
  background: var(--gradient-button-primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-button);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 3rem;
  }

  .hero-title {
      font-size: 3rem;
  }

  .section-title {
      font-size: 2.8rem;
  }

  .contact-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }

  .services-grid {
      grid-template-columns: 1fr;
  }

  .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
      grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header {
      display: none; /* Mobil görünümde top bar'ı gizle */
  }

  .header {
      top: 0; /* Header'ı en üste sabitle */
  }

  .nav {
      padding: 1rem 24px; /* Mobil header padding'i */
  }

  .logo {
      font-size: 1.5rem;
      margin-left: 0; /* Logo sola dayanmasın */
  }

  .logo-icon {
      width: 40px;
      height: 40px;
      margin-right: 10px;
  }

  .nav-menu {
      flex-direction: column;
      position: absolute;
      top: 100%; /* Header'ın altına hizala */
      left: 0;
      width: 100%;
      background: var(--color-bg-main); /* Değiştirildi */
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--color-border); /* Değiştirildi */
      padding: 20px 0;
      transform: translateY(-100%); /* Varsayılan olarak gizle */
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease-in-out;
      gap: 1rem;
  }

  .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }

  .nav-menu li {
      width: 100%;
      text-align: center;
  }

  .nav-menu a {
      display: block;
      padding: 15px 0;
      border-radius: 0;
      background: none;
  }

  .nav-menu a:hover::before {
      opacity: 0; /* Mobil menüde hover efektini kaldır */
  }

  .menu-toggle {
      display: block; /* Mobil görünümde hamburger ikonunu göster */
      background: transparent;
      border: none;
      color: var(--color-text-main); /* Değiştirildi */
      font-size: 1.8rem;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .menu-toggle:hover {
      transform: scale(1.1);
  }

  .hero {
      padding: 120px 0 80px;
  }

  .hero-title {
      font-size: 2.5rem;
  }

  .section-title {
      font-size: 2.2rem;
  }

  .hero-visual {
      height: 400px;
  }

  .globe-container {
      width: 300px;
      height: 300px;
  }

  /* Hero 3D Container and Cards for Mobile */
  .hero-3d-container {
      width: 100%;
      height: 400px;
      max-width: 400px;
      margin: 0 auto;
      transform: scale(0.8);
      transform-origin: center center;
  }
  .hero-card {
      width: 250px;
      height: 160px;
      padding: 20px;
  }
  .hero-card:nth-child(1) {
      transform: translateZ(80px) rotateY(0deg);
  }
  .hero-card:nth-child(2) {
      transform: translateZ(80px) rotateY(120deg);
  }
  .hero-card:nth-child(3) {
      transform: translateZ(80px) rotateY(240deg);
  }
  .hero-card-icon {
      font-size: 2.5rem;
  }
  .hero-card h3 {
      font-size: 1.3rem;
  }
  .hero-card p {
      font-size: 0.9rem;
  }


  .footer-content {
      grid-template-columns: 1fr;
  }

  .btn {
      padding: 15px 25px;
      font-size: 1rem;
  }

  .portfolio-grid {
      grid-template-columns: 1fr;
  }

  .blog-grid {
      grid-template-columns: 1fr;
  }

  .hero-stats {
      grid-template-columns: 1fr;
  }

  .process-grid {
      grid-template-columns: 1fr;
  }

  .clients-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1.5rem;
      overflow-x: hidden;
  }
  .client-logo {
      padding: 1rem;
  }
  .client-logo img {
      max-width: 100px;
      height: 50px;
  }
  .client-text-logo {
      font-size: 0.9rem;
      padding: 0.75rem;
      min-height: 50px;
  }

  .certifications-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .chat-widget {
      bottom: 20px;
      right: 20px;
  }

  .chat-toggle {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }

  .chat-menu {
      min-width: 250px;
      bottom: 70px;
  }

  .contact-content {
      padding: 0 15px;
  }

  .contact-item {
      padding: 1rem;
      gap: 1rem;
  }

  .contact-details h4 {
      font-size: 1rem;
  }

  .contact-details p {
      font-size: 0.9rem;
  }

  .form-group label {
      font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
      padding: 15px;
      font-size: 0.9rem;
  }

  .clients-grid .client-logo:nth-child(n+7) {
      display: none;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-main); /* Değiştirildi */
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-button-primary);
  border-radius: 5px;
  transition: background 0.5s ease; /* Tema geçişi için */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-cyber-effect);
}

/* Loading Screen */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-main); /* Değiştirildi */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, background 0.5s ease; /* Tema geçişi için */
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid var(--color-border); /* Değiştirildi */
  border-top: 4px solid var(--color-primary); /* Değiştirildi */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
  transition: border-color 0.5s ease; /* Tema geçişi için */
}

.loading-spinner::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-top: 4px solid var(--color-secondary); /* Değiştirildi */
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
  transition: border-color 0.5s ease; /* Tema geçişi için */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dropdown menu styles */
.nav-menu .dropdown {
  position: relative;
}
.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg-main); /* Değiştirildi */
  min-width: 220px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 1002;
  padding: 0.5rem 0;
  transition: background 0.5s ease; /* Tema geçişi için */
}
.nav-menu .dropdown:hover .dropdown-menu,
.nav-menu .dropdown:focus-within .dropdown-menu {
  display: block;
}
.nav-menu .dropdown-menu li {
  width: 100%;
}
.nav-menu .dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--color-text-main); /* Değiştirildi */
  text-align: left;
  border-radius: 0;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-menu .dropdown-menu a:hover {
  background: var(--gradient-button-primary);
  color: #fff;
}
@media (max-width: 1024px) {
  .nav-menu .dropdown-menu {
      position: static;
      min-width: 100%;
      box-shadow: none;
      border-radius: 0 0 15px 15px;
      display: none; /* Hidden by default on mobile */
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 5px;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(-10px);
  }
  
  .nav-menu .dropdown.active .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
  }
  
  .nav-menu .dropdown-menu a {
      padding: 12px 20px;
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
  }
  
  .nav-menu .dropdown-menu a:hover {
      border-left-color: var(--color-primary);
      background: rgba(255, 255, 255, 0.1);
  }
  
  /* Visual feedback for dropdown parent items */
  .nav-menu .dropdown > a {
      transition: background-color 0.2s ease;
  }
  
  .nav-menu .dropdown > a:hover {
      background-color: rgba(255, 255, 255, 0.1);
  }
}

/* Theme Toggle Button Style */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.theme-toggle i {
  color: var(--color-primary); /* İkon rengi */
  transition: transform 0.3s ease, color 0.5s ease; /* Tema geçişi için */
}

body.light-theme .theme-toggle i {
  color: var(--color-secondary); /* Açık temada ikon rengi */
}

/* New styles for Hizmetler page */
.services-hero {
    padding: 170px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero .hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.services-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
}

.services-hero .hero-title::after,
.portfolio-hero .hero-title::after,
.about-hero-content .hero-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.service-categories {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    backdrop-filter: blur(10px);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-button-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 0;
}

.category-card::hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-main);
    border-color: var(--color-primary);
}

.category-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--color-text-main);
    position: relative;
    z-index: 1;
}

.category-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.category-count {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.all-services {
    padding: 120px 0;
}

.service-filter-buttons {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: var(--color-bg-tertiary);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--gradient-button-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-button);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-detail-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-main);
    border-color: var(--color-primary);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.service-detail-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-detail-badge.expert {
    background: var(--color-success);
    color: white;
}

.service-detail-badge.medium {
    background: var(--color-warning);
    color: white;
}

.service-detail-badge.subcontractor {
    background: var(--color-accent);
    color: white;
}

.service-detail-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-detail-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.service-detail-features li i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-detail-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.service-detail-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--color-bg-main);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button-primary);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-button-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .services-hero .hero-title {
        font-size: 3rem;
    }

    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-categories {
        padding: 60px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .all-services {
        padding: 80px 0;
    }

    .service-filter-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .service-detail-title {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

/* New styles for Referanslar page */
.portfolio-hero {
  padding: 170px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  backdrop-filter: blur(10px);
}

.portfolio-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero .hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.portfolio-hero .hero-subtitle {
  font-size: 1.4rem;
  color: var(--color-text-secondary);
}

.portfolio-hero .hero-buttons {
  justify-content: center;
}

.reference-works {
  padding: 120px 0;
}

.portfolio-filter-buttons {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.portfolio-filter-buttons .filter-btn {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.portfolio-filter-buttons .filter-btn:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.portfolio-filter-buttons .filter-btn.active {
  background: var(--gradient-button-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-button);
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.portfolio-detail-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.portfolio-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
  border-color: var(--color-primary);
}

.portfolio-detail-image {
  height: 200px;
  background: var(--gradient-button-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  transition: background 0.3s ease;
}

.portfolio-detail-image i {
  transition: transform 0.3s ease;
}

.portfolio-detail-card:hover .portfolio-detail-image i {
  transform: scale(1.1);
}

.portfolio-detail-content {
  padding: 2rem;
}

.portfolio-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.portfolio-detail-client {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.portfolio-detail-description {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.portfolio-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-detail-tags .portfolio-tag {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
}

.portfolio-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.portfolio-detail-link:hover {
  gap: 12px;
  color: #fff;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@media (max-width: 768px) {
  .portfolio-hero {
      padding: 120px 0 60px;
  }

  .portfolio-hero .hero-title {
      font-size: 3rem;
  }

  .portfolio-hero .hero-subtitle {
      font-size: 1.1rem;
  }

  .portfolio-filter-buttons {
      flex-direction: column;
      gap: 0.8rem;
  }

  .portfolio-cards-grid {
      grid-template-columns: 1fr;
  }

  .portfolio-detail-card {
      padding: 1.5rem;
  }

  .portfolio-detail-title {
      font-size: 1.3rem;
  }

  .portfolio-detail-image {
      height: 150px;
      font-size: 2.5rem;
  }
}

/* New styles for web-tasarim.html */
.breadcrumb-section {
  padding: 120px 0 30px;
  background: transparent; /* Changed to transparent */
  border-bottom: 1px solid var(--color-border); /* Added subtle border */
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.breadcrumb li + li::before {
  content: '/';
  margin: 0 8px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb li[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
}

.service-detail-hero {
  padding: 80px 0;
  text-align: left;
  background: var(--color-bg-secondary);
  backdrop-filter: blur(10px);
}

.service-detail-hero-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Left text, right info panel */
  gap: 4rem;
  align-items: flex-start; /* Content'i üste hizala */
}

.service-detail-hero-content {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.service-detail-hero .hero-title {
  font-size: 3.5rem; /* Başlık boyutunu küçült */
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-detail-hero .hero-title::after {
  left: 0;
  transform: translateX(0);
}

.service-detail-hero .hero-subtitle {
  font-size: 1.2rem; /* Alt başlık boyutunu küçült */
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  text-align: left;
}

/* Service Features List düzeltmeleri */
.service-features-list {
  display: flex;
  flex-direction: column; /* Alt alta sırala */
  justify-content: flex-start;
  gap: 0.8rem; /* Boşluğu ayarla */
  margin-bottom: 3rem;
}

.service-features-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--color-text-main);
  font-weight: 500;
}

.service-features-list i {
  color: var(--color-success);
}

.hero-buttons {
  display: flex;
  justify-content: flex-start; /* Align buttons to the left */
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Service Info Grid düzeltmeleri */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* Gap'i biraz artır */
  padding: 2rem; /* Padding'i artır */
  background: transparent; /* Arka planı şeffaf yap */
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: none;
}

.info-card {
  background: var(--color-bg-tertiary); /* Kart arka planını biraz daha belirgin yap */
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 1.5rem; /* Padding'i artır */
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.2rem; /* İkon ve metin arasındaki boşluğu artır */
  transition: all 0.3s ease;
}

.info-icon {
  font-size: 2.2rem; /* İkon boyutunu büyüt */
  color: var(--color-primary); /* Use site's accent color instead of black */
  margin-bottom: 0; /* Removed margin-bottom */
  flex-shrink: 0; /* Prevent icon from shrinking */
  width: 55px; /* İkon kutusu boyutunu büyüt */
  height: 55px; /* İkon kutusu boyutunu büyüt */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-main);
  border-radius: 12px; /* Köşe yuvarlaklığını ayarla */
  transition: all 0.3s ease;
}

.info-icon:hover {
  color: var(--color-primary);
  transform: scale(1.05);
  background: var(--color-bg-tertiary);
}

.info-title {
  font-size: 1.1rem; /* Başlık boyutunu büyüt */
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.3rem; /* Margin'i ayarla */
}

.info-value {
  font-size: 1rem; /* Değer boyutunu büyüt */
  color: var(--color-text-secondary);
  font-weight: 700;
}

.about-web-design {
  padding: 120px 0;
  background: var(--color-bg-secondary);
  backdrop-filter: blur(10px);
}

.about-service {
  padding: 120px 0;
  background: var(--color-bg-secondary);
  backdrop-filter: blur(10px);
}



.about-text-container { /* New container for the left text area */
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: none; /* Removed shadow */
  transition: all 0.3s ease;
}

.about-text-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2); /* Lighter shadow on hover */
}

.about-text-container p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-text-container h3 { /* Reduced font size for h3 within this container */
  font-size: 1.6rem; /* Reduced from 1.8rem */
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: start;
}

.sidebar-card {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
}

.sidebar-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.sidebar-card ul li i {
  color: var(--color-success);
  margin-top: 4px;
}

.sidebar-card ul li strong {
  color: var(--color-text-main);
}

.additional-services {
  padding: 120px 0;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.additional-service-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.additional-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
  border-color: var(--color-primary);
}

.additional-service-card .service-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.additional-service-card .service-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.additional-service-card .service-features {
  margin-bottom: 2rem;
}

.additional-service-card .service-features li {
  font-size: 0.95rem;
}

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.service-price span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.portfolio-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.portfolio-stats .stat-item {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 1rem;
  flex: 1;
  text-align: center;
}

.portfolio-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.2rem;
}

.portfolio-stats .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* Features Section specific styles */
.features-section {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Arka planı daha açık bir renge ayarla */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--color-bg-secondary); /* Card background */
  border: 1px solid var(--color-border); /* Card border */
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none; /* Removed initial shadow */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main); /* Add shadow on hover */
  border-color: var(--color-primary); /* Highlight border on hover */
}

.feature-icon-wrapper { /* New wrapper for icon */
  width: 90px; /* İkon kutusu boyutunu büyüt */
  height: 90px; /* İkon kutusu boyutunu büyüt */
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: white; /* White icon on hover */
}

.feature-icon { /* Bu kısım zaten var, sadece font-size'ı güncelliyoruz */
  font-size: 3rem; /* İkon boyutunu büyüt */
  color: var(--color-primary); /* İkon rengini ayarla */
  transition: all 0.3s ease;
}

/* New styles for Google Maps Section */
.google-maps-section {
  padding: 120px 0;
  background: var(--color-bg-main); /* Use main background for this section */
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-main);
  margin-top: 4rem;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


@media (max-width: 1024px) {
  .about-content {
      grid-template-columns: 1fr;
  }
  .additional-services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-hero-wrapper {
      grid-template-columns: 1fr; /* Stack columns on smaller screens */
      gap: 3rem;
  }
  .service-detail-hero .hero-title {
      text-align: center; /* Center title on mobile */
  }
  .service-detail-hero .hero-title::after {
      left: 50%; /* Center ::after line on mobile */
      transform: translateX(-50%);
  }
  .service-detail-hero .hero-subtitle {
      text-align: center; /* Center subtitle on mobile */
  }
  .service-features-list {
      justify-content: center; /* Center features on mobile */
  }
  .hero-buttons {
      justify-content: center; /* Center buttons on mobile */
  }
  .features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
      padding: 80px 0 20px; /* Mobil görünümde üstten boşluk */
  }
  .service-detail-hero {
      padding: 60px 0;
  }
  .service-detail-hero .hero-title {
      font-size: 3rem;
  }
  .service-detail-hero .hero-subtitle {
      font-size: 1.1rem;
  }
  .service-features-list {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 20px;
  }
  .info-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 2rem;
  }
  .info-card {
      padding: 1.2rem;
      gap: 1rem;
  }
  .info-icon {
      font-size: 1.6rem;
      width: 45px;
      height: 45px;
      border-radius: 12px;
  }
  .info-title {
      font-size: 0.95rem;
  }
  .info-value {
      font-size: 0.9rem;
  }
  .about-web-design {
      padding: 80px 0;
  }
  .about-content {
      gap: 2rem;
  }
  .about-text-container {
      padding: 2rem; /* Adjust padding for mobile */
  }
  .about-text-container h3 {
      font-size: 1.3rem; /* Further reduce h3 size on mobile */
  }
  .additional-services {
      padding: 80px 0;
  }
  .additional-services-grid {
      grid-template-columns: 1fr;
  }
  .portfolio-stats {
      flex-direction: column;
      gap: 0.5rem;
  }
  .portfolio-stats .stat-item {
      padding: 0.8rem;
  }
  .portfolio-stats .stat-number {
      font-size: 1.5rem;
  }
  .portfolio-stats .stat-label {
      font-size: 0.7rem;
  }
  .features-grid {
      grid-template-columns: 1fr;
  }
  .feature-card {
      padding: 2rem;
  }
  .feature-icon-wrapper {
      width: 70px;
      height: 70px;
  }
  .feature-icon {
      font-size: 2rem;
  }
  .feature-title {
      font-size: 1.3rem;
  }
  .feature-description {
      font-size: 0.9rem;
  }
  .feature-list li {
      font-size: 0.85rem;
      gap: 0.5rem;
  }
  
  .feature-list li i {
      width: 14px;
      height: 14px;
      font-size: 0.8rem;
  }

  .google-maps-section {
    padding: 80px 0;
  }
}

/* Service Detail Content yazı boyutları düzeltmeleri */
.service-detail-hero .hero-title {
  font-size: 3.5rem; /* Başlık boyutunu küçült */
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-detail-hero .hero-subtitle {
  font-size: 1.2rem; /* Alt başlık boyutunu küçült */
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  text-align: left;
}

/* Features Section arka planı ve ikon boyutları düzeltmeleri */
.features-section {
  padding: 120px 0;
  background: var(--color-bg-secondary); /* Arka planı daha açık bir renge ayarla */
}

.feature-icon-wrapper {
  width: 90px; /* İkon kutusu boyutunu büyüt */
  height: 90px; /* İkon kutusu boyutunu büyüt */
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: white; /* White icon on hover */
}

.feature-icon { /* Bu kısım zaten var, sadece font-size'ı güncelliyoruz */
  font-size: 3rem; /* İkon boyutunu büyüt */
  color: var(--color-primary); /* İkon rengini ayarla */
  transition: all 0.3s ease;
}

/* Blog Content Specific Styles */
.blog-content-section {
    padding: 170px 0 80px; /* Header ve topbar'ı hesaba kat */
    position: relative;
}

.blog-content-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Ana içerik ve kenar çubuğu */
    gap: 4rem;
    align-items: flex-start; /* İçeriği üste hizala */
}

.blog-main-content {
    background: var(--color-bg-secondary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.blog-main-content:hover {
    box-shadow: var(--shadow-main);
    border-color: var(--color-primary);
}

.blog-post-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.blog-post-meta i {
    margin-right: 8px;
    color: var(--color-primary);
}

.blog-post-image {
    margin-bottom: 2.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.blog-post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-body p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.author-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.author-details p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.author-social-links {
    display: flex;
    gap: 0.8rem;
}

.author-social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.author-social-links a:hover {
    background: var(--gradient-button-primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-button);
}

.blog-sidebar {
    background: var(--color-bg-secondary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.blog-sidebar:hover {
    box-shadow: var(--shadow-main);
    border-color: var(--color-primary);
}

.sidebar-widget {
    margin-bottom: 3rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.8rem;
}

.sidebar-widget ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
    padding: 5px 0;
}

.sidebar-widget ul li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tags-cloud a {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-cloud a:hover {
    background: var(--gradient-button-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-button);
}

/* Responsive adjustments for blog-icerik.html */
@media (max-width: 1024px) {
    .blog-content-layout {
        grid-template-columns: 1fr; /* Stack main content and sidebar */
        gap: 3rem;
    }

    .blog-main-content {
        padding: 2.5rem;
    }

    .blog-post-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .blog-post-meta {
        justify-content: center;
    }

    .blog-post-body h2 {
        font-size: 1.8rem;
    }

    .blog-post-body h3 {
        font-size: 1.3rem;
    }

    .blog-post-body p {
        font-size: 1rem;
    }

    .blog-author-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .author-details h4 {
        font-size: 1.3rem;
    }

    .author-social-links {
        justify-content: center;
    }

    .blog-sidebar {
        padding: 2rem;
    }

    .sidebar-widget h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .blog-content-section {
        padding: 120px 0 60px;
    }

    .blog-main-content {
        padding: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .blog-post-body h2 {
        font-size: 1.5rem;
    }

    .blog-post-body h3 {
        font-size: 1.1rem;
    }

    .blog-post-body p {
        font-size: 0.9rem;
    }

    .blog-author-info {
        padding: 1rem;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
    }

    .author-details h4 {
        font-size: 1.1rem;
    }

    .author-details p {
        font-size: 0.85rem;
    }

    .blog-sidebar {
        padding: 1.5rem;
    }

    .sidebar-widget h3 {
        font-size: 1.1rem;
    }

    .sidebar-widget ul li a {
        font-size: 0.9rem;
    }

    .tags-cloud a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.about-hero {
  padding: 150px 0 80px;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.about-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text-container {
  background: var(--color-bg-secondary);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.about-text-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-main);
}

.about-text-container h2 {
  color: var(--color-text-main);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-text-container h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 30px 0 15px;
  font-weight: 500;
}

.about-text-container p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-sidebar {
  height: fit-content;
}

.values-grid {
  display: grid;
  gap: 20px;
}

.value-card {
  background: var(--color-bg-secondary);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-main);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: white;
  box-shadow: var(--shadow-button);
}

.value-card h4 {
  color: var(--color-text-main);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.value-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.history-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-bg-main) 0%, var(--color-bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), var(--color-accent));
  transform: translateX(-50%);
  border-radius: 2px;
  display: none;
}

@media (max-width: 768px) {
  .timeline::before {
    display: block;
    left: 30px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: var(--shadow-button);
  z-index: 2;
  position: relative;
}

.timeline-content {
  background: var(--color-bg-tertiary);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  margin: 0 30px;
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-main);
}

.timeline-content h3 {
  color: var(--color-text-main);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-content p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}



.policies-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.policies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 60%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(236, 72, 153, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.policy-card {
  background: var(--color-bg-secondary);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
}

.policy-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
  box-shadow: var(--shadow-button);
}

.policy-card h3 {
  color: var(--color-text-main);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  

  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .timeline-content {
    margin-left: 20px;
    margin-right: 0;
  }
  
  .policies-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-text-container {
    padding: 30px;
  }
  
  .about-text-container h2 {
    font-size: 2rem;
  }
  
  .about-text-container h3 {
    font-size: 1.3rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  
  .policy-card {
    padding: 25px;
  }
  
  .policy-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
  
  .policy-card h3 {
    font-size: 1.2rem;
  }
  
  .value-card {
    padding: 20px;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .value-card h4 {
    font-size: 1.1rem;
  }
}

/* ===== POLICIES PAGE STYLES ===== */

/* Politika sayfası için özel about-sidebar düzenlemesi */
.about-content-section .about-sidebar {
  align-self: start !important;
  position: static;
}

.policies-sidebar {
  padding: 25px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  height: fit-content;
}

.sidebar-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.sidebar-header p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.policies-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.policy-nav-item:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.policy-nav-item.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.policy-nav-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.policies-content {
  /* İçerik container'ı - margin gerekmez çünkü about-text-container içinde */
}

.policy-content {
  display: none;
}

.policy-content.active {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

.policy-header {
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.policy-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.policy-date {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-style: italic;
}

.policy-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 2rem 0 1rem;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
}

.policy-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 1.5rem 0 0.8rem;
}

.policy-body p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.policy-body ul,
.policy-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.policy-body li {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.policy-body li strong {
  color: var(--color-text-main);
}

.policy-body a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.policy-body a:hover {
  text-decoration: underline;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Policies */
@media (max-width: 768px) {
  .policies-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }
  
  .policy-nav-item {
    justify-content: center;
    text-align: center;
  }
  
  .policy-header h2 {
    font-size: 1.8rem;
  }
  
  .policy-body h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .policies-nav {
    grid-template-columns: 1fr;
  }
  
  .policy-body ul,
  .policy-body ol {
    margin-left: 1rem;
  }
}

/* ===== QUOTE FORM STYLES ===== */

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Progress Indicator */
.quote-progress {
  margin-bottom: 40px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-button-primary);
  border-radius: 4px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-tertiary);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.progress-step.active .step-number {
  background: var(--gradient-button-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.progress-step.completed .step-number {
  background: var(--color-success);
  border-color: var(--color-success);
  color: white;
}

.step-title {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  transition: color 0.3s ease;
}

.progress-step.active .step-title {
  color: var(--color-primary);
  font-weight: 500;
}

/* Form Steps */
.quote-form {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.form-step.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 40px;
}

.step-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.step-header p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

/* Form Groups */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  background: var(--color-bg-secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-placeholder);
}

.form-group select option {
  background: var(--color-bg-main);
  color: var(--color-text-main);
}

/* Radio and Checkbox Styles */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.3s ease;
  flex: 1;
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-secondary);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  display: none;
}

.radio-custom,
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-custom {
  border-radius: 4px;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.radio-option input[type="radio"]:checked ~ span,
.checkbox-option input[type="checkbox"]:checked ~ .checkbox-text {
  color: var(--color-primary);
  font-weight: 500;
}

.checkbox-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-text a {
  color: var(--color-primary);
  text-decoration: none;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Conditional Fields */
.conditional-fields {
  margin-top: 20px;
  padding: 20px;
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.form-actions .btn {
  min-width: 120px;
}

/* Quote Summary */
.quote-summary {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.summary-section {
  display: grid;
  gap: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Error and Success Messages */
.error-message,
.success-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
  text-align: center;
  font-weight: 500;
  animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .quote-form-container {
    padding: 20px 16px;
  }

  .quote-form {
    padding: 24px 20px;
  }

  /* Hide progress indicators on mobile */
  .quote-progress {
    display: none;
  }

  .progress-steps {
    flex-direction: column;
    gap: 20px;
  }

  .progress-step {
    flex-direction: row;
    gap: 12px;
  }

  .step-title {
    text-align: left;
  }

  .step-header h2 {
    font-size: 1.5rem;
  }

  .step-header p {
    font-size: 1rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .form-actions {
    flex-direction: column;
    gap: 16px;
  }

  .form-actions .btn {
    width: 100%;
  }

  .summary-item {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .quote-form {
    padding: 20px 16px;
  }

  .step-header h2 {
    font-size: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* Enhanced Feature List Styling */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  text-align: left;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li i {
  color: var(--color-primary);
  font-size: 0.9rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  color: var(--color-text-main);
  transform: translateX(5px);
}

.feature-list li:hover i {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

/* Modern Service Info Grid - Complete Redesign */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.info-card {
  background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(0, 123, 128, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(255, 0, 110, 0.15);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255, 0, 110, 0.2);
}

.info-icon i {
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 0, 110, 0.3);
}

.info-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.info-value {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Light theme adjustments */
body.light-theme .info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
  border-color: rgba(0, 123, 128, 0.2);
}

body.light-theme .info-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 123, 128, 0.15);
}

body.light-theme .info-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  box-shadow: 0 8px 20px rgba(0, 123, 128, 0.2);
}

body.light-theme .info-card:hover .info-icon {
  box-shadow: 0 12px 30px rgba(0, 123, 128, 0.3);
}

body.light-theme .info-value {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Service Info Grid - Compact & Elegant Design */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.03) 0%, rgba(0, 123, 128, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 110, 0.3);
  box-shadow: 0 12px 30px rgba(255, 0, 110, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(255, 0, 110, 0.15);
}

.info-icon i {
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.info-card:hover .info-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 0, 110, 0.25);
}

.info-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.3rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.info-value {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Light theme adjustments */
body.light-theme .info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-color: rgba(0, 123, 128, 0.15);
}

body.light-theme .info-card:hover {
  border-color: rgba(0, 123, 128, 0.3);
  box-shadow: 0 12px 30px rgba(0, 123, 128, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

body.light-theme .info-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  box-shadow: 0 6px 16px rgba(0, 123, 128, 0.15);
}

body.light-theme .info-card:hover .info-icon {
  box-shadow: 0 8px 20px rgba(0, 123, 128, 0.25);
}

body.light-theme .info-value {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blog Page Specific Styles */
/* ======================== */

/* Blog Hero Section */
.blog-hero {
  padding: 120px 0 80px;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.blog-hero .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero .section-badge {
  display: inline-block;
  background: var(--gradient-button-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-hero .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero .section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Categories */
.blog-categories {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: var(--color-text-main);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-button-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-main);
}

.category-card > * {
  position: relative;
  z-index: 2;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text-main);
}

.category-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.category-card.active {
  border-color: var(--color-primary);
  background: rgba(99, 102, 241, 0.1);
}

/* Featured Posts */
.featured-posts {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.featured-posts .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.featured-post {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.featured-post:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-main);
}

.post-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-button-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-meta i {
  color: var(--color-primary);
}

.post-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-title a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--color-primary);
}

.post-excerpt {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  color: var(--color-secondary);
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Recent Posts */
.recent-posts {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.recent-posts .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.recent-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.recent-post {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.recent-post:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-main);
}

.recent-post .post-image {
  height: 200px;
}

.recent-post .post-content {
  padding: 25px;
}

.recent-post .post-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.recent-post .post-excerpt {
  margin-bottom: 20px;
}

.recent-post .post-meta {
  justify-content: space-between;
  margin-bottom: 0;
}

.post-read-time {
  color: var(--color-text-muted);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.newsletter-text {
  flex: 1;
  max-width: 500px;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-text p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.newsletter-form input[type="email"] {
  padding: 15px 20px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg-tertiary);
  color: var(--color-text-main);
  font-size: 1rem;
  min-width: 300px;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--color-text-placeholder);
}

.newsletter-form .btn {
  padding: 15px 30px;
  white-space: nowrap;
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
  .blog-hero .section-title {
    font-size: 2.5rem;
  }
  
  .featured-posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .recent-posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  
  .newsletter-form input[type="email"] {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 0 60px;
  }
  
  .blog-hero .section-title {
    font-size: 2rem;
  }
  
  .blog-hero .section-subtitle {
    font-size: 1rem;
  }
  
  .blog-categories {
    padding: 60px 0;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .category-card {
    padding: 25px;
  }
  
  .featured-posts {
    padding: 60px 0;
  }
  
  .featured-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .featured-post .post-content {
    padding: 25px;
  }
  
  .recent-posts {
    padding: 60px 0;
  }
  
  .recent-posts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .newsletter {
    padding: 60px 0;
  }
  
  .newsletter-text h2 {
    font-size: 2rem;
  }
  
  .newsletter-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-hero .section-title {
    font-size: 1.8rem;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .featured-post .post-content {
    padding: 20px;
  }
  
  .recent-post .post-content {
    padding: 20px;
  }
  
  .newsletter-text h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-form input[type="email"] {
    padding: 12px 16px;
  }
  
  .newsletter-form .btn {
    padding: 12px 24px;
  }
}

/* Blog Sayfası Özel Stilleri */
.blog-title-section {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.blog-title-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.blog-title-content {
  position: relative;
  z-index: 2;
}

.blog-main-title {
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-button-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3)); }
  100% { filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.6)); }
}

.blog-posts-section {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-post-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.blog-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-button-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-main);
  border-color: var(--color-border-hover);
}

.blog-post-card:hover::before {
  opacity: 0.05;
}

.blog-post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.blog-post-title {
  margin: 0 0 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-post-title a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--color-primary);
}

.blog-post-excerpt {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.blog-read-more:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.blog-read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }
  
  .blog-main-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .blog-title-section {
    padding: 100px 0 60px;
  }
  
  .blog-main-title {
    font-size: 3rem;
  }
  
  .blog-posts-section {
    padding: 60px 0;
  }
  
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .blog-post-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .blog-title-section {
    padding: 80px 0 40px;
  }
  
  .blog-main-title {
    font-size: 2.5rem;
  }
  
  .blog-posts-section {
    padding: 40px 0;
  }
  
  .blog-posts-grid {
    padding: 0 15px;
  }
  
  .blog-post-content {
    padding: 20px;
  }
  
  .blog-post-title {
    font-size: 1.1rem;
  }
}

/* Form submission loading spinner and messages */
.fa-spinner.fa-spin {
  animation: spin 1s linear infinite;
}

/* ========================================
   REFERANS DETAY SAYFASI STİLLERİ
   ======================================== */

/* Breadcrumb Section */
.breadcrumb-section {
  padding: 20px 0;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb li + li::before {
  content: ">";
  color: var(--color-text-muted);
  margin-right: 10px;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-primary-hover);
}

.breadcrumb li[aria-current="page"] {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Project Hero Section */
.project-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  text-align: center;
}

.project-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.project-hero .hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--gradient-text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  /* Fallback for browsers that don't support background-clip: text */
  color: var(--color-primary);
}

/* Ensure text is visible even if background-clip is not supported */
@supports not (background-clip: text) {
  .project-hero .hero-title {
    background: none;
    color: var(--color-primary);
  }
}

/* Additional fallback for older browsers */
.project-hero .hero-title {
  /* Ensure text is always visible */
  color: var(--color-primary);
}

/* Force text visibility in case of any issues */
.project-hero .hero-title:not(:empty) {
  color: var(--color-primary) !important;
}

.project-hero .hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-button-primary);
  border-radius: 2px;
}

.project-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-secondary);
  background: var(--color-bg-primary);
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.project-meta-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.project-meta-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Project Gallery Section */
.project-gallery {
  padding: 60px 0;
  background: var(--color-bg-primary);
}

.gallery-main-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-project-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-main-image:hover .main-project-image {
  transform: scale(1.02);
}

.gallery-thumbnails {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.thumbnail-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-item:hover {
  transform: translateY(-5px);
}

.thumbnail-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Project Details Section */
.project-details {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.project-description h2,
.project-technologies h2 {
  margin-bottom: 30px;
  color: var(--color-text-primary);
}

.project-description p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.project-description h3 {
  margin: 30px 0 15px 0;
  color: var(--color-text-primary);
  font-size: 1.3rem;
}

.project-description ul {
  list-style: none;
  padding: 0;
}

.project-description li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--color-text-secondary);
}

.project-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* Technology Categories */
.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tech-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--color-text-primary);
  font-size: 1.1rem;
}

.tech-category h3 i {
  color: var(--color-primary);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.light-theme .tech-tag {
  background: var(--color-primary);
  color: white;
}

body.light-theme .tech-tag:hover {
  background: var(--color-primary-hover);
  color: white;
}

/* Project Features Section */
.project-features {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.project-features .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--color-bg-secondary);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--color-text-primary);
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Project Process Section */
.project-process {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.project-process .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.project-process .process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.project-process .process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-bg-primary);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
}

.project-process .process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.project-process .process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-button-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-process .process-content {
  flex: 1;
  width: 100%;
}

.project-process .process-duration {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 10px;
}

.process-content h3 {
  margin-bottom: 10px;
  color: var(--color-text-primary);
  font-size: 1.3rem;
}

.process-content p {
  margin-bottom: 10px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.process-duration {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Client Testimonial Section */
.client-testimonial {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  margin-bottom: 40px;
  position: relative;
}

.testimonial-quote i {
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-quote blockquote {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
  padding: 0 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--color-text-primary);
  font-size: 1.2rem;
}

.author-info p {
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.author-rating {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.author-rating i {
  color: #ffd700;
  font-size: 1.1rem;
}

/* Project Results Section */
.project-results {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.project-results .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.result-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-bg-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.result-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-button-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.result-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.result-label {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .project-hero .hero-title {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (min-width: 1025px) {
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 60px 0;
  }
  
  .project-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .project-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 20px;
  }
  
  .gallery-main-image {
    margin-bottom: 20px;
  }
  
  .gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
  }
  
  .thumbnail-image {
    width: 100%;
    height: 120px;
  }
  
  .project-process .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-process .process-timeline::before {
    display: none;
  }
  
  .project-process .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .project-hero .hero-title {
    font-size: 2rem;
  }
  
  .project-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .thumbnail-image {
    height: 100px;
  }
  
  .project-process .process-timeline::before {
    display: none;
  }
  
  .project-process .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .testimonial-quote blockquote {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

.contact-error-message,
.contact-success-message {
  border-radius: 6px;
  padding: 12px;
  margin: 16px 0;
  font-size: 0.9rem;
  text-align: center;
  animation: slideInDown 0.3s ease-out;
}

.contact-error-message {
  background: var(--color-danger);
  color: white;
}

.contact-success-message {
  background: var(--color-success);
  color: white;
}

/* Quote form submission styles */
.quote-error-message,
.quote-success-message {
  border-radius: 6px;
  padding: 12px;
  margin: 16px 0;
  font-size: 0.9rem;
  text-align: center;
  animation: slideInDown 0.3s ease-out;
}

.quote-error-message {
  background: var(--color-danger);
  color: white;
}

.quote-success-message {
  background: var(--color-success);
  color: white;
}

/* Checkbox hint styles */
.checkbox-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.checkbox-hint i {
  color: var(--color-danger);
  font-size: 1rem;
}

.checkbox-hint span {
  line-height: 1.4;
}

/* Light theme checkbox hint */
body.light-theme .checkbox-hint {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

body.light-theme .checkbox-hint i {
  color: var(--color-danger);
}

/* Field error styles */
.field-error {
  animation: slideInDown 0.3s ease-out;
}

/* Error field styling */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-danger) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

/* Required field indicator */
.form-group label[for*="required"]::after,
.form-group label:has(+ input[required])::after,
.form-group label:has(+ select[required])::after,
.form-group label:has(+ textarea[required])::after {
  content: " *";
  color: var(--color-danger);
  font-weight: bold;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cookie-consent-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-button-primary);
    animation: shimmer 2s infinite;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    padding: 20px;
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-main);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text i {
    color: var(--color-primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-consent-text span {
    flex: 1;
}

.cookie-consent-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: inherit;
}

.cookie-consent-accept {
    background: var(--gradient-button-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.cookie-consent-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.cookie-consent-details {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.cookie-consent-details:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-text-main);
    border-color: var(--color-border-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    .cookie-consent-content {
        padding: 16px;
    }
    
    .cookie-consent-text {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .cookie-consent-content {
        padding: 14px;
    }
    
    .cookie-consent-text {
        font-size: 12px;
        gap: 10px;
    }
    
    .cookie-consent-text i {
        font-size: 14px;
    }
}

/* Light theme overrides */
body.light-theme .cookie-consent-banner {
    background: var(--color-bg-secondary);
    border-color: var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.light-theme .cookie-consent-text {
    color: var(--color-text-main);
}

body.light-theme .cookie-consent-details {
    color: var(--color-text-secondary);
    border-color: var(--color-border);
}

body.light-theme .cookie-consent-details:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-text-main);
    border-color: var(--color-border-hover);
}


