/* Tan Dijital - Ana CSS Dosyası */
/* Tüm sayfalar için ortak stiller */

/* CSS Variables */
:root {
  --color-primary: #060097;
  --color-secondary: #ffb347;
  --color-heading: #1e293b;
  --color-text: #67768e;
  --bg-primary: #f9f6fe;
  --bg-secondary: #ffffff;
  --bg-subtitle: #ffcd57;
  --bg-light: #f8fafc;
  --shadow-light: 0 4px 20px rgba(6, 0, 151, 0.08);
  --shadow-medium: 0 8px 30px rgba(6, 0, 151, 0.15);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container Değişkenleri */
  --container-width: 1200px;
  --container-padding: 1rem;
}

/* Keyframe Animations */
@keyframes slideInMenu {
  0% {
    transform: translateY(-40px) scale(0.9);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px) scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

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

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size for rem units */
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--bg-primary);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: 100px; /* Desktop header yüksekliği */
}

/* Typography - Optimized UX/UI */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}
h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 500;
}
h5 {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
}
h6 {
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  font-weight: 500;
}

p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--color-text);
}

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

a:hover {
  color: #05007a;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  padding: 2rem 0;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

/* Header & Navigation - TAMAMEN YENİLENDİ */
.header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 20px;
  height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(6, 0, 151, 0.1);
  width: 100%;
  box-sizing: border-box;
  transition: var(--transition);
  overflow: hidden;
}

/* Header Favicon Decorations */
.header::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15%;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.6;
  animation: float1 4s ease-in-out infinite;
  pointer-events: none;
}

.header::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 8%;
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.4;
  animation: float2 5s ease-in-out infinite reverse;
  pointer-events: none;
}

.header .nav::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 22%;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.5;
  animation: float3 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(180deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-180deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(360deg); }
}

/* Responsive Header Decorations */
@media (max-width: 1024px) {
  .header::before {
    right: 12%;
    width: 20px;
    height: 20px;
  }
  
  .header::after {
    right: 6%;
    width: 16px;
    height: 16px;
  }
  
  .header .nav::after {
    right: 18%;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .header::before {
    right: 10%;
    width: 18px;
    height: 18px;
    top: 12px;
  }
  
  .header::after {
    right: 5%;
    width: 14px;
    height: 14px;
    top: 30px;
  }
  
  .header .nav::after {
    right: 15%;
    width: 16px;
    height: 16px;
    top: 22px;
  }
}

@media (max-width: 480px) {
  .header::before {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .header::after {
    right: 8%;
    width: 12px;
    height: 12px;
    top: 25px;
  }
  
  .header .nav::after {
    display: none;
  }
}

/* Scrolled header stilleri */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: nowrap; /* Header bileşenleri wrap yapmasın */
}

.logo {
  height: 65px; /* Biraz daha artırıldı */
  width: auto;
  max-width: 220px;
  display: block;
  transition: var(--transition);
  object-fit: contain;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  min-height: 65px;
  flex-shrink: 0;
}

.logo-link:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  margin-left: auto;
  justify-content: flex-end;
  flex-shrink: 1;

  flex-wrap: nowrap; /* Menü öğeleri wrap yapmasın */
}

.nav-menu a {
  color: var(--color-heading);
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  transition: width 0.25s ease;
  z-index: -1;
}

.nav-menu a:hover::before {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(6px);
}

/* Aktif sayfa için özel stil */
.nav-menu a[aria-current="page"] {
  font-weight: 600;
  background: rgba(6, 0, 151, 0.1);
}

.nav-menu a[aria-current="page"]::before {
  width: 100%;
}

/* Hamburger Menu Toggle - YENİ TASARIM */
.nav-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  outline: none;
  width: 62px; /* Biraz daha artırıldı */
  height: 62px;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 12px;
  position: relative;
  z-index: 10005;
}

.nav-toggle:hover {
  background: var(--bg-primary);
}

.hamburger {
  width: 28px; /* Biraz daha büyütüldü */
  height: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--color-secondary);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--color-secondary);
}

/* Modern Services Responsive - İyileştirilmiş */
@media (max-width: 768px) {
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    margin: 0 1rem;
  }

  .service-card-modern {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .service-card-modern.featured {
    transform: none;
    box-shadow: 0 12px 40px rgba(6, 0, 151, 0.2);
  }

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

  .service-card-modern.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 0, 151, 0.3);
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-header .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
  }
}

@media (max-width: 480px) {
  .service-card-modern {
    padding: 1.5rem 1.2rem;
  }

  .service-icon-modern {
    width: 60px;
    height: 60px;
  }

  .service-icon-modern i {
    font-size: 1.5rem;
  }
  
  .service-icon-modern img.service-svg-icon {
    width: 20px;
    height: 20px;
  }

  .service-card-modern h3 {
    font-size: 1.2rem;
  }

  .service-card-modern p {
    font-size: 0.9rem;
  }

  .btn-primary-large {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive - TEMA UYUMLU PROFESYONEL TASARIM */
@media (max-width: 768px) {
  body {
    padding-top: 90px; /* Tablet header yüksekliği */
  }

  .header {
    height: 90px;
    padding: 0 15px;
    overflow: visible; /* Menü için overflow aç */
  }

  .nav {
    height: 100%;
    display: flex;
    align-items: center;
  }

  /* Logo sola yasla */
  .logo-link {
    order: 1;
    margin-right: auto;
    z-index: 10002;
    flex-shrink: 0;
  }

  .logo {
    height: 55px; /* Biraz daha artırıldı */
    max-width: 180px;
  }

  /* Buton ve hamburger menüyü sağa yasla - YANYANA */
  .nav-btn {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0.5rem;
    background: var(--bg-primary);

  }

  /* Bize Ulaşın Butonu - Mobil Optimize */
  .nav-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    margin: 0;
    border-radius: 8px;
    height: 48px; /* Header 90px için orantılı artış */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
    background: var(--color-secondary);
    color: var(--color-heading);
    border: none;
    transition: all 0.3s ease;
  }

  .nav-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  /* Profesyonel Mobil Menü - Yarım Ekran Sağdan Açılan Minimalist */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    flex-direction: column;
    z-index: 10003;
    padding: 100px 1.5rem 2rem 1.5rem;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  /* Menü açılma animasyonu - Yandan kayma */
  .nav-menu.active {
    right: 0;
  }

  /* Menü başlık alanı - Minimal tasarım */
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    z-index: -1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Menü başlık içeriği - Logo ve minimal tasarım */
  .nav-menu::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 1.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 1;
  }



  /* Menü öğeleri için stil */
  .nav-menu li {
    margin: 0.3rem 0;
    width: 100%;
    list-style: none;
    padding: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  /* Menü açıkken öğelerin animasyonu - Sıralı giriş */
  .nav-menu.active li {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

  /* Menü kapalıyken öğelerin animasyonu - Sıralı çıkış */
  .nav-menu:not(.active) li:nth-child(1) { transition-delay: 0.35s; }
  .nav-menu:not(.active) li:nth-child(2) { transition-delay: 0.3s; }
  .nav-menu:not(.active) li:nth-child(3) { transition-delay: 0.25s; }
  .nav-menu:not(.active) li:nth-child(4) { transition-delay: 0.2s; }
  .nav-menu:not(.active) li:nth-child(5) { transition-delay: 0.15s; }
  .nav-menu:not(.active) li:nth-child(6) { transition-delay: 0.1s; }

  /* Menü kapalıyken öğeleri gizle */
  .nav-menu:not(.active) li {
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
  }

  /* Minimalist Menü Linkleri */
  .nav-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.2rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-heading);
    text-decoration: none;
    text-align: left;
    transition: all 0.25s ease;
    border-radius: 0;
    position: relative;
    background: transparent;
    min-height: 52px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-primary);
    opacity: 0;
    transition: all 0.25s ease;
  }

  .nav-menu a:hover::before {
    opacity: 1;
  }

  .nav-menu a:hover {
    color: var(--bg-secondary);
    background: rgba(6, 0, 151, 0.03);
    transform: translateX(4px);
  }

  /* Aktif sayfa için özel stil */
  .nav-menu a[aria-current="page"] {
    font-weight: 600;
    color: var(--bg-secondary);
    background: rgba(6, 0, 151, 0.05);
  }

  .nav-menu a[aria-current="page"]::before {
    opacity: 1;
  }

  /* Menü açıkken body scroll'unu engelle - Performans optimizasyonu */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: touch;
  }

  /* Header menü açıkken */
  .header.menu-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom-color: rgba(6, 0, 151, 0.2);
  }

  /* Menü overlay - Yarım ekran için */
  .nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    pointer-events: none;
  }

  .nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--bg-primary);
  color: var(--color-heading);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
  min-width: fit-content;
  line-height: 1.2;
  box-sizing: border-box;
}

/* Navigation Button - Responsive positioning */
.nav .btn {
  margin-left: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10005;
  flex-shrink: 0;
  background: var(--color-primary);
  color: white;
}

/* Küçük Mobil Ekranlar - 480px */
@media (max-width: 480px) {
  body {
    padding-top: 80px; /* Mobil header yüksekliği */
  }

  .header {
    height: 80px;
    padding: 0 12px;
  }

  .nav {
    padding: 0 0px;
  }

  .logo {
    height: 50px; /* Biraz daha artırıldı */
    max-width: 170px;
  }

  .nav-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    margin: 0;
    height: 40px; /* Header 80px için orantılı artış */
  }

  .nav-toggle {
    width: 46px; /* Header 80px için orantılı artış */
    height: 46px;
  }

  .hamburger {
    width: 25px; /* Biraz büyütüldü */
    height: 20px;
  }

  /* Küçük ekranlarda menü - 60% genişlik */
  .nav-menu {
    width: 60vw;
    right: -60vw;
    padding: 90px 1.2rem 2rem 1.2rem;
  }

  .nav-menu::before {
    height: 70px;
  }

  .nav-menu::after {
    font-size: 1.3rem;
    top: 25px;
  }

  .nav-menu a {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }

  .nav-menu-overlay {
    width: 40vw;
  }

  .nav-menu::before {
    height: 80px;
  }

  .nav-menu li {
    max-width: 100%;
  }

  .nav-menu a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin: 0.05rem 0;
  }
}

