/*
* DanışmanBul - Ana Stil Dosyası
* Optimize edilmiş versiyon
*/

/* Ortadaki danışman kartını büyült */
.consultants-slide > div:nth-child(2) {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.consultants-slide > div:nth-child(2):hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* CSS Reset ve Değişkenler */
:root {
  --primary-color: #6a5acd; /* Pastel mor */
  --primary-light: #a29bfe; /* Açık mor */
  --secondary-color: #74b9ff; /* Pastel mavi */
  --secondary-light: #a6e3ff; /* Açık mavi */
  --accent-color: #8c7ae6; /* Orta mor */
  --dark-color: #4834d4; /* Koyu mor */
  --light-color: #f8faff; /* Açık gri-mavi */
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e6e6e6;
  --gray-300: #d1d1d1;
  --gray-400: #a8a8a8;
  --gray-500: #737373;
  --gray-600: #595959;
  --gray-700: #404040;
  --text-color: #333333;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  --border-radius: 10px;
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Box sizing kuralları ve CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Temel elementler ve tipografi */
body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

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

a:hover {
  color: var(--dark-color);
}

/* Butonlar */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-family);
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white) !important;
  box-shadow: 0 4px 10px rgba(106, 90, 205, 0.2);
}

.primary-btn:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 90, 205, 0.3);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white) !important;
  box-shadow: 0 4px 10px rgba(116, 185, 255, 0.2);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(116, 185, 255, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
}

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

.btn-block {
  display: block;
  width: 100%;
}

/* Genel düzen */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.25rem;
  text-align: left;
  margin-bottom: 10px;
  color: var(--dark-color);
  position: relative;
  display: block;
  font-weight: 700;
}

.section-title::after {
  display: none;
}

.section-subtitle {
  text-align: left;
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 30px;
  max-width: 700px;
}

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

/* Header */
header {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.logo span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after {
  width: 100%;
}

.btn-login {
  background-color: var(--primary-light);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(162, 155, 254, 0.2);
}

.btn-login:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(162, 155, 254, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile menü aktif durumu */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Hero Content Section */
.hero-content-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
}

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

.hero-content-section h2 {
  font-size: 2.625rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content-section p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-content-section .primary-btn {
  background-color: var(--white);
  color: var(--primary-color) !important;
}

.hero-content-section .primary-btn:hover {
  background-color: var(--light-color);
  color: var(--dark-color) !important;
}

.hero-content-section .secondary-btn {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white) !important;
}

.hero-content-section .secondary-btn:hover {
  background-color: var(--white);
  color: var(--primary-color) !important;
}

/* Slider Optimizasyonu */
.slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transform: translateZ(0); /* GPU hızlandırma için */
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
}

.slide-content h3 {
  font-size: 2.625rem;
  margin-bottom: 15px;
  color: white;
}

.slide-content p {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Kategoriler Section Optimizasyonu */
.categories {
  background-color: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  background-color: var(--white);
  padding: 25px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--gray-200);
  max-width: 280px;
  margin: 0 auto;
}

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

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 24px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.category-card h3 {
  margin-bottom: 12px;
  color: var(--dark-color);
  font-size: 1.1rem;
  line-height: 1.3;
}

.category-card p {
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.category-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.category-link i {
  margin-left: 5px;
  transition: var(--transition);
  font-size: 12px;
}

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

/* Danışmanlar Section */
.consultants {
  background-color: var(--light-color);
  position: relative;
}

/* Danışman Bölümleri */
.featured-section {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f7f9fc;
}

.category-section {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #f7f9fc;
}

/* Danışman Slider Yapısı */
.consultants-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 40px 50px; /* Yanlarda oklar için boşluk bırakıyoruz */
  margin-bottom: 30px;
}

.consultants-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  overflow: visible;
}

.consultants-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-right: 0; /* Slide'lar arasında boşluk olmasın */
}

/* Boş kartlar için stil */
.consultant-card.empty-card {
  opacity: 0;
}

.consultant-slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20; /* Z-indexi artırıldı */
  box-shadow: 0 4px 12px rgba(0,0,0,0.20); /* Gölge belirginleştirildi */
  transition: all 0.3s ease;
  font-size: 18px;
}

