/* Temel Ayarlar */
:root {
  /* Ana renkler */
  --primary-color: #f59b45;
  --primary-light: #ffb980;
  --primary-dark: #e67e22;
  
  /* Kahverengi tonları */
  --secondary-color: #a98467;
  --secondary-light: #c6b199;
  --secondary-dark: #8d6e63;
  
  /* Arka plan ve aksanlar */
  --light-bg: #fff8f0;
  --light-accent: #ffe0b2;
  --bg-tan: #f5efe0;
  --bg-beige: #f0e5d8;
  --bg-cream: #faf5ef;
  
  /* Metin renkleri */
  --dark-text: #4d3c35;
  --light-text: #ffffff;
  --gray-text: #666666;
  
  /* Diğer değişkenler */
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
  line-height: 1.6;
  margin: 0;
  padding-top: 70px; /* Navbar için boşluk */
  padding-bottom: 80px;
}

/* Navbar Stilleri */
.navbar {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(169, 132, 103, 0.08);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(169, 132, 103, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.brand-icon {
  font-size: 1.6rem;
  margin-right: 10px;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text) !important;
  margin: 0 5px;
  padding: 10px 15px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(230, 126, 34, 0.08);
}

.nav-link:hover::after {
  width: 50%;
  opacity: 1;
}

.navbar .btn {
  padding: 10px 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 500;
  border-radius: 30px;
}

.navbar .btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.navbar .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  transition: all 0.4s ease;
  z-index: -1;
  opacity: 0;
}

.navbar .btn-outline-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
  border-color: transparent;
}

.navbar .btn-outline-primary:hover::before {
  width: 100%;
  opacity: 1;
}

.navbar .btn-primary {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  border: none;
  color: white;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.navbar .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.navbar .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.navbar .btn-primary:hover::before {
  left: 100%;
}

/* Ana İçerik Stilleri */
.body-content {
  margin-bottom: 0; /* Footer için artık margin gerekmiyor */
}

.container {
  padding: 20px;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #ffb980 0%, #f59b45 50%, #e67e22 100%);
  margin-bottom: 70px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
    linear-gradient(135deg, var(--primary-light), var(--primary-color));
  opacity: 0.2;
  z-index: 0;
}

.hero-section::after {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 4rem;
  opacity: 0.1;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  background-color: transparent;
  box-shadow: none;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Hero Section butonları yenilendi */
.hero-section .hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-section .btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 1rem;
}

.hero-section .btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: white;
}

.hero-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-section .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-section .btn-primary:hover::before {
  opacity: 1;
}

.hero-section .btn-outline-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.hero-section .btn-outline-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-section .btn-outline-secondary:hover {
  transform: translateY(-5px);
  border-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-section .btn-outline-secondary:hover::before {
  opacity: 1;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-badge {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 10px;
  transition: var(--transition);
}

.hero-badge:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.badge-icon {
  margin-right: 12px;
  color: var(--light-text);
  font-size: 1.2rem;
}

.badge-icon i {
  color: var(--light-accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-text {
  color: var(--light-text);
  font-weight: 500;
  font-size: 1.05rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Genel Bölüm Düzenlemeleri */
.feature-section {
  padding: 100px 0;
  margin-bottom: 0;
  background-color: var(--bg-cream);
  overflow: hidden;
  position: relative;
}

.feature-section.bg-light {
  background-color: var(--bg-beige);
}

.feature-section .container {
  background-color: transparent;
  box-shadow: none;
  padding: 0 30px;
  max-width: 1200px;
}

/* Bölümler arası geçişler için çizgi (divider) */
.feature-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--light-accent), transparent);
}

.feature-section:last-of-type::after,
.bg-light::after {
  display: none;
}

/* Bölüm Başlıkları */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  border-radius: 4px;
}

.section-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-text);
  line-height: 1.7;
}

/* Satır hizalamaları */
.feature-section .row {
  align-items: center;
  margin-bottom: 0;
  min-height: 400px;
}

/* Test section'ı için özel hizalama */
#testler .row {
  align-items: center;
  min-height: 500px;
}

#testler .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Kart Stilleri */
.rounded-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.rounded-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Test section'ındaki görsel için özel stiller */
#testler .rounded-image {
  max-width: 100%;
  width: 100%;
  min-height: 420px;
  max-height: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 4px solid white;
  margin: 0 auto;
  display: block;
}

.exam-tab {
  padding: 20px 40px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-text);
  border-bottom: 3px solid transparent;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.exam-tab:hover {
  background-color: rgba(230, 126, 34, 0.1);
}