/* Çok Küçük Mobil Ekranlar - 360px */
@media (max-width: 360px) {
  body {
    padding-top: 75px;
  }

  .header {
    height: 75px;
    padding: 0 10px;
  }

  .nav {
    padding: 0 10px;
    gap: 0.3rem;
  }

  .logo {
    height: 47px; /* Biraz daha artırıldı */
    max-width: 160px;
  }

  .nav-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    margin: 0;
    height: 36px; /* Header 75px için orantılı artış */
  }

  .nav-toggle {
    width: 42px; /* Header 75px için orantılı artış */
    height: 42px;
  }

  .hamburger {
    width: 18px; /* Biraz büyütüldü */
    height: 14px;
  }

  /* Çok küçük ekranlarda menü - 70% genişlik */
  .nav-menu {
    width: 70vw;
    right: -70vw;
    padding: 80px 1rem 2rem 1rem;
  }

  .nav-menu::before {
    height: 60px;
  }

  .nav-menu::after {
    font-size: 1.2rem;
    top: 20px;
  }

  .nav-menu a {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    margin: 0.15rem 0;
  }

  .nav-menu-overlay {
    width: 30vw;
  }

  .nav-menu::before {
    height: 75px;
  }

  .nav-menu a {
    padding: 0.9rem 1.3rem;
    font-size: 0.95rem;
  }
}

.btn:hover {
  background: var(--bg-primary);
  color: var(--color-heading);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-heading);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #060097 0%, #8204ff 50%, #c10fff 100%);
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

/* Generic Hero Favicon Decorations - Büyütülmüş ve Artırılmış */
.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 6%;
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.45;
  animation: heroFloat1 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 10%;
  width: 46px;
  height: 46px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.4;
  animation: heroFloat2 8s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-1 {
  position: absolute;
  top: 58%;
  left: 13%;
  width: 43px;
  height: 43px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.35;
  animation: heroFloat3 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-2 {
  position: absolute;
  top: 68%;
  right: 18%;
  width: 48px;
  height: 48px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.5;
  animation: heroFloat4 7s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-3 {
  position: absolute;
  top: 43%;
  left: 83%;
  width: 41px;
  height: 41px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.43;
  animation: heroFloat5 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-4 {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 34px;
  height: 34px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.32;
  animation: heroFloat6 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-5 {
  position: absolute;
  top: 80%;
  left: 70%;
  width: 38px;
  height: 38px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.38;
  animation: heroFloat7 6.5s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-6 {
  position: absolute;
  top: 15%;
  right: 35%;
  width: 36px;
  height: 36px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.3;
  animation: heroFloat8 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-7 {
  position: absolute;
  top: 85%;
  left: 40%;
  width: 40px;
  height: 40px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.37;
  animation: heroFloat9 7.5s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-8 {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.29;
  animation: heroFloat10 8.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero .hero-decoration-9 {
  position: absolute;
  top: 35%;
  right: 60%;
  width: 35px;
  height: 35px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.34;
  animation: heroFloat11 6.8s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

/* Anasayfa için özel hero section - İyileştirilmiş */
.hero-home {
  background: linear-gradient(135deg, #060097 0%, #8204ff 50%, #c10fff 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Hero Favicon Decorations - Daha Fazla ve Büyük Yıldızlar */
.hero-home::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 58px;
  height: 58px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.5;
  animation: heroFloat1 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 8%;
  width: 53px;
  height: 53px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.45;
  animation: heroFloat2 8s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-1 {
  position: absolute;
  top: 56%;
  left: 10%;
  width: 48px;
  height: 48px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.4;
  animation: heroFloat3 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-2 {
  position: absolute;
  top: 66%;
  right: 16%;
  width: 55px;
  height: 55px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.55;
  animation: heroFloat4 7s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-3 {
  position: absolute;
  top: 40%;
  left: 81%;
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.48;
  animation: heroFloat5 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-4 {
  position: absolute;
  top: 33%;
  left: 23%;
  width: 43px;
  height: 43px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.35;
  animation: heroFloat6 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-5 {
  position: absolute;
  top: 73%;
  left: 73%;
  width: 46px;
  height: 46px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.42;
  animation: heroFloat7 6.5s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-6 {
  position: absolute;
  top: 16%;
  left: 38%;
  width: 38px;
  height: 38px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.38;
  animation: heroFloat8 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-7 {
  position: absolute;
  top: 78%;
  left: 33%;
  width: 41px;
  height: 41px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.4;
  animation: heroFloat9 7.5s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-8 {
  position: absolute;
  top: 28%;
  left: 60%;
  width: 36px;
  height: 36px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.33;
  animation: heroFloat10 8.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-9 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 31px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.3;
  animation: heroFloat11 6.8s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-10 {
  position: absolute;
  top: 85%;
  left: 60%;
  width: 34px;
  height: 34px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.37;
  animation: heroFloat12 9.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-11 {
  position: absolute;
  top: 8%;
  left: 70%;
  width: 29px;
  height: 29px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.31;
  animation: heroFloat13 5.3s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-12 {
  position: absolute;
  top: 12%;
  left: 30%;
  width: 35px;
  height: 35px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.29;
  animation: heroFloat14 7.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-13 {
  position: absolute;
  top: 62%;
  left: 45%;
  width: 33px;
  height: 33px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.34;
  animation: heroFloat15 6.3s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-14 {
  position: absolute;
  top: 88%;
  left: 25%;
  width: 37px;
  height: 37px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.36;
  animation: heroFloat16 8.1s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hero-home .hero-decoration-15 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 40px;
  height: 40px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FFB347" d="M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z"/></svg>');
  background-size: contain;
  opacity: 0.39;
  animation: heroFloat17 5.7s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 5;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-180deg); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(360deg); }
}

@keyframes heroFloat4 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-360deg); }
}

@keyframes heroFloat5 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes heroFloat6 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-270deg); }
}

@keyframes heroFloat7 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(270deg); }
}

@keyframes heroFloat8 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-90deg); }
}

@keyframes heroFloat9 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(90deg); }
}

@keyframes heroFloat10 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-135deg); }
}

@keyframes heroFloat11 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(225deg); }
}

@keyframes heroFloat12 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-315deg); }
}

@keyframes heroFloat13 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-19px) rotate(45deg); }
}

@keyframes heroFloat14 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-17px) rotate(-225deg); }
}

@keyframes heroFloat15 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-21px) rotate(315deg); }
}

@keyframes heroFloat16 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-13px) rotate(-405deg); }
}

@keyframes heroFloat17 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(135deg); }
}

/* Responsive Hero Decorations */
@media (max-width: 1024px) {
  .hero-home::before {
    width: 42px;
    height: 42px;
    top: 12%;
    left: 4%;
  }
  
  .hero-home::after {
    width: 38px;
    height: 38px;
    top: 22%;
    right: 6%;
  }
  
  .hero-home .hero-decoration-1 {
    width: 28px;
    height: 28px;
    top: 62%;
    left: 10%;
  }
  
  .hero-home .hero-decoration-2 {
    width: 34px;
    height: 34px;
    top: 72%;
    right: 16%;
  }
  
  .hero-home .hero-decoration-3 {
    width: 30px;
    height: 30px;
    top: 45%;
    left: 80%;
  }
  
  .hero-home .hero-decoration-4 {
    width: 24px;
    height: 24px;
    top: 38%;
    left: 22%;
  }
  
  .hero-home .hero-decoration-5 {
    width: 26px;
    height: 26px;
    top: 78%;
    left: 72%;
  }
  
  .hero-home .hero-decoration-6 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 38%;
  }
  
  .hero-home .hero-decoration-7 {
    width: 22px;
    height: 22px;
    top: 82%;
    left: 32%;
  }
}

@media (max-width: 768px) {
  .hero-home::before {
    width: 30px;
    height: 30px;
    top: 18%;
    left: 4%;
  }
  
  .hero-home::after {
    width: 26px;
    height: 26px;
    top: 28%;
    right: 6%;
  }
  
  .hero-home .hero-decoration-1 {
    width: 22px;
    height: 22px;
    top: 65%;
    left: 8%;
  }
  
  .hero-home .hero-decoration-2 {
    width: 28px;
    height: 28px;
    top: 75%;
    right: 12%;
  }
  
  .hero-home .hero-decoration-3 {
    width: 24px;
    height: 24px;
    top: 48%;
    left: 88%;
  }
  
  .hero-home .hero-decoration-4 {
    display: none;
  }
  
  .hero-home .hero-decoration-5 {
    width: 20px;
    height: 20px;
    top: 82%;
    left: 70%;
  }
  
  .hero-home .hero-decoration-6 {
    width: 18px;
    height: 18px;
    top: 22%;
    left: 35%;
  }
  
  .hero-home .hero-decoration-7 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-home::before {
    width: 24px;
    height: 24px;
    top: 22%;
    left: 6%;
  }
  
  .hero-home::after {
    width: 20px;
    height: 20px;
    top: 35%;
    right: 8%;
  }
  
  .hero-home .hero-decoration-1 {
    display: none;
  }
  
  .hero-home .hero-decoration-2 {
    width: 22px;
    height: 22px;
    top: 78%;
    right: 10%;
  }
  
  .hero-home .hero-decoration-3 {
    width: 18px;
    height: 18px;
    top: 52%;
    left: 85%;
  }
  
  .hero-home .hero-decoration-4 {
    display: none;
  }
  
  .hero-home .hero-decoration-5 {
    display: none;
  }
  
  .hero-home .hero-decoration-6 {
    display: none;
  }
  
  .hero-home .hero-decoration-7 {
    display: none;
  }
}

/* Hero responsive iyileştirmeler */
@media (max-width: 768px) {
  .hero-home {
    padding: 4rem 0;
  }

  .hero-home h1 {
    font-size: 2rem;
  }

  .hero-home p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    gap: 1rem;
    align-items: center;
  }

  .hero .container,
  .hero-home .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-image img {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .hero-home {
    padding: 3rem 0;
  }

  .hero-home h1 {
    font-size: 1.8rem;
  }

  .hero-home p {
    font-size: 1rem;
  }

  .hero-image img {
    max-width: 80%;
  }
}