.consultant-slider-arrow:hover {
  background: var(--dark-color);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transform: translateY(-50%) scale(1.1);
}

.consultant-slider-arrow.prev {
  left: 15px;
}

.consultant-slider-arrow.next {
  right: 15px;
}

.consultant-slider-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  gap: 8px;
}

.consultant-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.consultant-slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
  width: 14px;
  height: 14px;
}

/* Eski grid yapısı slider'a dönüştürüldü */
.consultants-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 kart yan yana */
  gap: 15px; /* Kartlar arası boşluk */
  margin-bottom: 30px;
}

.consultant-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 10px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.consultant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.consultant-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.consultant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.consultant-card:hover .consultant-img img {
  transform: scale(1.05);
}

.consultant-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.consultant-body h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark-color);
  font-weight: 600;
}

.consultant-category {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

/* Consultant stars/rating bölümü kaldırıldı */

.consultant-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
}

.consultant-info div {
  text-align: center;
  flex: 1;
}

.consultant-info strong {
  display: block;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 700;
}

.consultant-info span {
  font-size: 12px;
  color: var(--gray-600);
}

.consultant-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--gray-200);
  padding-top: 15px;
}

.consultant-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}

.consultant-footer .btn {
  padding: 8px 24px;
  font-size: 14px;
  border-radius: 30px;
  font-weight: 600;
}

/* Mobil cihazlar için duyarlı tasarım */
/* Consultant slider responsive tasarım */
@media (max-width: 1200px) {
  /* Danışman slide'ları için grid ayarı */
  .consultants-slide {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .consultants-slider-container {
    padding: 20px 30px 50px;
  }
  
  /* Önemli Not: Kart sayısını değiştirmiyoruz, daima 3 tane görünecek */
  /* Sadece görüntüleme boyutu için ekran boyutlarında ayarlamalar */
  .consultant-card {
    transform: scale(0.95);
  }
  
  .consultant-card .consultant-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .consultant-card .consultant-footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .consultant-card {
    transform: scale(0.9);
  }
  
  .consultant-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .consultants-slider-container {
    padding: 20px 25px 50px;
  }
  
  .consultant-card h3 {
    font-size: 18px;
  }
  
  .consultant-info div {
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .consultant-card {
    transform: scale(0.85);
  }
  
  .consultants-slide {
    gap: 5px;
  }
  
  .consultant-slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .consultants-slider-container {
    padding: 20px 20px 40px;
  }
}

/* Eski grid responsive tasarım için */
@media (max-width: 1200px) {
  .consultants-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 kart yan yana */
  }
}

@media (max-width: 992px) {
  .consultants-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 kart yan yana */
  }
}

@media (max-width: 768px) {
  .consultants-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kart yan yana */
  }
}

@media (max-width: 576px) {
  .consultants-grid {
    grid-template-columns: 1fr; /* 1 kart */
  }
}

/* How it works section */
.how-it-works {
  background-color: var(--white);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--primary-light);
  z-index: 1;
}

.step {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  width: 22%;
}

.step-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--primary-color);
  position: relative;
  box-shadow: var(--card-shadow);
}

.step-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.step p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

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

.cta h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.cta .primary-btn {
  background-color: var(--white);
  color: var(--primary-color) !important;
}

.cta .primary-btn:hover {
  background-color: var(--light-color);
}

/* Blog Section */
.blog {
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background-color: var(--white);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  display: block;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.blog-author-info span {
  display: block;
  font-size: 0.875rem;
}

.blog-author-info span:first-child {
  font-weight: 600;
  color: var(--dark-color);
}

.blog-author-info span:last-child {
  color: var(--gray-500);
}

/* Testimonials */
.testimonials {
  background-color: var(--light-color);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(100% / 3);
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin: 20px;
  transform: translateZ(0); /* GPU hızlandırma için */
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.testimonial-author span {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-family);
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: var(--gray-100);
}

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

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-text {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 5px;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check input {
  margin-right: 10px;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.forgot-password {
  font-size: 0.875rem;
  color: var(--primary-color);
  text-align: right;
  display: block;
  margin-top: 5px;
}

.contact-info {
  padding: 40px;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.contact-item h3 {
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.contact-item p {
  color: var(--gray-600);
}

.contact-item a {
  color: var(--gray-600);
}

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

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-media a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-media a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Modal Optimizasyonu */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  animation: fadeIn 0.3s;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: var(--white);
  margin: 8% auto;
  padding: 40px;
  width: 450px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideDown 0.4s;
}

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

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--gray-500);
}

.modal-tabs {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--gray-200);
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-family: var(--font-family);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.tab-content {
  display: block;
}

.tab-content.hidden {
  display: none;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-400);
  transition: color 0.3s;
  line-height: 1;
}

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

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.footer-about .social-media a {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-links h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p a:hover {
  color: var(--white);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 20px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Dropdown Menu */
.profile-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 1000;
  display: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  margin-top: 5px;
}

.dropdown-menu.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--gray-700);
  font-size: 0.875rem;
  transition: var(--transition);
}