.exam-tab.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

/* Sınav Seçimi Bölümü - Yenilenmiş Tasarım */
.exam-selector-advanced {
  margin: 20px auto 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(169, 132, 103, 0.15);
  max-width: 1100px;
  background: linear-gradient(145deg, #f9f3ef, #f5efe0);
}

.exam-tabs {
  display: flex;
  background: linear-gradient(120deg, var(--secondary-light), var(--secondary-color));
  border-bottom: none;
  justify-content: center;
  padding: 5px;
  border-radius: 20px 20px 0 0;
}

.exam-tab {
  padding: 15px 35px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.exam-tab:hover {
  color: #ffffff;
  background-color: rgba(243, 156, 18, 0.2);
}

.exam-tab.active {
  color: #ffffff;
  border-bottom: 3px solid var(--primary-color);
  background-color: rgba(141, 110, 99, 0.6);
}

.exam-content-wrapper {
  padding: 40px;
  background: linear-gradient(145deg, #f9f3ef, #f0e5d8);
  border-radius: 0 0 20px 20px;
  box-shadow: inset 0 5px 10px rgba(169, 132, 103, 0.05);
}

.exam-content {
  position: relative;
  border-radius: 18px;
  padding: 40px 30px;
  background: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(169, 132, 103, 0.15);
  border: 1px solid rgba(141, 110, 99, 0.1);
}

.exam-content.active {
  box-shadow: 0 15px 40px rgba(169, 132, 103, 0.2);
  transform: translateY(-5px);
  border: 1px solid rgba(141, 110, 99, 0.2);
}

.exam-content h3 {
  font-size: 2rem;
  color: var(--dark-text);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.exam-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

/* Sınav Kartları */
.exam-content .rounded-image, .lgs-hazirlik, .tyt-hazirlik, .ayt-hazirlik {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(245, 155, 69, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exam-content .rounded-image:hover, .lgs-hazirlik:hover, .tyt-hazirlik:hover, .ayt-hazirlik:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 155, 69, 0.3);
}

.exam-content .rounded-image::before, .lgs-hazirlik::before, .tyt-hazirlik::before, .ayt-hazirlik::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
    conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.1) 60deg, transparent 120deg),
    linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  opacity: 0.1;
  z-index: 0;
}

.lgs-hazirlik, .tyt-hazirlik, .ayt-hazirlik {
  position: relative;
  z-index: 1;
}

.lgs-hazirlik::after, .tyt-hazirlik::after, .ayt-hazirlik::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: -1;
}

/* Buton Modernizasyonu */
.exam-content .btn-primary, 
.soru-cta-button {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(245, 155, 69, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.exam-content .btn-primary::before,
.soru-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.exam-content .btn-primary:hover,
.soru-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 155, 69, 0.35);
  color: white;
}

.exam-content .btn-primary:hover::before,
.soru-cta-button:hover::before {
  left: 100%;
}

/* Feature Item Modernizasyonu */
.feature-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 15px !important;
  background-color: white !important;
  padding: 15px !important;
  border-radius: 12px !important;
  border-left: 4px solid var(--primary-color) !important;
  box-shadow: 0 5px 15px rgba(169, 132, 103, 0.03) !important;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(245, 155, 69, 0.1);
}

.feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
  color: var(--dark-text);
}

.features-list {
  display: block !important;
  margin: 25px 0 30px 0 !important;
}

.feature-item {
  margin-bottom: 25px;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}

.feature-text h4 {
  margin-bottom: 10px;
  color: var(--dark-text);
  font-weight: 600;
}

/* Test Çözümü Bölümü */
.feature-detailed {
  padding: 0 15px;
}

.feature-detailed h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.workflow-steps {
  margin: 40px 0;
}

.workflow-step {
  margin-bottom: 30px;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}

.workflow-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(245, 155, 69, 0.2);
}

.workflow-step-content h4 {
  margin-bottom: 10px;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 1.3rem;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 20px;
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  flex: 1;
  transition: var(--transition);
}

/* Test section'ındaki istatistikler için özel stiller */
#testler .stats-container {
  margin: 25px 0 15px;
  gap: 12px;
}

#testler .stat-item {
  padding: 20px 12px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 500;
}

/* Soru Çözümü Bölümü */
#sorular {
  padding: 80px 0;
  background-color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

#sorular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 155, 69, 0.05), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.05), transparent 30%);
  z-index: 0;
}