/* Grid pattern kaldırıldı */

.hero .container,
.hero-home .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.hero-content {
  text-align: left;
}

.hero h1,
.hero-home h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero p,
.hero-home p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 0 2rem 0;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 85%; /* Diğer sayfalar için optimize edilmiş boyut */
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
  border-radius: 12px;
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Anasayfa için görsel boyutu */
.hero-home .hero-image img {
  max-width: 95%; /* Anasayfa için optimize edilmiş boyut */
}

/* Cards */
.card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

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

/* Service Cards Enhancement */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 0, 151, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #060097 0%, #8204ff 50%, #c10fff 100%);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 0, 151, 0.15);
  border-color: rgba(6, 0, 151, 0.2);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #060097 0%, #8204ff 50%, #c10fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(6, 0, 151, 0.3);
}

.service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.3;
}

.service-card p {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  color: var(--color-text);
  position: relative;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 0.5rem;
}



.service-link:hover i {
  transform: translate3d(3px, 0, 0);
  will-change: transform;
}

/* Modern Services Section - UX/UI Optimized */
.services-modern {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23060097" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23060097" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23060097" opacity="0.1"/></svg>');
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-header .section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header .section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Modern Services Grid */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  margin: 0 1rem;
}

.service-card-modern {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(6, 0, 151, 0.08);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
  transform: scaleX(1);
}

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




.service-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 179, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 179, 71, 0.2);
}



.service-icon-modern i {
  font-size: 2rem;
  color: var(--color-secondary);
}



.service-card-modern h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-heading);
  line-height: 1.3;
}



.service-card-modern p {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}



.service-link {
  background: var(--color-secondary);
  color: var(--color-heading);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-top: auto;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.3);
  line-height: 1.3;
  position: relative;
  min-width: 180px;
  text-align: center;
}



.service-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 179, 71, 0.4);
}

.service-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(2px);
}

/* Yatay Hizmet Kartı Stilleri - Anasayfa için */
.service-card-horizontal {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}

.service-card-horizontal .service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card-horizontal .service-icon-modern {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-top: 0;
}

.service-card-horizontal .service-header h3 {
  margin: 0;
  flex: 1;
}

.service-card-horizontal p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card-horizontal .service-link {
  align-self: flex-start;
  margin-top: 0;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  min-width: 200px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(255, 179, 71, 0.35);
}

.service-card-horizontal .service-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 179, 71, 0.5);
}

/* Responsive Yatay Hizmet Kartları */
@media (max-width: 768px) {
  .service-card-horizontal {
    padding: 2rem;
  }
  
  .service-card-horizontal .service-header {
    text-align: center;
    gap: 1rem;
  }
  
  .service-card-horizontal .service-link {
    align-self: center;
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-card-horizontal {
    padding: 1.5rem;
  }
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.btn-primary-large {
  background: var(--color-secondary);
  color: var(--color-heading);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 179, 71, 0.3);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 179, 71, 0.5);
  background: var(--color-primary);
  color: white;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

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

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

/* Grid Layout Enhancement */
.grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Grid responsive iyileştirmeler */
@media (max-width: 1024px) {
  .grid.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 1rem 0 1rem; /* Tablet için sağdan soldan margin */
  }
}

@media (max-width: 768px) {
  .grid.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 1rem 0 1rem; /* Mobil için sağdan soldan margin */
  }
}