#adminPanelLink {
  color: var(--primary-color);
  font-weight: 600;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 5px 0;
  padding: 12px 15px;
  background-color: rgba(106, 90, 205, 0.05);
}

#adminPanelLink:hover {
  background-color: rgba(106, 90, 205, 0.1);
}

.dropdown-menu a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Bileşen durumu sınıfları */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
}

/* Yardımcı sınıflar */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Admin kontrolleri */
.admin-controls {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.admin-controls button {
  padding: 5px 10px;
  background-color: var(--primary-light);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.admin-controls button:hover {
  background-color: var(--primary-color);
}

.admin-controls .edit-slide {
  background-color: var(--info);
}

.admin-controls .delete-slide {
  background-color: var(--danger);
}

/* Responsive Tasarım Optimizasyonu */
@media (max-width: 1200px) {
  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .step {
    width: 45%;
    margin-bottom: 40px;
  }
  
  .testimonial-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
  }
  
  .category-card {
    padding: 22px 18px;
  }
  
  .category-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .hero h2 {
    font-size: 2.25rem;
  }
  
  .slider-container {
    height: 450px;
  }
  
  .slide-content h3 {
    font-size: 2.25rem;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  
  nav {
    display: none;
    width: 100%;
    margin-top: 20px;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .step {
    width: 100%;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  
  .category-card {
    padding: 20px 15px;
    max-width: 100%;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .category-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .category-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .category-link {
    font-size: 0.85rem;
  }
  
  .hero h2 {
    font-size: 1.875rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .slider-container {
    height: 400px;
  }
  
  .slide-content h3 {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 15px;
  }
  
  .footer-bottom-links a {
    margin: 0 10px;
  }
  
  .modal-content {
    width: 90%;
    padding: 30px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .slider-container {
    height: 350px;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 0.875rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .consultants-grid {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .category-card {
    padding: 18px;
    max-width: 100%;
    margin: 0;
  }
  
  .category-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .category-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .category-card p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .category-link {
    font-size: 0.8rem;
  }
  
  section {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info {
    padding: 25px;
  }
}

/* Performans optimizasyonları */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Partner Logoları Bölümü */
.partners-section {
  background-color: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--gray-200);
}

.partners-logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0; /* gap özelliği kaldırıldı - tarayıcı uyumluluğu için */
  margin-top: 30px;
}

/* Ayrı bir wrapper kullanılması Edge ile uyumluluk sağlar */
.partner-logo-wrapper {
  display: inline-block;
  padding: 20px;
  text-align: center;
  width: auto;
  height: 120px;
}

.partner-logo {
  height: 80px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .partner-logo-wrapper {
    padding: 15px;
    height: 90px;
  }

  .partner-logo {
    height: 60px;
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .partner-logo-wrapper {
    padding: 10px;
    height: 70px;
  }

  .partner-logo {
    height: 50px;
    max-width: 120px;
  }
}

/* Print stil optimizasyonları */
@media print {
  .hero, .cta, .testimonials, .mobile-menu-btn, .slider-arrow, .slider-dots, .social-media, .partners-section {
    display: none !important;
  }

  body {
    background-color: #ffffff;
    font-size: 12pt;
    color: #000000;
  }

  a {
    text-decoration: underline;
    color: #000000;
  }

  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .consultant-card, .category-card, .blog-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #cccccc;
  }

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

  footer {
    background-color: #ffffff;
    color: #000000;
  }

  .footer-contact p, .footer-links a {
    color: #000000;
  }
}