#sorular .container {
  position: relative;
  z-index: 1;
}

#sorular .row {
  display: flex;
  align-items: center;
}

#sorular .col-lg-6 {
  display: flex;
  padding: 0 20px;
}

/* Sol taraftaki görsel container'ı için özel styling */
#sorular .col-lg-6:first-child {
  justify-content: center;
  align-items: center;
}

#sorular .col-lg-6:first-child > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Soru çözümü görseli için özel stiller */
#sorular .rounded-image {
  max-width: 100%;
  width: 100%;
  min-height: 500px;
  max-height: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 4px solid white;
}

/* Sol taraftaki turuncu kutu */
.soru-cozum-banner {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 20px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  box-shadow: 0 15px 30px rgba(245, 155, 69, 0.2);
  position: relative;
  overflow: hidden;
}

.soru-cozum-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg,
      transparent 0px,
      transparent 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px
    ),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    linear-gradient(125deg, #e67e22, var(--primary-color));
  opacity: 0.1;
  z-index: 0;
}

.soru-cozum-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.soru-cozum-banner p {
  font-size: 1.1rem;
  max-width: 90%;
  margin: 0 auto 25px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Sağ taraftaki özellik kartları */
.soru-features-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.soru-feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 80px;
}

.soru-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 155, 69, 0.2);
}

.soru-feature-card:last-child {
  margin-bottom: 0;
}

.soru-feature-icon {
  min-width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  border-radius: 10px;
  margin-right: 15px;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(245, 155, 69, 0.2);
}

.soru-feature-content h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
}

.soru-feature-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--gray-text);
}

.soru-testimonial {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  margin-top: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary-color);
  position: relative;
}

.soru-testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 3.5rem;
  color: rgba(245, 155, 69, 0.1);
  line-height: 1;
}

.soru-testimonial p {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--dark-text);
  position: relative;
  z-index: 1;
}

.soru-testimonial-author {
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.95rem;
  text-align: right;
}

.soru-cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(245, 155, 69, 0.25);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.soru-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.soru-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 155, 69, 0.3);
  color: white;
}

.soru-cta-button:hover::before {
  left: 100%;
}

@media (max-width: 991px) {
  #sorular .row {
    flex-direction: column;
  }
  
  #sorular .col-lg-6 {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .soru-cozum-banner {
    padding: 40px 20px;
  }
  
  .soru-features-container {
    gap: 10px;
  }
}

/* Kişisel Ders Programı Bölümü */
#program {
  padding: 80px 0 120px;
  background-color: var(--bg-beige);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

#program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(245, 155, 69, 0.07), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(169, 132, 103, 0.07), transparent 30%);
  z-index: -1;
}

.program-features {
  margin: 40px 0;
}

.program-feature {
  margin-bottom: 30px;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.program-feature:hover {
  transform: translateX(8px);
}

.program-feature-icon {
  font-size: 2.2rem;
  min-width: 60px;
  text-align: center;
  color: var(--primary-color);
  margin-top: -5px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.program-feature-content h4 {
  margin-bottom: 10px;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 1.3rem;
}

.program-feature-content p {
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.6;
}

#program .program-schedule {
  margin-bottom: 20px !important;
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(245, 155, 69, 0.15) !important;
  background-color: white !important;
  transition: all 0.4s ease !important;
  border: 2px solid rgba(245, 155, 69, 0.2) !important;
}

#program .program-schedule:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 15px 40px rgba(245, 155, 69, 0.25) !important;
  border-color: rgba(245, 155, 69, 0.4) !important;
}

#program .program-schedule .card-header {
  background: linear-gradient(to right, var(--primary-light), var(--primary-color)) !important;
  color: white !important;
  padding: 20px 25px !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.program-schedule .card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.program-schedule:hover .card-header::before {
  transform: translateX(100%);
}

.program-schedule .card-header h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.program-schedule .card-body {
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, #fefefe);
}

/* Modern ve profesyonel footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, var(--secondary-dark), var(--secondary-color));
  padding: 10px 0;
  color: #fff;
  z-index: 100;
  box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-logo i {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-logo span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff !important;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1), inset 0 -2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-social a:hover {
  color: #fff !important;
  transform: translateY(-5px);
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, var(--primary-light), var(--primary-color));
  box-shadow: 0 5px 12px rgba(245, 155, 69, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-social a i {
  position: relative;
  z-index: 2;
}

.footer-social a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 70%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.footer-social a:hover:after {
  opacity: 1;
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
  .footer-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-content > * {
    margin: 5px 0;
  }
}

/* Hakkımızda Bölümü */
.about-section {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--light-accent) 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 155, 69, 0.15), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.15), transparent 30%);
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section .section-header {
  margin-bottom: 70px;
}