@media (max-width: 480px) {
  .grid.grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Statistics - Modern Design */
.stats {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a8a 50%, #8204ff 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="90" r="0.6" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

/* Stats responsive iyileştirmeler */
@media (max-width: 1024px) {
  .stats .container {
    margin: 0 1rem; /* Tablet için sağdan soldan margin */
    max-width: calc(100% - 2rem);
  }
}

@media (max-width: 768px) {
  .stats .container {
    margin: 0 1rem; /* Mobil için sağdan soldan margin */
    max-width: calc(100% - 2rem);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.2rem 0.8rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
}

/* Why Us Section Enhancement */
.why-us {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 3rem 0;
}

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

/* Why Us responsive iyileştirmeler */
@media (max-width: 1024px) {
  .why-us .container {
    margin: 0 1rem; /* Tablet için sağdan soldan margin */
    max-width: calc(100% - 2rem);
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 3rem 0;
  }
  
  .why-us .container {
    margin: 0 1rem; /* Mobil için sağdan soldan margin */
    max-width: calc(100% - 2rem);
  }

  .why-us-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .why-us {
    padding: 2rem 0;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .why-us-item {
    padding: 1.5rem;
  }
}

.why-us-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(6, 0, 151, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(6, 0, 151, 0.1);
  position: relative;
  overflow: hidden;
}

.why-us-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-us-item:hover::before {
  transform: scaleX(1);
}

.why-us-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.12);
}

.why-us-item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  background: rgba(6, 0, 151, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.why-us-item:hover i {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

.why-us-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-us-item p {
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* CTA Section Enhancement - Göze Çarpan ve Uyumlu */
.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ff9500 30%, #ff6b00 70%, #e55100 100%);
  color: var(--color-heading);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="70" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
  opacity: 0.3;
}



.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-secondary);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--bg-secondary);
  opacity: 0.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-section .btn {
  background: var(--color-heading);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

/* CTA Section responsive iyileştirmeler */
@media (max-width: 1024px) {
  .cta-buttons {
    gap: 0.7rem;
  }
  
  .cta-buttons .btn {
    min-width: 180px;
    padding: 0.95rem 2.2rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 2.5rem 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
    margin: 1rem;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin: 1rem;
  }

  .cta-buttons .btn {
    max-width: 280px;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    min-width: auto;
  }
}

/* Footer - Optimize Edilmiş */
.footer {
  background: linear-gradient(135deg, var(--color-heading) 0%, #1a365d 100%);
  color: white;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}



.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Footer Logo ve Marka */
.footer-brand {
  max-width: 400px;
}

.footer-logo-img {
  height: 85px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  text-align: left;
}

/* Footer Başlıklar */
.footer-section h4,
.footer-title {
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after,
.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-secondary);
}

/* Desktop'ta footer title normal görünsün */
@media (min-width: 769px) {
  .footer-title {
    display: block;
    cursor: default;
    padding: 0;
    border: none;
    margin-bottom: 1.5rem;
  }
  
  .footer-title .footer-toggle {
    display: none !important; /* Masaüstünde iconları tamamen gizle */
  }
  
  .footer-links {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    opacity: 1 !important;
  }
  
  .footer-links li {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Footer Linkler */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a i,
.footer-links span i {
  color: var(--color-secondary);
  width: 16px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

/* İletişim Bilgileri */
.contact-info {
  display: flex;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
}

.contact-item i {
  color: var(--color-secondary);
  width: 16px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--color-secondary);
}

.contact-item span {
  color: rgba(255, 255, 255, 0.8);
}

/* Sosyal Medya */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-links a i {
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
}

/* Footer Alt Kısım */
.footer-bottom {
  text-align: center;
  padding: 0.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
    width: 100%;
    margin: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

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

  .footer-section h4 {
    text-align: left; /* Başlıkları sola yasla */
  }

  .footer-section h4::after {
    left: 0; /* Alt çizgiyi sola hizala */
    transform: translateX(0);
  }

  .footer-links a:hover {
    transform: translateY(-2px);
  }

  /* Mobil Dropdown Menü - Yeni Tasarım */
  .footer-title {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-title:hover {
    color: #fff;
  }

  .footer-toggle {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
  }

  .footer-toggle.active {
    transform: rotate(180deg);
  }

  .footer-section .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
  }

  .footer-section .footer-links.active {
    max-height: 600px;
  }

  .footer-links li {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .footer-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobilde İçerikleri Sola Yasla */
  .footer-description {
    text-align: left;
  }

  .footer-links {
    text-align: left;
  }

  .footer-links a,
  .footer-links span {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

/* Minimal Breadcrumb - Tema Uyumlu */
.breadcrumb {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(6, 0, 151, 0.08);
  position: relative;
  z-index: 998;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.breadcrumb a:hover {
  color: var(--color-primary);
  background: rgba(6, 0, 151, 0.05);
  transform: translateY(-1px);
}

.breadcrumb .separator {
  color: var(--color-secondary);
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.breadcrumb .separator::before {
  content: "›";
}

/* Breadcrumb scrollbar gizleme */
.breadcrumb .container::-webkit-scrollbar {
  display: none;
}

.breadcrumb .current {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

/* Responsive Breadcrumb */
@media (max-width: 1024px) {
  .breadcrumb {
    padding: 1rem 0;
  }
  
  .breadcrumb .container {
    padding: 0 1.5rem;
  }
  
  .breadcrumb a,
  .breadcrumb .current {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 0.9rem 0;
  }
  
  .breadcrumb .container {
    padding: 0 1rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .breadcrumb-item {
    gap: 0.5rem;
    flex-shrink: 0;
  }
  
  .breadcrumb a,
  .breadcrumb .current {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    white-space: nowrap;
  }
  
  .breadcrumb .separator {
    font-size: 0.9rem;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding: 0.8rem 0;
  }
  
  .breadcrumb .container {
    padding: 0 0.75rem;
    gap: 0.4rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .breadcrumb-item {
    gap: 0.4rem;
    flex-shrink: 0;
  }
  
  .breadcrumb a,
  .breadcrumb .current {
    font-size: 0.75rem;
    padding: 0.15rem 0.3rem;
    white-space: nowrap;
  }
  
  .breadcrumb .separator {
    font-size: 0.8rem;
    flex-shrink: 0;
  }
}

/* Floating Button - Kare Tasarım */
.back-to-top {
  position: fixed;
  right: clamp(1.2rem, 3.5vw, 2rem);
  bottom: clamp(0.8rem, 2.5vw, 1.5rem);
  width: clamp(55px, 9vw, 60px);
  height: clamp(55px, 9vw, 60px);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--color-primary) 0%, #05007a 100%);
  border-color: rgba(6, 0, 151, 0.25);
  cursor: pointer;
}

.back-to-top i {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: white;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hover Efektleri */
.back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(6, 0, 151, 0.4);
  border-color: rgba(6, 0, 151, 0.5);
}

.back-to-top:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Active State */
.back-to-top:active {
  transform: translateY(-2px) scale(0.95);
  transition: all 0.1s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .back-to-top {
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(0.8rem, 2.5vw, 1.2rem);
    width: clamp(50px, 8vw, 65px);
    height: clamp(50px, 8vw, 65px);
    border-radius: 6px;
  }
  
  .back-to-top i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .back-to-top {
    right: clamp(1rem, 2.5vw, 1.5rem);
    bottom: clamp(1.5rem, 2vw, 1rem);
    width: clamp(55px, 7vw, 60px);
    height: clamp(55px, 7vw, 60px);
    border-radius: 5px;
  }
  
  .back-to-top i {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  }
}

/* Message Styles */
.message {
  position: fixed;
  top: 120px; /* Header'ın altında */
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 10000;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease-out;
}

.message-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-left: 4px solid #047857;
}

.message-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-left: 4px solid #b91c1c;
}

.message-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-left: 4px solid #1d4ed8;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 0, 151, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-primary);
}

.faq-question h4 {
  margin: 0;
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 600;
}

.faq-question i {
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.95rem;
  transition: max-height 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
  opacity: 1;
  overflow: visible;
}

.faq-item:not(.active) .faq-answer {
  max-height: 0 !important;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.5rem;
}

/* Search Styles */
.search-container {
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 0, 151, 0.1);
}

/* Category Tags */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.category-tag:hover,
.category-tag.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Blog Cards */
.blog-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--bg-subtitle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image i {
  font-size: 3rem;
  color: var(--color-primary);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.blog-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-excerpt {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 8px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-icon i {
  font-size: 1.2rem;
}

.contact-details h4 {
  margin-bottom: 0.25rem;
}

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

.contact-details a:hover {
  text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: white;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (min-width: 480px) {
  .hero h1,
  .hero-home h1 {
    font-size: 2.5rem;
  }

  .hero p,
  .hero-home p {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  /* Header taşma önleme */
  .header {
    height: 100px;
    padding: 0 20px;
    overflow: visible;
  }

  .nav {
    gap: 1rem;
    overflow: visible;
  }

  .nav-menu {
    display: flex; /* Normal menü görünür */
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    z-index: auto;
    padding: 0;
    top: auto;
    right: auto;
  }

  .nav-menu li {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    position: static;
    width: auto;
    margin: 0;
  }

  .nav-toggle {
    display: none; /* Hamburger menü gizli */
  }

  /* Desktop buton stilleri - Optimize */
  .nav .btn {
    margin-left: 1rem;
    padding: 0.7rem 1.2rem;
    position: relative;
    z-index: 1000;
    border-radius: 8px;
    line-height: 1.3;
    height: auto;
    width: auto;
    max-width: none;
    background: var(--color-secondary);
    color: var(--color-heading);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.2);
  }

  /* Büyük ekranlarda sıralama: Logo → Normal Menü → Buton */
  .nav .logo-link {
    order: 1;
  }

  .nav-menu {
    order: 2;
  }

  .nav .btn {
    order: 3;
  }

  .nav .logo {
    order: 4;
  }

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

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

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

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

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }


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

  .hero h1,
  .hero-home h1 {
    font-size: 3rem;
  }

  .hero p,
  .hero-home p {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  /* Header taşma önleme */
  .header {
    height: 100px;
    padding: 0 25px;
    overflow: hidden;
  }

  .nav {
    gap: 1.25rem;
    overflow: hidden;
  }

  /* Diğer sayfalar için hero padding */
  .hero {
    padding: 2rem;
  }


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

  /* 1024px ve üzeri için buton boyutunu optimize et */
  .nav .btn {
    padding: 0.7rem 1rem; /* 1024px için optimize edilmiş boyut - ile güçlendir */
    font-size: 1rem; /* 1024px için optimize edilmiş font - ile güçlendir */
    border-radius: 8px;
    line-height: 1.3;
    /* Daha iyi orantı için */
    height: auto;
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1280px) {
  /* Header taşma önleme */
  .header {
    height: 100px;
    padding: 0 30px;
    overflow: hidden;
  }

  .nav {
    gap: 1.5rem;
    overflow: hidden;
  }

  .container {
    max-width: 1200px;
  }

  /* 1280px ve üzeri için buton boyutunu optimize et */
  .nav .btn {
    padding: 0.7rem 1rem; /* 1280px için optimize edilmiş boyut - ile güçlendir */
    font-size: 1.05rem; /* 1280px için optimize edilmiş font - ile güçlendir */
    border-radius: 9px;
    line-height: 1.3;
    /* Daha iyi orantı için */
    height: auto;
    width: auto;
    max-width: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Focus Styles */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.nav-menu a:focus,
.service-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  isolation: isolate;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-primary);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-heading);
}

.faq-question i {
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px !important;
  opacity: 1;
  overflow: visible;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text);
}

/* Newsletter Form */
.newsletter-form input {
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 0, 151, 0.1);
}

/* Contact Form */
.contact-form {
  background: var(--bg-secondary);
  padding: 0.5rem;
  border-radius: var(--border-radius);

}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.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(6, 0, 151, 0.1);
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.contact-item p {
  margin-bottom: 0.25rem;
}

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

.contact-item a:hover {
  text-decoration: underline;
}

/* Form Messages */
.success-message,
.error-message {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Tablet boyutunda responsive tasarım */
@media (min-width: 769px) and (max-width: 1023px) {
  /* Header taşma önleme */
  .header {
    height: 100px;
    padding: 0 15px;
    overflow: hidden;
    min-width: 320px;
  }

  .nav {
    gap: 0.75rem;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  /* Tablet boyutunda menü taşma önleme */
  .nav-menu {
    display: flex;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .nav-menu a {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav .btn {
    margin-left: 0.875rem; /* Normal menüye uygun mesafe - ile güçlendir */
    /* Tablet için buton boyutları */
    padding: 0.7rem 1.3rem; /* Tablet için optimize edilmiş boyut - ile güçlendir */
    font-size: 0.88rem; /* Tablet için optimize edilmiş font - ile güçlendir */
    /* Tablet için buton pozisyonunu optimize et */
    position: relative;
    z-index: 1000;
    /* Responsive buton boyutları */
    border-radius: 7px;
    line-height: 1.2;
    /* Daha iyi orantı için */
    height: auto;
    width: auto;
    max-width: none;
    flex-shrink: 0;
  }

  /* Tablet boyutunda logo optimizasyonu */
  .logo {
    height: 57px; /* Biraz daha artırıldı */
    max-width: 200px;
    flex-shrink: 0;
  }

  /* Tablet boyutunda sıralama: Logo → Normal Menü → Buton */
  .nav .logo-link {
    order: 1;
  }

  .nav-menu {
    order: 2;
  }

  .nav .btn {
    order: 3;
  }
}

/* 769px - 931px arasındaki taşma sorununu çözmek için optimizasyon */
@media (min-width: 769px) and (max-width: 931px) {
  .header {
    height: 90px;
    padding: 0 8px;
  }

  .nav {
    gap: 0.3rem;
    padding: 0 8px;
    flex-wrap: nowrap; /* Header bileşenleri wrap yapmasın */
  }

  .nav-menu {
    max-width: calc(100% - 200px);
    gap: 0.3rem;
    flex-wrap: nowrap; /* Menü öğeleri wrap yapmasın */
  }

  .nav-menu a {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .logo {
    height: 53px; /* Biraz daha artırıldı */
    max-width: 190px;
    flex-shrink: 0;
  }

  .nav .btn {
    margin-left: 0.3rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
}

/* Footer Container */
.footer .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Footer Copyright */
.footer .container > div:last-child {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer .container > div:last-child p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Process Section Container - Genişletilmiş */
.section.bg-light .container {
  max-width: 1400px;
}

/* Modern Process Section Styles - Temiz Tasarım */
.process-section-modern {
  background: var(--bg-light);
  position: relative;
}

.process-section-modern .section-title {
  color: var(--color-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  text-align: center;
}

.process-section-modern .section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* Yatay Process Cards */
.process-cards-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Process Section Geniş Container */
.process-section-modern .container-process-wide {
  max-width: 1400px;
}

.process-card-modern {
  background: white;
  border-radius: clamp(16px, 4vw, 24px);
  padding: 1.3rem;
  box-shadow: 0 4px 25px rgba(6, 0, 151, 0.08);
  border: 1px solid rgba(6, 0, 151, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.process-card-modern:hover::before {
  transform: scaleX(1);
}

.process-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6, 0, 151, 0.15);
}

/* Process Icon - Temiz Tasarım */
.process-icon-simple {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  transition: all 0.4s ease;
  position: relative;
}

.process-icon-simple i {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.process-card-modern:hover .process-icon-simple i {
  transform: scale(1.1);
  color: var(--color-secondary);
}

/* Process Content */
.process-card-modern h3 {
  color: var(--color-heading);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  line-height: 1.3;
}

.process-card-modern p {
  color: var(--color-text);
  line-height: 1.7;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin: 0;
  flex: 1;
}

/* Responsive Design - Gerçekten Responsive */
@media (max-width: 1200px) {
  .process-cards-horizontal {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
}

@media (max-width: 1024px) {
  .process-cards-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .process-card-modern {
    padding: 1.3rem;
  }
}

@media (max-width: 768px) {
  .process-section-modern {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
  
  .process-section-modern .section-header {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  .process-cards-horizontal {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 3vw, 1.8rem);
    padding: 0 clamp(0.8rem, 2vw, 1.5rem);
  }
  
  .process-card-modern {
    padding: clamp(1.5rem, 4vw, 2rem);
  }
  
  .process-icon-simple {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
  }
  
  .process-icon-simple i {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .process-section-modern {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .process-section-modern .section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  }
  
  .process-section-modern .section-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  }
  
  .process-cards-horizontal {
    gap: clamp(1rem, 2.5vw, 1.5rem);
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
  }
  
  .process-card-modern {
    padding: clamp(1.2rem, 3vw, 1.8rem);
    border-radius: clamp(12px, 3vw, 18px);
  }
  
  .process-icon-simple {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  }
  
  .process-icon-simple i {
    font-size: 34px;
  }
  
  .process-card-modern h3 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
  }
  
  .process-card-modern p {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  }
}

.process-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(6, 0, 151, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(6, 0, 151, 0.1);
  overflow: hidden;
}

.process-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-item:hover::before {
  transform: scaleX(1);
}

.process-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.12);
}

.process-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(6, 0, 151, 0.3);
  transition: all 0.3s ease;
}

.process-item:hover .process-number {
  transform: scale(1.05);
}

.process-item h3 {
  margin-bottom: 1rem;
  color: var(--color-heading);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.process-item p {
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-section .btn-outline {
  background: var(--bg-primary);
  color: var(--color-heading);
  backdrop-filter: blur(10px);
}

.cta-section .btn-outline:hover {
  color: var(--color-heading);
  transform: translateY(-2px);
  backdrop-filter: blur(15px);
}

/* Responsive Process Grid */
@media (max-width: 1200px) {
  .section.bg-light .container {
    max-width: 1200px;
  }
  
  .process-grid {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .section.bg-light .container {
    margin: 0 1rem; /* Tablet için sağdan soldan margin */
    max-width: calc(100% - 2rem);
  }
}

@media (max-width: 768px) {
  .section.bg-light .container {
    margin: 0 1rem; /* Mobil için sağdan soldan margin */
    max-width: calc(100% - 2rem);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-item {
    padding: 1.5rem;
  }
}

  .cta-buttons {
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 2rem;
}

/* About Page - Modern Design */
.about-founder {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 2rem 0;
}

.founder-content {
  max-width: 1200px;
  margin: 0 auto;
}

.founder-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.intro-highlight {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
}

.intro-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 15px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 60px;
  width: 100%;
}

.feature-list-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(6, 0, 151, 0.1);
}

.feature-list-item i {
  color: white;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list-item span {
  font-weight: 600;
  color: var(--color-heading);
  font-size: 1rem;
  flex: 1;
}

.founder-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.detail-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.08);
  border: 1px solid rgba(6, 0, 151, 0.05);
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(6, 0, 151, 0.12);
  border-color: rgba(6, 0, 151, 0.1);
}

.detail-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
  color: white;
}

.detail-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.detail-card p {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
}



/* Mission & Vision Section */
.mission-vision-section {
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  color: var(--color-heading);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card,
.vision-card,
.approach-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(6, 0, 151, 0.08);
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.08);
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 0, 151, 0.15);
  border-color: rgba(6, 0, 151, 0.12);
}

.mission-card .card-icon,
.vision-card .card-icon,
.approach-card .card-icon {
  width: 70px;
  height: 70px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
  color: var(--color-heading);
}

.mission-card h3,
.vision-card h3,
.approach-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--color-heading);
}

.mission-card p,
.vision-card p,
.approach-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Values Section */
.values-section {
  padding: 1.5rem 0;
  background: #f8f9ff;
}

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

.value-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 0, 151, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(6, 0, 151, 0.15);
  border-color: rgba(6, 0, 151, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
  color: white;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

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

/* FAQ with Side Stats Layout */
.faq-with-stats-section {
  background: linear-gradient(135deg, #f9f6fe 0%, #f0f4ff 100%);
}

.faq-stats-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

/* FAQ Container - Sol taraf */
.faq-container-left {
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
}

.faq-container-left .faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6, 0, 151, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 0, 151, 0.05);
  margin-bottom: 0.5rem;
}

.faq-container-left .faq-item:hover {
  box-shadow: 0 8px 30px rgba(6, 0, 151, 0.12);
  transform: translateY(-2px);
}

.faq-container-left .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.faq-container-left .faq-question:hover {
  background: rgba(6, 0, 151, 0.02);
}

.faq-container-left .faq-question h3 {
  color: var(--color-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 1rem;
}

.faq-container-left .faq-question i {
  color: var(--color-primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-container-left .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-container-left .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(6, 0, 151, 0.02);
}

.faq-container-left .faq-item.active .faq-answer {
  max-height: none !important;
  padding: 1.5rem 2rem;
}

.faq-container-left .faq-answer p {
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Stats Container - Sağ taraf */
.stats-container-right {
  position: sticky;
  top: 2rem;
}

.stats-sidebar {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  text-align: center;
}

.stats-vertical {
  display: flex;
  flex-direction: column;
  margin: 0 1.3rem;
}

.stat-item-vertical {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6, 0, 151, 0.08);
  border: 1px solid rgba(6, 0, 151, 0.05);
  transition: all 0.3s ease;
}

/* Masaüstü için margin */
@media (min-width: 1025px) {
  .stat-item-vertical {
    margin: 0.4rem 0;
  }
}

.stat-item-vertical:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 0, 151, 0.15);
}

.stat-number-vertical {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-vertical {
  font-size: 1rem;
  color: var(--color-heading);
  font-weight: 500;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  padding: 4rem 0;
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6, 0, 151, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(6, 0, 151, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-heading);
  font-weight: 500;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(6, 0, 151, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 0, 151, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(6, 0, 151, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  color: var(--color-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

/* Grid Layout */
.grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ff9500 30%, #ff6b00 70%, #e55100 100%);
  color: var(--color-heading);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.enhanced-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="70" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
  opacity: 0.3;
}

.enhanced-cta-section .container {
  position: relative;
  z-index: 2;
}

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

.cta-main h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-heading);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-main p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-heading);
  opacity: 0.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.enhanced-cta-section .cta-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.enhanced-cta-section .cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: var(--color-heading);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.enhanced-cta-section .cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.enhanced-cta-section .cta-buttons .btn-outline {
  background: var(--bg-primary);
  color: var(--color-heading);
  backdrop-filter: blur(10px);
}

.enhanced-cta-section .cta-buttons .btn-outline:hover {
  color: var(--color-heading);
  transform: translateY(-2px);
  backdrop-filter: blur(15px);
}

/* Stats Section - Mobil ve Tablet için */
.stats-section-mobile {
  display: none;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.stats-grid-mobile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 0 1rem;
}

.stat-item-mobile {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6, 0, 151, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 0, 151, 0.05);
}

.stat-item-mobile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 0, 151, 0.15);
}

.stat-number-mobile {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-mobile {
  font-size: 1.1rem;
  color: var(--color-heading);
  font-weight: 500;
}

/* FAQ with Side Stats Responsive */
@media (max-width: 1024px) {
  .faq-stats-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .desktop-stats {
    display: none;
  }
  
  .stats-section-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  
  .faq-stats-layout {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .faq-container-left .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-container-left .faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
    max-height: none !important;
  }
  
  .faq-container-left .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-container-left .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
  }
  
  .stats-sidebar {
    padding: 1.5rem 1rem;
  }
  
  .stats-title {
    font-size: 1.2rem;
  }
  
  .stat-item-vertical {
    padding: 1rem 1rem;
  }
  
  .stat-number-vertical {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .faq-container-left .faq-question {
    padding: 1rem 1.2rem;
  }
  
  .faq-container-left .faq-item.active .faq-answer {
    padding: 1rem 1.2rem;
    max-height: none !important;
  }
  
  .faq-container-left .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-container-left .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }
  
  .stats-sidebar {
    padding: 0.2rem 1rem;
  }
  
  .stat-number-vertical {
    font-size: 1.8rem;
  }
  
  .stat-label-vertical {
    font-size: 0.9rem;
  }
}

/* Stats Section Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 3rem 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .grid.grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .founder-intro {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .intro-features-list {
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
  }
  
  .founder-details {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .mission-vision-grid {
    gap: 2rem;
  }
  
  .mission-card,
  .vision-card,
  .approach-card {
    padding: 2rem;
  }
  

}

@media (max-width: 768px) {
  .about-founder {
    padding: 1.5rem 1rem;
  }
  
  .founder-intro {
    margin-bottom: 3rem;
  }
  
  .intro-text h2 {
    font-size: 2rem;
  }
  
  .intro-highlight {
    font-size: 1rem;
  }
  
  .intro-features-list {
    align-items: flex-start;
    padding: 1.2rem;
    gap: 0.8rem;
    margin: 1.5rem auto 0;
  }
  
  .founder-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 1rem 3rem 1rem;
  }
  
  .detail-card {
    padding: 2rem;
  }
  

  
  .mission-vision-section {
    padding: 1rem 1rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 1rem;
  }
  
  .mission-card,
  .vision-card,
  .approach-card {
    padding: 2rem;
  }
  
  .mission-card h3,
  .vision-card h3,
  .approach-card h3 {
    font-size: 1.3rem;
  }
  
  .values-section {
    padding: 3rem 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 1rem;
  }
  
  .enhanced-cta-section {
    padding: 3rem 0;
  }
  
  .cta-main h2 {
    font-size: 2rem;
  }
  
  .cta-main p {
    font-size: 1.1rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .intro-text h2 {
    font-size: 1.8rem;
  }
  
  .intro-features-list {
    padding: 1rem;
    gap: 0.7rem;
  }
  
  .feature-list-item {
    padding: 0.7rem;
    gap: 0.7rem;
    min-height: 45px;
  }
  
  .feature-list-item i {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  
  .feature-list-item span {
    font-size: 0.85rem;
  }
}



.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-decoration: none;
  color: var(--color-text);
  min-width: 120px;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  color: var(--color-primary);
}

.social-link i {
  font-size: 2rem;
  color: var(--color-primary);
}

.social-link span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Responsive Social Links */
@media (max-width: 768px) {
  .social-links {
    gap: 1rem;
  }

  .social-link {
    min-width: 100px;
    padding: 1rem;
  }

  .social-link i {
    font-size: 1.5rem;
  }

  .social-link span {
    font-size: 0.8rem;
  }
}

/* About Content */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-content h3 {
  color: var(--color-heading);
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .whatsapp-btn,
  .back-to-top,
  .cta-section {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .hero-home {
    background: white;
    color: black;
  }
}

/* Mobil cihazlar için hero section optimizasyonu */
@media (max-width: 768px) {
  .hero {
    padding: 0.5rem 0; /* Çok çok kısa */
    margin-bottom: 0.25rem; /* Çok az margin */
  }

  .hero-home {
    padding: 3rem 0; /* Anasayfa için normal */
  }

  .hero .container,
  .hero-home .container {
    grid-template-columns: 1fr;
    gap: 0rem; /* Daha fazla gap */
    text-align: center;
  }

  .hero-content,
  .hero-home .hero-content {
    text-align: center;
    order: 3; /* Metin en sonda */
    margin: 0.5rem;
  }

  .hero-image,
  .hero-home .hero-image {
    order: 2; /* Görsel ortada */
  }

  /* H1 başlığı için özel stil */
  .hero h1,
  .hero-home h1 {
    font-size: 1.8rem; /* Daha büyük font */
    margin-bottom: 1rem; /* Daha fazla margin */
    order: 1; /* Başlık en üstte */
    grid-column: 1 / -1; /* Tam genişlik */
  }

  .hero p,
  .hero-home p {
    font-size: 1rem; /* Normal font */
    margin-bottom: 1rem; /* Normal margin */
    line-height: 1.6; /* Daha iyi okunabilirlik */
  }

  .hero-image img {
    max-width: 75%; /* Mobilde optimize edilmiş boyut */
    margin: 1rem 0; /* Üst ve alt margin */
    border-radius: 16px;
  }

  .hero-home .hero-image img {
    max-width: 85%; /* Anasayfa için mobilde optimize edilmiş */
  }

  .hero-buttons {
    justify-content: center;
    align-items: center;
    margin-top: 1rem; /* Üst margin */
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.75rem;
    padding: 0.8rem 0.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
  }

  .hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 71, 0.4);
  }

  .hero-buttons .btn-secondary {
    background: transparent;
    color: var(--bg-primary);
    border: 2px solid var(--bg-primary);
  }

  .hero-buttons .btn-secondary:hover {
    background: var(--bg-primary);
    color: var(--color-heading);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0.25rem 0; /* Çok çok kısa */
    margin-bottom: 0.125rem; /* Çok az margin */
  }

  .hero-home {
    padding: 2rem 0; /* Anasayfa için normal */
  }

  .hero .container,
  .hero-home .container {
    gap: 0rem; /* Daha az gap ama yeterli */
  }

  .hero h1,
  .hero-home h1 {
    font-size: 1.5rem; /* Uygun font boyutu */
    margin-bottom: 0.75rem; /* Uygun margin */
    order: 1; /* Başlık en üstte */
    grid-column: 1 / -1; /* Tam genişlik */
  }

  .hero p,
  .hero-home p {
    font-size: 0.9rem; /* Uygun font boyutu */
    margin-bottom: 0.75rem; /* Uygun margin */
    line-height: 1.5; /* Daha iyi okunabilirlik */
  }

  .hero-image img {
    max-width: 68%; /* Çok küçük ekranlarda optimize edilmiş boyut */
    margin: 1rem 0; /* Üst ve alt margin */
    border-radius: 12px;
  }

  .hero-home .hero-image img {
    max-width: 78%; /* Anasayfa için 480px'te optimize edilmiş */
  }

  .hero-buttons {
    margin-top: 0.75rem; /* Üst margin */
  }

  .hero-buttons .btn {
    margin-bottom: 0.5rem; /* Alt margin */
    padding: 0.8rem 0.8rem;
    font-size: 0.95rem;
    max-width: 280px;
  }
}

/* Tablet cihazlar için hero section optimizasyonu */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero {
    padding: 1rem 0; /* Kısa */
    margin-bottom: 0.5rem; /* Az margin */
  }

  .hero-home {
    padding: 4rem 0; /* Anasayfa için normal */
  }

  .hero .container,
  .hero-home .container {
    gap: 1rem; /* Daha az gap */
    margin: 0 1rem;
  }

  .hero h1,
  .hero-home h1 {
    font-size: 1.8rem; /* Daha küçük font */
  }

  .hero p,
  .hero-home p {
    font-size: 1rem; /* Daha küçük font */
  }

  .hero-image img {
    max-width: 70%; /* Tablet'te daha küçük */
  }

  .hero-home .hero-image img {
    max-width: 90%; /* Anasayfa için normal */
  }
}

/* Büyük ekranlar için hero section optimizasyonu */
@media (min-width: 1440px) {
  .hero {
    padding: 1.5rem 0; /* Kısa */
    margin-bottom: 1rem; /* Az margin */
  }

  .hero .container,
  .hero-home .container {
    gap: 2rem; /* Daha az gap */
  }

  .hero h1,
  .hero-home h1 {
    font-size: 2.5rem; /* Daha küçük font */
  }

  .hero p,
  .hero-home p {
    font-size: 1.2rem; /* Daha küçük font */
  }

  .hero-home .hero-image img {
    max-width: 100%; /* Anasayfa için normal */
  }
}

/* Service Link Stilleri */


.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Son menü öğesinin border'ını kaldır */
.nav-menu li:last-child a {
  border-bottom: none;
}

/* Modern Services Page Styles */
.services-modern {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.service-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 0, 151, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(6, 0, 151, 0.15);
}

.service-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-gradient {
  opacity: 1;
}

.service-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-icon-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-icon-modern::before {
  opacity: 1;
}

.service-icon-modern i {
  color: white;
  font-size: 2rem;
  z-index: 1;
  position: relative;
}

.service-icon-modern img.service-svg-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.service-card-modern h3 {
  color: var(--color-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card-modern p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-features {
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.feature-highlight i {
  color: var(--color-secondary);
  font-size: 0.8rem;
  width: 16px;
  flex-shrink: 0;
}

.service-card-modern .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: var(--color-heading);
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.service-card-modern .service-link:hover {
  background: transparent;
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.service-card-modern .service-link i {
  transition: transform 0.3s ease;
}

.service-card-modern .service-link:hover i {
  transform: translateX(4px);
}

/* Services Grid Modern */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Services */
@media (max-width: 1024px) {
  .services-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card-modern {
    padding: 1.5rem;
  }
  
  .service-icon-modern {
    width: 70px;
    height: 70px;
  }
  
  .service-icon-modern i {
    font-size: 1.8rem;
  }
  
  .service-icon-modern img.service-svg-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 3rem 0;
  }
  
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin: 0 0.8rem;
  }
  
  .service-card-modern {
    padding: 1.5rem;
  }
  
  .service-card-modern h3 {
    font-size: 1.2rem;
  }
  
  .service-features {
    margin: 1rem 0 1.5rem 0;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .service-card-modern {
    padding: 1.2rem;
  }
  
  .service-icon-modern {
    width: 60px;
    height: 60px;
  }
  
  .service-icon-modern i {
    font-size: 1.5rem;
  }
  
  .service-card-modern h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .service-card-modern p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .feature-highlight {
    font-size: 0.85rem;
  }
}

/* Feature Cards for Services Page */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 0, 151, 0.05);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.12);
  border-color: rgba(6, 0, 151, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffb347 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--color-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.9rem;
  flex-grow: 1;
}

/* Section Subtitle */
.section-subtitle {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Feature Cards */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
}

/* Professional Service Cards - Minimal & Clean */
.service-card-modern {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 0, 151, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.12);
}

.service-gradient {
  display: none;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(6, 0, 151, 0.15);
}

.service-card-modern:hover .service-icon-modern {
  transform: translateY(-2px);
}

.service-card-modern:hover .service-icon-modern img.service-svg-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-icon-modern i {
  color: white;
  font-size: 1.5rem;
  z-index: 1;
  position: relative;
}

.service-card-modern h3 {
  color: var(--color-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card-modern p {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-features {
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(248, 249, 255, 0.8);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(6, 0, 151, 0.06);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.2s ease;
}

.feature-highlight i {
  color: var(--color-secondary);
  font-size: 0.9rem;
  width: 18px;
  flex-shrink: 0;
}

.service-card-modern .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: var(--color-heading);
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
  justify-content: center;
  margin-top: auto;
}

.service-card-modern .service-link:hover {
  background: transparent;
  color: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}

.service-card-modern .service-link i {
  transition: transform 0.3s ease;
}

.service-card-modern .service-link:hover i {
  transform: translateX(3px);
}

/* Clean Responsive Design */
@media (max-width: 1200px) {
  .services-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 0 1rem;
  }
  
  .service-card-modern {
    padding: 1.8rem 1.4rem;
  }
  
  .service-icon-modern {
    width: 56px;
    height: 56px;
  }
  
  .service-icon-modern i {
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px) {
  .services-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 0 1rem; /* Tablet için sağdan soldan margin */
  }
  
  .service-card-modern {
    padding: 1.8rem 1.3rem;
    border-radius: 10px;
  }
  
  .service-icon-modern {
    width: 54px;
    height: 54px;
    border-radius: 10px;
  }
  
  .service-icon-modern i {
    font-size: 1.3rem;
  }
  
  .service-card-modern h3 {
    font-size: 1.2rem;
  }
  
  .service-features {
    padding: 1rem;
    gap: 0.7rem;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 3rem 0;
  }
  
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 1rem 0 1rem; /* Mobil için sağdan soldan margin */
  }
  
  .service-card-modern {
    padding: 1.6rem 1.3rem;
    border-radius: 10px;
  }
  
  .service-card-modern:hover {
    transform: translateY(-3px);
  }
  
  .service-icon-modern {
    width: 52px;
    height: 52px;
    margin-bottom: 1.3rem;
    border-radius: 10px;
  }
  
  .service-icon-modern i {
    font-size: 1.2rem;
  }
  
  .service-card-modern h3 {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
  }
  
  .service-card-modern p {
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
  }
  
  .service-features {
    margin: 1.3rem 0 1.8rem 0;
    padding: 0.9rem;
    gap: 0.6rem;
  }
  
  .feature-highlight {
    font-size: 0.85rem;
    gap: 0.7rem;
  }
  
  .service-card-modern .service-link {
    padding: 0.8rem 1.3rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .service-card-modern {
    padding: 1.4rem 1.1rem;
    border-radius: 8px;
  }
  
  .service-icon-modern {
    width: 48px;
    height: 48px;
    margin-bottom: 1.1rem;
    border-radius: 8px;
  }
  
  .service-icon-modern i {
    font-size: 1.1rem;
  }
  
  .service-card-modern h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .service-card-modern p {
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
    line-height: 1.5;
  }
  
  .service-features {
    margin: 1.1rem 0 1.6rem 0;
    padding: 0.8rem;
    gap: 0.5rem;
  }
  
  .feature-highlight {
    font-size: 0.8rem;
    gap: 0.6rem;
  }
  
  .feature-highlight i {
    font-size: 0.8rem;
    width: 16px;
  }
  
  .service-card-modern .service-link {
    padding: 0.7rem 1.1rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }
}

/* Unified Content Design */
.unified-content {
  max-width: 1200px;
  margin: 0 auto;
}

.content-header {
  text-align: center;
  margin-bottom: 3rem;
}

.content-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.content-grid {
  display: grid;
  gap: 2rem;
}

.content-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.content-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(6, 0, 151, 0.1);
}

.item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-icon i {
  color: white;
  font-size: 1.3rem;
}

.item-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.item-content p {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.cta-buttons .btn {
  min-width: 250px;
}

/* Unified Content Responsive */
.content-grid {
  gap: 1rem;
}

.content-item {
  padding: 1rem;
}

.item-icon {
  width: 40px;
  height: 40px;
}

.item-icon i {
  font-size: 1.1rem;
}

.content-header h2 {
  font-size: 2rem;
}

.content-header {
  margin-bottom: 2rem;
}

/* Enhanced CTA Section Buttons */
.enhanced-cta-section .btn {
  background: var(--color-heading);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.enhanced-cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.enhanced-cta-section .btn-outline {
  background: var(--bg-primary);
  color: var(--color-heading);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.enhanced-cta-section .btn-outline:hover {
  color: var(--color-heading);
  transform: translateY(-2px);
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.95);
}

.intro-features-list {
  align-items: flex-start;
  padding: 1.5rem;
  gap: 1rem;
}

.feature-list-item {
  padding: 0.8rem;
  gap: 1rem;
}

.feature-list-item i {
  width: 35px;
  height: 35px;
  font-size: 1rem;
}

.feature-list-item span {
  font-size: 0.95rem;
}

/* Enhanced CTA Section Responsive */
@media (max-width: 1024px) {
  .enhanced-cta-section .cta-buttons {
    gap: 0.7rem;
  }
  
  .enhanced-cta-section .cta-buttons .btn {
    min-width: 180px;
    padding: 0.95rem 2.2rem;
  }
}

@media (max-width: 768px) {
  .enhanced-cta-section {
    padding: 3rem 0;
  }

  .cta-main h2 {
    font-size: 1.8rem;
  }

  .cta-main p {
    font-size: 1rem;
    margin: 0 1rem 1rem;
  }

  .enhanced-cta-section .cta-buttons {
    flex-direction: row;
    gap: 0.5rem;
  }

  .enhanced-cta-section .cta-buttons .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .enhanced-cta-section {
    padding: 2.5rem 0;
  }

  .cta-main h2 {
    font-size: 1.5rem;
  }

  .cta-main p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .enhanced-cta-section .cta-buttons {
    flex-direction: row;
    gap: 0.5rem;
  }

  .enhanced-cta-section .cta-buttons .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

.intro-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 60px;
  border: 1px solid rgba(6, 0, 151, 0.08);
}

.feature-list-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(6, 0, 151, 0.1);
  border-color: rgba(6, 0, 151, 0.15);
}

.feature-list-item i {
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #8204ff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list-item span {
  font-weight: 600;
  color: var(--color-heading);
  font-size: 1rem;
  flex: 1;
}

/* About Founder Responsive */
@media (max-width: 1024px) {
  .founder-intro {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .intro-features-list {
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  .about-founder {
    padding: 1.5rem 1rem;
  }
  
  .intro-features-list {
    align-items: flex-start;
    margin: 1.5rem auto 0;
  }
  
  .feature-list-item {
    padding: 0.9rem 1.2rem;
    gap: 0.9rem;
    min-height: 55px;
  }
  
  .feature-list-item i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .feature-list-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .intro-text h2 {
    font-size: 1.8rem;
  }
  
  .intro-features-list {
    gap: 0.8rem;
  }
  
  .feature-list-item {
    padding: 0.8rem 1rem;
    gap: 0.8rem;
    min-height: 50px;
  }
  
  .feature-list-item i {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  
  .feature-list-item span {
    font-size: 0.9rem;
  }
}

/* Hizmetlerimiz Sayfası Özel Stilleri */
/* Bu stiller sadece hizmetlerimiz sayfasında geçerlidir */

/* Hizmetlerimiz sayfasında service card'ların SVG görsellerini büyüt */
.hizmetlerimiz-page .service-icon-modern {
  width: 100%; /* 80px'den 120px'e çıkarıldı */
  height: 250px; /* 80px'den 120px'e çıkarıldı */
  border-radius: 20px; /* 16px'den 20px'e çıkarıldı */
  margin-bottom: 2rem; /* 1.5rem'den 2rem'e çıkarıldı */
}

.hizmetlerimiz-page .service-icon-modern img.service-svg-icon {
  width: 100%; /* Mor alanı tamamen doldur */
  height: 100%; /* Mor alanı tamamen doldur */
  object-fit: contain; /* SVG'nin oranını koru */
}

/* Hizmetlerimiz sayfasında service card'ların genel görünümünü iyileştir */
.hizmetlerimiz-page .service-card-modern {
  padding: 2rem 1.5rem; /* 2.5rem 2rem'den 3rem 2.5rem'e çıkarıldı */
  border-radius: 24px; /* 20px'den 24px'e çıkarıldı */
  box-shadow: 0 12px 40px rgba(6, 0, 151, 0.12); /* Gölge iyileştirildi */
}

/* Hizmetlerimiz sayfasında özel container class'ı */
.hizmetler-container {
  max-width: 1350px !important;
  margin: 0 auto !important;
}

.hizmetlerimiz-page .service-card-modern:hover {
  transform: translateY(-8px); /* -6px'den -8px'e çıkarıldı */
  box-shadow: 0 20px 60px rgba(6, 0, 151, 0.18); /* Hover gölgesi iyileştirildi */
}

/* Hizmetlerimiz sayfasında başlık ve açıklama metinlerini iyileştir */
.hizmetlerimiz-page .service-card-modern h3 {
  font-size: 1.6rem; /* 1.4rem'den 1.6rem'e çıkarıldı */
  margin-bottom: 1.2rem; /* 1rem'den 1.2rem'e çıkarıldı */
}

.hizmetlerimiz-page .service-card-modern p {
  font-size: 1rem; /* 0.95rem'den 1rem'e çıkarıldı */
  margin-bottom: 1rem; /* 1.5rem'den 2rem'e çıkarıldı */
  line-height: 1.8; /* 1.7'den 1.8'e çıkarıldı */
}

/* Hizmetlerimiz sayfasında özellik listesini iyileştir */
.hizmetlerimiz-page .service-features {
  margin: 0 0 1.5rem 0; /* 1.5rem 0 2rem 0'dan 2rem 0 2.5rem 0'a çıkarıldı */
  gap: 1rem; /* 0.75rem'den 1rem'e çıkarıldı */
}

.hizmetlerimiz-page .feature-highlight {
  font-size: 0.95rem; /* 0.9rem'den 0.95rem'e çıkarıldı */
  gap: 1rem; /* 0.75rem'den 1rem'e çıkarıldı */
}

.hizmetlerimiz-page .feature-highlight i {
  font-size: 0.9rem; /* 0.8rem'den 0.9rem'e çıkarıldı */
  width: 18px; /* 16px'den 18px'e çıkarıldı */
}

/* Hizmetlerimiz sayfasında butonları iyileştir */
.hizmetlerimiz-page .service-card-modern .service-link {
  padding: 1rem 2rem; /* 0.9rem 1.5rem'den 1rem 2rem'e çıkarıldı */
  font-size: 1rem; /* 0.9rem'den 1rem'e çıkarıldı */
  border-radius: 12px; /* 8px'den 12px'e çıkarıldı */
}

/* Responsive tasarım için hizmetlerimiz sayfası özel ayarları */
@media (max-width: 1024px) {
  .hizmetlerimiz-page .service-icon-modern {
    width: 100%; /* 120px'den 100px'e düşürüldü */
    height: 200px; /* 120px'den 100px'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-icon-modern img.service-svg-icon {
    width: 100%; /* Mor alanı tamamen doldur */
    height: 100%; /* Mor alanı tamamen doldur */
    object-fit: contain; /* SVG'nin oranını koru */
  }
  
  .hizmetlerimiz-page .service-card-modern {
    padding: 2.5rem 2rem; /* 3rem 2.5rem'den 2.5rem 2rem'e düşürüldü */
  }
}

@media (max-width: 768px) {
  .hizmetlerimiz-page .service-icon-modern {
    width: 100%; /* 100px'den 90px'e düşürüldü */
    height: 500px; /* 100px'den 90px'e düşürüldü */
    border-radius: 18px; /* 20px'den 18px'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-icon-modern img.service-svg-icon {
    width: 100%; /* Mor alanı tamamen doldur */
    height: 100%; /* Mor alanı tamamen doldur */
    object-fit: contain; /* SVG'nin oranını koru */
  }
  
  .hizmetlerimiz-page .service-card-modern {
    padding: 2rem 1.5rem; /* 2.5rem 2rem'den 2rem 1.5rem'e düşürüldü */
    border-radius: 20px; /* 24px'den 20px'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-card-modern h3 {
    font-size: 1.4rem; /* 1.6rem'den 1.4rem'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-card-modern p {
    font-size: 0.95rem; /* 1rem'den 0.95rem'e düşürüldü */
  }
}

@media (max-width: 480px) {
  .hizmetlerimiz-page .service-icon-modern {
    width: 100%; /* 90px'den 80px'e düşürüldü */
    height: 300px; /* 90px'den 80px'e düşürüldü */
    border-radius: 16px; /* 18px'den 16px'e düşürüldü */
    margin-bottom: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-icon-modern img.service-svg-icon {
    width: 100%; /* Mor alanı tamamen doldur */
    height: 100%; /* Mor alanı tamamen doldur */
    object-fit: contain; /* SVG'nin oranını koru */
  }
  
  .hizmetlerimiz-page .service-card-modern {
    padding: 1.5rem 1.2rem; /* 2rem 1.5rem'den 1.5rem 1.2rem'e düşürüldü */
    border-radius: 18px; /* 20px'den 18px'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-card-modern h3 {
    font-size: 1.2rem; /* 1.4rem'den 1.2rem'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-card-modern p {
    font-size: 0.9rem; /* 0.95rem'den 0.9rem'e düşürüldü */
  }
  
  .hizmetlerimiz-page .service-features {
    margin: 0 0 1rem 0; /* 2rem 0 2.5rem 0'dan 1.5rem 0 2rem 0'a düşürüldü */
  }
  
  .hizmetlerimiz-page .service-card-modern .service-link {
    padding: 0.9rem 1.5rem; /* 1rem 2rem'den 0.9rem 1.5rem'e düşürüldü */
    font-size: 0.9rem; /* 1rem'den 0.9rem'e düşürüldü */
  }
}

/* Hizmetlerimiz sayfasında butonları iyileştir */
.hizmetlerimiz-page .service-card-modern .service-link {
  padding: 1rem 2rem; /* 0.9rem 1.5rem'den 1rem 2rem'e çıkarıldı */
  font-size: 1rem; /* 0.9rem'den 1rem'e çıkarıldı */
  border-radius: 12px; /* 8px'den 12px'e çıkarıldı */
}

/* Why Choose Us Section - İyileştirilmiş */
.why-choose-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

/* Sol Taraf - 3 Dikey Kart */
.why-choose-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(6, 0, 151, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 1rem;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(6, 0, 151, 0.15);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-card-icon i {
  font-size: 1.8rem;
  color: white;
}

.why-card h3 {
  font-size: 1.4rem;
  color: var(--color-heading);
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-card p {
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Sağ Taraf - Açıklayıcı Metin */
.why-choose-text {
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(6, 0, 151, 0.08);
  border: 1px solid rgba(6, 0, 151, 0.05);
}

.why-choose-text h2 {
  font-size: 2.2rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.main-text {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.text-features {
  margin-bottom: 2rem;
}

.text-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0;
}

.text-feature i {
  color: #10b981;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.text-feature span {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
}

.text-summary {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(6, 0, 151, 0.1);
}

.text-summary p {
  color: var(--color-text);
  line-height: 1.7;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* Responsive tasarım için Why Choose Us */
@media (max-width: 1024px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-choose-cards {
    order: 2;
  }
  
  .why-choose-text {
    order: 1;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 0;
  }
  
  .why-choose-layout {
    gap: 2rem;
    margin: 1rem;
  }
  
  .why-card {
    padding: 1.5rem;
  }
  
  .why-card-icon {
    width: 60px;
    height: 60px;
  }
  
  .why-card-icon i {
    font-size: 1.5rem;
  }
  
  .why-card h3 {
    font-size: 1.3rem;
  }
  
  .why-card p {
    font-size: 0.9rem;
  }
  
  .why-choose-text {
    padding: 2rem;
  }
  
  .why-choose-text h2 {
    font-size: 1.8rem;
  }
  
  .main-text {
    font-size: 1rem;
  }
  
  .text-feature {
    padding: 0.6rem 0;
  }
  
  .text-feature span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .why-card {
    padding: 1.2rem;
    margin: 0 1rem;
  }
  
  .why-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .why-card-icon i {
    font-size: 1.3rem;
  }
  
  .why-card h3 {
    font-size: 1.2rem;
  }
  
  .why-card p {
    font-size: 0.85rem;
  }
  
  .why-choose-text {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .why-choose-text h2 {
    font-size: 1.5rem;
  }
  
  .main-text {
    font-size: 0.95rem;
  }
  
  .text-feature {
    padding: 0.5rem 0;
  }
  
  .text-feature span {
    font-size: 0.9rem;
  }
  
  .text-summary p {
    font-size: 0.9rem;
  }
}

/* İletişim Sayfası - Yeni Tasarım */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  margin: 0 1rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 35px rgba(6, 0, 151, 0.1);
  border: 1px solid rgba(6, 0, 151, 0.08);
}

.contact-info-card h2 {
  font-size: 2rem;
  color: var(--color-heading);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(6, 0, 151, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(6, 0, 151, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.contact-item:hover {
  background: rgba(6, 0, 151, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 0, 151, 0.12);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(6, 0, 151, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 70px;
  min-height: 70px;
}

.contact-item:hover .contact-icon::before {
  transform: scale(1);
}

.contact-icon i {
  font-size: 1.6rem;
  color: white;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contact-content h4 {
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-content p {
  color: var(--color-text);
  font-size: 0.95rem;
  margin: 0;
}

.contact-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: var(--color-secondary);
}

/* İletişim Formu Kartı */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 35px rgba(6, 0, 151, 0.1);
  border: 1px solid rgba(6, 0, 151, 0.08);
}

.contact-form-card h2 {
  font-size: 2rem;
  color: var(--color-heading);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  border: 2px solid rgba(6, 0, 151, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 0, 151, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.2em 1.2em;
  padding-right: 3rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.btn-full {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--color-secondary);
  color: white;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .contact-item {
    padding: 1.2rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.4rem;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .form-select {
    background-size: 1.1em 1.1em;
    padding-right: 2.5rem;
  }
  
  .btn-full {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.2rem;
  }
  
  .contact-info-grid {
    gap: 1rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
  }
  
  .contact-icon i {
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .contact-content h4 {
    font-size: 1rem;
  }
  
  .contact-content p {
    font-size: 0.9rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .form-select {
    background-size: 1em 1em;
    padding-right: 2.2rem;
  }
  
  .btn-full {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Hizmet Alt Sayfa Şablonu Stilleri */
.service-overview {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #ffffff 100%);
}

.overview-content {
    text-align: center;
    margin: 0 auto;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
    color: var(--color-heading);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-text);
}

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

.overview-stats .stat-item {
    background: var(--bg-secondary);
    padding: 2.5rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overview-stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.overview-stats .stat-item h3 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.overview-stats .stat-item p {
    color: var(--color-text);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

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

.service-feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #4f46e5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem 0 0;
    box-shadow: 0 4px 15px rgba(6, 0, 151, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    float: left;
}

.service-feature-card .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(6, 0, 151, 0.2);
}

.service-feature-card h3 {
    margin-bottom: 1rem;
    color: var(--color-heading);
    font-size: 1.3rem;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 2.5rem;
}

.service-feature-card p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--color-primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    display: inline-block;
    width: 16px;
    text-align: center;
}

/* Font Awesome çift icon sorununu çöz */
.feature-list li i::before {
    content: none !important;
}


/* SEO Neden Önemli iconları - Secondary renk */
.why-choose-service .why-us-item i {
    color: var(--color-secondary);
    background: rgba(255, 179, 71, 0.1);
}

.why-choose-service .why-us-item:hover i {
    background: var(--color-secondary);
    color: white;
}

/* Neden SEO Yapmalısınız iconları - Primary renk */
.why-seo-section .why-us-item i {
    color: var(--color-primary);
    background: rgba(6, 0, 151, 0.1);
}

.why-seo-section .why-us-item:hover i {
    background: var(--color-primary);
    color: white;
}

/* Neden SEO Yapmalısınız için özel class'lar */
.why-seo-item .why-seo-icon i {
    color: var(--color-primary) !important;
    background: rgba(6, 0, 151, 0.1) !important;
}

.why-seo-item:hover .why-seo-icon i {
    background: var(--color-primary) !important;
    color: white !important;
}

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

/* Service Process - Updated */

/* FAQ Items - Common styles */

/* Service CTA - Using main CTA styles */

/* Responsive Design */
@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .why-us-item {
        padding: 2rem 1.5rem;
    }
    
    .why-us-item i {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-feature-card {
        padding: 1.5rem;
    }
    
    .overview-stats .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .overview-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-us-item {
        padding: 1.5rem 1rem;
    }
    
    .why-us-item i {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .why-us-item h3 {
        font-size: 1.2rem;
    }
    
    .why-us-item p {
        font-size: 0.9rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

/* Service FAQ and Why Section - Removed */

/* Responsive Design for FAQ-Why Grid - Removed */

/* Service Process - 5 Grid */
.service-process {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.process-step-5 {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-step-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.process-step-5:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.process-step-5 .step-number-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
}

.process-step-5 h3 {
    margin-bottom: 1rem;
    color: var(--color-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.process-step-5 p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why SEO Section - Same style as Why Choose */
.why-seo-section {
    padding: 60px 0;
    background: var(--bg-light);
}

/* Responsive Design for New Grids */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .overview-stats .stat-item {
        padding: 2rem 2rem;
    }
    
    .overview-stats .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .why-us-item {
        padding: 2.5rem 2rem;
    }
    
    .why-us-item i {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .why-us-item {
        padding: 1.5rem;
    }
    
    .why-us-item i {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .why-us-item i {
        font-size: 1.5rem;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-grid {
      grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .service-feature-card {
        padding: 1.5rem;
    }
    
    .service-feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-feature-card .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .overview-stats .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .overview-stats .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-us-item {
        padding: 1rem;
    }
    
    .why-us-item i {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .why-us-item i {
        font-size: 1.25rem;
    }
    
    .faq-container {
        padding: 0 0.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-feature-card {
        padding: 1rem;
    }
    
    .service-feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-feature-card .feature-icon i {
        font-size: 1.3rem;
    }
    
    .service-feature-card h3 {
        font-size: 1.1rem;
    }
    
    .service-feature-card p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .overview-stats .stat-item {
        padding: 1rem 0.75rem;
    }
    
    .overview-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .why-us-item {
        padding: 0.75rem;
    }
    
    .why-us-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .service-feature-card {
        padding: 0.75rem;
    }
    
    .service-feature-card .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-grid {
        gap: 0.75rem;
    }
}

/* Service FAQ */
.service-faq {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    grid-auto-rows: min-content;
    align-items: start;
}



.faq-container {
    max-width: 1000px;
    margin: 2rem auto 0;
}