.about-section .section-title {
  font-size: 3rem;
  letter-spacing: -0.5px;
  position: relative;
}

.about-section .section-title::after {
  height: 5px;
  width: 100px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  border-radius: 5px;
}

.about-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  border: 8px solid white;
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 15px;
  z-index: -1;
  opacity: 0.2;
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--dark-text);
  position: relative;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
  border-radius: 3px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.teacher-info {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.teacher-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary-color));
}

.teacher-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.5rem;
  padding-left: 15px;
}

.teacher-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teacher-info li {
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.teacher-info li:hover {
  transform: translateX(5px);
  background-color: #f5f5f5;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.teacher-info li i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Kişisel Ders Programı Butonu - Modern Tasarım */
.btn-program {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(245, 155, 69, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-top: 30px;
}

.btn-program:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn-program:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(245, 155, 69, 0.35);
  color: white;
}

.btn-program:hover:before {
  opacity: 1;
}

.btn-program:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(245, 155, 69, 0.35);
}

.btn-program span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.btn-program i {
  margin-right: 10px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Kişisel Program Kartı - Sade ve Temiz Tasarım */
.kisisel-program-card {
  background: linear-gradient(135deg, #ffffff, #fafafa);
  border: 2px solid rgba(245, 155, 69, 0.15);
  border-radius: 18px;
  padding: 40px 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kisisel-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
}

.kisisel-program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(245, 155, 69, 0.15);
  border-color: rgba(245, 155, 69, 0.25);
}

.program-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(245, 155, 69, 0.2);
  transition: all 0.3s ease;
}

.program-card-icon i {
  font-size: 2.2rem;
  color: white;
}

.kisisel-program-card:hover .program-card-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(245, 155, 69, 0.3);
}

.kisisel-program-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.kisisel-program-card p {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 25px;
  line-height: 1.5;
}

.program-features-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.program-features-mini span {
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  background: rgba(245, 155, 69, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.program-features-mini span i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 0.9rem;
}

.program-features-mini span:hover {
  background: rgba(245, 155, 69, 0.15);
  transform: translateX(3px);
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.coming-soon-badge span {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
  animation: pulse-orange 2s infinite;
}

.coming-soon-badge span i {
  margin-right: 8px;
  font-size: 0.9rem;
}

@keyframes pulse-orange {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
  }
}

/* Ara Sınıf Hazırlık Kartı */
.ara-sinif-hazirlik {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Tüm butonları aynı stilde modernleştirme */
.btn-primary, .lgs-hazirligina-basla, .tyt-hazirligina-basla, .ayt-hazirligina-basla {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  color: white !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(245, 155, 69, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary:hover, .lgs-hazirligina-basla:hover, .tyt-hazirligina-basla:hover, .ayt-hazirligina-basla:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(245, 155, 69, 0.3);
}

/* Sağdaki büyük renkli kartlar */
.exam-content .col-md-6 {
  padding: 15px;
}

.exam-content .rounded-image, .lgs-hazirlik, .tyt-hazirlik, .ayt-hazirlik {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(245, 155, 69, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#program .schedule-item {
  padding: 15px 0 !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 2px solid rgba(245, 155, 69, 0.2) !important;
  transition: all 0.3s ease !important;
  border-radius: 10px !important;
  margin-bottom: 5px !important;
}

#program .schedule-item:hover {
  background-color: rgba(245, 155, 69, 0.15) !important;
  padding-left: 15px !important;
  transform: translateX(8px) !important;
  border-color: rgba(245, 155, 69, 0.4) !important;
}

#program .schedule-item:last-child {
  border-bottom: 2px solid rgba(245, 155, 69, 0.2) !important;
  margin-bottom: 0 !important;
}

#program .schedule-day {
  min-width: 120px !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
  font-size: 1.1rem !important;
  position: relative !important;
}

.schedule-day::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
}

.schedule-topic {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-left: 15px;
}

/* Login Sayfası Stilleri */
.login-container {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 155, 69, 0.05), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(169, 132, 103, 0.05), transparent 30%);
  z-index: 0;
}

.login-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  background-color: white;
  margin: 20px 0;
}

/* Sol taraf - Banner */
.login-banner {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  padding: 0;
  position: relative;
  overflow: hidden;
}

.login-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
    conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.1) 60deg, transparent 120deg),
    linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  opacity: 0.1;
  z-index: 0;
}

.login-banner-content {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.login-logo i {
  font-size: 1.8rem;
  margin-right: 10px;
  color: white;
}

.login-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.login-banner-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.login-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.login-benefits {
  margin-top: auto;
}

.login-benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.login-benefit-item i {
  font-size: 1rem;
  color: white;
  margin-right: 12px;
}

.login-benefit-item span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Sağ taraf - Form */
.login-form-container {
  padding: 0;
}

.login-form-content {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-content h2 {
  color: var(--dark-text);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
}

.login-form label {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.login-form .input-group-text {
  background-color: white;
  border-right: none;
  color: var(--gray-text);
}

.login-form .form-control {
  border-left: none;
  padding-left: 0;
}

.login-form .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.forgot-password {
  color: var(--primary-color);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.password-toggle {
  border-left: none;
  background-color: white;
  color: var(--gray-text);
}

.password-toggle:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-login {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(245, 155, 69, 0.2);
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(245, 155, 69, 0.3);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.btn-login i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-login:hover i {
  transform: translateX(5px);
}

.signup-link {
  font-size: 0.95rem;
  color: var(--gray-text);
}

.signup-link a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.signup-link a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.login-divider {
  text-align: center;
  position: relative;
  margin: 30px 0;
}

.login-divider::before, .login-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background-color: #eee;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-divider span {
  display: inline-block;
  padding: 0 15px;
  background-color: white;
  color: var(--gray-text);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.social-login {
  margin-top: 5px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 10px;
  border: 1px solid #eee;
  background-color: white;
  color: var(--dark-text);
  transition: all 0.3s ease;
}

.btn-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-google i {
  color: #DB4437;
}

/* ... existing code ... */

/* Üye Olma Sayfası Stilleri */
.register-container {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.register-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(245, 155, 69, 0.05), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(169, 132, 103, 0.05), transparent 30%);
  z-index: 0;
}

.register-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  background-color: white;
  margin: 20px 0;
}

/* Sol taraf - Banner */
.register-banner {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  padding: 0;
  position: relative;
  overflow: hidden;
}

.register-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
    conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.1) 60deg, transparent 120deg),
    linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  opacity: 0.1;
  z-index: 0;
}

.register-banner-content {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.register-logo i {
  font-size: 1.8rem;
  margin-right: 10px;
  color: white;
}

.register-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.register-banner-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.register-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.register-benefits {
  margin-top: auto;
}

.register-benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.register-benefit-item i {
  font-size: 1rem;
  color: white;
  margin-right: 12px;
}

.register-benefit-item span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Sağ taraf - Form */
.register-form-container {
  padding: 0;
  max-height: 700px;
  overflow-y: auto;
}

.register-form-content {
  padding: 40px 30px;
  height: 100%;
}

.register-form-content h2 {
  color: var(--dark-text);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
}

.register-form label {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.register-form .input-group-text {
  background-color: white;
  border-right: none;
  color: var(--gray-text);
}

.register-form .form-control, .register-form .form-select {
  border-left: none;
  padding-left: 0;
}

.register-form .form-control:focus, .register-form .form-select:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.form-text {
  font-size: 0.8rem;
  margin-top: 5px;
  color: var(--gray-text);
}

.terms-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.btn-register {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(245, 155, 69, 0.2);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(245, 155, 69, 0.3);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.btn-register i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-register:hover i {
  transform: translateX(5px);
}

.login-link {
  font-size: 0.95rem;
  color: var(--gray-text);
}

.login-link a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-link a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.register-divider {
  text-align: center;
  position: relative;
  margin: 30px 0;
}

.register-divider::before, .register-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background-color: #eee;
}

.register-divider::before {
  left: 0;
}

.register-divider::after {
  right: 0;
}

.register-divider span {
  display: inline-block;
  padding: 0 15px;
  background-color: white;
  color: var(--gray-text);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.social-register {
  margin-top: 5px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .register-banner {
    border-radius: 20px 20px 0 0;
    padding: 30px;
  }
  
  .register-banner-content {
    padding: 20px 0;
  }
  
  .register-form-content {
    padding: 30px 20px;
  }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .login-banner {
    border-radius: 20px 20px 0 0;
    padding: 30px;
  }
  
  .login-banner-content {
    padding: 20px 0;
  }
  
  .login-form-content {
    padding: 30px 20px;
  }
}